/* ════════════════════════════════════════════
           PREMIUM LUXURY JEWELLERY CSS
           Enhanced with smooth animations, glassmorphism,
           and refined aesthetics
           ════════════════════════════════════════════ */

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

        html {
            scroll-behavior: smooth;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        body {
            font-family: "Lato", sans-serif;
            background: #fcfaf7;
            color: #1e3329;
            overflow-x: hidden;
            line-height: 1.6;
        }

        img, video {
            max-width: 100%;
        }

        .font-heading {
            font-family: "Playfair Display", serif;
            font-weight: 600;
            letter-spacing: -0.01em;
        }

        ::-webkit-scrollbar {
            width: 6px;
        }
        ::-webkit-scrollbar-track {
            background: #f5f0ea;
        }
        ::-webkit-scrollbar-thumb {
            background: linear-gradient(180deg, #dcb36d, #cba153);
            border-radius: 6px;
        }
        ::-webkit-scrollbar-thumb:hover {
            background: #b8924a;
        }

        @keyframes fadeUp {
            from {
                opacity: 0;
                transform: translateY(50px) scale(0.97);
            }
            to {
                opacity: 1;
                transform: translateY(0) scale(1);
            }
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
            }
            to {
                opacity: 1;
            }
        }

        @keyframes slideInLeft {
            from {
                opacity: 0;
                transform: translateX(-60px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes slideInRight {
            from {
                opacity: 0;
                transform: translateX(60px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes scaleIn {
            from {
                opacity: 0;
                transform: scale(0.85);
            }
            to {
                opacity: 1;
                transform: scale(1);
            }
        }

        @keyframes goldShimmer {
            0% {
                background-position: -300% center;
            }
            100% {
                background-position: 300% center;
            }
        }

        @keyframes float {
            0%,
            100% {
                transform: translateY(0px);
            }
            50% {
                transform: translateY(-14px);
            }
        }

        @keyframes floatSlow {
            0%,
            100% {
                transform: translateY(0px) rotate(0deg);
            }
            50% {
                transform: translateY(-20px) rotate(1.5deg);
            }
        }

        @keyframes pulseGlow {
            0%,
            100% {
                box-shadow: 0 0 20px rgba(220, 179, 109, 0.15);
            }
            50% {
                box-shadow: 0 0 40px rgba(220, 179, 109, 0.3);
            }
        }

        @keyframes tickerScroll {
            0% {
                transform: translateX(0);
            }
            100% {
                transform: translateX(-50%);
            }
        }

        @keyframes shimmer {
            0% {
                background-position: -200% center;
            }
            100% {
                background-position: 200% center;
            }
        }

        .animate-fade-up {
            animation: fadeUp 0.9s cubic-bezier(0.22, 1, 0.36, 1) forwards;
        }
        .animate-fade-in {
            animation: fadeIn 0.8s ease forwards;
        }
        .animate-slide-left {
            animation: slideInLeft 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
        }
        .animate-slide-right {
            animation: slideInRight 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
        }
        .animate-scale-in {
            animation: scaleIn 0.7s cubic-bezier(0.22, 1, 0.36, 1) forwards;
        }
        .animate-float {
            animation: float 4s ease-in-out infinite;
        }
        .animate-float-slow {
            animation: floatSlow 7s ease-in-out infinite;
        }
        .animate-pulse-glow {
            animation: pulseGlow 3s ease-in-out infinite;
        }
        .animate-gold-shimmer {
            background-size: 300% auto;
            animation: goldShimmer 4s linear infinite;
        }

        /* ─── HEADER ─── */
        #mainHeader {
            background: transparent;
            transition: all 0.6s cubic-bezier(0.22, 1, 0.36, 1);
            color: #ffffff;
        }

        #mainHeader .hamburger-line-compact {
            background: #ffffff;
            transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
        }

        #mainHeader.header-scrolled {
            background: rgba(0, 0, 0, 0.92);
            backdrop-filter: blur(20px) saturate(1.2);
            box-shadow: 0 4px 60px rgba(0, 0, 0, 0.3);
            color: #ffffff;
            border-bottom: 1px solid rgba(220, 179, 109, 0.08);
        }

        /* ─── HAMBURGER BUTTON ─── */
        .hamburger-btn-compact {
            width: 44px;
            height: 44px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 5px;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            cursor: pointer;
            padding: 8px;
            border-radius: 12px;
            transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
            position: relative;
            z-index: 50;
            backdrop-filter: blur(4px);
            flex-shrink: 0;
        }

        .hamburger-btn-compact:hover {
            background: rgba(255, 255, 255, 0.12);
            border-color: rgba(220, 179, 109, 0.3);
            transform: scale(1.02);
        }

        .hamburger-line-compact {
            width: 24px;
            height: 2px;
            background: #ffffff;
            border-radius: 4px;
            transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
            transform-origin: center;
        }

        .hamburger-btn-compact.active .hamburger-line-compact:nth-child(1) {
            transform: translateY(7px) rotate(45deg);
            background: #dcb36d;
        }

        .hamburger-btn-compact.active .hamburger-line-compact:nth-child(2) {
            opacity: 0;
            transform: scaleX(0);
        }

        .hamburger-btn-compact.active .hamburger-line-compact:nth-child(3) {
            transform: translateY(-7px) rotate(-45deg);
            background: #dcb36d;
        }

        /* ─── HEADER SOCIAL ICONS ─── */
        .social-icon-header {
            width: 38px;
            height: 38px;
            border-radius: 50%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            color: #ffffff;
            transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
            font-size: 15px;
            text-decoration: none;
            background: rgba(255, 255, 255, 0.06);
            border: 1px solid rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(4px);
            flex-shrink: 0;
        }

        .social-icon-header:hover {
            background: #dcb36d;
            color: #11261d;
            transform: translateY(-3px) scale(1.05);
            box-shadow: 0 8px 25px rgba(220, 179, 109, 0.35);
            border-color: #dcb36d;
        }

        /* ─── COMPACT DROPDOWN MENU ─── */
        #mobileMenu {
            transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
            transform: translateY(-200%);
            max-height: 85vh;
            overflow-y: auto;
            background: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(20px);
            box-shadow: 0 20px 80px rgba(0, 0, 0, 0.12);
            border-bottom: 1px solid rgba(220, 179, 109, 0.1);
        }

        #mobileMenu.open {
            transform: translateY(0);
        }

        #mobileOverlay {
            transition: opacity 0.4s ease;
            background: rgba(0, 0, 0, 0.5);
            backdrop-filter: blur(4px);
        }

        #mobileOverlay.open {
            opacity: 1;
        }

        #mobileOverlay:not(.hidden) {
            display: block;
        }

        .mobile-nav-compact {
            display: block;
            padding: 8px 0;
            font-weight: 600;
            font-size: 14px;
            color: #1e3329;
            transition: all 0.3s ease;
            border-bottom: 1px solid transparent;
            letter-spacing: 0.02em;
            text-decoration: none;
        }

        .mobile-nav-compact:hover,
        .mobile-nav-compact.active {
            color: #dcb36d;
            border-bottom-color: #dcb36d;
            transform: translateX(4px);
        }

        .social-icon-compact {
            width: 42px;
            height: 42px;
            border-radius: 50%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: #f5f0ea;
            color: #1e3329;
            transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
            font-size: 16px;
            border: 1px solid rgba(140, 156, 148, 0.08);
            text-decoration: none;
        }

        .social-icon-compact:hover {
            background: #dcb36d;
            color: #ffffff;
            transform: translateY(-3px) scale(1.05);
            box-shadow: 0 8px 25px rgba(220, 179, 109, 0.3);
        }

        /* ─── MOBILE CATEGORY CHIP ─── */
        .mobile-cat-chip {
            display: inline-block;
            padding: 6px 18px;
            border-radius: 30px;
            border: 1px solid #d4c8bc;
            font-size: 12px;
            font-weight: 600;
            color: #1e3329;
            background: transparent;
            transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
            cursor: pointer;
            text-decoration: none;
            letter-spacing: 0.02em;
        }

        .mobile-cat-chip:hover {
            border-color: #dcb36d;
            color: #dcb36d;
            background: rgba(220, 179, 109, 0.06);
            transform: translateY(-2px);
            box-shadow: 0 4px 15px rgba(220, 179, 109, 0.1);
        }

        /* ─── HERO SECTION ─── */
        .hero-section {
            background: #0a0a0a;
            position: relative;
        }

        .hero-video {
            position: absolute;
            top: 50%;
            left: 50%;
            min-width: 100%;
            min-height: 100%;
            width: auto;
            height: auto;
            transform: translate(-50%, -50%);
            object-fit: cover;
            transition: opacity 0.8s ease;
        }

        #heroVideoWrapper {
            background: #0a0a0a;
        }

        #heroVideoWrapper::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(17, 38, 29, 0.6) 0%, rgba(0, 0, 0, 0.3) 100%);
            z-index: 1;
            pointer-events: none;
        }

        .hero-title {
            text-shadow: 0 2px 40px rgba(0, 0, 0, 0.3);
        }

        /* ─── SECTION DIVIDER ─── */
        .section-divider {
            width: 70px;
            height: 3px;
            background: linear-gradient(90deg, #dcb36d, #cba153, #dcb36d);
            background-size: 200% auto;
            border-radius: 4px;
            margin: 0 auto 16px;
            animation: goldShimmer 3s linear infinite;
            position: relative;
        }

        .section-divider::after {
            content: '✦';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            color: #dcb36d;
            font-size: 12px;
            background: #fcfaf7;
            padding: 0 8px;
        }

        /* ─── BUTTONS (fluid + wrap-safe across every screen size) ─── */
        .btn-gold,
        .btn-outline,
        .btn-outline-white,
        .btn-dark {
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.06em;
            padding: clamp(10px, 2.6vw, 14px) clamp(18px, 5vw, 38px);
            border-radius: 50px;
            transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
            cursor: pointer;
            font-size: clamp(11px, 2.6vw, 13px);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            text-decoration: none;
            position: relative;
            overflow: hidden;
            white-space: normal;
            text-align: center;
            line-height: 1.3;
            max-width: 100%;
        }

        .btn-gold {
            background: linear-gradient(135deg, #dcb36d, #cba153);
            color: #11261d;
            border: none;
            box-shadow: 0 4px 25px rgba(220, 179, 109, 0.25);
        }

        .btn-gold::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, #e8c88a, #dcb36d);
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .btn-gold:hover {
            transform: translateY(-3px) scale(1.02);
            box-shadow: 0 12px 40px rgba(220, 179, 109, 0.4);
        }

        .btn-gold:hover::before {
            opacity: 1;
        }

        .btn-gold i,
        .btn-gold span {
            position: relative;
            z-index: 2;
        }

        .btn-outline {
            border: 1.5px solid #dcb36d;
            color: #dcb36d;
            background: transparent;
        }

        .btn-outline::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, #dcb36d, #cba153);
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .btn-outline:hover {
            color: #11261d;
            transform: translateY(-3px) scale(1.02);
            box-shadow: 0 12px 40px rgba(220, 179, 109, 0.25);
        }

        .btn-outline:hover::before {
            opacity: 1;
        }

        .btn-outline i,
        .btn-outline span {
            position: relative;
            z-index: 2;
        }

        .btn-outline-white {
            border: 1.5px solid rgba(255, 255, 255, 0.4);
            color: #ffffff;
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(4px);
        }

        .btn-outline-white:hover {
            background: #ffffff;
            color: #11261d;
            transform: translateY(-3px) scale(1.02);
            box-shadow: 0 12px 40px rgba(255, 255, 255, 0.15);
            border-color: #ffffff;
        }

        .btn-dark {
            background: #11261d;
            color: #ffffff;
            border: none;
            box-shadow: 0 4px 25px rgba(0, 0, 0, 0.15);
        }

        .btn-dark:hover {
            transform: translateY(-3px) scale(1.02);
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
            background: #1a3329;
        }

        /* Buttons stack cleanly and stay full-width-safe on very narrow screens */
        @media (max-width: 380px) {
            .btn-gold,
            .btn-outline,
            .btn-outline-white,
            .btn-dark {
                width: 100%;
            }
        }

        /* ─── CATEGORY CARD ─── */
        .category-card {
            background: #ffffff;
            border-radius: 20px;
            padding: 28px 16px 32px;
            text-align: center;
            border: 1px solid rgba(220, 179, 109, 0.08);
            transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
            cursor: pointer;
            position: relative;
            overflow: hidden;
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.02);
        }

        .category-card::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(220, 179, 109, 0.03), transparent 60%);
            opacity: 0;
            transition: opacity 0.5s ease;
        }

        .category-card:hover {
            transform: translateY(-8px) scale(1.01);
            box-shadow: 0 20px 60px rgba(17, 38, 29, 0.08);
            border-color: rgba(220, 179, 109, 0.25);
        }

        .category-card:hover::before {
            opacity: 1;
        }

        .category-card::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            width: 0;
            height: 3px;
            background: linear-gradient(90deg, #dcb36d, #cba153);
            transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
            transform: translateX(-50%);
            border-radius: 4px;
        }

        .category-card:hover::after {
            width: 60%;
        }

        .category-image-wrap {
            width: 88px;
            height: 88px;
            margin: 0 auto 14px;
            border-radius: 50%;
            overflow: hidden;
            border: 2px solid rgba(220, 179, 109, 0.15);
            transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
        }

        .category-card:hover .category-image-wrap {
            border-color: #dcb36d;
            transform: scale(1.06);
            box-shadow: 0 8px 30px rgba(220, 179, 109, 0.15);
        }

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

        .category-card:hover .category-image-wrap img {
            transform: scale(1.08);
        }

        .category-card h3 {
            font-size: 1.3rem;
            transition: color 0.3s ease;
        }

        .category-card:hover h3 {
            color: #dcb36d;
        }

        /* ─── PRODUCT CARD (E-COMMERCE) ─── */
        .product-grid-ecom {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 16px;
            max-width: 1400px;
            margin: 0 auto;
        }

        .product-card-ecom {
            background: #ffffff;
            border-radius: 16px;
            overflow: hidden;
            border: 1px solid rgba(220, 179, 109, 0.06);
            transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
            position: relative;
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.02);
        }

        .product-card-ecom::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(220, 179, 109, 0.03), transparent 60%);
            opacity: 0;
            transition: opacity 0.5s ease;
            pointer-events: none;
            z-index: 1;
        }

        .product-card-ecom:hover {
            transform: translateY(-8px) scale(1.01);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
            border-color: rgba(220, 179, 109, 0.2);
        }

        .product-card-ecom:hover::before {
            opacity: 1;
        }

        .product-card-ecom .product-image-wrap {
            position: relative;
            overflow: hidden;
            background: #f8f5f0;
            aspect-ratio: 1/1;
        }

        .product-card-ecom .product-image-wrap img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
        }

        .product-card-ecom:hover .product-image-wrap img {
            transform: scale(1.06);
        }

        .product-card-ecom .product-badge {
            position: absolute;
            top: 10px;
            left: 10px;
            background: linear-gradient(135deg, #dcb36d, #cba153);
            color: #11261d;
            font-size: 8px;
            font-weight: 700;
            text-transform: uppercase;
            padding: 3px 12px;
            border-radius: 20px;
            letter-spacing: 0.06em;
            z-index: 2;
            box-shadow: 0 4px 15px rgba(220, 179, 109, 0.25);
            transition: all 0.3s ease;
        }

        .product-card-ecom:hover .product-badge {
            transform: scale(1.05);
            box-shadow: 0 4px 20px rgba(220, 179, 109, 0.35);
        }

        .product-card-ecom .product-badge.premium {
            background: linear-gradient(135deg, #1a1a2e, #2d2d44);
            color: #dcb36d;
        }

        .product-card-ecom .product-badge.bestseller {
            background: linear-gradient(135deg, #dcb36d, #b8924a);
            color: #fff;
        }

        .product-card-ecom .product-badge.new {
            background: linear-gradient(135deg, #2ecc71, #27ae60);
            color: #fff;
        }

        .product-card-ecom .product-badge.hot {
            background: linear-gradient(135deg, #e67e22, #d35400);
            color: #fff;
        }

        .product-card-ecom .product-badge.trending {
            background: linear-gradient(135deg, #8e44ad, #6c3483);
            color: #fff;
        }

        .product-card-ecom .product-badge.sale {
            background: linear-gradient(135deg, #e74c3c, #c0392b);
            color: #fff;
        }

        .product-card-ecom .product-rating {
            position: absolute;
            bottom: 10px;
            right: 10px;
            background: rgba(0, 0, 0, 0.7);
            backdrop-filter: blur(8px);
            color: #fff;
            padding: 3px 10px;
            border-radius: 14px;
            font-size: 10px;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 4px;
            z-index: 2;
            border: 1px solid rgba(255, 255, 255, 0.06);
        }

        .product-card-ecom .product-rating i {
            color: #f1c40f;
            font-size: 9px;
        }

        .product-card-ecom .product-info {
            padding: 12px 14px 14px;
            position: relative;
            z-index: 2;
        }

        .product-card-ecom .product-info .product-name {
            font-size: 13px;
            font-weight: 600;
            color: #1e3329;
            line-height: 1.35;
            margin-bottom: 3px;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
            transition: color 0.3s ease;
        }

        .product-card-ecom:hover .product-info .product-name {
            color: #dcb36d;
        }

        .product-card-ecom .product-info .product-category {
            font-size: 11px;
            color: #8c9c94;
            margin-bottom: 8px;
            letter-spacing: 0.02em;
        }

        .product-card-ecom .product-info .view-btn {
            width: 100%;
            padding: 9px 0;
            background: #11261d;
            color: #ffffff;
            border: none;
            border-radius: 10px;
            font-size: 11px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.06em;
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
            position: relative;
            overflow: hidden;
        }

        .product-card-ecom .product-info .view-btn::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, #dcb36d, #cba153);
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .product-card-ecom .product-info .view-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(220, 179, 109, 0.3);
        }

        .product-card-ecom .product-info .view-btn:hover::before {
            opacity: 1;
        }

        .product-card-ecom .product-info .view-btn > * {
            position: relative;
            z-index: 2;
        }

        .product-card-ecom .product-info .view-btn:hover {
            color: #11261d;
        }

        /* ─── TESTIMONIALS (SCROLLABLE) ─── */
        .testimonials-scroll-wrapper {
            position: relative;
            width: 100%;
            overflow: hidden;
        }

        .testimonials-scroll-container {
            display: flex;
            gap: 24px;
            overflow-x: auto;
            padding: 8px 4px 20px;
            scroll-snap-type: x mandatory;
            -webkit-overflow-scrolling: touch;
            scroll-behavior: smooth;
        }

        .testimonials-scroll-container::-webkit-scrollbar {
            height: 4px;
        }
        .testimonials-scroll-container::-webkit-scrollbar-track {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 4px;
        }
        .testimonials-scroll-container::-webkit-scrollbar-thumb {
            background: #dcb36d;
            border-radius: 4px;
        }

        .testimonial-card {
            flex: 0 0 280px;
            scroll-snap-align: start;
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            padding: 28px 24px;
            border: 1px solid rgba(255, 255, 255, 0.06);
            transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
            min-width: 260px;
        }

        .testimonial-card:hover {
            transform: translateY(-6px);
            border-color: rgba(220, 179, 109, 0.2);
            background: rgba(255, 255, 255, 0.08);
        }

        .testimonial-card .stars {
            color: #dcb36d;
            font-size: 14px;
            letter-spacing: 2px;
            margin-bottom: 12px;
        }

        .testimonial-card .name {
            font-weight: 700;
            font-size: 16px;
            color: #fff;
            margin-bottom: 2px;
        }

        .testimonial-card .subtitle {
            font-size: 12px;
            color: rgba(255, 255, 255, 0.4);
            margin-bottom: 10px;
        }

        .testimonial-card .quote {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.7);
            line-height: 1.6;
            font-style: italic;
        }

        .testimonial-card .quote::before {
            content: '\201C';
            font-size: 24px;
            color: #dcb36d;
            margin-right: 4px;
        }

        .testimonial-card .quote::after {
            content: '\201D';
            font-size: 24px;
            color: #dcb36d;
            margin-left: 4px;
        }

        .scroll-hint {
            animation: pulseGlow 2s ease-in-out infinite;
        }

        /* ─── BRANDS GRID ─── */
        .brand-item {
            background: #ffffff;
            border-radius: 16px;
            padding: 20px 16px;
            text-align: center;
            border: 1px solid rgba(220, 179, 109, 0.06);
            transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.02);
        }

        .brand-item:hover {
            transform: translateY(-6px);
            border-color: rgba(220, 179, 109, 0.2);
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
        }

        .brand-item .brand-icon {
            font-size: 32px;
            color: #dcb36d;
            margin-bottom: 8px;
            display: block;
        }

        .brand-item .brand-name {
            font-weight: 600;
            font-size: 13px;
            color: #1e3329;
        }

        /* ─── OFFER FILTER CHIPS ─── */
        .offer-chip {
            padding: 5px 16px;
            border-radius: 30px;
            border: 1.5px solid #d4c8bc;
            font-size: 11px;
            font-weight: 600;
            color: #1e3329;
            background: transparent;
            cursor: pointer;
            transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
            letter-spacing: 0.02em;
        }

        .offer-chip:hover {
            border-color: #dcb36d;
            color: #dcb36d;
            transform: translateY(-2px);
        }

        .offer-chip.active {
            background: #11261d;
            border-color: #11261d;
            color: #dcb36d;
            box-shadow: 0 4px 20px rgba(17, 38, 29, 0.12);
        }

        /* ─── TICKER ─── */
        .ticker-wrap {
            width: 100%;
            overflow: hidden;
            background: linear-gradient(135deg, #11261d, #1a3329);
            padding: 16px 0;
            border-radius: 14px;
            position: relative;
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
        }

        .ticker-wrap::before,
        .ticker-wrap::after {
            content: '';
            position: absolute;
            top: 0;
            bottom: 0;
            width: 60px;
            z-index: 2;
            pointer-events: none;
        }

        .ticker-wrap::before {
            left: 0;
            background: linear-gradient(90deg, #11261d, transparent);
        }
        .ticker-wrap::after {
            right: 0;
            background: linear-gradient(270deg, #11261d, transparent);
        }

        .ticker {
            display: flex;
            white-space: nowrap;
            animation: tickerScroll 30s linear infinite;
        }

        .ticker-text {
            font-size: 15px;
            font-weight: 600;
            color: #dcb36d;
            letter-spacing: 0.06em;
            padding-right: 60px;
            text-transform: uppercase;
            text-shadow: 0 0 20px rgba(220, 179, 109, 0.05);
        }

        .ticker-wrap:hover .ticker {
            animation-play-state: paused;
        }

        /* ─── REELS GRID ─── */
        .reels-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .reel-item {
            position: relative;
            border-radius: 18px;
            overflow: hidden;
            aspect-ratio: 9 / 16;
            background: #0a0a0a;
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
            transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
            cursor: pointer;
            width: 100%;
        }

        .reel-item:hover {
            transform: translateY(-8px) scale(1.02);
            box-shadow: 0 16px 60px rgba(0, 0, 0, 0.15);
        }

        .reel-item video {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border: none;
            transition: opacity 0.4s ease;
            display: block;
        }

        .reel-item .reel-placeholder {
            position: absolute;
            inset: 0;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            background: rgba(0, 0, 0, 0.5);
            color: #ffffff;
            font-size: 14px;
            font-weight: 600;
            gap: 8px;
            transition: opacity 0.5s ease;
            pointer-events: none;
            z-index: 2;
            backdrop-filter: blur(4px);
        }

        .reel-item .reel-placeholder i {
            font-size: 52px;
            color: #dcb36d;
            animation: float 3s ease-in-out infinite;
        }

        .reel-item .reel-placeholder span:last-child {
            font-size: 10px;
            color: rgba(255, 255, 255, 0.5);
            font-weight: 400;
        }

        .reel-item.loaded .reel-placeholder {
            opacity: 0;
            pointer-events: none;
        }

        .reel-link-overlay {
            position: absolute;
            inset: 0;
            z-index: 3;
            cursor: pointer;
        }

        .reel-item .reel-play-btn {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            z-index: 4;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: rgba(220, 179, 109, 0.15);
            backdrop-filter: blur(8px);
            color: #ffffff;
            font-size: 24px;
            display: none;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
            pointer-events: auto;
            border: 1.5px solid rgba(255, 255, 255, 0.1);
        }

        .reel-item .reel-play-btn:hover {
            background: rgba(220, 179, 109, 0.25);
            transform: translate(-50%, -50%) scale(1.08);
            border-color: rgba(220, 179, 109, 0.3);
        }

        .reel-item .reel-play-btn:active {
            transform: translate(-50%, -50%) scale(0.95);
        }

        .reel-item .reel-play-btn i {
            pointer-events: none;
        }

        @media (max-width: 767px) {
            .reel-item .reel-play-btn {
                display: flex;
            }
        }

        /* ─── SOCIAL ICON (GENERIC) ─── */
        .social-icon {
            width: 42px;
            height: 42px;
            border-radius: 50%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
            font-size: 16px;
            border: none;
            text-decoration: none;
            flex-shrink: 0;
        }

        .social-icon:hover {
            transform: translateY(-4px) scale(1.05);
            box-shadow: 0 8px 25px rgba(220, 179, 109, 0.3);
        }

        /* ─── FORM ─── */
        .form-input {
            width: 100%;
            padding: 14px 18px;
            border: 1.5px solid #e8e0d8;
            border-radius: 12px;
            font-size: 14px;
            font-family: "Lato", sans-serif;
            background: #faf8f5;
            transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
            outline: none;
            color: #1e3329;
        }

        .form-input:focus {
            border-color: #dcb36d;
            box-shadow: 0 0 0 4px rgba(220, 179, 109, 0.1);
            background: #ffffff;
            transform: translateY(-1px);
        }

        /* ─── LUXURY CARD ─── */
        .luxury-card {
            transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
        }

        .luxury-card:hover .w-20 {
            background: #dcb36d !important;
            color: #ffffff !important;
        }

        /* ═══════════════════════════════════════════
           RESPONSIVE — tuned for every common breakpoint
           ═══════════════════════════════════════════ */

        @media (max-width: 1024px) {
            .reels-grid {
                grid-template-columns: repeat(3, 1fr);
                gap: 16px;
            }
            .testimonials-scroll-container {
                gap: 16px;
            }
            .testimonial-card {
                flex: 0 0 240px;
                min-width: 220px;
            }
        }

        @media (max-width: 768px) {
            .hero-title {
                font-size: 36px !important;
            }
            .reels-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 12px;
            }
            .ticker-text {
                font-size: 12px;
            }
            .category-image-wrap {
                width: 68px;
                height: 68px;
            }
            .category-card {
                padding: 18px 12px 22px;
            }
            .category-card h3 {
                font-size: 1.1rem !important;
            }
            .hero-video {
                min-width: 100%;
                min-height: 100%;
            }
            #mainHeader .h-20 {
                height: 64px;
            }
            .hamburger-btn-compact {
                width: 40px;
                height: 40px;
            }
            .hamburger-line-compact {
                width: 22px;
                height: 2px;
            }
            .social-icon-header {
                width: 34px;
                height: 34px;
                font-size: 13px;
            }
            .product-grid-ecom {
                gap: 12px;
            }
            .product-card-ecom .product-info {
                padding: 10px 12px 12px;
            }
            .product-card-ecom .product-info .product-name {
                font-size: 12px;
            }
            .product-card-ecom .product-info .view-btn {
                font-size: 10px;
                padding: 7px 0;
            }
            .testimonials-scroll-container {
                gap: 12px;
                padding-bottom: 12px;
            }
            .testimonial-card {
                flex: 0 0 200px;
                min-width: 180px;
                padding: 20px 16px;
            }
            .testimonial-card .quote {
                font-size: 12px;
            }
            .testimonial-card .name {
                font-size: 14px;
            }
            /* generic section padding tightened so content breathes on tablets/phones */
            section {
                padding-top: clamp(48px, 8vw, 96px);
                padding-bottom: clamp(48px, 8vw, 96px);
            }
        }

        @media (max-width: 480px) {
            .hero-title {
                font-size: 28px !important;
            }
            .reels-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 10px;
            }
            .category-image-wrap {
                width: 56px;
                height: 56px;
            }
            .category-card {
                padding: 14px 8px 18px;
            }
            .category-card h3 {
                font-size: 0.95rem !important;
            }
            #mainHeader .h-20 {
                height: 56px;
            }
            .hamburger-btn-compact {
                width: 36px;
                height: 36px;
            }
            .hamburger-line-compact {
                width: 20px;
                height: 2px;
            }
            .social-icon-header {
                width: 30px;
                height: 30px;
                font-size: 12px;
            }
            .product-grid-ecom {
                gap: 10px;
            }
            .product-card-ecom {
                border-radius: 12px;
            }
            .product-card-ecom .product-info {
                padding: 8px 10px 10px;
            }
            .product-card-ecom .product-info .product-name {
                font-size: 11px;
            }
            .product-card-ecom .product-info .view-btn {
                font-size: 9px;
                padding: 6px 0;
                border-radius: 8px;
            }
            .product-card-ecom .product-badge {
                font-size: 7px;
                padding: 2px 10px;
                top: 6px;
                left: 6px;
            }
            .product-card-ecom .product-rating {
                font-size: 8px;
                padding: 2px 8px;
                bottom: 6px;
                right: 6px;
            }
            .offer-chip {
                font-size: 9px;
                padding: 3px 12px;
            }
            #mobileMenu .grid {
                grid-template-columns: 1fr !important;
                gap: 8px;
            }
            .mobile-nav-compact {
                font-size: 13px;
                padding: 4px 0;
            }
            #mobileMenu .max-w-7xl {
                padding: 12px 16px;
            }
            .testimonial-card {
                flex: 0 0 170px;
                min-width: 150px;
                padding: 16px 12px;
            }
            .testimonial-card .quote {
                font-size: 11px;
            }
            .testimonial-card .name {
                font-size: 13px;
            }
            .testimonial-card .subtitle {
                font-size: 10px;
            }
            .testimonial-card .stars {
                font-size: 11px;
            }
        }

        /* ─── Extra-small phones (iPhone SE / small Android, 320–380px) ─── */
        @media (max-width: 380px) {
            .hero-title {
                font-size: 24px !important;
            }
            .product-grid-ecom {
                grid-template-columns: repeat(2, 1fr);
                gap: 8px;
            }
            .product-card-ecom .product-info .product-name {
                font-size: 10.5px;
            }
            .reels-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 8px;
            }
            .category-image-wrap {
                width: 48px;
                height: 48px;
            }
            .category-card h3 {
                font-size: 0.85rem !important;
            }
            .testimonial-card {
                flex: 0 0 88vw;
                min-width: 0;
            }
            #mainHeader .absolute.lg\:left-1\/2 {
                left: 50% !important;
                transform: translateX(-50%) !important;
            }
        }

        @media (min-width: 641px) and (max-width: 1024px) {
            .product-grid-ecom {
                grid-template-columns: repeat(3, 1fr);
                gap: 16px;
            }
            .product-card-ecom .product-info .product-name {
                font-size: 13px;
            }
        }

        @media (min-width: 1025px) {
            .product-grid-ecom {
                grid-template-columns: repeat(4, 1fr);
                gap: 20px;
            }
            .product-card-ecom .product-info {
                padding: 14px 16px 16px;
            }
            .product-card-ecom .product-info .product-name {
                font-size: 14px;
            }
            .product-card-ecom .product-info .view-btn {
                padding: 10px 0;
                font-size: 12px;
            }
            .product-card-ecom .product-badge {
                font-size: 9px;
                padding: 3px 14px;
                top: 12px;
                left: 12px;
            }
        }

        /* ─── Large screens: keep buttons/text from over-stretching ─── */
        @media (min-width: 1440px) {
            .btn-gold,
            .btn-outline,
            .btn-outline-white,
            .btn-dark {
                font-size: 13px;
                padding: 15px 40px;
            }
        }

        /* ─── AOS OVERRIDES ─── */
        [data-aos] {
            pointer-events: none;
        }
        [data-aos].aos-animate {
            pointer-events: auto;
        }

        ::selection {
            background: #dcb36d;
            color: #11261d;
        }

        .gold-gradient-text {
            background: linear-gradient(135deg, #dcb36d, #cba153, #dcb36d);
            background-size: 200% auto;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: goldShimmer 4s linear infinite;
        }
