/**
 * CEV Utils Functions - Age Gate Styles
 * Modern and responsive age verification modal
 */


/* Age Gate Overlay */

.cev-age-gate-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: cevFadeIn 0.3s ease-out;
    /* Hide initially to prevent flashing */
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}


/* Show age gate only when needed */

.cev-age-gate-overlay.cev-show {
    opacity: 1;
    visibility: visible;
}


/* Age Gate Modal */

.cev-age-gate-modal {
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    max-width: 500px;
    width: 90%;
    margin: 20px;
    animation: cevSlideIn 0.4s ease-out;
    position: relative;
    overflow: hidden;
}


/* Modal Content */

.cev-age-gate-content {
    padding: 40px 30px;
    text-align: center;
    position: relative;
}


/* Icon Styling */

.cev-age-gate-icon {
    margin-bottom: 25px;
    color: #e74c3c;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cev-age-gate-icon svg {
    width: 64px;
    height: 64px;
    filter: drop-shadow(0 4px 8px rgba(231, 76, 60, 0.3));
}


/* Title */

.cev-age-gate-title {
    font-size: 28px;
    font-weight: 700;
    color: #2c3e50;
    margin: 0 0 15px 0;
    line-height: 1.2;
}


/* Description */

.cev-age-gate-description {
    font-size: 16px;
    color: #7f8c8d;
    line-height: 1.6;
    margin: 0 0 30px 0;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}


/* Buttons Container */

.cev-age-gate-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
}


/* Button Base Styles */

.cev-btn {
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    min-width: 140px;
    position: relative;
    overflow: hidden;
}

.cev-btn:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.cev-btn:hover:before {
    left: 100%;
}


/* Confirm Button */

.cev-btn-confirm {
    background: linear-gradient(135deg, #27ae60, #2ecc71);
    color: white;
    box-shadow: 0 8px 20px rgba(46, 204, 113, 0.3);
}

.cev-btn-confirm:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(46, 204, 113, 0.4);
    background: linear-gradient(135deg, #229954, #27ae60);
}

.cev-btn-confirm:active {
    transform: translateY(0);
}


/* Deny Button */

.cev-btn-deny {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
    box-shadow: 0 8px 20px rgba(231, 76, 60, 0.3);
}

.cev-btn-deny:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(231, 76, 60, 0.4);
    background: linear-gradient(135deg, #c0392b, #a93226);
}

.cev-btn-deny:active {
    transform: translateY(0);
}


/* Disclaimer */

.cev-age-gate-disclaimer {
    font-size: 12px;
    color: #95a5a6;
    margin: 0;
    font-style: italic;
}


/* Shortcode Styles */

.cev-age-gate-shortcode {
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    margin: 20px 0;
    transition: all 0.3s ease;
}

.cev-age-gate-shortcode:hover {
    border-color: #e74c3c;
    box-shadow: 0 5px 15px rgba(231, 76, 60, 0.1);
}

.cev-age-gate-shortcode .cev-age-gate-icon {
    margin-bottom: 20px;
}

.cev-age-gate-shortcode .cev-age-gate-icon svg {
    width: 48px;
    height: 48px;
}

.cev-age-gate-shortcode h3 {
    font-size: 24px;
    color: #2c3e50;
    margin: 0 0 15px 0;
}

.cev-age-gate-shortcode p {
    color: #7f8c8d;
    margin: 0 0 20px 0;
}


/* Animations */

@keyframes cevFadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes cevSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes cevSlideOut {
    from {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
    to {
        opacity: 0;
        transform: translateY(-50px) scale(0.9);
    }
}


/* Responsive Design */

@media (max-width: 768px) {
    .cev-age-gate-modal {
        margin: 10px;
        border-radius: 15px;
    }
    .cev-age-gate-content {
        padding: 30px 20px;
    }
    .cev-age-gate-title {
        font-size: 24px;
    }
    .cev-age-gate-description {
        font-size: 14px;
    }
    .cev-age-gate-buttons {
        flex-direction: column;
        align-items: center;
    }
    .cev-btn {
        width: 100%;
        max-width: 200px;
    }
    .cev-age-gate-icon svg {
        width: 56px;
        height: 56px;
    }
}

@media (max-width: 480px) {
    .cev-age-gate-content {
        padding: 25px 15px;
    }
    .cev-age-gate-title {
        font-size: 22px;
    }
    .cev-btn {
        padding: 12px 25px;
        font-size: 14px;
    }
    .cev-age-gate-icon svg {
        width: 48px;
        height: 48px;
    }
}


/* Loading State */

.cev-btn.loading {
    pointer-events: none;
    opacity: 0.7;
}

.cev-btn.loading:after {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    margin: auto;
    border: 2px solid transparent;
    border-top-color: #ffffff;
    border-radius: 50%;
    animation: cevSpin 1s linear infinite;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
}

@keyframes cevSpin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}


/* High Contrast Mode Support */

@media (prefers-contrast: high) {
    .cev-age-gate-overlay {
        background: rgba(0, 0, 0, 0.95);
    }
    .cev-age-gate-modal {
        border: 2px solid #000;
    }
    .cev-btn {
        border: 2px solid currentColor;
    }
}


/* Reduced Motion Support */

@media (prefers-reduced-motion: reduce) {
    .cev-age-gate-overlay,
    .cev-age-gate-modal,
    .cev-btn {
        animation: none;
        transition: none;
    }
    .cev-btn:hover {
        transform: none;
    }
}


/* ========================================
   ACTIVITIES LISTING STYLES
   ======================================== */

.cev-activities-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.cev-activities-filters {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 30px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.cev-filter-row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: end;
}

.cev-filter-group {
    flex: 1;
    min-width: 200px;
}

.cev-filter-group label {
    display: block;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
    font-size: 14px;
}

.cev-filter-select {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e1e5e9;
    border-radius: 8px;
    background: white;
    font-size: 14px;
    color: #333;
    transition: all 0.3s ease;
}

.cev-filter-select:focus {
    outline: none;
    border-color: #007cba;
    box-shadow: 0 0 0 3px rgba(0, 124, 186, 0.1);
}

.cev-reset-btn {
    background: linear-gradient(135deg, #ff6b6b, #ee5a52);
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
}

.cev-reset-btn:hover {
    background: linear-gradient(135deg, #ee5a52, #e74c3c);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(238, 90, 82, 0.3);
}

.cev-activities-loading {
    text-align: center;
    padding: 40px;
    color: #666;
}

.cev-loading-spinner {
    width: 40px;
    height: 40px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #007cba;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 15px;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.cev-activities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 25px;
    margin-bottom: 30px;
}

.cev-activity-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
    position: relative;
}

.cev-activity-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.cev-activity-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.cev-activity-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.cev-activity-card:hover .cev-activity-image img {
    transform: scale(1.05);
}

.cev-no-image {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 16px;
}

.cev-activity-content {
    padding: 20px;
}

.cev-activity-title {
    font-size: 20px;
    font-weight: 700;
    color: #2c3e50;
    margin: 0 0 10px 0;
    line-height: 1.2;
}

.cev-activity-title a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.cev-activity-title a:hover {
    color: #007cba;
}

.cev-activity-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.cev-activity-city,
.cev-activity-duration,
.cev-activity-price {
    background: #f8f9fa;
    color: #6c757d;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
}

.cev-activity-excerpt {
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
    font-size: 14px;
}

.cev-activity-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.cev-feature-tag {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
}

.cev-feature-more {
    background: #e1e5e9;
    color: #666;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
}

.cev-activity-actions {
    text-align: center;
}

.cev-activity-btn {
    display: inline-block;
    background: linear-gradient(135deg, #007cba, #005a87);
    color: white;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

.cev-activity-btn:hover {
    background: linear-gradient(135deg, #005a87, #004066);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 124, 186, 0.3);
    color: white;
    text-decoration: none;
}

.cev-no-results {
    text-align: center;
    padding: 60px 20px;
    color: #666;
    font-size: 16px;
}

.cev-activities-pagination {
    text-align: center;
    margin-top: 30px;
}


/* Responsive Design */

@media (max-width: 768px) {
    .cev-activities-container {
        padding: 15px;
    }
    .cev-activities-filters {
        padding: 20px;
    }
    .cev-filter-row {
        flex-direction: column;
        gap: 15px;
    }
    .cev-filter-group {
        min-width: auto;
    }
    .cev-activities-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .cev-activity-meta {
        flex-direction: column;
        gap: 8px;
    }
    .cev-activity-features {
        justify-content: center;
    }
}


/* ========================================
   GDPR BANNER STYLES
   ======================================== */


/* GDPR Banner */

.cev-gdpr-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #2c3e50, #34495e);
    color: white;
    z-index: 999999;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.3);
    border-top: 3px solid #e74c3c;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
    will-change: transform;
    /* Hide initially to prevent flashing */
    opacity: 0;
    visibility: hidden;
    transform: translateY(100%) translateZ(0);
    transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
}


/* Show GDPR banner only when needed */

.cev-gdpr-banner.cev-show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) translateZ(0);
}


/* Hide GDPR banner without animation */

.cev-gdpr-banner.cev-hide {
    opacity: 0;
    visibility: hidden;
    transform: translateY(100%) translateZ(0);
    transition: none;
}


/* Ensure GDPR banner stays above all other elements */

.cev-gdpr-banner * {
    position: relative;
    z-index: 1000000;
}


/* Force GDPR banner to stay above footer and other elements */

body:has(.cev-gdpr-banner) {
    padding-bottom: 0 !important;
}

.cev-gdpr-banner {
    z-index: 999999 !important;
    position: fixed !important;
    bottom: 0 !important;
}

.cev-gdpr-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cev-gdpr-icon {
    color: #e74c3c;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cev-gdpr-icon svg {
    width: 32px;
    height: 32px;
    filter: drop-shadow(0 2px 4px rgba(231, 76, 60, 0.3));
}

.cev-gdpr-text {
    flex: 1;
    min-width: 300px;
}

.cev-gdpr-text h4 {
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 8px 0;
    color: #ecf0f1;
}

.cev-gdpr-text p {
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
    color: #bdc3c7;
}

.cev-gdpr-text a {
    color: #e74c3c;
    text-decoration: underline;
    font-weight: 600;
}

.cev-gdpr-text a:hover {
    color: #c0392b;
}

.cev-gdpr-buttons {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
    flex-wrap: wrap;
}

.cev-gdpr-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    min-width: 120px;
    position: relative;
    overflow: hidden;
}

.cev-gdpr-btn:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.cev-gdpr-btn:hover:before {
    left: 100%;
}

.cev-gdpr-btn-accept {
    background: linear-gradient(135deg, #27ae60, #2ecc71);
    color: white;
    box-shadow: 0 4px 15px rgba(46, 204, 113, 0.3);
}

.cev-gdpr-btn-accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(46, 204, 113, 0.4);
    background: linear-gradient(135deg, #229954, #27ae60);
}

.cev-gdpr-btn-necessary {
    background: linear-gradient(135deg, #f39c12, #e67e22);
    color: white;
    box-shadow: 0 4px 15px rgba(243, 156, 18, 0.3);
}

.cev-gdpr-btn-necessary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(243, 156, 18, 0.4);
    background: linear-gradient(135deg, #e67e22, #d35400);
}

.cev-gdpr-btn-decline {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
}

.cev-gdpr-btn-decline:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(231, 76, 60, 0.4);
    background: linear-gradient(135deg, #c0392b, #a93226);
}

.cev-gdpr-btn:active {
    transform: translateY(0);
}

.cev-gdpr-btn.loading {
    pointer-events: none;
    opacity: 0.7;
}

.cev-gdpr-btn.loading:after {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    margin: auto;
    border: 2px solid transparent;
    border-top-color: #ffffff;
    border-radius: 50%;
    animation: cevSpin 1s linear infinite;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
}


/* GDPR Banner Shortcode */

.cev-gdpr-banner-shortcode {
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    margin: 20px 0;
    transition: all 0.3s ease;
}

.cev-gdpr-banner-shortcode:hover {
    border-color: #e74c3c;
    box-shadow: 0 5px 15px rgba(231, 76, 60, 0.1);
}

.cev-gdpr-banner-shortcode .cev-gdpr-icon {
    margin-bottom: 20px;
    color: #e74c3c;
}

.cev-gdpr-banner-shortcode .cev-gdpr-icon svg {
    width: 48px;
    height: 48px;
}

.cev-gdpr-banner-shortcode h3 {
    font-size: 24px;
    color: #2c3e50;
    margin: 0 0 15px 0;
}

.cev-gdpr-banner-shortcode p {
    color: #7f8c8d;
    margin: 0 0 20px 0;
}

.cev-gdpr-banner-shortcode .cev-gdpr-buttons {
    justify-content: center;
}


/* GDPR Animations */

@keyframes cevGdprSlideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes cevGdprSlideDown {
    from {
        transform: translateY(0);
        opacity: 1;
    }
    to {
        transform: translateY(100%);
        opacity: 0;
    }
}

.cev-gdpr-banner.cev-fade-out {
    animation: cevGdprSlideDown 0.3s ease-in forwards;
}


/* GDPR Responsive Design */

@media (max-width: 768px) {
    .cev-gdpr-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
        padding: 15px;
    }
    .cev-gdpr-text {
        min-width: 100%;
    }
    .cev-gdpr-text h4 {
        font-size: 16px;
    }
    .cev-gdpr-text p {
        font-size: 13px;
    }
    .cev-gdpr-buttons {
        width: 100%;
        justify-content: center;
    }
    .cev-gdpr-btn {
        flex: 1;
        min-width: 100px;
        padding: 8px 16px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .cev-gdpr-content {
        padding: 12px;
    }
    .cev-gdpr-buttons {
        flex-direction: column;
        gap: 8px;
    }
    .cev-gdpr-btn {
        width: 100%;
        min-width: auto;
    }
    .cev-gdpr-icon svg {
        width: 28px;
        height: 28px;
    }
}


/* GDPR High Contrast Mode Support */

@media (prefers-contrast: high) {
    .cev-gdpr-banner {
        background: #000000;
        border-top-color: #ffffff;
    }
    .cev-gdpr-btn {
        border: 2px solid currentColor;
    }
}


/* GDPR Reduced Motion Support */

@media (prefers-reduced-motion: reduce) {
    .cev-gdpr-banner,
    .cev-gdpr-btn {
        animation: none;
        transition: none;
    }
    .cev-gdpr-btn:hover {
        transform: none;
    }
}


/* ========================================
   LADIES LISTING STYLES
   ======================================== */


/* Ladies Container */

.cev-ladies-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}


/* Filters Section */

.cev-ladies-filters {
    background: #ffffff;
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e9ecef;
}

.cev-filter-row {
    display: flex;
    gap: 20px;
    align-items: end;
    flex-wrap: wrap;
}

.cev-filter-group {
    flex: 1;
    min-width: 200px;
}

.cev-filter-group label {
    display: block;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 8px;
    font-size: 14px;
}

.cev-filter-select {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 14px;
    background: #ffffff;
    transition: all 0.3s ease;
    cursor: pointer;
}

.cev-filter-select:focus {
    outline: none;
    border-color: #e74c3c;
    box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.1);
}

.cev-filter-select:hover {
    border-color: #dee2e6;
}


/* Secondary Button */

.cev-btn-secondary {
    background: linear-gradient(135deg, #6c757d, #495057);
    color: white;
    box-shadow: 0 4px 15px rgba(108, 117, 125, 0.3);
}

.cev-btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(108, 117, 125, 0.4);
    background: linear-gradient(135deg, #5a6268, #343a40);
}


/* Primary Button */

.cev-btn-primary {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.cev-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(231, 76, 60, 0.4);
    background: linear-gradient(135deg, #c0392b, #a93226);
    color: white;
    text-decoration: none;
}


/* Loading Spinner */

.cev-loading {
    text-align: center;
    padding: 40px 20px;
}

.cev-spinner {
    width: 40px;
    height: 40px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #e74c3c;
    border-radius: 50%;
    animation: cevSpin 1s linear infinite;
    margin: 0 auto 15px;
}

.cev-loading p {
    color: #7f8c8d;
    font-size: 16px;
    margin: 0;
}


/* Ladies Grid */

.cev-ladies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}


/* Lady Card */

.cev-lady-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
    position: relative;
}

.cev-lady-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.cev-lady-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.cev-lady-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.cev-lady-card:hover .cev-lady-image img {
    transform: scale(1.05);
}

.cev-lady-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(231, 76, 60, 0.8), rgba(192, 57, 43, 0.8));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.cev-lady-card:hover .cev-lady-overlay {
    opacity: 1;
}

.cev-lady-info {
    padding: 20px;
}

.cev-lady-name {
    font-size: 20px;
    font-weight: 700;
    color: #2c3e50;
    margin: 0 0 10px 0;
    line-height: 1.2;
}

.cev-lady-details {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.cev-lady-age,
.cev-lady-location {
    background: #f8f9fa;
    color: #6c757d;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cev-lady-features {
    display: flex;
    gap: 8px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.cev-feature-tag {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
    padding: 4px 10px;
    border-radius: 15px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cev-lady-interests {
    font-size: 13px;
    color: #6c757d;
    line-height: 1.4;
}

.cev-lady-interests strong {
    color: #2c3e50;
}


/* No Results */

.cev-no-results {
    text-align: center;
    padding: 60px 20px;
    grid-column: 1 / -1;
}

.cev-no-results p {
    font-size: 18px;
    color: #7f8c8d;
    margin: 0;
}


/* Pagination */

.cev-pagination {
    text-align: center;
    margin-top: 40px;
}

.cev-pagination-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.cev-pagination-btn {
    padding: 10px 15px;
    border: 2px solid #e9ecef;
    background: #ffffff;
    color: #6c757d;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    min-width: 40px;
}

.cev-pagination-btn:hover {
    border-color: #e74c3c;
    color: #e74c3c;
    transform: translateY(-2px);
}

.cev-pagination-current {
    padding: 10px 15px;
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
    border-radius: 8px;
    font-weight: 600;
    min-width: 40px;
    display: inline-block;
}


/* ========================================
   RESPONSIVE DESIGN FOR LADIES LISTING
   ======================================== */

@media (max-width: 768px) {
    .cev-ladies-container {
        padding: 15px;
    }
    .cev-ladies-filters {
        padding: 20px;
        margin-bottom: 25px;
    }
    .cev-filter-row {
        flex-direction: column;
        gap: 15px;
    }
    .cev-filter-group {
        min-width: 100%;
    }
    .cev-ladies-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 20px;
    }
    .cev-lady-image {
        height: 220px;
    }
    .cev-lady-info {
        padding: 15px;
    }
    .cev-lady-name {
        font-size: 18px;
    }
    .cev-lady-details {
        gap: 10px;
    }
    .cev-lady-features {
        gap: 6px;
    }
    .cev-pagination-wrapper {
        gap: 8px;
    }
    .cev-pagination-btn {
        padding: 8px 12px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .cev-ladies-container {
        padding: 10px;
    }
    .cev-ladies-filters {
        padding: 15px;
    }
    .cev-ladies-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    .cev-lady-image {
        height: 200px;
    }
    .cev-lady-info {
        padding: 12px;
    }
    .cev-lady-name {
        font-size: 16px;
    }
    .cev-lady-details {
        flex-direction: column;
        gap: 8px;
    }
    .cev-lady-age,
    .cev-lady-location {
        align-self: flex-start;
    }
    .cev-pagination-btn {
        padding: 6px 10px;
        font-size: 12px;
        min-width: 35px;
    }
    .cev-pagination-current {
        padding: 6px 10px;
        font-size: 12px;
        min-width: 35px;
    }
}


/* Load More Button */

.cev-load-more-wrapper {
    text-align: center;
    margin: 40px 0;
}

.cev-load-more-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
    position: relative;
    overflow: hidden;
}

.cev-load-more-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.cev-load-more-btn:active {
    transform: translateY(0);
}

.cev-load-more-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.cev-load-more-spinner {
    display: inline-block;
    margin-left: 8px;
}

.cev-load-more-spinner i {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}


/* Responsive Load More */

@media (max-width: 768px) {
    .cev-load-more-btn {
        padding: 12px 24px;
        font-size: 14px;
    }
}