/* Eyeliv — Bundled CSS (auto-generated by build-css.js) */

/* === ./css/base/variables.css === */
:root {
    --black: #050505;
    /* Deeper black for more seriousness */
    --white: #FFFFFF;
    --off-white: #F4F4F5;
    /* Slightly cooler off-white */
    --gray-light: #E5E7EB;
    --gray: #6B7280;
    --gray-dark: #1F2937;
    /* Darker, more slate-like gray */
    --gold: #C5A059;
    /* More muted, sophisticated gold */
    --gold-light: #EBE1CE;

    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;

    --transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

/* === ./css/base/reset.css === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--black);
    background-color: var(--white);
    overflow-x: hidden;
}

/* === ./css/base/typography.css === */
h1,
h2,
h3,
h4,
.logo-font {
    font-family: var(--font-heading);
    font-weight: 500;
    color: var(--black);
}

h1 {
    font-size: clamp(3rem, 6vw, 5.5rem);
    line-height: 1.05;
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
}

h2 {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    line-height: 1.15;
    margin-bottom: 2rem;
    letter-spacing: -0.01em;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

p {
    margin-bottom: 1.5rem;
    color: var(--gray-dark);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

.center {
    text-align: center;
}

.subheading {
    display: block;
    font-family: var(--font-body);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 1rem;
    color: var(--white);
}

.subheading.dark {
    color: var(--gray);
}

.gold-text {
    color: var(--gold) !important;
}

/* === ./css/base/utilities.css === */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 5%;
}

.section-padding {
    padding: 120px 0;
}

/* Utilities */
.bg-black {
    background-color: var(--black);
}

.bg-gray {
    background-color: var(--off-white);
}

.text-white {
    color: var(--white);
}

.text-white h1,
.text-white h2,
.text-white h3,
.text-white h4 {
    color: var(--white);
}

.text-white p {
    color: var(--gray-light);
}

.divider {
    width: 60px;
    height: 2px;
    background-color: var(--black);
    margin: 2rem 0;
}

.divider.center {
    margin: 2rem auto;
}

.divider.gold-bg {
    background-color: var(--gold);
}

/* === ./css/components/buttons.css === */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.5rem;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 500;
    cursor: pointer;
    border: none;
    transition: var(--transition);
}

.btn-primary {
    background-color: var(--gold);
    color: var(--black);
}

.btn-primary:hover {
    background-color: var(--black);
    color: var(--white);
}

.btn-outline {
    background-color: transparent;
    color: var(--white);
    border: 1px solid var(--white);
}

.btn-outline:hover {
    background-color: var(--white);
    color: var(--black);
}

.btn-outline.dark-border {
    color: var(--black);
    border: 1px solid var(--black);
}

.btn-outline.dark-border:hover {
    background-color: var(--black);
    color: var(--white);
}

/* === ./css/components/badges.css === */
.product-info p.price {
    font-size: 1.25rem;
    color: var(--gold);
    font-weight: 500;
}

.old-price {
    text-decoration: line-through;
    color: var(--gray);
    font-size: 0.9rem;
    margin-right: 0.5rem;
}

/* Sale Badge */
.sale-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background-color: #E11D48;
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.4rem 0.8rem;
    border-radius: 4px;
    z-index: 5;
    letter-spacing: 0.05em;
    /* Animation moved to full card outline */
}

/* Sale Glow Outline */
.product-card.on-sale {
    animation: outlinePulse 2s infinite cubic-bezier(0.4, 0, 0.6, 1);
    position: relative;
    border: 2px solid transparent;
}

@keyframes outlinePulse {
    0% {
        box-shadow: 0 0 0 0 rgba(225, 29, 72, 0.7);
        border-color: rgba(225, 29, 72, 0);
    }

    50% {
        box-shadow: 0 0 0 15px rgba(225, 29, 72, 0);
        border-color: rgba(225, 29, 72, 0.8);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(225, 29, 72, 0);
        border-color: rgba(225, 29, 72, 0);
    }
}

/* === ./css/components/modals.css === */
/* Apple-style Modal */
.product-modal {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    z-index: 3000;
    transition: right 0.3s ease-in-out;
    overflow-y: auto;
    padding: 2rem;
}

/* Modal Specs Area */
.modal-specs {
    margin: 2rem 0;
    padding: 1.5rem;
    background: rgba(0, 0, 0, 0.03);
    border-radius: 8px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.specs-title {
    color: var(--gold);
    font-family: var(--font-heading);
    font-size: 1.25rem;
    margin-bottom: 1rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.specs-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.specs-list li {
    display: flex;
    align-items: flex-start;
    color: var(--gray-dark);
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 0.75rem;
}

.specs-list li:last-child {
    margin-bottom: 0;
}

.specs-list i {
    width: 16px;
    height: 16px;
    margin-right: 12px;
    flex-shrink: 0;
    margin-top: 2px;
}

.specs-list strong {
    font-weight: 600;
    color: var(--black);
    margin-right: 6px;
}

/* === ./css/components/prescription.css === */
/* Prescription Modal Styles */
#prescription-modal {
    display: none;
    /* Hidden by default */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    z-index: 5000;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

#prescription-modal.active {
    display: flex;
    opacity: 1;
}

#prescription-modal .modal-content {
    background: var(--white);
    border-radius: 12px;
    width: 90%;
    max-width: 800px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    transform: translateY(20px);
    transition: transform 0.3s ease;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

#prescription-modal.active .modal-content {
    transform: translateY(0);
}

#prescription-modal .close-modal {
    background: transparent;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: var(--gray-dark);
    transition: color 0.3s;
    position: absolute;
    right: 1.5rem;
    top: 1rem;
}

#prescription-modal .close-modal:hover {
    color: var(--primary);
}

/* Custom Scrollbar for Modal */
#prescription-modal .modal-content::-webkit-scrollbar {
    width: 8px;
}

#prescription-modal .modal-content::-webkit-scrollbar-track {
    background: var(--off-white);
    border-radius: 0 12px 12px 0;
}

#prescription-modal .modal-content::-webkit-scrollbar-thumb {
    background: var(--gray-light);
    border-radius: 4px;
}

#prescription-modal .modal-content::-webkit-scrollbar-thumb:hover {
    background: var(--gray);
}

/* === ./css/components/appointment.css === */
/* Appointment Modal Styles */
#appointment-modal {
    display: none;
    /* Hidden by default */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    z-index: 5000;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

#appointment-modal.active {
    display: flex;
    opacity: 1;
}

#appointment-modal .modal-content {
    background: var(--off-white, #f8f9fa);
    border-radius: 12px;
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    transform: translateY(20px);
    transition: transform 0.3s ease;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

#appointment-modal.active .modal-content {
    transform: translateY(0);
}

#appointment-modal .close-modal {
    background: transparent;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: var(--gray-dark);
    transition: color 0.3s;
    position: absolute;
    right: 1.5rem;
    top: 1rem;
    z-index: 10;
}

#appointment-modal .close-modal:hover {
    color: var(--primary);
}

#appointment-modal .form-control {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--gray-light, #e2e8f0);
    border-radius: 6px;
    font-size: 1rem;
    color: var(--gray-dark, #4a5568);
    background-color: var(--white, #ffffff);
    transition: border-color 0.3s, box-shadow 0.3s;
}

#appointment-modal .form-control:focus {
    outline: none;
    border-color: #009688;
    /* Teal Primary */
    box-shadow: 0 0 0 3px rgba(0, 150, 136, 0.1);
}

#appointment-modal .btn {
    cursor: pointer;
    transition: all 0.3s ease;
}

#appointment-modal .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

/* Custom Scrollbar */
#appointment-modal .modal-content::-webkit-scrollbar {
    width: 8px;
}

#appointment-modal .modal-content::-webkit-scrollbar-track {
    background: var(--off-white, #f8f9fa);
    border-radius: 0 12px 12px 0;
}

#appointment-modal .modal-content::-webkit-scrollbar-thumb {
    background: var(--gray-light, #e2e8f0);
    border-radius: 4px;
}

#appointment-modal .modal-content::-webkit-scrollbar-thumb:hover {
    background: var(--gray, #a0aec0);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    #appointment-modal .modal-content {
        width: 95%;
        border-radius: 12px;
    }

    #appointment-step-1>div[style*="grid-template-columns: 1fr 1fr"] {
        grid-template-columns: 1fr !important;
    }

    #appointment-step-2>div[style*="grid-template-columns: 1fr 1fr"] {
        grid-template-columns: 1fr !important;
    }

    #appointment-modal .form-control[style*="width: 50%"] {
        width: 100% !important;
    }
}

/* === ./css/components/product-modal-extended.css === */
/* Apple-style Product Modal Elements */
.product-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--white);
    z-index: 9999;
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    transform: translateY(100%);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.6s ease, visibility 0.6s;
    display: flex;
    flex-direction: column;
}

.product-modal.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.modal-close {
    position: fixed;
    top: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background-color: var(--off-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10000;
    transition: var(--transition);
}

.modal-close:hover {
    background-color: var(--gray-light);
    transform: scale(1.1);
}

.modal-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 6rem 5% 4rem 5%;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.modal-header {
    text-align: center;
    margin-bottom: 3rem;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease 0.2s;
}

.product-modal.active .modal-header {
    opacity: 1;
    transform: translateY(0);
}

.modal-subheading {
    display: block;
    font-size: 1.5rem;
    color: var(--gray);
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.modal-title {
    font-size: clamp(3rem, 7vw, 6rem);
    background: linear-gradient(135deg, var(--black) 0%, var(--gray) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0;
    letter-spacing: -0.03em;
}

.modal-image-container {
    width: 100%;
    max-width: 100%;
    height: auto;
    min-height: 850px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 4rem;
    opacity: 0;
    transform: scale(0.95);
    transition: all 1s cubic-bezier(0.16, 1, 0.3, 1) 0.4s;
}

.product-modal.active .modal-image-container {
    opacity: 1;
    transform: scale(1);
}

.modal-product-img {
    width: 100%;
    height: 95vh;
    min-height: 850px;
    max-height: none;
    object-fit: contain;
    filter: drop-shadow(0 30px 40px rgba(0, 0, 0, 0.1));
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), filter 0.4s ease;
    cursor: zoom-in;
}

.modal-product-img.img-zoomed {
    transform: scale(1.8);
    cursor: zoom-out;
    filter: drop-shadow(0 50px 60px rgba(0, 0, 0, 0.3));
    z-index: 1000;
    position: relative;
}

.modal-thumbnails {
    display: flex;
    gap: 10px;
    margin-top: 15px;
    justify-content: center;
    overflow-x: auto;
    padding-bottom: 5px;
    max-width: 100%;
    -webkit-overflow-scrolling: touch;
}

@media (max-width: 768px) {
    .modal-image-container {
        min-height: 400px;
    }

    .modal-product-img {
        height: 55vh;
        min-height: 350px;
        max-height: 500px;
    }

    .modal-thumbnails {
        justify-content: flex-start;
    }
}

.modal-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    width: 100%;
    margin-bottom: 4rem;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease 0.6s;
}

.product-modal.active .modal-details {
    opacity: 1;
    transform: translateY(0);
}

.detail-item {
    text-align: center;
}

.detail-item i {
    width: 40px;
    height: 40px;
    color: var(--black);
    margin-bottom: 1.5rem;
}

.detail-item h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.modal-action {
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease 0.8s;
}

.product-modal.active .modal-action {
    opacity: 1;
    transform: translateY(0);
}

.modal-action .modal-price {
    font-size: 2rem;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 1.5rem;
}

/* === ./css/components/checkout.css === */
/* Simulated Checkout UI */
.checkout-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    z-index: 11000;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    overflow-y: auto;
    padding: 2rem 0;
}

.checkout-overlay.active {
    opacity: 1;
    visibility: visible;
}

.checkout-container {
    background-color: var(--white);
    width: 100%;
    max-width: 500px;
    border-radius: 8px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    position: relative;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    flex-shrink: 0;
}

.checkout-overlay.active .checkout-container {
    transform: translateY(0);
}

.checkout-header {
    background-color: var(--off-white);
    padding: 2rem;
    border-bottom: 1px solid var(--gray-light);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.checkout-title {
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
    color: var(--gray-dark);
}

.checkout-subtitle {
    font-weight: 500;
    color: var(--black);
    margin: 0;
    font-size: 1.25rem;
}

.checkout-price-display {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--black);
}

.checkout-form {
    padding: 2rem;
}

.form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--gray-dark);
    margin-bottom: 0.5rem;
}

.form-input {
    width: 100%;
    padding: 1rem;
    border: 1px solid var(--gray-light);
    border-radius: 6px;
    font-family: var(--font-body);
    font-size: 1rem;
    outline: none;
    transition: border-color 0.2s;
}

.form-input:focus {
    border-color: var(--gold);
}



.checkout-btn {
    width: 100%;
    margin-top: 2rem;
    border-radius: 6px;
    padding: 1.25rem;
    font-size: 1.1rem;
    display: flex;
    justify-content: space-between;
}

.checkout-footer {
    text-align: center;
    margin-top: 1.5rem;
    font-size: 0.8rem;
    color: var(--gray);
    display: flex;
    align-items: center;
    justify-content: center;
}

.checkout-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--gray);
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background-color 0.2s;
}

.checkout-close:hover {
    background-color: var(--gray-light);
    color: var(--black);
}

/* Success State */
.success-message {
    padding: 4rem 2rem;
    text-align: center;
    display: none;
}

.success-message.active {
    display: block;
}

.success-icon {
    width: 80px;
    height: 80px;
    background-color: #10B981;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem auto;
}

.success-icon i {
    width: 40px;
    height: 40px;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* Measurement Selector Styling */
.measurement-field-wrapper {
    background-color: var(--off-white);
    padding: 1.25rem;
    border-radius: 10px;
    border: 1px solid var(--gray-light);
    margin: 1.5rem 0;
    animation: fadeInModal 0.5s ease;
}

.measurement-label {
    display: flex !important;
    align-items: center;
    color: var(--black) !important;
    font-weight: 600 !important;
    margin-bottom: 0.75rem !important;
    font-size: 0.95rem !important;
}

.measurement-label i {
    color: var(--gold);
}

.custom-select-wrapper {
    position: relative;
    width: 100%;
}

.measurement-select {
    appearance: none;
    -webkit-appearance: none;
    background-color: var(--white);
    border: 2px solid var(--gray-light) !important;
    padding-right: 3rem !important;
    font-weight: 500;
    color: var(--black);
    cursor: pointer;
    transition: all 0.3s ease;
}

.measurement-select:focus {
    border-color: var(--gold) !important;
    box-shadow: 0 0 0 4px rgba(193, 155, 108, 0.1);
}

.select-icon {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    color: var(--gold);
    display: flex;
    align-items: center;
}

.measurement-help {
    font-size: 0.75rem;
    color: var(--gray);
    margin-top: 0.5rem;
    margin-bottom: 0;
}

@keyframes fadeInModal {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Mobile Adjustments for Measurement Selector */
@media (max-width: 480px) {
    .measurement-field-wrapper {
        padding: 1rem;
        margin: 1rem 0;
    }

    .measurement-label {
        font-size: 0.85rem !important;
    }

    .measurement-select {
        padding: 0.8rem !important;
        font-size: 16px !important; /* Prevent iOS zoom */
    }
    
    .checkout-container {
        max-width: 100%;
        border-radius: 0;
    }

    .checkout-overlay {
        padding: 0;
    }

    .checkout-form {
        padding: 1.25rem;
    }
}

/* === ./css/components/promo.css === */
/* Entry Promo Modal (Google Sign In) */
.promo-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    z-index: 20000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease;
}

.promo-modal.active {
    opacity: 1;
    visibility: visible;
}

.promo-container {
    background-color: var(--white);
    width: 90%;
    max-width: 900px;
    min-height: 450px;
    max-height: 90vh;
    border-radius: 16px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
    position: relative;
    transform: scale(0.95);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    overflow: hidden;
}

.promo-modal.active .promo-container {
    transform: scale(1);
}

.promo-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(4px);
    border: none;
    cursor: pointer;
    color: var(--black);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    z-index: 10;
    transition: var(--transition);
}

.promo-close:hover {
    background: var(--gray-light);
    transform: scale(1.1);
}

.promo-image-side {
    width: 45%;
    position: relative;
    background-color: var(--black);
}

.promo-image-side img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
}

.promo-overlay-text {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    color: var(--white);
}

.promo-overlay-text h3 {
    font-size: 2.5rem;
    line-height: 1.1;
    margin: 0;
    font-family: var(--font-heading);
}

.promo-content-side {
    width: 55%;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow-y: auto;
    max-height: 100%;
}

.promo-content-side h2 {
    font-size: 2.2rem;
    margin-bottom: 0.75rem;
    line-height: 1.2;
}

.promo-content-side p {
    font-size: 1.05rem;
    color: var(--gray-dark);
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.btn-google {
    width: 100%;
    background-color: var(--white);
    color: var(--gray-dark);
    border: 1px solid var(--gray-light);
    border-radius: 8px;
    padding: 1rem;
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.btn-google:hover {
    background-color: var(--off-white);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.google-icon {
    width: 24px;
    height: 24px;
    margin-right: 12px;
}

.promo-disclaimer {
    font-size: 0.75rem !important;
    color: var(--gray) !important;
    margin-top: 1.5rem !important;
    text-align: center;
    line-height: 1.4 !important;
}

.promo-success {
    text-align: center;
    animation: fadeUpAnim 0.5s ease forwards;
}

/* Responsive Modal */
@media (max-width: 768px) {
    .promo-container {
        flex-direction: column;
        height: auto;
        max-height: 90vh;
        overflow-y: auto;
    }

    .promo-image-side {
        width: 100%;
        height: 200px;
    }

    .promo-content-side {
        width: 100%;
        padding: 2.5rem 2rem;
    }

    .promo-overlay-text h3 {
        font-size: 2rem;
    }
}

/* === ./css/components/cookies.css === */
/* Cookie Consent Banner */
.cookie-banner {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    right: 2rem;
    max-width: 900px;
    margin: 0 auto;
    background-color: var(--white);
    border: 1px solid var(--gray-light);
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    z-index: 15000;
    padding: 1.5rem 2rem;
    transform: translateY(150%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.cookie-banner.show {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.cookie-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 3rem;
}

.cookie-text h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    color: var(--black);
}

.cookie-text p {
    font-size: 0.875rem;
    margin-bottom: 0;
    color: var(--gray);
    line-height: 1.5;
}

.cookie-actions {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

.cookie-actions .btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.8rem;
}

@media (max-width: 768px) {
    .cookie-banner {
        bottom: 1rem;
        left: 1rem;
        right: 1rem;
        padding: 1.5rem;
    }

    .cookie-content {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }

    .cookie-text h4 {
        justify-content: center;
    }

    .cookie-actions {
        width: 100%;
        flex-direction: column;
    }

    .cookie-actions .btn {
        width: 100%;
    }
}

/* === ./css/layouts/header.css === */
/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: transparent;
    padding: 1.5rem 0;
    z-index: 2000;
    /* Higher than sub-nav */
    transition: var(--transition);
}

.navbar.scrolled,
.navbar.navbar-solid {
    background-color: var(--white);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    padding: 1rem 0;
}

.navbar.scrolled .nav-links a,
.navbar.scrolled .menu-toggle,
.navbar.navbar-solid .nav-links a,
.navbar.navbar-solid .menu-toggle,
.navbar.menu-open .menu-toggle {
    color: var(--black);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 1001;
    /* Higher than .mobile-menu */
}

.logo-link {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.logo-link picture {
    display: flex;
    align-items: center;
    line-height: 0;
}

.logo {
    height: 40px;
    width: auto;
    max-width: none;
    object-fit: contain;
    transition: var(--transition);
}

.navbar:not(.scrolled):not(.navbar-solid) .logo {
    filter: brightness(0) invert(1);
}

.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-links a {
    color: var(--white);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--gold);
    transition: var(--transition);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.menu-toggle {
    display: block;
    background: none;
    border: none;
    color: var(--white);
    cursor: pointer;
}

/* === ./css/layouts/navigation.css === */
.mobile-menu {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    /* Changed from center to allow scrolling */
    align-items: center;
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 100px 5% 40px;
    /* Added top padding to clear header */
    transition: var(--transition);
    z-index: 1000;
    overflow-y: auto;
    /* Allow scrolling if content is too tall */
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu a {
    color: var(--gray-dark);
    font-size: 1.5rem;
    /* Reduced from 2rem per user feedback */
    font-family: var(--font-heading);
    padding: 0.75rem 0;
    /* Reduced padding */
    margin: 0.25rem 0;
    text-decoration: none;
    transition: var(--transition);
    opacity: 0;
    transform: translateY(20px);
}

.mobile-menu.active a {
    opacity: 1;
    transform: translateY(0);
}

.mobile-menu.active a:nth-child(1) {
    transition-delay: 0.1s;
}

.mobile-menu.active a:nth-child(2) {
    transition-delay: 0.15s;
}

.mobile-menu.active a:nth-child(3) {
    transition-delay: 0.2s;
}

.mobile-menu.active a:nth-child(4) {
    transition-delay: 0.25s;
}

.mobile-menu.active a:nth-child(5) {
    transition-delay: 0.3s;
}

.mobile-menu.active a:nth-child(6) {
    transition-delay: 0.35s;
}

.mobile-menu a:hover,
.mobile-menu a:focus {
    color: var(--gold);
    transform: scale(1.05);
}

.mobile-menu a.btn {
    font-family: var(--font-body);
    font-size: 1rem;
    padding: 1rem 2.5rem;
    margin-top: 2rem;
    background: var(--black);
    color: var(--white);
    border-radius: 30px;
    letter-spacing: 0.05em;
    transform: translateY(20px);
}

.mobile-menu.active a.btn {
    transform: translateY(0);
}

.mobile-menu a.btn:hover {
    background: var(--gold);
    color: var(--white);
    transform: scale(1.05) translateY(0);
}

.mobile-socials {
    display: flex;
    flex-direction: row;
    gap: 1.5rem;
    margin-top: 3rem;
    opacity: 0;
    transform: translateY(20px);
    transition: var(--transition);
    transition-delay: 0.4s;
}

.mobile-menu.active .mobile-socials {
    opacity: 1;
    transform: translateY(0);
}

.mobile-socials a {
    margin: 0;
    padding: 0;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gray-light);
    border-radius: 50%;
    color: var(--black);
    font-size: 1.2rem;
}

.mobile-socials a:hover {
    background: var(--black);
    color: var(--white);
    transform: scale(1.1);
}

/* Secondary Sub-Navbar */
.sub-navbar {
    background-color: transparent;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    /* Subtle transparent separator */
    padding: 0.75rem 0;
    position: fixed;
    top: 88px;
    /* Correct height below main navbar */
    left: 0;
    width: 100%;
    z-index: 1000;
    /* Lower than main nav, higher than content */
    transition: var(--transition);
    overflow: hidden;
    /* Prevent sub-nav content from expanding the page width */
}

.sub-navbar.scrolled,
.sub-navbar.navbar-solid {
    top: 72px;
    /* Adjust when main nav shrinks */
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--gray-light);
}

.sub-nav-content {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    align-items: center;
    overflow-x: auto;
    /* Allow scrolling on smaller screens if needed */
    scrollbar-width: none;
    /* Hide scrollbar Firefox */
    width: 100%;
    max-width: 100vw;
    padding: 0 1rem;
}

.sub-nav-content::-webkit-scrollbar {
    display: none;
    /* Hide scrollbar Chrome/Safari */
}

.sub-nav-content a {
    color: rgba(255, 255, 255, 0.8);
    /* White/gray text by default to match hero image */
    font-size: 0.85rem;
    font-weight: 500;
    white-space: nowrap;
    transition: var(--transition);
}

.sub-navbar.navbar-solid a {
    color: var(--gray-dark);
}

.sub-nav-content a:hover {
    color: var(--white);
}

.sub-navbar.scrolled .sub-nav-content a,
.sub-navbar.navbar-solid .sub-nav-content a {
    color: var(--gray-dark);
}

.sub-navbar.scrolled .sub-nav-content a:hover,
.sub-navbar.navbar-solid .sub-nav-content a:hover {
    color: var(--gold);
}

.sub-nav-content a.sale-link {
    color: #FF476B;
    /* Brighter red on dark background */
    font-weight: 600;
}

.sub-navbar.scrolled .sub-nav-content a.sale-link,
.sub-navbar.navbar-solid .sub-nav-content a.sale-link {
    color: #E11D48;
    /* Darker red on light background */
}

/* Adjust layout for sub-nav */
.sub-navbar.scrolled {
    background-color: rgba(244, 244, 245, 0.95);
    backdrop-filter: blur(10px);
}

@media (max-width: 992px) {
    .sub-nav-content {
        justify-content: flex-start;
        padding-bottom: 0.25rem;
        padding-left: 1rem;
        padding-right: 1rem;
    }
}

@media (max-width: 768px) {
    .sub-navbar {
        top: 70px;
        /* Adjust for shorter mobile header */
        padding: 0.5rem 0;
    }
}

@media (max-width: 768px) {
    .sub-navbar {
        top: 70px;
        /* Adjusted for smaller mobile nav */
    }

    .sub-navbar.scrolled,
    .sub-navbar.navbar-solid {
        top: 60px;
    }

    .sub-nav-content {
        gap: 1.5rem;
        /* Smaller gaps on mobile */
    }
}

/* Sticky Social Bar */
.sticky-social-bar {
    position: fixed;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 1rem 0.75rem;
    border-radius: 12px 0 0 12px;
    box-shadow: -4px 0 15px rgba(0, 0, 0, 0.05);
    z-index: 990;
    transition: var(--transition);
}

.sticky-social-bar a {
    color: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--gray-light);
    transition: var(--transition);
}

.sticky-social-bar a:hover {
    color: var(--white);
}

.sticky-social-bar a.bg-ig:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.sticky-social-bar a.bg-tiktok:hover {
    background: #000;
}

@media (max-width: 768px) {
    .sticky-social-bar {
        display: none;
        /* Hide on very small screens to save space, will use mobile menu instead */
    }
}

/* === ./css/layouts/footer.css === */
/* Footer */
.footer {
    background-color: var(--black);
    color: var(--white);
    padding-top: 80px;
}

.footer p {
    color: var(--gray);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-logo {
    height: 50px;
    margin-bottom: 1.5rem;
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border: 1px solid var(--gray-dark);
    border-radius: 50%;
    margin-right: 1rem;
    color: var(--white);
}

.social-link:hover {
    background-color: var(--gold);
    border-color: var(--gold);
    color: var(--black);
}

.footer-bottom {
    border-top: 1px solid var(--gray-dark);
    padding: 2rem 5%;
    text-align: center;
}

/* === ./css/sections/hero.css === */
/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    padding-top: 140px;
}

.hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.hero-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(10, 10, 10, 0.4), rgba(10, 10, 10, 0.7));
}

.hero-content {
    max-width: 800px;
}

.hero-content h1 {
    color: var(--white);
}

.hero-content p {
    color: var(--gray-light);
    font-size: 1.25rem;
    max-width: 600px;
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    margin-top: 3rem;
}

/* === ./css/sections/collection.css === */
/* Collection */
.collection-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.collection-image-wrapper {
    position: relative;
}

/* ─── Crossfade Carousel ─── */
.collection-carousel {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border-radius: 4px;
    z-index: 2;
    background: var(--off-white);
}

.collection-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transform: scale(1.05);
    transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1),
        transform 6s cubic-bezier(0.25, 1, 0.5, 1);
    will-change: opacity, transform;
}

.collection-slide.active {
    opacity: 1;
    transform: scale(1);
}

/* Subtle zoom-out on the outgoing slide */
.collection-slide.fade-out {
    opacity: 0;
    transform: scale(0.97);
    transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1),
        transform 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ─── Progress Dots ─── */
.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 1.25rem;
    position: relative;
    z-index: 3;
}

.carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gray-light);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: transform 0.4s ease, opacity 0.4s ease;
    will-change: transform, opacity;
}

.carousel-dot.active {
    background: var(--gold);
    transform: scaleX(3);
    border-radius: 4px;
}

/* ─── Gold accent box (keep existing) ─── */
.gold-accent-box {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 50%;
    height: 50%;
    border: 2px solid var(--gold);
    z-index: 1;
}

/* === ./css/sections/catalog.css === */
/* Catalog / Products */
.catalog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2.5rem;
}

.product-card {
    transition: var(--transition);
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-image {
    position: relative;
    background-color: var(--off-white);
    padding: 2rem;
    overflow: hidden;
    aspect-ratio: 1/1;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.product-image img {
    width: 90%;
    height: auto;
    object-fit: contain;
    transition: transform 0.6s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.product-info {
    text-align: center;
}

.product-info h3 {
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
    color: var(--black);
}

.price {
    color: var(--gold);
    font-weight: 500;
    font-size: 1.1rem;
    margin: 0;
}

/* === ./css/sections/gallery.css === */
/* Model Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.gallery-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 4 / 5;
    background-color: var(--black);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    opacity: 0.9;
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2rem 1.5rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%);
    color: var(--white);
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.4s ease;
    display: flex;
    align-items: flex-end;
}

.gallery-overlay span {
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    font-family: var(--font-heading);
}

.gallery-item:hover img {
    transform: scale(1.05);
    opacity: 1;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
    opacity: 1;
}

/* === ./css/sections/reviews.css === */
/* Customer Reviews Section */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.review-card {
    background-color: var(--off-white);
    padding: 3rem 2rem;
    border-radius: 8px;
    position: relative;
    transition: var(--transition);
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.quote-icon {
    position: absolute;
    top: 2rem;
    right: 2rem;
    color: var(--gray-light);
    width: 40px;
    height: 40px;
    opacity: 0.5;
}

.review-stars {
    color: var(--gold);
    margin-bottom: 1.5rem;
    display: flex;
    gap: 0.25rem;
}

.review-stars i {
    width: 18px;
    height: 18px;
    fill: var(--gold);
}

.review-text {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--black);
    margin-bottom: 2rem;
    font-style: italic;
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.reviewer-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--gray-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: var(--gray-dark);
    font-family: var(--font-heading);
}

.reviewer-details h4 {
    margin: 0 0 0.25rem 0;
    font-size: 1rem;
    color: var(--black);
}

.reviewer-details p {
    margin: 0;
    font-size: 0.85rem;
    color: var(--gray);
}

@media (max-width: 768px) {
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .review-card {
        padding: 2rem 1.5rem;
    }
}

/* === ./css/sections/clinic.css === */
/* Clinic */
.clinic-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.clinic-image {
    position: relative;
}

.clinic-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.features-list {
    list-style: none;
    margin-top: 2rem;
}

.features-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

/* === ./css/sections/services.css === */
/* Services */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 5rem;
}

.service-card {
    background-color: var(--white);
    padding: 3rem 2.5rem;
    border: 1px solid var(--gray-light);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: var(--black);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.icon-wrapper {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--off-white);
    border-radius: 50%;
    margin-bottom: 2rem;
    color: var(--gold);
}

.service-card:hover .icon-wrapper {
    background-color: var(--gold);
    color: var(--black);
}

/* === ./css/sections/sorteos.css === */
/* Sorteos Section Styles */
.sorteos {
    position: relative;
    overflow: hidden;
}

.sorteos-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    max-width: 800px;
    margin: 0 auto;
}

.sorteo-status {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 12px;
    padding: 2.5rem;
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

@media (min-width: 768px) {
    .sorteo-status {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
}

.sorteo-info {
    flex: 1;
}

.sorteo-info h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.sorteo-timer {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 1rem;
    color: var(--gold);
}

.sorteo-prize {
    color: var(--gray-light);
    font-size: 0.95rem;
}

.sorteo-action {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.3);
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px dashed rgba(255, 255, 255, 0.1);
}

.ticket-display {
    text-align: center;
    margin-bottom: 1rem;
}

.ticket-label {
    display: block;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gray-light);
    margin-bottom: 0.5rem;
}

.ticket-number {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 600;
    color: var(--gold);
    line-height: 1;
    text-shadow: 0 2px 10px rgba(212, 175, 55, 0.3);
}

.success-text {
    color: #10B981;
    font-size: 0.9rem;
    font-weight: 500;
}

.sorteo-winners {
    background: rgba(212, 175, 55, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 12px;
    padding: 2.5rem;
    text-align: center;
}

.sorteo-winners h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--gold);
}

.sorteo-winners p {
    color: var(--gray-light);
    margin-bottom: 2rem;
}

.winner-tickets {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.winner-ticket {
    background: linear-gradient(135deg, var(--gold), #B8860B);
    color: var(--black);
    padding: 1rem 2rem;
    border-radius: 8px;
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
    animation: pulseGold 2s infinite;
}

@keyframes pulseGold {
    0% {
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.4);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(212, 175, 55, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0);
    }
}

/* === ./css/base/animations.css === */
/* Animations & Reveal */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUpAnim 1s ease forwards;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

@keyframes fadeUpAnim {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: all 0.8s ease;
}

.reveal-left.active,
.reveal-right.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: all 0.8s ease;
}

.reveal-scale {
    opacity: 0;
    transform: scale(0.95);
    transition: all 0.8s ease;
}

.reveal-scale.active {
    opacity: 1;
    transform: scale(1);
}

@keyframes pulseBadge {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(229, 57, 53, 0.4);
    }

    70% {
        transform: scale(1.02);
        box-shadow: 0 0 0 15px rgba(229, 57, 53, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(229, 57, 53, 0);
    }
}

.pulse-badge {
    animation: pulseBadge 2s infinite ease-in-out;
}

/* === ./css/base/responsive.css === */
/* Responsive */
@media (max-width: 992px) {

    .collection-split,
    .clinic-grid {
        grid-template-columns: 1fr;
    }

    .collection-image-wrapper {
        order: -1;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .navbar {
        height: 70px;
        padding: 0.5rem 0;
    }

    .sub-navbar {
        top: 60px;
        padding: 0.5rem 0;
    }

    .sub-navbar.scrolled {
        top: 60px;
    }

    .sub-nav-content {
        justify-content: flex-start;
        padding-bottom: 0px;
        gap: 1.5rem;
    }

    .desktop-menu,
    .nav-actions .btn {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .hero {
        padding-top: 140px;
    }

    .hero-cta {
        flex-direction: column;
    }

    h1 {
        font-size: 2.5rem;
    }

    .collection-split,
    .clinic-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    /* Fix grids that use minmax(300px) causing overflow on small screens */
    .catalog-grid,
    .gallery-grid,
    .services-grid {
        grid-template-columns: 1fr;
    }

    .modal-details {
        grid-template-columns: 1fr;
    }

    /* Hide gold accent box that overflows with right: -20px */
    .gold-accent-box {
        display: none;
    }

    /* Reduce large gaps on mobile */
    .collection-split,
    .clinic-grid {
        gap: 2rem;
    }
}
