        body {
            box-sizing: border-box;
        }

        body {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background-color: #ffffff;
            color: #333333;
            line-height: 1.6;
        }

        :root {
            --ivory: #FBF8F4;
            --charcoal: #185f58;
            --rosegold: #b7fbf6;
            --rosegold-dark: #145651;
            --gold-badge: #44fff3;
            --hairline: #d5e7e7;
        }

        /* Reset spacing that could throw off alignment */
        .header,
        .nav-container,
        .logo,
        .nav-menu,
        .nav-item,
        .nav-link,
        .dropdown,
        .dropdown-link {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        /* ---------- Header bar ---------- */
        .header {
            background: #103230;
            border-bottom: 1px solid var(--hairline);
            position: sticky;
            top: 0;
            z-index: 100;
            font-family: 'Helvetica Neue', Arial, sans-serif;
            /* ensure header is tall enough to show the centered logo */
            min-height: 80px;
            display: block;
        }

        .nav-container {
            position: relative;
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: space-between;
            /* add top padding so the nav items sit below the centered logo */
            padding: 24px 32px 12px;
            gap: 24px;
        }

        /* ---------- Logo ---------- */
        .logo {
            position: absolute;
            left: 50%;
            top: 50%;
            transform: translate(-50%, -50%);
            display: flex;
            align-items: center;
            gap: 10px;
            text-decoration: none;
            flex-shrink: 0;
            z-index: 1200;
            pointer-events: auto;
        }

        .logo-icon img {
            display: block;
            width: 200px;
            /* reduced so it fits comfortably inside the header */
            height: auto;
            align-self: left;
            margin-top: 40px;
        }

        /* Responsive tweaks: smaller header & logo on mobile */
        @media (max-width: 768px) {
            .header {
                min-height: 50px;
            }

            .nav-container {
                padding: 12px 18px;
                min-height: 64px;
            }

            .logo-icon img {
                width: 110px;
                margin-top: -12px;
                margin-left: 20px;
            }

            .logo {
                top: 50%;
            }
        }

        #brand-name {
            font-family: Georgia, 'Times New Roman', serif;
            font-size: 20px;
            letter-spacing: 2px;
            color: var(--charcoal);
        }

        /* ---------- Nav menu ---------- */
        .nav-menu {
            list-style: none;
            display: flex;
            align-items: center;
            gap: 32px;
            flex-wrap: wrap;
            justify-content: flex-end;
            flex: 1;
        }

        .nav-item {
            position: relative;
        }

        .nav-link {
            display: inline-block;
            text-decoration: none;
            color: var(--charcoal);
            font-size: 13px;
            font-weight: 500;
            letter-spacing: 0.3px;
            white-space: nowrap;
            padding: 8px 2px;
            border-bottom: 1px solid transparent;
            transition: color .18s ease, border-color .18s ease;
        }

        .nav-link:hover {
            color: var(--rosegold-dark);
            border-bottom: 1px solid var(--rosegold-dark);
        }

        /*---- discount code bar ----*/
        .promo-bar {
            background: #05ad9c;
            color: #ffffff;
            font-size: 13px;
            font-weight: 600;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 14px;
            padding: 10px 40px 10px 16px;
            text-align: center;
            position: relative;
            flex-wrap: wrap;
        }

        .promo-copy-btn {
            background: #ffffff;
            color: #05ad9c;
            border: none;
            padding: 4px 12px;
            border-radius: 999px;
            font-size: 12px;
            font-weight: 700;
            cursor: pointer;
            white-space: nowrap;
        }

        .promo-copy-btn:hover {
            background: #eafffb;
        }

        .promo-close-btn {
            position: absolute;
            right: 12px;
            top: 50%;
            transform: translateY(-50%);
            background: none;
            border: none;
            color: #ffffff;
            font-size: 14px;
            cursor: pointer;
            opacity: 0.8;
        }

        .promo-close-btn:hover {
            opacity: 1;
        }

        @media (max-width: 480px) {
            .promo-bar {
                font-size: 11.5px;
                padding: 8px 34px 8px 12px;
                gap: 8px;
            }
        }

        .site-preloader {
            position: fixed;
            inset: 0;
            background: #039685;
            z-index: 99999;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: opacity 0.6s repeat, visibility 0s ease;
        }

        .site-preloader.preloader-hidden {
            opacity: 0;
            visibility: hidden;
            pointer-events: none;
        }

        .tree-wrap {
            position: relative;
            width: 160px;
            overflow: hidden;
        }

        .preloader-tree {
            display: block;
            width: 100%;
            height: auto;
            clip-path: inset(100% 0 0 0);
            animation: treeGrow 2.0s cubic-bezier(0.35, 0.9, 0.32, 1) forwards;
        }

        @keyframes treeGrow {
            0% {
                clip-path: inset(100% 0 0 0);
                transform: scale(0.96);
            }

            70% {
                clip-path: inset(0% 0 0 0);
                transform: scale(1);
            }

            100% {
                clip-path: inset(0% 0 0 0);
                transform: scale(1);
            }
        }

        .tree-shine {
            position: absolute;
            top: 0;
            left: -60%;
            width: 40%;
            height: 100%;
            background: linear-gradient(120deg, transparent, rgba(35, 189, 173, 0.35), transparent);
            transform: skewX(-20deg);
            opacity: 0;
            animation: treeShine 1.4s ease-in-out 1.8s infinite;
        }

        @keyframes treeShine {
            0% {
                left: -60%;
                opacity: 0;
            }

            15% {
                opacity: 1;
            }

            50% {
                left: 120%;
                opacity: 0.8;
            }

            51% {
                opacity: 0;
            }

            100% {
                left: 120%;
                opacity: 0;
            }
        }

        @media (max-width: 480px) {
            .tree-wrap {
                width: 110px;
            }
        }

        .modal-discount-bar {
            display: flex;
            gap: 8px;
            margin-bottom: 0.9rem;
        }

        .modal-discount-input {
            flex: 1;
            border: 1px solid #d8d8d8;
            border-radius: 999px;
            padding: 0.6rem 1rem;
            font-size: 0.9rem;
            text-transform: uppercase;
        }

        .modal-discount-input:focus {
            outline: none;
            border-color: #23bdad;
        }

        .modal-discount-apply {
            background: #23bdad;
            color: #fff;
            border: none;
            border-radius: 999px;
            padding: 0.6rem 1.2rem;
            font-size: 0.85rem;
            font-weight: 700;
            cursor: pointer;
            white-space: nowrap;
        }

        .modal-discount-apply:hover {
            background: #128C7E;
        }

        .modal-discount-message {
            font-size: 0.85rem;
            margin-bottom: 0.9rem;
            font-weight: 600;
        }

        .modal-discount-message.success {
            color: #128C7E;
        }

        .modal-discount-message.error {
            color: #c0392b;
        }

        .modal-price-original {
            text-decoration: line-through;
            color: #999;
            font-size: 1.1rem;
            font-weight: 500;
            margin-right: 8px;
        }

        .modal-price-discounted {
            color: #23bdad;
        }

        /* ---------- Dropdowns ---------- */
        /* Replace your existing .dropdown and .dropdown-parent:hover rules with this */
        .dropdown {
            display: block;
            position: absolute;
            top: 100%;
            left: 0;
            background: #ffffff;
            border: 1px solid var(--hairline);
            box-shadow: 0 14px 30px rgba(43, 36, 32, 0.10);
            min-width: 200px;
            padding: 10px 0;
            z-index: 50;

            /* animation setup */
            opacity: 0;
            visibility: hidden;
            transform: translateY(-8px);
            transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
            pointer-events: none;
        }

        .dropdown-parent:hover .dropdown,
        .dropdown-parent:focus-within .dropdown {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
            pointer-events: auto;
        }

        .dropdown-link {
            display: block;
            text-decoration: none;
            color: var(--charcoal);
            font-size: 12.5px;
            padding: 9px 20px;
            white-space: nowrap;
            transition: background .15s ease, color .15s ease;
        }

        .dropdown-link:hover {
            background: var(--ivory);
            color: var(--rosegold-dark);
        }

        .dropdown-divider {
            height: 1px;
            background: var(--hairline);
            margin: 4px 16px 8px;
        }

        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            font-size: 1.5rem;
            cursor: pointer;
            color: #6bf5e7;
        }

        /* ---------- Nav badges (e.g. "Luxe", "New") ---------- */
        .nav-badge {
            position: absolute;
            top: -5px;
            left: 90%;
            transform: translateX(-50%);
            font-size: 7px;
            font-weight: 800;
            letter-spacing: 0.9px;
            text-transform: uppercase;
            color: #ffffff;
            padding: 2px 10px;
            border-radius: 15px;
            white-space: nowrap;
            pointer-events: none;
            /* so it never blocks the click on the link below it */
        }

        .badge-gold {
            background: var(--gold-badge);
        }

        /* mustard, like "Luxe" */
        .badge-blue {
            background: #5B8DEF;
        }

        /* like "à la mode" */
        .badge-maroon {
            background: #5C1A2E;
        }

        /* like "New" */
        .badge-rose {
            background: var(--rosegold-dark);
        }

        /* extra option to match your palette */
        /* Badge styles used for small labels next to menu items */

        .page-section {
            display: none;
            min-height: 100%;
            padding-top: 80px;
        }

        .page-section.active {
            display: block;
        }

        .hero {
            width: 100%;
            overflow: hidden;
            margin-top: -55px;
        }

        /* ===== Shared base styles ===== */
        .hero-slider {
            position: relative;
            width: 100%;
            overflow: hidden;
        }

        .hero-slider-track {
            display: flex;
            align-items: stretch;
            width: 100%;
            height: 100%;
            transition: transform 0.5s ease-in-out;
            will-change: transform;
        }

        .hero-slide {
            width: 100%;
            flex: 0 0 100%;
            height: 100%;
        }

        .hero-slide a {
            display: block;
            width: 100%;
            height: 100%;
        }

        .hero-slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        .hero-arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            border: none;
            border-radius: 50%;
            cursor: pointer;
            z-index: 5;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background 0.3s;
        }

        .hero-arrow:hover {
            background: rgba(255, 255, 255, 1);
        }

        .hero-arrow-prev {
            left: 16px;
        }

        .hero-arrow-next {
            right: 16px;
        }

        .hero-dots {
            position: absolute;
            bottom: 16px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 8px;
            z-index: 5;
        }

        .hero-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.6);
            border: none;
            cursor: pointer;
            padding: 0;
            transition: background 0.3s, transform 0.3s;
        }

        .hero-dot.active {
            background: #23bdad;
            transform: scale(1.2);
        }

        /* ===== DESKTOP VERSION: 16:9, visible by default ===== */
        .hero-desktop {
            display: block;
            aspect-ratio: 16 / 9;
            max-height: 85vh;
            margin-top: 55px;
        }

        .hero-desktop .hero-arrow {
            width: 40px;
            height: 40px;
            font-size: 16px;
        }

        /* ===== MOBILE VERSION: 1:1, hidden by default ===== */
        .hero-mobile {
            display: none;
            aspect-ratio: 2520 / 1080;
            margin-top: 55px;
            /* = 6:5, matches your actual image, zero forced crop */
        }

        .hero-mobile .hero-slide img {
            object-position: top center;
        }

        .hero-mobile .hero-arrow {
            width: 30px;
            height: 30px;
            font-size: 13px;
        }

        .hero-mobile .hero-arrow-prev {
            left: 10px;
        }

        .hero-mobile .hero-arrow-next {
            right: 10px;
        }

        .hero-mobile .hero-dots {
            bottom: 12px;
        }

        /* ===== SWITCH: below 768px, show mobile, hide desktop ===== */
        @media (max-width: 768px) {
            .hero-desktop {
                display: none;
            }

            .hero-mobile {
                display: block;
            }
        }

        /*VIDEO*/
        .styling101 {
            padding: 60px 20px;
            text-align: center;
            overflow: hidden;
        }

        .styling101-header h2 {
            font-size: 50px;
            margin-bottom: 6px;
        }

        .styling101-header p {
            font-size: 15px;
            color: #666;
            margin-bottom: 40px;
        }

        .styling101-carousel {
            position: relative;
            max-width: 1400px;
            margin: 0 auto;
        }

        .styling101-stage {
            position: relative;
            height: 480px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .styling101-card {
            position: absolute;
            width: 260px;
            height: 460px;
            border-radius: 16px;
            overflow: hidden;
            transition: transform 0.5s ease, opacity 0.5s ease, filter 0.5s ease;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
            cursor: pointer;
        }

        .styling101-video-wrap {
            position: relative;
            width: 100%;
            height: 100%;
            background: #000;
        }

        .styling101-video {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        /* Top bar with tag + icons, only visible on active card */
        .styling101-topbar {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 10px 12px;
            background: linear-gradient(to bottom, oklch(0% 0 0 / 0.6), transparent);
            opacity: 0;
            transition: opacity 0.3s;
        }

        .styling101-tag {
            color: #fff;
            font-size: 12px;
            font-weight: 600;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            max-width: 140px;
        }

        .styling101-icons {
            display: flex;
            gap: 8px;
        }

        .s101-icon {
            background: rgba(0, 0, 0, 0.4);
            border: none;
            color: #fff;
            width: 26px;
            height: 26px;
            border-radius: 50%;
            font-size: 12px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        /* Bottom product tag, only visible on active card */
        .styling101-product {
            position: absolute;
            bottom: -2px;
            left: 25px;
            right: 14px;
            display: flex;
            align-items: center;
            gap: 8px;
            background: rgba (#0cf);
            padding: 8px;
            opacity: 0;
            transform: translateY(10px);
            transition: opacity 0.3s, transform 0.3s;
        }

        .styling101-product img {
            width: 36px;
            height: 36px;
            border-radius: 6px;
            object-fit: cover;
        }

        .styling101-product-name {
            flex: 1;
            text-align: left;
            font-size: 14px;
            font-weight: 700;
            margin: 0;
            color: #fff;
        }

        .styling101-product-arrow {
            background: #f2f2f2;
            border: none;
            width: 24px;
            height: 24px;
            border-radius: 50%;
            font-size: 14px;
            cursor: pointer;
        }

        /* Active (center) card shows overlays */
        .styling101-card.is-active .styling101-topbar,
        .styling101-card.is-active .styling101-product {
            opacity: 1;
            transform: translateY(0);
        }

        /* Side cards get dimmed */
        .styling101-card:not(.is-active) {
            filter: brightness(0.55);
        }

        /* Arrows */
        .styling101-arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255, 255, 255, 0.9);
            border: none;
            width: 44px;
            height: 44px;
            border-radius: 50%;
            font-size: 16px;
            cursor: pointer;
            z-index: 20;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
        }

        .styling101-arrow-prev {
            left: 10px;
        }

        .styling101-arrow-next {
            right: 10px;
        }

        @media (max-width: 768px) {
            .styling101-stage {
                height: 360px;
            }

            .styling101-card {
                width: 190px;
                height: 340px;
            }
        }

        .styling101-back-btn {
            position: absolute;
            top: 16px;
            left: 16px;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(0, 0, 0, 0.5);
            color: #fff;
            border: none;
            font-size: 20px;
            display: none;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            z-index: 50;
        }

        /* When wrap is in fullscreen mode */
        .styling101-video-wrap.is-fullscreen {
            display: flex;
            align-items: center;
            justify-content: center;
            background: #000;
        }

        .styling101-video-wrap.is-fullscreen .styling101-back-btn {
            display: flex;
        }

        /* Keep correct video ratio instead of stretching/cropping in fullscreen */
        .styling101-video-wrap.is-fullscreen .styling101-video {
            width: auto;
            height: auto;
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
        }

        .cta-button {
            display: inline-block;
            background: #000000;
            color: white;
            padding: 1rem 2.5rem;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 500;
            transition: all 0.3s ease;
            letter-spacing: 1px;
        }

        .cta-button:hover {
            background: 4a2f18;
            transform: translateY(-2px);
            box-shadow: 0 8px 25px #6543214d;
        }

        element.style {
            background: #fef9f5;
        }

        .featured-products {
            padding: 3rem 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .section-title {
            text-align: center;
            margin-top: 10px;
            font-size: 2.5rem;
            font-weight: 300px;
            color: #333333;
            margin-bottom: 3rem;
            letter-spacing: 4px;
        }

        .section-subtitle {
            text-align: center;
            color: #666666;
            font-size: 1rem;
            margin: 0 auto 2rem;
            max-width: 700px;
            line-height: 1.7;
        }

        /* Products Grid Layout */
        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
            padding: 22px;
            /* Added some padding for the container */
        }

        .collections-grid {
            align-items: start;
            justify-content: center;
        }

        .collections-section .product-card {
            height: auto;
            width: 100%;
            max-width: 420px;
            margin: 0 auto;
        }

        .collections-section .collection-card {
            min-height: unset;
        }

        .collections-section .collection-card .product-image {
            width: 100%;
            aspect-ratio: 1 / 1;
            height: auto;
        }

        .collections-section .collection-card .product-info {
            padding: 1.5rem;
        }

        /* Card Container */
        .product-card {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            cursor: pointer;
            display: flex;
            /* Ensures flex layout for children */
            flex-direction: column;
            min-height: 420px;
        }

        .product-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        }

        .silver-products-grid {
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            align-items: stretch;
            gap: 1.5rem;
        }

        .square-image {
            width: 100%;
            aspect-ratio: 1 / 1;
            overflow: hidden;
        }

        .square-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        /* Image Container - FIXED */
        .product-image {
            width: 100%;
            /* Changed to 100% to fill the card width */
            height: 230px;
            /* Fixed height */
            background: #f5f5f5;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }

        /* Actual Image Styling - NEW ADDITION */
        .product-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            /* Ensures image fills the box nicely. Use 'contain' if you don't want any cropping */
            display: block;
        }

        /* Text Content */
        .product-info {
            padding: 1.5rem;
            text-align: center;
        }

        .product-name {
            font-size: 1.3rem;
            font-weight: 500;
            color: #333333;
            margin-bottom: 0.5rem;
        }

        .product-description {
            color: #666666;
            font-size: 0.9rem;
            margin-bottom: 1rem;
        }

        .product-price {
            font-size: 1rem;
            font-weight: 600;
            color: #000000;
            margin-bottom: 0.5rem;
        }

        .review-stars {
            font-size: 0rem;
            margin-bottom: 0rem;
        }

        .review-mini {
            font-size: 0rem;
            color: #888888;
            font-style: italic;
            margin-top: 0rem;
        }

        .about-section {
            background: #f8f8f8;
            padding: 2rem 2rem;
        }

        .about-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .about-title {
            font-size: 2.5rem;
            font-weight: 300;
            color: #333333;
            margin-bottom: 2rem;
            letter-spacing: 4px;
            text-align: center;
        }

        .about-content {
            display: grid;
            grid-template-columns: 1fr;
            gap: 4rem;
            align-items: center;
            margin-bottom: 4rem;
        }

        .about-text-content {
            text-align: left;
        }

        .about-text {
            font-size: 1.1rem;
            color: #666666;
            line-height: 1.8;
            font-weight: 400;
            margin-bottom: 2rem;
        }

        .about-highlight {
            background: #000000;
            color: white;
            padding: 2rem;
            border-radius: 15px;
            text-align: center;
        }

        .about-highlight h3 {
            font-size: 1.5rem;
            font-weight: 500;
            margin-bottom: 1rem;
        }

        .about-highlight p {
            font-size: 1rem;
            opacity: 0.9;
        }

        .faq-section {
            background: #f8f8f8;
            padding: 2rem;
        }

        .faq-container {
            max-width: 900px;
            margin: 0 auto;
        }

        .faq-intro {
            max-width: 650px;
            margin: -1rem auto 3rem;
            color: #666666;
            text-align: center;
        }

        .faq-list {
            display: grid;
            gap: 1rem;
        }

        .faq-item {
            background: #ffffff;
            border: 1px solid #d5e7e7;
            border-radius: 10px;
            overflow: hidden;
        }

        .faq-item summary {
            position: relative;
            padding: 1.25rem 3.5rem 1.25rem 1.5rem;
            color: #185f58;
            font-size: 1.05rem;
            font-weight: 600;
            cursor: pointer;
            list-style: none;
        }

        .faq-item summary::-webkit-details-marker {
            display: none;
        }

        .faq-item summary::after {
            content: '+';
            position: absolute;
            right: 1.5rem;
            top: 50%;
            transform: translateY(-50%);
            font-size: 1.5rem;
            font-weight: 400;
        }

        .faq-item[open] summary::after {
            content: '\2212';
        }

        .faq-item p {
            margin: 0;
            padding: 0 1.5rem 1.5rem;
            color: #666666;
            line-height: 1.7;
        }

        .faq-item a {
            color: #185f58;
            font-weight: 600;
        }

        .policy-section {
            background: #f8f8f8;
            padding: 2rem;
        }

        .policy-container {
            max-width: 900px;
            margin: 0 auto;
        }

        .policy-intro {
            max-width: 650px;
            margin: -1rem auto 3rem;
            color: #666666;
            text-align: center;
        }

        .policy-content {
            display: grid;
            gap: 1rem;
        }

        .policy-block {
            padding: 1.5rem 1.75rem;
            background: #ffffff;
            border: 1px solid #d5e7e7;
            border-radius: 10px;
        }

        .policy-block h2 {
            margin: 0 0 0.65rem;
            color: #185f58;
            font-size: 1.2rem;
            font-weight: 600;
        }

        .policy-block p {
            margin: 0;
            color: #666666;
            line-height: 1.7;
        }

        .policy-block a {
            color: #128c7e;
            font-weight: 600;
        }

        .dalloz-story {
            max-width: 900px;
            margin: 3rem auto 0;
            padding: 2.5rem;
            background: #ffffff;
            border: 1px solid #d5e7e7;
            border-radius: 15px;
            color: #555555;
            line-height: 1.8;
            text-align: center;
        }

        .dalloz-story-title {
            margin: 0 0 1.25rem;
            color: #185f58;
            font-size: 1.8rem;
            font-weight: 500;
        }

        .dalloz-story p {
            margin: 0 0 1.25rem;
        }

        .dalloz-story p:last-child {
            margin-bottom: 0;
        }

        .dalloz-story-signature {
            color: #333333;
            line-height: 1.6;
        }

        .homepage-story {
            margin: 40pxauto 4rem;
        }

        .why-dalloz {
            max-width: 1200px;
            margin: 0 auto 5rem;
            padding: 4rem 2rem;
            background: linear-gradient(135deg, #f4fbfa 0%, #ffffff 55%, #f8f2ed 100%);
            border-top: 1px solid #d5e7e7;
            border-bottom: 1px solid #eadfd7;
        }

        .about-why-dalloz {
            margin-top: 4rem;
            margin-bottom: 0;
        }

        .why-dalloz-heading {
            max-width: 620px;
            margin: 0 auto 2.5rem;
            text-align: center;
        }

        .why-dalloz-kicker {
            margin: 0 0 0.75rem;
            color: #b36f4d;
            font-size: 0.75rem;
            font-weight: 700;
            letter-spacing: 3px;
            text-transform: uppercase;
        }

        .why-dalloz-heading h2 {
            margin: 0 0 0.75rem;
            color: #185f58;
            font-size: clamp(2rem, 4vw, 3.2rem);
            font-weight: 400;
            letter-spacing: 1px;
        }

        .why-dalloz-heading>p:last-child {
            margin: 0;
            color: #666666;
            font-size: 1.05rem;
        }

        .why-dalloz-grid {
            display: grid;
            grid-template-columns: repeat(6, 1fr);
            gap: 1rem;
            max-width: 1050px;
            margin: 0 auto;
        }

        .why-dalloz-card {
            grid-column: span 2;
            min-height: 190px;
            padding: 1.5rem;
            background: rgba(255, 255, 255, 0.85);
            border: 1px solid rgba(24, 95, 88, 0.14);
            border-radius: 8px;
            box-shadow: 0 10px 25px rgba(24, 95, 88, 0.06);
        }

        .why-dalloz-card-featured {
            background: #185f58;
            color: #ffffff;
        }

        .why-dalloz-card-wide {
            grid-column: span 3;
            min-height: 160px;
        }

        .why-dalloz-card-last {
            background: #f5e9df;
            border-color: #ead1c0;
        }

        .why-dalloz-number {
            display: block;
            margin-bottom: 1.25rem;
            color: #b36f4d;
            font-size: 0.75rem;
            font-weight: 700;
            letter-spacing: 2px;
        }

        .why-dalloz-card-featured .why-dalloz-number {
            color: #f2c4a7;
        }

        .why-dalloz-card h3 {
            margin: 0 0 0.7rem;
            color: #185f58;
            font-size: 1.15rem;
            font-weight: 600;
        }

        .why-dalloz-card-featured h3 {
            color: #ffffff;
        }

        .why-dalloz-card p {
            margin: 0;
            color: #666666;
            font-size: 0.95rem;
            line-height: 1.65;
        }

        .why-dalloz-card-featured p {
            color: rgba(255, 255, 255, 0.88);
        }

        .about-values {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .value-card {
            background: white;
            padding: 2rem;
            border-radius: 15px;
            text-align: center;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
        }

        .value-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
        }

        .value-icon {
            font-size: 3rem;
            box-align: center;
            margin-bottom: 1rem;
            color: #000000;
        }

        .value-title {
            font-size: 1.3rem;
            font-weight: 500;
            color: #333333;
            margin-bottom: 1rem;
        }

        .value-description {
            font-size: 1rem;
            color: #666666;
            line-height: 1.6;
        }

        .about-stats {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
            padding: 2rem 0;
            border-top: 1px solid #e0e0e0;
        }

        .stat-item {
            text-align: center;
        }

        .stat-number {
            font-size: 2.5rem;
            font-weight: 600;
            color: #000000;
            display: block;
        }

        .stat-label {
            font-size: 1rem;
            color: #666666;
            margin-top: 0.5rem;
        }

        .reviews-section {
            padding: 5rem 2rem;
            background: white;
        }

        .reviews-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .reviews-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .review-card {
            background: #f8f8f8;
            padding: 2rem;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
        }

        .review-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
        }

        .review-stars {
            font-size: 1.2rem;
            margin-bottom: 1rem;
        }

        .review-text {
            font-size: 1rem;
            color: #666666;
            line-height: 1.6;
            margin-bottom: 1.5rem;
            font-style: italic;
        }

        .review-author {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .author-avatar {
            width: 50px;
            height: 50px;
            background: #000000;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
        }

        .author-name {
            font-size: 1rem;
            font-weight: 600;
            color: #333333;
            margin-bottom: 0.25rem;
        }

        .author-location {
            font-size: 0.9rem;
            color: #888888;
        }

        .contact-section {
            background: #f8f8f8;
            padding: 3rem 1.5rem;
        }

        .contact-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .contact-content {
            display: flex;
            grid-template-columns: 1fr;
            gap: 3rem;
            margin-top: 3rem;
        }

        .contact-subtitle {
            font-size: 1.5rem;
            font-weight: 500;
            color: #333333;
            margin-bottom: 2rem;
        }

        .contact-item {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
            margin-bottom: 1.5rem;
        }

        .contact-icon {
            font-size: 1.5rem;
            width: 40px;
            height: 40px;
            background: #000000;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .contact-details h4 {
            font-size: 1rem;
            font-weight: 600;
            color: #333333;
            margin-bottom: 0.5rem;
        }

        .contact-details p {
            color: #666666;
            line-height: 1.5;
        }

        .contact-slider-wrapper {
            flex: 1;
        }

        .contact-slider-container {
            position: relative;
            /* width: 350px;
            max-width: 500px; */
            height: 450px;
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            margin: 0 auto;
        }

        .contact-slider-images {
            display: flex;
            height: 100%;
            transition: transform 0.8s ease-in-out;
        }

        .contact-slider-image {
            min-width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 4rem;
            background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
        }

        .contact-slider-dots {
            position: absolute;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 10px;
            z-index: 10;
        }

        .contact-slider-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.5);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .contact-slider-dot.active {
            background: #23bdad;
            width: 30px;
            border-radius: 6px;
        }

        /* ============ TANISHQ-STYLE DARK FOOTER ============ */
        .footer-dark {
            background: #103230;
            color: #f0f0f0;
            padding: 50px 40px 0;
        }

        .footer-dark-top {
            max-width: 1300px;
            margin: 0 auto;
            text-align: center;
            padding-bottom: 30px;
        }

        .footer-dark-logo {
            width: 120px;
            filter: brightness(0) invert(1);
        }

        .footer-dark-main {
            max-width: 1300px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1.3fr 1fr 1fr 1fr;
            gap: 40px;
            padding-bottom: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.12);
            padding-top: 40px;
        }

        .footer-dark-col h3,
        .footer-dark-col h4 {
            color: #ffffff;
            font-weight: 600;
            margin: 0 0 18px;
            font-size: 1.05rem;
        }

        .footer-dark-chat-heading {
            margin-top: 22px;
        }

        .footer-dark-col a {
            display: block;
            color: rgba(255, 255, 255, 0.75);
            text-decoration: none;
            font-size: 0.92rem;
            margin-bottom: 12px;
            transition: color 0.2s ease;
        }

        .footer-dark-col a:hover {
            color: #6bf5e7;
        }

        .footer-qr-box {
            width: 140px;
            height: 140px;
            background: #ffffff;
            border-radius: 8px;
            padding: 10px;
            margin-bottom: 16px;
        }

        .footer-qr-box img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }

        .footer-whatsapp-btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: #23bdad;
            color: #fff;
            padding: 10px 18px;
            border-radius: 6px;
            text-decoration: none;
            font-size: 0.9rem;
            font-weight: 600;
            transition: background 0.25s ease;
        }

        .footer-whatsapp-btn:hover {
            background: #128C7E;
        }

        .footer-dark-phone {
            color: #6bf5e7;
            font-size: 1rem;
            font-weight: 600;
            margin: 0 0 6px;
        }

        .footer-dark-icons {
            display: flex;
            gap: 12px;
        }

        .footer-dark-icons a {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.08);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background 0.25s ease;
        }

        .footer-dark-icons a:hover {
            background: #23bdad;
        }

        .footer-dark-social {
            max-width: 1300px;
            margin: 0 auto;
            border-top: 1px solid rgba(255, 255, 255, 0.12);
            padding: 24px 0;
            display: flex;
            align-items: center;
            gap: 24px;
        }

        .footer-dark-social h4 {
            margin: 0;
            font-size: 1.1rem;
            color: #fff;
        }

        .footer-dark-social-icons {
            display: flex;
            gap: 14px;
        }

        .footer-dark-social-icons a {
            width: 42px;
            height: 42px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.08);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.25s ease;
        }

        .footer-dark-social-icons img {
            filter: brightness(0) invert(1);
        }

        .footer-dark-social-icons a:hover {
            background: #23bdad;
            transform: translateY(-2px);
        }

        .footer-dark-payments {
            max-width: 1300px;
            margin: 0 auto;
            display: flex;
            gap: 12px;
            padding-bottom: 24px;
            flex-wrap: wrap;
        }

        .footer-dark-payments span {
            border: 1px solid rgba(255, 255, 255, 0.25);
            border-radius: 4px;
            padding: 6px 12px;
            font-size: 0.8rem;
            color: rgba(255, 255, 255, 0.7);
        }

        .footer-dark-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.12);
            padding: 20px 0;
            text-align: center;
        }

        .footer-dark-bottom p {
            margin: 0;
            font-size: 0.85rem;
            color: rgba(255, 255, 255, 0.6);
        }

        .footer-dark-bottom a {
            color: rgba(255, 255, 255, 0.6);
            text-decoration: none;
        }

        .footer-dark-bottom a:hover {
            color: #6bf5e7;
        }

        @media (max-width: 900px) {
            .footer-dark-main {
                grid-template-columns: 1fr 1fr;
            }
        }

        @media (max-width: 600px) {
            .footer-dark {
                padding: 40px 20px 0;
            }

            .footer-dark-main {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .footer-dark-social {
                flex-direction: column;
                align-items: flex-start;
                gap: 12px;
            }
        }

        .copyright {
            color: #000000;
            font-size: 0.9rem;
            border-top: 1px solid #555555;
            padding-top: 2rem;
        }

        .modal-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.8);
            z-index: 2000;
            justify-content: center;
            align-items: center;
            padding: 1rem;
        }

        .modal-overlay.active {
            display: flex;
        }

        .modal-content {
            background: white;
            border-radius: 24px;
            max-width: 1100px;
            width: 100%;
            max-height: 94%;
            overflow-y: auto;
            position: relative;
            animation: modalSlideIn 0.3s ease;
        }

        @keyframes modalSlideIn {
            from {
                transform: translateY(-50px);
                opacity: 0;
            }

            to {
                transform: translateY(0);
                opacity: 1;
            }
        }

        .modal-close {
            position: absolute;
            top: 1.5rem;
            right: 1.5rem;
            background: #23bdad;
            color: white;
            border: none;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            font-size: 1.5rem;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            z-index: 10;
        }

        .modal-close:hover {
            background: #000000;
            transform: rotate(90deg);
        }

        .modal-body {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2.5rem;
            padding: 2.5rem 2.5rem 2rem;
        }

        .modal-image-section {
            position: relative;
        }

        /* --- FIX APPLIED HERE --- */
        .modal-main-image {
            width: 100%;
            aspect-ratio: 1 / 1;
            background: #f5f5f5;
            border-radius: 15px;
            margin-bottom: 1rem;
            position: relative;

            /* This clips the slider so it doesn't cover the text */
            overflow: hidden;
        }

        .modal-image-slider {
            display: flex;
            height: 100%;
            transition: transform 0.5s ease;
            /* Ensure the slider starts at the left */
            width: 100%;
        }

        .modal-image-slide {
            min-width: 100%;
            /* Each slide takes full width of the container */
            height: 100%;
            aspect-ratio: 1 / 1;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 6rem;
        }

        /* --- ZOOM FEATURE CSS --- */
        .modal-image-slide {
            overflow: hidden;
            /* Keeps the zoomed image inside the box */
            cursor: crosshair;
            /* Shows user they can zoom */
            position: relative;
        }

        .modal-image-slide img {
            transition: transform 0.2s ease-out;
            /* Smooth zoom entry */
            transform-origin: center center;
            width: 100%;
            height: 100%;
            aspect-ratio: 1 / 1;
            object-fit: cover;
            /* Ensures image covers area */
            pointer-events: none;
            /* Allows mouse events to pass to the parent div */
        }

        /* --- SHARE BUTTON CSS --- */
        .share-btn-container {
            margin-top: 10px;
            margin-bottom: 15px;
        }

        .share-btn {
            background-color: transparent;
            /* WhatsApp Green */
            color: white;
            border: none;
            padding: 8px 15px;
            border-radius: 5px;
            cursor: pointer;
            font-weight: bold;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-size: 0.9rem;
            transition: background 0.3s;
        }

        .share-btn:hover {
            background-color: #c9c9c9;
        }

        .modal-slider-button {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(0, 0, 0, 0.5);
            /* Added transparency for better visibility */
            color: white;
            border: none;
            width: 20px;
            height: 20px;
            border-radius: 50%;
            cursor: pointer;
            font-size: 1.3rem;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            z-index: 5;
        }

        .modal-slider-button:hover {
            background: rgb(0, 0, 0);
            transform: translateY(-50%) scale(1.1);
        }

        .modal-slider-button.prev {
            left: 10px;
        }

        .modal-slider-button.next {
            right: 10px;
        }

        .modal-thumbnails {
            display: flex;
            gap: 0.5rem;
            justify-content: center;
        }

        .modal-thumbnail {
            width: 60px;
            height: 60px;
            background: #f5f5f5;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            cursor: pointer;
            border: 2px solid transparent;
            transition: all 0.3s ease;
        }

        .modal-thumbnail:hover {
            border-color: #000000;
        }

        .modal-thumbnail.active {
            border-color: #000000;
            background: #fef9f5;
        }

        .modal-details {
            display: flex;
            flex-direction: column;
        }

        .modal-product-name {
            font-size: 2rem;
            font-weight: 500;
            color: #333333;
            margin-bottom: 1rem;
        }

        .modal-product-price {
            font-size: 2rem;
            font-weight: 600;
            color: #000000;
            margin-bottom: 1rem;
        }

        .modal-rating {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            margin-bottom: 1.5rem;
        }

        .modal-stars {
            font-size: 1.2rem;
        }

        .modal-rating-text {
            color: #666666;
            font-size: 0.9rem;
        }

        .modal-description {
            font-size: 1rem;
            color: #666666;
            line-height: 1.8;
            margin-bottom: 1.25rem;
            padding-bottom: 1.25rem;
            border-bottom: 1px solid #e0e0e0;
        }

        .modal-size-selector {
            margin-bottom: 1.25rem;
        }

        .modal-size-label {
            font-size: 0.95rem;
            font-weight: 600;
            color: #333333;
            margin-bottom: 0.6rem;
        }

        .modal-size-options {
            display: flex;
            flex-wrap: wrap;
            gap: 0.65rem;
        }

        .modal-size-option {
            border: 1px solid #d8d8d8;
            background: #f8f8f8;
            color: #333333;
            padding: 0.55rem 0.9rem;
            border-radius: 999px;
            cursor: pointer;
            font-size: 0.95rem;
            transition: all 0.2s ease;
        }

        .modal-size-option.active {
            background: #23bdad;
            border-color: #23bdad;
            color: white;
        }

        .modal-specs {
            margin-bottom: 2rem;
        }

        .modal-specs h3 {
            font-size: 1.2rem;
            font-weight: 500;
            color: #333333;
            margin-bottom: 1rem;
        }

        .modal-return-policy {
            margin: 31px 0 0 1.5rem;
            padding: 1rem 1.1rem;
            background: #f8f8f8;
            border-left: 3px solid #23bdad;
            color: #666666;
        }

        .modal-return-policy h3 {
            margin: 0 0 0.4rem;
            color: #333333;
            font-size: 1rem;
            font-weight: 600;
        }

        .modal-return-policy p {
            margin: 0 0 0.45rem;
            font-size: 0.88rem;
            line-height: 1.5;
        }

        .modal-return-policy a {
            color: #128c7e;
            font-size: 0.85rem;
            font-weight: 600;
            text-decoration: none;
        }

        .modal-return-policy a:hover {
            text-decoration: underline;
        }

        .spec-item {
            display: flex;
            justify-content: space-between;
            padding: 0.75rem 0;
            border-bottom: 1px solid #f0f0f0;
        }

        .spec-label {
            color: #666666;
            font-weight: 500;
        }

        .spec-value {
            color: #333333;
        }

        .modal-gift-selector {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 0.75rem;
            margin-bottom: 0.9rem;
            padding: 0.8rem 1rem;
            border: 1px solid #e6d4c2;
            border-radius: 999px;
            background: #fff8f2;
        }

        .modal-gift-option {
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
            border: 1px solid #d6b59b;
            background: #ffffff;
            color: #7a4c2b;
            padding: 0.55rem 0.8rem;
            border-radius: 999px;
            font-size: 0.92rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.2s ease;
        }

        .modal-gift-option.active {
            background: #23bdad;
            border-color: #23bdad;
            color: #ffffff;
        }

        .modal-gift-hint {
            color: #7c6b5e;
            font-size: 0.85rem;
        }

        .modal-actions {
            display: flex;
            gap: 1rem;
            margin-top: auto;
        }

        .modal-button {
            flex: 1;
            padding: 1rem 2rem;
            border: none;
            border-radius: 50px;
            font-size: 1rem;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .modal-button-primary {
            background: #393636;
            color: white;
        }

        .modal-button-primary:hover {
            background: #393636;
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(101, 67, 33, 0.3);
        }

        .modal-button-secondary {
            background: white;
            color: #393636;
            border: 2px solid #393636;
        }

        .modal-button-secondary:hover {
            background: #f8f8f8;
        }

        .modal-reviews {
            padding: 0 3rem 3rem 3rem;
        }

        .modal-reviews h3 {
            font-size: 1.5rem;
            font-weight: 500;
            color: #333333;
            margin-bottom: 1.5rem;
        }

        .modal-review-card {
            background: #f8f8f8;
            padding: 1.5rem;
            border-radius: 12px;
            margin-bottom: 1rem;
        }

        .modal-review-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 0.75rem;
        }

        .modal-review-author {
            font-weight: 600;
            color: #333333;
        }

        .modal-review-stars {
            font-size: 0.9rem;
        }

        .modal-review-text {
            color: #666666;
            line-height: 1.6;
            font-style: italic;
        }

        @media (max-width: 768px) {
            .modal-body {
                grid-template-columns: 1fr;
                gap: 2rem;
                padding: 2rem 1.25rem;
            }

            .modal-main-image {
                width: 100%;
                height: auto;
                font-size: 4rem;
            }

            .modal-image-slide {
                font-size: 4rem;
                height: auto;
            }

            .modal-product-name,
            .modal-product-price {
                font-size: 1.5rem;
            }

            .modal-actions {
                flex-direction: column;
            }

            .modal-reviews {
                padding: 0 1.5rem 2rem 1.5rem;
            }

            .modal-close {
                top: 1rem;
                right: 1rem;
            }
        }

        .whatsapp-btn {
            background-color: #23bdad;
            /* WhatsApp Green */
            color: white;
            border: none;
            font-weight: 600;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .whatsapp-btn:hover {
            background-color: #128C7E;
            /* Darker Green on hover */
            box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4);
            transform: translateY(-2px);
        }

        .category-page {
            display: none;
            padding: 1rem 2rem 3rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        /* ── Thin teal border on every product card, all devices ── */
        .category-item,
        .product-card {
            border: 2px solid #23bdad;
            box-sizing: border-box;
        }

        .category-page.active {
            display: block;
        }

        .category-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
        }

        .category-item {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
        }

        .category-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
        }

        .category-item-image {
            width: 100%;
            height: 350px;
            background: #f5f5f5;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 4rem;
            color: #000000;
            position: relative;
            overflow: hidden;
        }

        .category-item-image .placeholder-icon {
            font-size: 5rem;
            opacity: 0.3;
        }

        .slider-container {
            position: relative;
            width: 100%;
            height: 100%;
        }

        .slider-images {
            display: flex;
            transition: transform 0.5s ease;
            height: 100%;
        }

        .slider-image {
            min-width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 5rem;
            background: #f5f5f5;
        }

        /* Ensures the video behaves exactly like the images */
        .slider-image video {
            width: 100%;
            height: 100%;
            object-fit: cover;
            /* Keeps aspect ratio while filling the box */
            display: block;
        }

        .slider-button {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: #393636;
            color: white;
            border: none;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            cursor: pointer;
            font-size: 1.2rem;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            z-index: 10;
        }

        .slider-button:hover {
            background: #383636;
            transform: translateY(-50%) scale(1.1);
        }

        .slider-button.prev {
            left: 10px;
        }

        .slider-button.next {
            right: 10px;
        }

        .slider-dots {
            position: absolute;
            bottom: 15px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 8px;
            z-index: 10;
        }

        .slider-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.5);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .slider-dot.active {
            background: #23bdad;
            ;
            width: 24px;
            border-radius: 5px;
        }

        .category-item-info {
            padding: 1.5rem;
        }

        .category-item-name {
            font-size: 1.2rem;
            font-weight: 500;
            color: #333333;
            margin-bottom: 0.5rem;
        }

        .category-item-price {
            font-size: 1.1rem;
            font-weight: 600;
            color: #000000;
        }

        @media (max-width: 768px) {
            .nav-menu {
                display: none;
                position: fixed;
                top: 64px;
                left: 0;
                right: 0;
                background: white;
                flex-direction: column;
                padding: 2rem 1.5rem;
                box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
                gap: 0;
                z-index: 999;
                max-height: calc(100vh - 64px);
                overflow-y: auto;
            }

            .nav-menu.mobile-active {
                display: flex;
            }

            .nav-item {
                width: 100%;
                border-bottom: 1px solid #e0e0e0;
                padding: 1rem 0;
            }

            .nav-link {
                display: block;
                padding: 0rem 0;
            }

            .dropdown {
                position: static;
                opacity: 1;
                visibility: visible;
                transform: none;
                box-shadow: none;
                background: #f8f8f8;
                margin-top: 0.5rem;
                border-radius: 8px;
                display: none;
                padding: 0.5rem 0;
            }

            .nav-item:hover .dropdown {
                display: none;
            }

            .nav-menu.mobile-active .dropdown {
                display: block;
            }

            .nav-menu.mobile-active .nav-item.dropdown-parent>.nav-link {
                cursor: default;
                pointer-events: none;
            }

            .nav-container {
                justify-content: center;
                position: relative;
                min-height: 49px;
                padding: 8px 18px;
            }

            .logo {
                position: absolute;
                left: 50%;
                transform: translateX(-50%);
            }

            .mobile-menu-btn {
                display: block;
                position: absolute;
                left: 1.25rem;
                top: 50%;
                transform: translateY(-50%);
                order: 0;
            }

            .hero-title {
                font-size: 2.5rem;
            }

            .hero-subtitle {
                font-size: 1rem;
            }

            .section-title {
                font-size: 2rem;
            }

            .about-title {
                font-size: 2rem;
            }

            .about-content {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .about-text-content {
                text-align: center;
            }

            .about-stats {
                grid-template-columns: repeat(2, 1fr);
            }

            .products-grid {
                grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
                gap: 1.5rem;
            }

            .reviews-grid {
                grid-template-columns: 1fr;
            }

            .contact-content {
                grid-template-columns: 1fr;
                gap: 0rem;
            }

            .contact-slider-container {
                height: 300px;
                max-width: 300px;
            }

            .contact-slider-image {
                font-size: 3.5rem;
            }

            .social-links {
                gap: 1rem;
            }

            .header {
                padding: 0;
            }
        }

        @media (max-width: 768px) {
            .why-dalloz {
                margin-bottom: 3rem;
                padding: 3rem 1rem;
            }

            .about-why-dalloz {
                margin-top: 3rem;
            }

            .why-dalloz-grid {
                grid-template-columns: 1fr;
            }

            .why-dalloz-card,
            .why-dalloz-card-wide {
                grid-column: auto;
                min-height: 0;
                padding: 1.35rem;
            }

            .category-grid {
                grid-template-columns: repeat(2, minmax(0, 1fr));
                gap: 1rem;
            }

            .review-stars {
                font-size: 0.75rem;
                margin-bottom: 1rem;
            }

            .slider-button {
                display: none;
            }
        }

        @media (max-width: 480px) {
            .hero-title {
                font-size: 2rem;
            }

            .products-grid {
                grid-template-columns: 1fr;
            }

            .category-grid {
                grid-template-columns: repeat(2, minmax(0, 1fr));
                gap: 0.75rem;
            }

            .category-item-image {
                height: 128px;
            }

            .category-item-info {
                padding: 0.8rem;
            }

            .category-item-name {
                font-size: 0.95rem;
            }

            .category-item-price {
                font-size: 0.9rem;
            }

            .about-stats {
                grid-template-columns: 1fr;
            }
        }

        .modal-image-slide img {
            transition: none;
            transform-origin: center center;
            width: 100%;
            height: 100%;
            object-fit: cover;
            pointer-events: none;
            display: block;
            will-change: transform;
        }

        .nav-menu.mobile-active {
            display: flex;
            flex-direction: column;
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            background: #ffffff;
            padding: 12px 20px 18px 20px;
            gap: 12px;
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
            z-index: 999;
        }

        .nav-menu.mobile-active .nav-item {
            width: 100%;
        }

        .nav-menu.mobile-active .nav-link {
            display: block;
            padding: 10px 8px;
        }

        /* Secondary categories nav (desktop) */
        .subnav {
            background: #fff;
            border-top: 1px solid #eee;
            border-bottom: 1px solid #eee;
            position: relative;
            z-index: 900;
            position: sticky;
            top: 80px;
        }

        .subnav-inner {
            max-width: 1150px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 10px 20px;
            gap: 12px;
        }

        .subnav-list {
            display: flex;
            gap: 28px;
            list-style: none;
            margin: 0;
            padding: 0;
            align-items: center;
        }

        .subnav-link {
            color: #111;
            text-decoration: none;
            font-size: 15px;
            padding: 6px 0;
        }

        .categories-btn {
            display: none;
            background: none;
            border: none;
            font-size: 14px;
            cursor: pointer;
            color: #111;
            padding: 6px 8px;
        }

        /* Off-canvas categories panel (mobile) */
        .categories-panel {
            position: fixed;
            inset: 0;
            background: rgba(0, 0, 0, 0.5);
            display: none;
            z-index: 1200;
            align-items: flex-start;
            justify-content: center;
            overflow: auto;
            padding: 1rem 0.75rem;
        }

        .categories-panel.active,
        .categories-panel[aria-hidden="false"] {
            display: flex;
        }

        .categories-panel-inner {
            width: 100%;
            max-height: 88vh;
            max-width: 420px;
            background: #ffffff;
            border-radius: 26px;
            overflow: auto;
            box-shadow: 0 32px 70px rgba(0, 0, 0, 0.18);
        }

        .categories-panel-top {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 18px 20px;
            border-bottom: 1px solid #f0f0f0;
        }

        .panel-brand {
            font-weight: 700;
            letter-spacing: 3px;
            font-size: 0.95rem;
            color: #111;
        }

        .panel-close {
            background: none;
            border: none;
            font-size: 1.3rem;
            cursor: pointer;
            color: #111;
            padding: 0.25rem;
        }

        .panel-list {
            display: flex;
            flex-direction: column;
            gap: 0.25rem;
            padding-bottom: 1rem;
        }

        .panel-section {
            border-bottom: 1px solid #f0f0f0;
        }

        .panel-summary,
        .panel-summary-single {
            width: 100%;
            background: none;
            border: none;
            padding: 1.05rem 1.25rem;
            text-align: left;
            font-size: 1rem;
            font-weight: 700;
            color: #111;
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
        }

        .panel-summary::after {
            content: '+';
            font-size: 1.2rem;
            color: #999;
        }

        .panel-section.open>.panel-summary::after {
            content: '−';
        }

        .panel-dropdown {
            display: none;
            flex-direction: column;
            gap: 0.25rem;
            padding: 0 1.25rem 1rem;
            background: #fafafa;
        }

        .panel-section.open>.panel-dropdown {
            display: flex;
        }

        .panel-link {
            display: block;
            padding: 0.75rem 0.9rem;
            color: #111;
            text-decoration: none;
            font-size: 0.95rem;
            background: #ffffff;
            border-radius: 14px;
            border: 1px solid #eee;
        }

        .panel-link:hover {
            background: #f6f6f6;
        }

        .panel-summary-single {
            padding-bottom: 1rem;
        }

        .categories-tabs {
            display: flex;
            gap: 0;
            border-bottom: 1px solid #eee;
        }

        .cat-tab {
            flex: 1;
            padding: 20px 7px;
            background: #f6f6f6;
            border: none;
            cursor: pointer;
            text-align: center;
            font-weight: 700;
        }

        .cat-tab.active {
            background: #fff;
            border-bottom: 3px solid #222;
        }

        .categories-content {
            padding: 26px;
        }

        .cat-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 12px;
        }

        .cat-tile {
            display: block;
            background: #fafafa;
            padding: 14px;
            text-align: center;
            text-decoration: none;
            color: #111;
            border-radius: 6px;
        }

        .cat-viewall {
            display: block;
            text-align: center;
            margin-top: 8px;
            color: #0b6;
            text-decoration: underline;
        }

        .hidden {
            display: none;
        }

        @media(min-width:769px) {
            .categories-btn {
                display: none;
            }

            .categories-panel {
                display: none !important;
            }
        }

        @media(max-width:768px) {
            .subnav {
                display: none;
            }
        }