/* GIRO GELATO: Minus 30 High-Fidelity Clone */
:root {
    --navy: #00305E; /* From Logo */
    --gold: #C5A059; /* From Logo */
    --dark: #1A1A1A;
    --gray: #4A4A4A;
    --white: #FFFFFF;
    --off-white: #FDF9F3; /* Warmer for gold pairing */
    --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --font-main: 'Inter', sans-serif;
}

/* --- High-Fidelity Coming Soon Hero System --- */
.coming-soon-hero {
    position: relative;
    width: 100% !important;
    min-height: 85vh !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    color: var(--white);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.coming-soon-hero::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background: linear-gradient(rgba(0,48,94,0.5), rgba(0,48,94,0.6)) !important;
    z-index: 1 !important;
}

.coming-soon-content {
    position: relative !important;
    z-index: 10 !important;
    max-width: 900px !important;
    padding: 0 5% !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
}

.coming-soon-content p:first-child {
    font-size: 0.9rem !important;
    text-transform: uppercase !important;
    letter-spacing: 5px !important;
    margin-bottom: 20px !important;
    color: var(--gold) !important;
    font-weight: 700 !important;
}

.coming-soon-content h1 {
    font-size: clamp(2.2rem, 8vw, 4.5rem) !important;
    font-weight: 900 !important;
    text-transform: uppercase !important;
    letter-spacing: clamp(5px, 2vw, 15px) !important;
    margin-bottom: 25px !important;
    line-height: 1.1 !important;
    color: #fff !important;
    text-shadow: 0 10px 30px rgba(0,0,0,0.3) !important;
}

.coming-soon-content .description {
    font-size: 1.2rem !important;
    margin-bottom: 45px !important;
    line-height: 1.8 !important;
    opacity: 0.95 !important;
    letter-spacing: 1px !important;
    max-width: 700px !important;
    color: #fff !important;
}

.waitlist-form {
    display: flex !important;
    gap: 15px !important;
    justify-content: center !important;
    margin-top: 10px !important;
    width: 100% !important;
    max-width: 500px !important;
}

.waitlist-input {
    background: rgba(255, 255, 255, 0.15) !important;
    border: 1px solid rgba(255, 255, 255, 0.4) !important;
    padding: 18px 25px !important;
    color: #fff !important;
    flex: 1 !important;
    font-family: inherit !important;
    font-size: 0.95rem !important;
    backdrop-filter: blur(10px) !important;
}

.waitlist-btn {
    background: var(--gold) !important;
    color: var(--navy) !important;
    border: none !important;
    padding: 0 40px !important;
    font-weight: 900 !important;
    letter-spacing: 2px !important;
    font-size: 0.85rem !important;
    cursor: pointer !important;
    text-transform: uppercase !important;
}

.back-to-shop {
    display: inline-block !important;
    margin-top: 60px !important;
    color: rgba(255,255,255,0.7) !important;
    text-decoration: none !important;
    font-size: 0.75rem !important;
    letter-spacing: 3px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    background-color: var(--white);
    color: var(--dark);
    font-family: var(--font-main);
    line-height: 1.6;
    overflow-x: hidden; /* Prevent horizontal scroll */
    width: 100%;
    position: relative; /* Contain absolute elements */
}

/* Icons via Font Awesome CDN should be used in HTML */

/* Announcement Bar */
.announcement-bar {
    background: var(--navy);
    color: var(--gold);
    text-align: center;
    padding: 8px 0;
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    position: sticky;
    top: 0;
    z-index: 2000;
}

/* Header & Nav */
nav {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    height: 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 5%;
    position: sticky;
    top: 34px; /* Sync with announcement bar */
    z-index: 2000;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    transition: 0.3s;
}

.logo img {
    height: 65px; /* Slightly larger for clarity */
    display: block;
    cursor: pointer;
}

.nav-links {
    display: flex;
    gap: 40px;
    align-items: center;
}

/* Dropdown Container */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 220px;
    background: var(--navy);
    padding: 20px 0;
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
    z-index: 2000;
    text-align: left;
    border-top: 2px solid var(--gold);
    opacity: 0;
    transform: translateY(10px);
    transition: var(--transition);
}

.dropdown:hover .dropdown-menu {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.dropdown-menu a {
    display: block;
    padding: 12px 25px;
    font-size: 0.75rem;
    color: var(--white);
    letter-spacing: 2.5px;
    text-transform: uppercase;
    font-weight: 500;
    transition: 0.3s;
}

.dropdown-menu a:hover {
    color: var(--gold);
    background: rgba(255,255,255,0.05);
}

.nav-links a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--gold);
}

.nav-icons {
    display: flex;
    gap: 25px;
    align-items: center;
}

.icon-btn {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.2rem;
    color: var(--dark);
}

/* Hero Slider */
.hero-slider {
    width: 100%;
    height: 85vh;
    position: relative;
    overflow: hidden;
}

.slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    padding: 0 10%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.hero-text {
    max-width: 600px;
}

.hero-text h1 {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 30px;
    color: var(--dark);
}

.order-btn {
    background: var(--navy);
    color: var(--gold);
    padding: 18px 45px;
    border: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    cursor: pointer;
    transition: var(--transition);
}

.order-btn:hover {
    background: var(--gold);
    color: var(--navy);
}

/* Category Grid */
.category-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    margin: 50px 0;
}

.category-tile {
    position: relative;
    height: 450px;
    overflow: hidden;
    cursor: pointer;
}

.category-tile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.category-tile:hover img {
    transform: scale(1.05);
}

.category-overlay {
    position: absolute;
    bottom: 40px;
    left: 40px;
    color: var(--white);
}

.category-overlay h2 {
    font-size: 1.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 5px;
}

/* Product Section */
.section-header {
    text-align: center;
    padding: 80px 0 40px;
}

.section-header h2 {
    font-size: 2.5rem;
    text-transform: uppercase;
    letter-spacing: 4px;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    padding: 0 5%;
    gap: 40px;
    margin-bottom: 100px;
}

.product-card {
    text-align: center;
    cursor: pointer;
}

.product-img-wrap {
    background: var(--off-white);
    margin-bottom: 20px;
    position: relative;
    aspect-ratio: 1/1;
}

.product-img-wrap img {
    width: 80%;
    height: 80%;
    object-fit: contain;
    margin-top: 10%;
    transition: var(--transition);
}

.product-card:hover img {
    transform: scale(1.1);
}

.product-info h3 {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.product-info .price {
    font-weight: 700;
    color: var(--navy);
    font-size: 0.9rem;
}

.quick-add {
    margin-top: 15px;
    text-decoration: underline;
    font-weight: 600;
    font-size: 0.8rem;
    opacity: 0;
    transition: var(--transition);
}

.product-card:hover .quick-add {
    opacity: 1;
}

/* Sidebar Cart */
.cart-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: 450px;
    max-width: 100%;
    height: 100vh;
    background: var(--white);
    z-index: 4000;
    box-shadow: -10px 0 30px rgba(0,0,0,0.1);
    transform: translateX(100%); /* ALWAYS hidden regardless of viewport width */
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

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

.cart-header {
    padding: 30px;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.cart-footer {
    padding: 30px;
    border-top: 1px solid #eee;
}

.checkout-btn {
    width: 100%;
    background: var(--navy);
    color: var(--gold);
    border: none;
    padding: 20px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: flex;
    justify-content: space-between;
    cursor: pointer;
}

/* Overlay */
.overlay-blur {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.4);
    z-index: 2500;
    backdrop-filter: blur(5px);
}

/* Footer */
footer {
    background: var(--off-white);
    padding: 100px 5% 50px;
    border-top: 1px solid #eee;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 60px;
}

.footer-col h4 {
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--navy);
    font-size: 0.8rem;
    font-weight: 800;
}

.footer-logo {
    width: 120px;
    margin-bottom: 20px;
    display: block;
}

.footer-slogan {
    display: block;
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--gold);
    letter-spacing: 3px;
    margin-bottom: 25px;
}

.footer-col p, .footer-col a {
    color: var(--gray);
    font-size: 0.85rem;
    text-decoration: none;
    line-height: 1.8;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col a:hover {
    color: var(--gold);
}

/* Newsletter */
.newsletter-input {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--navy);
    padding: 15px 0;
    font-family: inherit;
    font-size: 0.9rem;
    outline: none;
    margin-bottom: 20px;
}

.subscribe-btn {
    background: var(--navy);
    color: var(--gold);
    border: none;
    padding: 12px 30px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    font-size: 0.7rem;
    cursor: pointer;
    transition: var(--transition);
}

.subscribe-btn:hover {
    background: var(--gold);
    color: var(--navy);
}

/* Social Icons */
.social-links {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

.social-links a {
    font-size: 1.2rem;
    color: var(--navy);
    transition: 0.3s;
}

.social-links a:hover {
    color: var(--gold);
    transform: translateY(-3px);
}

/* Payment Icons */
.payment-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
    opacity: 0.6;
}

.payment-icons i { font-size: 1.5rem; }

/* Coming Soon Teaser Pages */
.coming-soon-container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    padding: 120px 20px 80px; /* Space for nav and breathing room */
    color: var(--white);
    background-attachment: fixed; /* Parallax effect for luxury */
}

.coming-soon-content {
    z-index: 10;
    padding: 60px;
    background: rgba(0, 48, 94, 0.4); /* Navy Glassmorphism */
    backdrop-filter: blur(15px);
    border: 1px solid rgba(197, 160, 89, 0.3); /* Gold border trace */
    max-width: 600px;
    animation: fadeIn 1.2s ease-out;
}

.coming-soon-content h1 {
    font-size: 4.5rem;
    font-weight: 800;
    letter-spacing: 12px;
    margin-bottom: 25px;
    text-transform: uppercase;
    color: var(--gold);
}

.coming-soon-content p {
    font-size: 0.95rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    opacity: 0.9;
    margin-bottom: 40px;
}

.waitlist-form {
    display: flex;
    gap: 0;
    margin-top: 30px;
}

.waitlist-input {
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--white);
    padding: 15px 25px;
    font-family: inherit;
    outline: none;
    flex: 1;
}

.waitlist-btn {
    background: var(--gold);
    color: var(--navy);
    border: none;
    padding: 15px 30px;
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: 2px;
    cursor: pointer;
    transition: 0.3s;
}

.waitlist-btn:hover {
    background: var(--white);
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.category-hero-overlay {
    background: rgba(0,0,0,0.4);
    padding: 60px;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: var(--white);
    backdrop-filter: blur(2px);
}

.category-hero h1 {
    font-size: 5rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 12px;
    margin-bottom: 20px;
}

.category-hero p {
    text-transform: uppercase;
    letter-spacing: 5px;
    font-size: 0.9rem;
    opacity: 0.8;
}

.category-hero .subtitle {
    font-size: 1.1rem;
    text-transform: none;
    letter-spacing: 2px;
    opacity: 1;
    margin-top: 10px;
}

.product-grid-section {
    padding: 100px 5%;
    background: var(--white);
}

.badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--navy);
    color: var(--gold);
    padding: 5px 15px;
    font-size: 0.6rem;
    font-weight: 800;
    letter-spacing: 2px;
    border-radius: 2px;
    z-index: 5;
}

/* Delivery Trust Bar */
.delivery-trust-bar {
    background: var(--off-white);
    padding: 80px 5%;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    text-align: center;
}

.trust-label {
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--navy);
    margin-bottom: 30px;
    opacity: 0.8;
}

.delivery-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 80px;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: 0.3s;
    flex-wrap: wrap; /* Ensure wrapping on mobile */
}

.delivery-logos:hover {
    filter: none;
    opacity: 1;
}

.delivery-logos a {
    text-decoration: none;
}

.giro-express-link {
    display: flex;
    align-items: center;
    gap: 10px;
}

.giro-express-link img {
    height: 40px;
    width: auto;
}

.giro-express-link span {
    font-weight: 700;
    color: var(--navy);
    letter-spacing: 2px;
    font-size: 0.8rem;
}

/* Responsive Design System (Mobile & Tablet Optimization) */
@media (max-width: 768px) {
    .delivery-logos { gap: 30px; }
    .trust-label { font-size: 0.7rem; letter-spacing: 2px; }
}

@media (max-width: 1024px) {
    h1 { font-size: 3.5rem !important; }
    .category-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Mobile Menu Overlay - Hidden by default for desktop */
.mobile-menu {
    display: none;
}

@media (max-width: 768px) {
    /* Navbar & Mobile Menu */
    .nav-links { display: none; }
    .nav-icons button:nth-child(1), .nav-icons button:nth-child(2) { display: none; } /* Hide search/profile on mobile for space */
    
    .burger { display: flex !important; flex-direction: column; gap: 5px; cursor: pointer; margin-right: 20px; }
    .burger span { width: 25px; height: 2px; background: var(--navy); transition: 0.3s; }

    nav { padding: 0 4%; justify-content: space-between; }
    .logo img { height: 45px; } /* Slightly smaller for mobile */
    .nav-icons { gap: 15px; } /* Tighten icon spacing */
    .nav-icons button { font-size: 1.1rem; }

    /* Mobile Overlay Menu */
    .mobile-menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: var(--navy);
        z-index: 5000;
        display: flex;
        flex-direction: column;
        padding-top: 100px;
        transition: 0.5s cubic-bezier(0.77,0.2,0.05,1.0);
        overflow-y: auto;
    }

    .mobile-menu.active { left: 0; }

    .mobile-nav-content {
        width: 100%;
        padding: 0 40px;
        display: flex;
        flex-direction: column;
    }

    .mobile-menu a, .mobile-dropdown span {
        color: var(--gold);
        font-size: 1.6rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 3px;
        margin: 12px 0;
        text-decoration: none;
        cursor: pointer;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .mobile-submenu {
        display: none;
        flex-direction: column;
        padding-left: 20px;
        margin-bottom: 20px;
        border-left: 1px solid rgba(197, 160, 89, 0.3);
    }

    .mobile-submenu a {
        font-size: 1rem !important;
        letter-spacing: 2px !important;
        opacity: 0.8;
        margin: 8px 0 !important;
    }

    .mobile-dropdown.active .mobile-submenu {
        display: flex;
    }

    .mobile-dropdown span i {
        font-size: 1rem;
        transition: 0.3s;
    }

    .mobile-dropdown.active span i {
        transform: rotate(180deg);
    }

    .close-menu {
        position: absolute;
        top: 40px;
        right: 40px;
        color: var(--gold);
        font-size: 2.5rem;
        cursor: pointer;
    }

    /* Hero Slider Scaling */
    .hero-slider { height: 60vh; }
    .slide-content h1 { font-size: 2.2rem !important; letter-spacing: 5px; }
    .slide-content p { font-size: 0.8rem; letter-spacing: 3px; }

    /* Category Grid Styling */
    .category-grid { 
        grid-template-columns: repeat(2, 1fr); 
        gap: 10px;
        padding: 0 10px;
    }
    .category-tile h2 { font-size: 1.2rem; }

    /* Product Grid Scaling */
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    .product-card h3 { font-size: 0.9rem; }
    .product-card .price { font-size: 1rem; }
    .add-btn { padding: 8px 12px; font-size: 0.7rem; }

    /* Global Footer Stacking */
    footer {
        flex-direction: column;
        text-align: center;
        padding: 60px 5%;
        gap: 40px;
    }
    .footer-col { width: 100% !important; }

    /* Coming Soon & Category Pages */
    .coming-soon-content h1 { font-size: 2.5rem !important; letter-spacing: 5px; }
    .coming-soon-content { padding: 40px 20px; width: 90%; }
    .category-hero h1 { font-size: 2.8rem !important; letter-spacing: 6px; }

    /* Cart Drawer Mobile */
    .cart-drawer { width: 100%; }
}

/* Minus 30 Premium Product Card Transformation */
.product-card {
    background: var(--white);
    border: 1px solid rgba(0,0,0,0.05); /* Ultra subtle border */
    border-radius: 4px; /* Minus 30 uses sharper, professional corners */
    padding: 0;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    box-shadow: 0 4px 12px rgba(0,0,0,0.02);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08); /* Soft expansive shadow */
    border-color: var(--gold);
}

.product-img {
    cursor: pointer;
    background: #fcfcfc; /* Very light neutral for the image stage */
    height: 280px; /* Taller for better visual impact */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 20px;
    transition: 0.5s;
}

.product-img img {
    max-height: 85%;
    max-width: 85%;
    object-fit: contain;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card:hover .product-img img {
    transform: scale(1.08);
}

/* Card Content Area */
.product-card-content {
    padding: 25px 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.product-card h3 {
    font-size: 0.85rem; /* Minus 30 uses small, clean all-caps titles */
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    line-height: 1.4;
}

.product-card .weight-badge {
    display: inline-block;
    font-size: 0.65rem;
    color: var(--gray);
    border: 1px solid rgba(0,0,0,0.1);
    padding: 4px 15px;
    border-radius: 0; /* Minimalist angular design */
    margin-bottom: 18px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.product-card .price-tag {
    font-size: 1.1rem;
    font-weight: 500; /* Less heavy, more elegant */
    color: var(--dark);
    margin-bottom: 20px;
    display: block;
    font-family: var(--font-main);
}

.product-card .add-btn {
    width: auto; /* Not full width for a boutique feel */
    min-width: 160px;
    background: transparent;
    color: var(--navy);
    border: 2px solid var(--navy);
    padding: 12px 25px;
    border-radius: 0;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
    cursor: pointer;
    transition: 0.3s;
    margin-top: auto;
}

.product-card .add-btn:hover {
    background: var(--navy);
    color: var(--gold);
}

/* Mobile Adjustments for Cards */
@media (max-width: 768px) {
    .product-grid { padding: 0 4%; gap: 15px; }
    .product-card { border-radius: 4px; }
    .product-img { height: 180px; }
    .product-card h3 { font-size: 0.7rem; letter-spacing: 1.5px; }
    .product-card .price-tag { font-size: 0.9rem; }
    .product-card .add-btn { min-width: 100%; padding: 10px; font-size: 0.65rem; letter-spacing: 2px; }
}

/* Elite Product Modal & Zoom System */
.product-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 31, 62, 0.85);
    backdrop-filter: blur(20px);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.product-modal-overlay.active {
    display: flex;
    animation: fadeInModal 0.4s ease-out forwards;
}

.product-modal-container {
    background: #fff;
    width: 100%;
    max-width: 1100px;
    height: auto;
    min-height: 500px;
    max-height: 90vh;
    border-radius: 30px;
    display: flex;
    overflow: hidden;
    position: relative;
    box-shadow: 0 40px 100px rgba(0,0,0,0.5);
}

.close-modal {
    position: absolute;
    top: 30px;
    right: 30px;
    font-size: 2.5rem;
    color: var(--navy);
    cursor: pointer;
    z-index: 10;
    line-height: 1;
}

.modal-left {
    flex: 1.2;
    background: #f9f9f9;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.zoom-container {
    width: 80%;
    height: 80%;
    position: relative;
    overflow: hidden;
    cursor: crosshair;
}

.zoom-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.1s ease;
    transform-origin: center center;
}

.modal-right {
    flex: 1;
    padding: 40px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--white);
    color: var(--navy);
}

.modal-right h2 {
    font-family: 'Outfit', sans-serif;
 font-size: 2.8rem;
 font-weight: 800;
 text-transform: uppercase;
 margin-bottom: 10px;
 color: var(--navy);
}

.modal-right .tagline {
 font-size: 0.9rem;
 letter-spacing: 3px;
 text-transform: uppercase;
 color: var(--gold);
 margin-bottom: 30px;
 font-weight: 700;
}

.weight-selector {
 margin-bottom: 40px;
}

.weight-label {
 display: block;
 font-size: 0.75rem;
 font-weight: 800;
 text-transform: uppercase;
 letter-spacing: 2px;
 margin-bottom: 15px;
 opacity: 0.6;
}

.weight-options {
 display: flex;
 flex-wrap: wrap;
 gap: 10px;
}

.weight-pill {
 padding: 12px 20px;
 border: 1px solid #ddd;
 border-radius: 50px;
 font-size: 0.85rem;
 font-weight: 700;
 cursor: pointer;
 transition: 0.3s;
 background: transparent;
}

.weight-pill:hover {
 border-color: var(--gold);
}

.weight-pill.active {
 background: var(--navy);
 color: var(--gold);
 border-color: var(--navy);
}

.modal-price-display {
 font-size: 3rem;
 font-weight: 800;
 color: var(--navy);
 margin-bottom: 40px;
 display: flex;
 align-items: baseline;
}

.modal-price-display span { font-size: 1.5rem; margin-right: 5px; }

.modal-actions {
 display: flex;
 gap: 20px;
}

.buy-now-btn {
 flex: 2;
 background: var(--navy);
 color: var(--gold);
 border: none;
 padding: 20px;
 font-size: 1rem;
 font-weight: 800;
 text-transform: uppercase;
 letter-spacing: 2px;
 border-radius: 12px;
 cursor: pointer;
 transition: 0.3s;
}

.buy-now-btn:hover {
 background: var(--gold);
 color: var(--navy);
}

@keyframes fadeInModal {
 from { opacity: 0; transform: scale(1.05); }
 to { opacity: 1; transform: scale(1); }
}

@media (max-width: 1024px) {
    .product-modal-container { 
        flex-direction: column; 
        height: auto; 
        width: 95%; 
        max-height: 90vh; 
        overflow-y: auto; 
    }
    .modal-left { height: 250px; width: 100%; }
    .modal-right { padding: 30px; width: 100%; justify-content: flex-start; }
    .modal-right h2 { font-size: 1.8rem !important; }
    .modal-price-display { font-size: 2rem; margin-bottom: 20px; }
}

@media (max-width: 768px) {
    .modal-left { height: 200px; }
    .modal-right { padding: 25px 20px; }
    .modal-right h2 { font-size: 1.5rem !important; }
    .modal-price-display { font-size: 1.8rem; }
}

/* Cart Success Toast - Slide Show Style */
#cart-toast {
    position: fixed;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    color: var(--navy);
    padding: 15px 30px;
    border-radius: 50px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    z-index: 6000;
    transition: 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    display: flex;
    align-items: center;
    border: 1px solid #eee;
    min-width: 320px;
    pointer-events: none;
}

#cart-toast.visible {
    top: 30px;
}

.toast-content {
    display: flex;
    align-items: center;
    gap: 15px;
    width: 100%;
}

.toast-icon {
    background: var(--navy);
    color: var(--gold);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 900;
}

.toast-message {
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.toast-message strong {
    color: var(--gold);
    font-weight: 800;
    text-transform: uppercase;
}
/* --- High-Fidelity Coming Soon Hero System --- */
.coming-soon-hero {
    position: relative;
    width: 100%;
    min-height: 85vh;
    display: flex !important;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.coming-soon-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0,48,94,0.5), rgba(0,48,94,0.6));
    z-index: 1;
}

.coming-soon-content {
    position: relative;
    z-index: 10;
    max-width: 900px;
    padding: 0 5%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.coming-soon-content p:first-child {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 5px;
    margin-bottom: 20px;
    color: var(--gold);
    font-weight: 700;
}

.coming-soon-content h1 {
    font-size: clamp(2.2rem, 8vw, 4.5rem);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: clamp(5px, 2vw, 15px);
    margin-bottom: 25px;
    line-height: 1.1;
    color: #fff !important;
    text-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.coming-soon-content .description {
    font-size: 1.2rem;
    margin-bottom: 45px;
    line-height: 1.8;
    opacity: 0.95;
    letter-spacing: 1px;
    max-width: 700px;
}

.waitlist-form {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 10px;
    width: 100%;
    max-width: 500px;
}

.waitlist-input {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.4);
    padding: 18px 25px;
    color: #fff;
    flex: 1;
    font-family: inherit;
    font-size: 0.95rem;
    backdrop-filter: blur(10px);
    transition: 0.3s;
}

.waitlist-input:focus {
    background: rgba(255, 255, 255, 0.25);
    border-color: var(--gold);
    outline: none;
}

.waitlist-btn {
    background: var(--gold);
    color: var(--navy);
    border: none;
    padding: 0 40px;
    font-weight: 900;
    letter-spacing: 2px;
    font-size: 0.85rem;
    cursor: pointer;
    transition: 0.3s;
    text-transform: uppercase;
}

.waitlist-btn:hover {
    background: #fff;
    color: var(--navy);
    transform: translateY(-3px);
}

.back-to-shop {
    display: inline-block;
    margin-top: 60px;
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 0.75rem;
    letter-spacing: 3px;
    font-weight: 700;
    transition: 0.3s;
    text-transform: uppercase;
}

.back-to-shop:hover {
    color: var(--gold);
}

@media (max-width: 768px) {
    .coming-soon-hero {
        min-height: 75vh;
        padding-top: 80px;
    }
    .coming-soon-content h1 { letter-spacing: 4px; }
    .coming-soon-content .description { font-size: 0.95rem; line-height: 1.6; }
    .waitlist-form { flex-direction: column; align-items: stretch; }
}

/* --- Story & Artisanal Branding --- */
.story-hero {
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    background: url('giro_gelato_hero_banner_1775242121034.png') no-repeat center center/cover;
}

.story-hero-content {
    z-index: 2;
    color: white;
    max-width: 800px;
    padding: 20px;
}

.story-hero::after {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 31, 63, 0.5);
}

.narrative-section {
    padding: 100px 10%;
    background: var(--off-white);
    text-align: center;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.process-card {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: 0.3s transform;
}

.process-card:hover { transform: translateY(-10px); }

.process-card i {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 20px;
}

/* Scroll Animation Utilities */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: 1s all ease-out;
}

.fade-up.active {
    opacity: 1;
    transform: translateY(0);
}

/* Contact Styling */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    padding: 100px 10%;
    background: white;
}

.contact-info h2 {
    font-size: 3rem;
    margin-bottom: 30px;
}

.contact-form-card {
    background: var(--off-white);
    padding: 60px;
    border-radius: 20px;
}

.contact-form-card h3 {
    margin-bottom: 30px;
    font-size: 1.8rem;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    color: #666;
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 10px;
    background: white;
    font-family: inherit;
}

/* Event Styling */
.event-showcase {
    padding: 100px 8%;
    background: var(--navy);
    color: white;
}

.event-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.event-card {
    background: rgba(255,255,255,0.05);
    padding: 40px;
    border-radius: 15px;
    border: 1px solid rgba(255,255,255,0.1);
    transition: 0.3s;
}

.event-card:hover {
    background: rgba(255,255,255,0.1);
    transform: scale(1.02);
}

.event-card i {
    color: var(--gold);
    font-size: 3rem;
    margin-bottom: 25px;
}

/* --- 3D Boutique & Animation Overhaul --- */

/* Perspective & Root Motion - REMOVED FROM BODY TO FIX MODAL POSITIONING */
body {
    background: var(--off-white);
}

.product-grid-section, .narrative-section, .event-showcase, .category-grid {
    perspective: 1200px;
}

/* Glassmorphism System */
.glass-nav {
    background: rgba(255, 255, 255, 0.7) !important;
    backdrop-filter: blur(20px) saturate(180%) !important;
    -webkit-backdrop-filter: blur(20px) saturate(180%) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3) !important;
}

.glass-card {
    background: rgba(255, 255, 255, 0.4) !important;
    backdrop-filter: blur(15px) !important;
    -webkit-backdrop-filter: blur(15px) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05) !important;
}

/* 3D Tilt Utility (Applied via JS or CSS Transform) */
.tilt-3d {
    transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.5s ease-out !important;
    transform-style: preserve-3d !important;
}

.tilt-3d:hover {
    transform: translateY(-15px) rotateX(5deg) rotateY(2deg) !important;
    box-shadow: 0 30px 60px rgba(0, 48, 94, 0.15) !important;
}

/* Cinematic Entrance Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 60px, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale3d(0.9, 0.9, 0.9);
    }
    to {
        opacity: 1;
        transform: scale3d(1, 1, 1);
    }
}

@keyframes floating {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

.fade-up {
    opacity: 0;
    will-change: transform, opacity;
}

.fade-up.active {
    animation: fadeInUp 1s cubic-bezier(0.23, 1, 0.32, 1) forwards !important;
}

.scale-in {
    opacity: 0;
}

.scale-in.active {
    animation: scaleIn 0.8s cubic-bezier(0.23, 1, 0.32, 1) forwards !important;
}

.float-anim {
    animation: floating 4s ease-in-out infinite !important;
}

/* Staggered Delay Utilities */
.delay-1 { animation-delay: 0.1s !important; }
.delay-2 { animation-delay: 0.2s !important; }
.delay-3 { animation-delay: 0.3s !important; }
.delay-4 { animation-delay: 0.4s !important; }

/* Enhanced Card Micro-Interactions */
.product-card, .category-tile, .process-card {
    cursor: pointer;
    overflow: hidden;
}

.product-card img, .category-tile img {
    transition: transform 0.8s cubic-bezier(0.23, 1, 0.32, 1) !important;
}

.product-card:hover img, .category-tile:hover img {
    transform: scale(1.1) !important;
}

/* --- Floating WhatsApp Button --- */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    left: 30px;
    background: #25D366; /* WhatsApp Green */
    color: white;
    padding: 12px 25px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
    z-index: 5000;
    transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid white;
}

.whatsapp-float:hover {
    transform: scale(1.05) translateY(-5px);
    box-shadow: 0 15px 35px rgba(37, 211, 102, 0.4);
    background: #128C7E;
    color: white;
}

.whatsapp-float i {
    font-size: 1.4rem;
}

@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        left: 20px;
        padding: 10px 20px;
        font-size: 0.8rem;
    }
}

/* 3D Gold Accent Text */
.gold-3d {
    color: var(--gold);
    text-shadow: 1px 1px 0px #A6803F, 
                 2px 2px 0px #8C6A2E,
                 3px 3px 15px rgba(0,0,0,0.1);
}

/* --- Search Overlay --- */
.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(25px);
    z-index: 9999;
    display: none;
    opacity: 0;
    transition: opacity 0.4s ease;
    padding: 100px 5%;
    flex-direction: column;
    align-items: center;
}

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

.search-container {
    width: 100%;
    max-width: 800px;
    position: relative;
    z-index: 10;
}

.search-input-wrapper {
    position: relative;
    width: 100%;
}

.search-input-wrapper input {
    width: 100%;
    background: none;
    border: none;
    border-bottom: 2px solid var(--navy);
    padding: 20px 0;
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--navy);
    outline: none;
}

.search-results {
    width: 100%;
    max-width: 800px;
    margin-top: 50px;
    max-height: 60vh;
    overflow-y: auto;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    padding-bottom: 50px;
}

.search-result-item {
    display: flex;
    gap: 20px;
    align-items: center;
    padding: 20px;
    border-radius: 15px;
    cursor: pointer;
    background: #fff;
    border: 1px solid #eee;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.search-result-item:hover {
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    transform: translateY(-5px);
    border-color: var(--gold);
}

.search-result-item img {
    width: 70px;
    height: 70px;
    object-fit: contain;
    border-radius: 10px;
    background: #f9f9f9;
}

.search-result-info h4 {
    font-size: 0.95rem;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--navy);
    margin-bottom: 5px;
}

.search-result-info p {
    font-size: 0.8rem;
    color: var(--gray);
}

.close-search {
    position: absolute;
    top: 40px;
    right: 40px;
    font-size: 2.5rem;
    cursor: pointer;
    color: var(--navy);
    background: #f5f5f5;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.close-search:hover {
    background: #eee;
    transform: rotate(90deg);
}

/* --- Reviews Section --- */
.reviews-section {
    padding: 100px 5%;
    background: #fff;
    text-align: center;
}

.reviews-section h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 50px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto 60px;
}

.review-card {
    background: #fdfaf5;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    transition: transform 0.3s ease;
    border: 1px solid #f0e6d2;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.review-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.06);
}

.stars {
    color: #D4AF37;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.review-text {
    font-style: italic;
    color: var(--navy);
    line-height: 1.8;
    margin-bottom: 30px;
    font-weight: 400;
}

.reviewer-name {
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    color: var(--gold);
}

.give-review-btn {
    display: inline-block;
    padding: 18px 35px;
    background: var(--navy);
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.give-review-btn:hover {
    background: var(--gold);
    color: var(--navy);
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .reviews-section { padding: 60px 20px; }
    .reviews-section h2 { font-size: 1.8rem; }
}

/* --- Google Reviews Section --- */
.reviews-section {
    padding: 100px 5%;
    background: #fff;
    text-align: center;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.review-card {
    background: #fdfdfd;
    padding: 40px;
    border-radius: 20px;
    border: 1px solid #eee;
    text-align: left;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
}

.review-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
    border-color: var(--gold);
}

.review-stars {
    color: var(--gold);
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.review-text {
    font-style: italic;
    color: var(--navy);
    line-height: 1.8;
    margin-bottom: 25px;
    font-size: 1.1rem;
    font-weight: 300;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 40px;
    height: 40px;
    background: #eee;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--navy);
    font-size: 0.8rem;
}

.author-info h4 {
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
}

.author-info p {
    font-size: 0.75rem;
    opacity: 0.5;
}

.google-review-cta {
    margin-top: 80px;
}

.review-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--navy);
    color: #fff;
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.review-btn:hover {
    background: var(--gold);
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .reviews-grid {
        grid-template-columns: 1fr;
    }
}

/* --- Premium Testimonials & Carousel --- */
.testimonials-section {
    padding: 100px 5%;
    background: #fff;
    overflow: hidden;
}

.testimonials-container {
    display: flex;
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto;
    align-items: center;
}

.testimonials-dashboard {
    flex: 0 0 350px;
}

.testimonials-dashboard h2 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 30px;
    color: var(--navy);
}

.aggregate-rating {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.aggregate-score {
    font-size: 2rem;
    font-weight: 800;
    color: var(--navy);
}

.aggregate-stars {
    color: #ffb400;
    font-size: 1.2rem;
}

.powered-by {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    color: var(--gray);
    margin-bottom: 30px;
}

.review-us-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 25px;
    background: #4285F4;
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.review-us-btn:hover {
    box-shadow: 0 10px 20px rgba(66, 133, 244, 0.3);
    transform: translateY(-3px);
}

/* Carousel Engine */
.testimonials-carousel-wrapper {
    flex: 1;
    overflow: hidden;
    position: relative;
    padding: 20px 0;
}

.testimonials-track {
    display: flex;
    gap: 30px;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card {
    flex: 0 0 320px;
    background: #fff;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.04);
    border: 1px solid #eee;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 250px;
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.user-info h4 {
    font-size: 1rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 3px;
}

.user-info span {
    font-size: 0.75rem;
    color: var(--gray);
}

.google-icon {
    font-size: 1.2rem;
    color: #4285F4;
}

.card-stars {
    color: #ffb400;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.card-text {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #444;
    font-style: italic;
}

@media (max-width: 1024px) {
    .testimonials-container {
        flex-direction: column;
        gap: 50px;
        text-align: center;
    }
    .testimonials-dashboard {
        flex: 1;
    }
    .aggregate-rating {
        justify-content: center;
    }
    .powered-by {
        justify-content: center;
    }
    .testimonials-carousel-wrapper {
        width: 100vw;
        margin-left: -5%;
        padding-left: 5%;
    }
    .testimonial-card {
        flex: 0 0 280px;
    }
}

/* --- Carousel Navigation Arrows --- */
.carousel-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 100;
    color: var(--navy);
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    opacity: 0.6;
}

.carousel-nav-btn:hover {
    opacity: 1;
    background: var(--navy);
    color: #fff;
    transform: translateY(-50%) scale(1.1);
}

.prev-btn {
    left: 10px;
}

.next-btn {
    right: 10px;
}

@media (max-width: 1024px) {
    .carousel-nav-btn {
        display: none; /* Hide on mobile to keep it clean */
    }
}
