/* 
   AUREVIAN SHOP DESIGN SYSTEM (PHASE 1)
   Unified Theme & Token Definition
*/

:root {
    /* BRAND PALETTE */
    --gold-primary: #d4af37;
    --gold-light: #eacda3;
    --gold-dark: #aa8c2c;

    --black-primary: #111827;
    /* Inter defaults */
    --black-secondary: #0f172a;
    /* Deep blue/black */

    --cream-bg: #fdfbf7;
    /* Warm premium background */
    --white-card: #ffffff;

    --gray-text: #4b5563;
    --gray-border: #e5e7eb;
    --gray-light: #f3f4f6;

    /* FUNCTIONAL */
    --success: #10b981;
    --error: #ef4444;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;

    /* ANIMATION */
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

/* BASE RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

body {
    background-color: var(--cream-bg);
    color: var(--black-primary);
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    color: var(--black-primary);
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.2s;
}

/* HEADER */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    background: rgba(253, 251, 247, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.logo img {
    height: 40px;
    mix-blend-mode: multiply;
    /* Ensures png sits well on cream */
    display: block;
}

/* BUTTONS */
.btn-primary {
    background-color: var(--black-primary);
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: var(--radius-sm);
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.2s ease;
    text-transform: uppercase;
    font-size: 13px;
}

.btn-primary:hover {
    background-color: var(--gold-primary);
    transform: translateY(-1px);
}

.btn-secondary {
    background: transparent;
    color: var(--black-primary);
    border: 1px solid var(--black-primary);
    padding: 10px 20px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all 0.2s;
}

.btn-secondary:hover {
    background: var(--black-primary);
    color: white;
}

/* CART DRAWER (PHASE 2 PREP) */
.cart-drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(4px);
    z-index: 9000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.cart-drawer-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.cart-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 450px;
    height: 100vh;
    background: white;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
    transform: translateX(100%);
    transition: transform 0.4s var(--ease-out);
    z-index: 9001;
    display: flex;
    flex-direction: column;
}

.cart-drawer.active {
    transform: translateX(0);
}

.cart-header {
    padding: 20px;
    border-bottom: 1px solid var(--gray-border);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
}

.cart-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px dashed var(--gray-border);
}

.cart-item img {
    width: 70px;
    height: 70px;
    object-fit: contain;
    border-radius: 8px;
    background: var(--gray-light);
}

.cart-footer {
    padding: 24px;
    background: var(--gray-light);
    border-top: 1px solid var(--gray-border);
}

/* UTILS */
.hidden {
    display: none !important;
}

.text-center {
    text-align: center;
}

.mt-20 {
    margin-top: 20px;
}

/* PRODUCT CARD (Common) */
.product-card {
    background: white;
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    border: 1px solid transparent;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px -10px rgba(0, 0, 0, 0.08);
    border-color: rgba(212, 175, 55, 0.2);
    /* Subtle gold hint */
}

/* --- INDEX.HTML SPECIFICS (Migrated) --- */

/* HERO SECTION */
.hero {
    height: 90vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    background: var(--cream-bg);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('/assets/Imagenes Comerciales/AurevianLogo-1920x1080.jpg') center center no-repeat;
    background-size: cover;
    /* Fixed: 150% led to pixelation */
    opacity: 0.15;
    z-index: 0;
}

.hero h1 {
    font-size: 4.5rem;
    line-height: 1.1;
    font-weight: 300;
    z-index: 1;
    letter-spacing: -0.02em;
}

.hero h1 span {
    font-family: 'Playfair Display', serif;
    font-size: 5rem;
    display: block;
}

.hero p {
    margin-top: 20px;
    font-size: 1.1rem;
    color: var(--gray-text);
    max-width: 500px;
    z-index: 1;
}

.cta-btn {
    margin-top: 40px;
    padding: 15px 45px;
    background: var(--black-primary);
    color: white;
    border: none;
    border-radius: 2px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
    cursor: pointer;
    z-index: 1;
    transition: all 0.3s ease;
}

.cta-btn:hover {
    transform: scale(1.05);
    background: #000;
}

/* CATALOG GRID */
.catalog {
    padding: 100px 5vw;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 400;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 40px;
}

/* PRODUCT CARD INDEX OVERRIDES */
/* PRODUCT CARD INDEX UI */
.product-image {
    width: 100%;
    height: 280px;
    /* Increased height */
    background: white;
    border-radius: 4px;
    margin-bottom: 0;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
    /* More breathing room for the vial */
}

.product-image img {
    height: 100%;
    width: 100%;
    object-fit: contain;
    transition: transform 0.5s ease;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.08));
}

.product-info {
    padding: 20px 25px;
    /* Added internal padding */
    text-align: left;
    /* Align left for cleaner look */
}

.product-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--black-primary);
    line-height: 1.25;
    min-height: 2.5em;
    /* Two lines consistency */
}

.product-info .price {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    color: var(--gray-text);
    margin-bottom: 15px;
}

.add-btn-minimal {
    width: 100%;
    margin-top: 15px;
    background: transparent;
    border: 1px solid #e5e7eb;
    padding: 14px 0;
    border-radius: 30px;
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 500;
    /* Regular weight for cleaner look */
    text-transform: uppercase;
    letter-spacing: 2px;
    /* Wider spacing */
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--black-primary);
    position: relative;
    overflow: hidden;
}

.add-btn-minimal::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: var(--black-primary);
    transition: width 0.3s ease;
    z-index: -1;
}

.add-btn-minimal:hover {
    color: white;
    border-color: var(--black-primary);
}

.add-btn-minimal:hover::before {
    width: 100%;
}

/* STICKY BAR */
.sticky-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(17, 24, 39, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 20px;
    padding-bottom: max(15px, env(safe-area-inset-bottom));
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 900;
    transform: translateY(150%);
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.sticky-bar.visible {
    transform: translateY(0);
}

.sticky-total {
    color: white;
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.sticky-total span {
    font-family: 'Inter', sans-serif;
    font-size: 0.7rem;
    color: #9ca3af;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.sticky-cta {
    background: white;
    color: var(--black-primary);
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    cursor: pointer;
}

/* MOBILE OPTIMIZATIONS */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.8rem;
    }

    .hero h1 span {
        font-size: 3.2rem;
    }
}


/* --- PRODUCT PAGE (producto.html) --- */

/* Header Override */
.simple-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 5%;
    border-bottom: 1px solid var(--gray-border);
    background: rgba(253, 251, 247, 0.9);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.back-link {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--gray-text);
    font-weight: 500;
    transition: color 0.2s;
}

.back-link:hover {
    color: var(--black-primary);
}

/* Layout */
.product-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: calc(100vh - 80px);
    /* Minus header */
}

/* Left: Image */
.image-side {
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 40px;
    border-right: 1px solid var(--gray-border);
    cursor: zoom-in;
}

.main-img {
    max-width: 90%;
    max-height: 80vh;
    object-fit: contain;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.1));
    transition: transform 0.3s ease;
}

.image-side:hover .main-img {
    transform: scale(1.02);
}

/* Right: Info */
.info-side {
    padding: 60px 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--cream-bg);
}

.product-tag {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gold-dark);
    font-weight: 700;
    margin-bottom: 20px;
}

.info-side h1 {
    font-size: 3rem;
    line-height: 1.1;
    margin-bottom: 15px;
    color: var(--black-primary);
}

.info-side .price {
    font-size: 1.5rem;
    font-weight: 400;
    /* Regular Playfair/Inter */
    color: var(--gray-text);
    margin-bottom: 40px;
    font-family: 'Inter', sans-serif;
}

/* Actions */
.actions {
    display: flex;
    gap: 15px;
    margin-bottom: 50px;
}

.add-btn {
    flex: 1;
    background-color: var(--black-primary);
    color: white;
    padding: 16px;
    border: none;
    border-radius: var(--radius-sm);
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 14px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.add-btn:hover {
    background-color: var(--gold-primary);
    transform: translateY(-2px);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.add-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

/* Accordion */
.accordion {
    border-top: 1px solid var(--gray-border);
}

.accordion-item {
    border-bottom: 1px solid var(--gray-border);
}

.accordion-header {
    padding: 24px 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 15px;
    color: var(--black-primary);
    transition: color 0.2s;
}

.accordion-header:hover {
    color: var(--gold-dark);
}

.accordion-content {
    display: none;
    padding-bottom: 24px;
    color: var(--gray-text);
    font-size: 14px;
    line-height: 1.7;
}

.accordion-content.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

/* Zoom Modal */
.zoom-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.95);
    z-index: 2000;
    justify-content: center;
    align-items: center;
    cursor: zoom-out;
}

.zoom-modal img {
    max-width: 90vw;
    max-height: 90vh;
    object-fit: contain;
}

.close-zoom {
    position: absolute;
    top: 30px;
    right: 30px;
    font-size: 40px;
    cursor: pointer;
}

/* Responsive */
@media (max-width: 900px) {
    .product-split {
        grid-template-columns: 1fr;
    }

    .image-side {
        height: 50vh;
        border-right: none;
        border-bottom: 1px solid var(--gray-border);
    }

    .info-side {
        padding: 40px 20px;
    }

    .info-side h1 {
        font-size: 2.2rem;
    }
}

/* --- CHECKOUT MODAL (Phase 3) --- */
.checkout-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    z-index: 9500;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.checkout-modal-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.checkout-modal {
    background: white;
    width: 90%;
    max-width: 500px;
    border-radius: var(--radius-md);
    padding: 30px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    transform: translateY(20px);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
}

.checkout-modal-overlay.active .checkout-modal {
    transform: translateY(0);
}

.checkout-header {
    margin-bottom: 25px;
    text-align: center;
}

.checkout-header h2 {
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.checkout-header p {
    color: var(--gray-text);
    font-size: 0.9rem;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--black-primary);
    margin-bottom: 5px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--gray-border);
    border-radius: var(--radius-sm);
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    transition: border-color 0.2s;
    background: var(--bg-cream);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--black-primary);
    background: white;
}

.btn-submit {
    width: 100%;
    background: #25D366;
    /* WhatsApp Brand Color */
    color: white;
    padding: 14px;
    border: none;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.2s;
    margin-top: 20px;
}

.btn-submit:hover {
    background: #1ebc57;
    transform: translateY(-1px);
}

.close-checkout {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 20px;
    color: var(--gray-text);
    cursor: pointer;
}

/* --- GENERIC MODAL (modal.js support) --- */
.modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.modal-backdrop.active {
    opacity: 1;
    pointer-events: all;
}

.modal-content {
    background: white;
    width: 90%;
    max-width: 450px;
    border-radius: var(--radius-md);
    padding: 0;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transform: scale(0.95);
    transition: transform 0.3s ease;
}

.modal-backdrop.active .modal-content {
    transform: scale(1);
}

.modal-header {
    padding: 20px;
    border-bottom: 1px solid var(--gray-border);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-title {
    font-size: 1.25rem;
    font-weight: 600;
}

.modal-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--gray-text);
}

.modal-body {
    padding: 24px;
    color: var(--black-primary);
}

.modal-footer {
    padding: 20px;
    background: var(--gray-light);
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}

/* --- ADVANCED MOBILE OPTIMIZATION --- */
@media (max-width: 768px) {

    /* 1. Header Compactness */
    nav {
        padding: 15px 20px;
    }

    .logo img {
        height: 35px;
        /* Slightly smaller logo */
    }

    /* 2. Hero Adjustments */
    .hero {
        height: auto;
        min-height: 80vh;
        /* Allow dynamic growth */
        padding: 100px 20px 40px;
        /* Space for fixed header */
    }

    .hero-bg {
        opacity: 0.2;
        /* Slightly more visible on mobile for impact */
    }

    .hero h1 {
        font-size: 3rem;
        /* Smaller main text */
    }

    .hero h1 span {
        font-size: 3.5rem;
    }

    .hero p {
        font-size: 1rem;
        padding: 0 10px;
        line-height: 1.5;
    }

    .cta-btn {
        padding: 15px 35px;
        width: 100%;
        max-width: 300px;
    }

    /* 3. Catalog & Grid */
    .catalog {
        padding: 60px 20px;
        /* Reduced top padding */
    }

    .section-header {
        margin-bottom: 40px;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    /* Force 1 column on very narrow screens, nice 2 col on larger phones if possible, 
       but minmax(280px) usually forces 1 col on <560px. 
       Let's adjust grid slightly for mobile to allow tighter packing if desired, 
       or keep spacious 1 col. 1 col is usually more "premium" on mobile. */
    .grid {
        grid-template-columns: 1fr;
        /* Force 1 column stack for cleaner look */
        gap: 30px;
    }

    /* 4. Product Card Mobile */
    .product-image {
        height: 300px;
        /* Taller image area for mobile scrolling */
        padding: 20px;
    }

    .product-info {
        padding: 20px;
    }

    .product-info h3 {
        font-size: 1.25rem;
        /* Larger readable title */
    }

    .add-btn-minimal {
        padding: 14px 0;
        /* Larger touch target */
        font-size: 12px;
    }

    /* 5. Cart Drawer Full width */
    .cart-drawer {
        max-width: 100%;
        /* Full width */
        width: 100%;
    }

    .cart-header {
        padding: 15px;
    }

    .cart-footer {
        padding-bottom: calc(20px + env(safe-area-inset-bottom));
    }

    /* 6. Checkout Modal */
    .checkout-modal {
        width: 100%;
        height: 100%;
        max-height: 100%;
        border-radius: 0;
        transform: translateY(100%);
        /* Slide from bottom */
        padding-top: 60px;
        /* Space for close button */
        overflow-y: auto;
    }

    .checkout-modal-overlay.active .checkout-modal {
        transform: translateY(0);
    }

    .close-checkout {
        top: 20px;
        right: 20px;
        font-size: 28px;
        padding: 10px;
        /* Touch area */
        z-index: 10;
        background: rgba(255, 255, 255, 0.8);
        border-radius: 50%;
    }

    /* Sticky Bar on Product Page */
    .sticky-bar {
        padding: 12px 20px calc(12px + env(safe-area-inset-bottom));
        flex-direction: row;
        /* Keep row */
    }

    .sticky-cta {
        padding: 10px 20px;
        font-size: 11px;
    }

    /* Product Page Header Mobile */
    .simple-header {
        padding: 15px 20px;
    }

    .simple-header img {
        height: 35px !important;
    }

    /* --- PROMO POPUP RESPONSIVE --- */
    .promo-content {
        flex-direction: column;
        max-width: 90% !important;
        max-height: 85vh;
        overflow-y: auto;
    }

    .promo-image-side {
        min-width: 0 !important;
        padding: 30px !important;
        flex: 1 !important;
        height: 250px;
        /* Limit height on mobile */
    }

    .promo-image-side img {
        width: 180px !important;
        /* Smaller image */
        max-width: 100% !important;
        transform: rotate(-5deg) !important;
        /* Reset translate */
    }

    .promo-text-side {
        min-width: 0 !important;
        padding: 30px 20px !important;
        /* Reduced padding */
        flex: 1 !important;
    }

    .promo-text-side h2 {
        font-size: 2rem !important;
    }

    /* --- HERO FIXES --- */
    /* Use viewport units to ensure text fits regardless of width */
    .hero h1 {
        font-size: 11vw !important;
        /* Dynamic sizing */
        word-wrap: break-word;
    }

    .hero h1 span {
        font-size: 13vw !important;
    }

    /* Fix potential overflow from the hero BG or spacing */
    .hero {
        width: 100%;
        overflow: hidden;
    }
}

/* --- TRUST BAR STYLES --- */
.trust-bar {
    background: #ffffff;
    padding: 30px 5vw;
    display: flex;
    justify-content: center;
    align-items: center;
    border-bottom: 1px solid var(--gray-border);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 0 20px;
}

.trust-item i {
    font-size: 24px;
    color: var(--black-primary);
}

.trust-item div {
    display: flex;
    flex-direction: column;
}

.trust-item strong {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--black-primary);
    font-weight: 700;
}

.trust-item span {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    color: var(--gray-text);
}

.trust-divider {
    width: 1px;
    height: 30px;
    background: #e5e7eb;
    margin: 0 20px;
}

/* --- FLOATING WHATSAPP --- */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.4);
    color: white;
    /* Ensure stays white */
}

/* --- TRUST BAR MOBILE RESPONSIVE --- */
@media (max-width: 768px) {
    .trust-bar {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        padding: 30px 20px;
    }

    .trust-item {
        padding: 0;
        width: 100%;
    }

    .trust-divider {
        display: none;
    }

    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
        font-size: 28px;
    }
}

/* REVIEWS SECTION STYLES */
.reviews-section {
    padding: 80px 5vw;
    background: #fff;
    border-top: 1px solid var(--gray-border);
    text-align: center;
}

.reviews-container {
    display: flex;
    overflow-x: auto;
    gap: 30px;
    padding: 20px 0 40px 0;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    max-width: 1200px;
    margin: 0 auto;
}

.review-card {
    min-width: 300px;
    max-width: 350px;
    background: var(--cream-bg);
    padding: 30px;
    border-radius: var(--radius-md);
    text-align: left;
    scroll-snap-align: center;
    border: 1px solid var(--gray-border);
    flex: 0 0 auto;
}

.review-card p {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-style: italic;
    color: var(--black-primary);
    margin-bottom: 20px;
    line-height: 1.6;
}

.review-author {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--gold-dark);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.write-review-btn {
    margin-top: 40px;
    background: transparent;
    border: 1px solid var(--black-primary);
    color: var(--black-primary);
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s;
}

.write-review-btn:hover {
    background: var(--black-primary);
    color: white;
}

/* REVIEW MODAL */
.review-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(4px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.review-modal-overlay.active {
    display: flex;
    opacity: 1;
}

.review-modal {
    background: white;
    width: 90%;
    max-width: 500px;
    padding: 40px;
    border-radius: var(--radius-md);
    position: relative;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.review-modal-overlay.active .review-modal {
    transform: translateY(0);
}