        /* ----- RESET & BASE ----- */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --black: #0a0a0a;
            --dark-gold: #b8860b;
            --gold: #d4a017;
            --light-gold: #f5d78e;
            --dark-green: #1a3c2a;
            --forest-green: #2a5a3a;
            --white: #fafaf8;
            --off-white: #f0ede6;
            --shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
            --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        html {
            scroll-behavior: smooth;
        }

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

        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 30px;
        }

        ::-webkit-scrollbar {
            width: 8px;
        }
        ::-webkit-scrollbar-track {
            background: var(--black);
        }
        ::-webkit-scrollbar-thumb {
            background: var(--gold);
            border-radius: 10px;
        }

        /* ----- BUTTONS ----- */
        .btn-primary {
            display: inline-block;
            background: linear-gradient(135deg, var(--gold), var(--dark-gold));
            color: var(--black);
            font-weight: 600;
            padding: 16px 44px;
            border-radius: 50px;
            text-decoration: none;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            font-size: 0.9rem;
            transition: var(--transition);
            border: none;
            cursor: pointer;
            box-shadow: 0 4px 25px rgba(212, 160, 23, 0.3);
        }

        .btn-primary:hover {
            transform: translateY(-3px) scale(1.02);
            box-shadow: 0 12px 40px rgba(212, 160, 23, 0.5);
        }

        .btn-secondary {
            display: inline-block;
            background: transparent;
            color: var(--gold);
            font-weight: 600;
            padding: 14px 40px;
            border-radius: 50px;
            text-decoration: none;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            font-size: 0.9rem;
            border: 2px solid var(--gold);
            transition: var(--transition);
            cursor: pointer;
        }

        .btn-secondary:hover {
            background: var(--gold);
            color: var(--black);
            transform: translateY(-3px);
            box-shadow: 0 8px 30px rgba(212, 160, 23, 0.3);
        }

        /* ----- HEADER / NAV ----- */
        header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            background: rgba(10, 10, 10, 0.92);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid rgba(212, 160, 23, 0.15);
            transition: var(--transition);
        }

        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 18px 30px;
            max-width: 1280px;
            margin: 0 auto;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 14px;
            text-decoration: none;
        }

        .logo-img {
            width: 50px;
            height: 50px;
            object-fit: contain;
            border: none;
            border-radius: 0;
            background: transparent;
            filter: drop-shadow(0 0 10px rgba(212, 160, 23, 0.1));
        }

        .logo-text {
            font-family: 'Playfair Display', serif;
            font-size: 1.5rem;
            font-weight: 700;
            letter-spacing: 1px;
            color: var(--white);
        }

        .logo-text span {
            color: var(--gold);
        }

        .logo-sub {
            font-size: 0.6rem;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: var(--light-gold);
            opacity: 0.7;
            display: block;
            margin-top: -2px;
        }

        /* ===== SHOPPING CART ICON ===== */
        .nav-actions {
            display: flex;
            align-items: center;
            gap: 20px;
        }

        .cart-icon {
            position: relative;
            color: var(--white);
            font-size: 1.3rem;
            cursor: pointer;
            transition: var(--transition);
            background: none;
            border: none;
            padding: 8px;
        }

        .cart-icon:hover {
            color: var(--gold);
        }

        .cart-badge {
            position: absolute;
            top: -6px;
            right: -6px;
            background: var(--gold);
            color: var(--black);
            font-size: 0.6rem;
            font-weight: 700;
            width: 20px;
            height: 20px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: var(--transition);
        }

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

        .nav-links a {
            color: var(--off-white);
            text-decoration: none;
            font-size: 0.85rem;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: var(--transition);
            position: relative;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 0%;
            height: 2px;
            background: var(--gold);
            transition: var(--transition);
        }

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

        .nav-links a:hover::after {
            width: 100%;
        }

        .nav-cta {
            background: var(--gold);
            color: var(--black) !important;
            padding: 10px 28px;
            border-radius: 50px;
            font-weight: 600 !important;
        }

        .nav-cta::after {
            display: none !important;
        }
        .nav-cta:hover {
            background: var(--light-gold) !important;
            color: var(--black) !important;
        }

        .hamburger {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            background: none;
            border: none;
            padding: 5px;
        }

        .hamburger span {
            width: 28px;
            height: 2px;
            background: var(--white);
            transition: var(--transition);
            border-radius: 4px;
        }

        .hamburger.active span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
        }
        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }
        .hamburger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(5px, -5px);
        }

        /* ============================================
                   SHOPPING CART SIDEBAR
                   ============================================ */
        .cart-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.7);
            z-index: 2000;
            opacity: 0;
            visibility: hidden;
            transition: var(--transition);
        }

        .cart-overlay.active {
            opacity: 1;
            visibility: visible;
        }

        .cart-sidebar {
            position: fixed;
            top: 0;
            right: -480px;
            width: 420px;
            max-width: 90vw;
            height: 100vh;
            background: var(--black);
            border-left: 1px solid rgba(212, 160, 23, 0.1);
            z-index: 2001;
            transition: right 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            display: flex;
            flex-direction: column;
            padding: 0;
        }

        .cart-sidebar.open {
            right: 0;
        }

        .cart-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 24px 30px;
            border-bottom: 1px solid rgba(212, 160, 23, 0.08);
        }

        .cart-header h2 {
            font-family: 'Playfair Display', serif;
            font-size: 1.5rem;
            color: var(--white);
        }

        .cart-header h2 span {
            color: var(--gold);
        }

        .cart-close {
            background: none;
            border: none;
            color: var(--off-white);
            font-size: 1.5rem;
            cursor: pointer;
            transition: var(--transition);
            padding: 5px;
        }

        .cart-close:hover {
            color: var(--gold);
            transform: rotate(90deg);
        }

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

        .cart-empty {
            text-align: center;
            padding: 60px 20px;
        }

        .cart-empty i {
            font-size: 4rem;
            color: rgba(212, 160, 23, 0.2);
            margin-bottom: 16px;
        }

        .cart-empty p {
            color: var(--off-white);
            opacity: 0.5;
            font-size: 1rem;
        }

        .cart-item {
            display: flex;
            align-items: center;
            gap: 16px;
            padding: 16px 0;
            border-bottom: 1px solid rgba(212, 160, 23, 0.05);
            animation: slideInItem 0.3s ease-out;
        }

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

        .cart-item-img {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            object-fit: cover;
            border: 1px solid rgba(212, 160, 23, 0.1);
        }

        .cart-item-details {
            flex: 1;
        }

        .cart-item-name {
            font-size: 0.95rem;
            font-weight: 600;
            color: var(--white);
        }

        .cart-item-weight {
            font-size: 0.8rem;
            color: var(--off-white);
            opacity: 0.5;
        }

        .cart-item-price {
            font-size: 0.95rem;
            color: var(--gold);
            font-weight: 600;
        }

        .cart-item-actions {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .cart-item-qty {
            display: flex;
            align-items: center;
            gap: 8px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 8px;
            padding: 4px 8px;
        }

        .cart-item-qty button {
            background: none;
            border: none;
            color: var(--white);
            font-size: 0.9rem;
            cursor: pointer;
            padding: 2px 6px;
            transition: var(--transition);
        }

        .cart-item-qty button:hover {
            color: var(--gold);
        }

        .cart-item-qty span {
            color: var(--white);
            font-size: 0.9rem;
            min-width: 20px;
            text-align: center;
        }

        .cart-item-remove {
            background: none;
            border: none;
            color: rgba(255, 255, 255, 0.3);
            cursor: pointer;
            transition: var(--transition);
            font-size: 0.9rem;
        }

        .cart-item-remove:hover {
            color: #ff4444;
        }

        .cart-footer {
            padding: 20px 30px;
            border-top: 1px solid rgba(212, 160, 23, 0.08);
            background: rgba(0, 0, 0, 0.3);
        }

        .cart-total {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 16px;
        }

        .cart-total-label {
            font-size: 1rem;
            color: var(--off-white);
            opacity: 0.7;
        }

        .cart-total-price {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--gold);
        }

        .cart-checkout-btn {
            width: 100%;
            padding: 16px;
            background: linear-gradient(135deg, var(--gold), var(--dark-gold));
            color: var(--black);
            border: none;
            border-radius: 50px;
            font-size: 1rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            cursor: pointer;
            transition: var(--transition);
        }

        .cart-checkout-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 30px rgba(212, 160, 23, 0.3);
        }

        /* ============================================
                   HERO BACKGROUND WITH MULTIPLE ANIMATIONS
                   ============================================ */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            padding-top: 100px;
            position: relative;
            overflow: hidden;
        }

        .hero-bg {
            position: absolute;
            top: -10%;
            left: -10%;
            width: 120%;
            height: 120%;
            background-image: url('../images/hero-bg.webp');
            background-size: cover;
            background-position: center;
            opacity: 0.15;
            z-index: 0;
            filter: blur(2px);
            animation: kenBurns 25s ease-in-out infinite alternate;
            transform-origin: center center;
        }

        @keyframes kenBurns {
            0% { transform: scale(1) translateX(0%) translateY(0%); }
            25% { transform: scale(1.08) translateX(-2%) translateY(-3%); }
            50% { transform: scale(1.12) translateX(3%) translateY(2%); }
            75% { transform: scale(1.06) translateX(-1%) translateY(4%); }
            100% { transform: scale(1.1) translateX(2%) translateY(-2%); }
        }

        .particles-container {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 0;
            overflow: hidden;
            pointer-events: none;
        }

        .particle {
            position: absolute;
            width: 6px;
            height: 6px;
            background: var(--gold);
            border-radius: 50%;
            opacity: 0;
            box-shadow: 0 0 20px rgba(212, 160, 23, 0.3);
            animation: floatParticle 12s infinite ease-in-out;
        }

        .particle:nth-child(1) { top: 15%; left: 10%; animation-delay: 0s; width: 8px; height: 8px; }
        .particle:nth-child(2) { top: 30%; left: 25%; animation-delay: 2s; width: 4px; height: 4px; }
        .particle:nth-child(3) { top: 10%; left: 60%; animation-delay: 4s; width: 10px; height: 10px; }
        .particle:nth-child(4) { top: 50%; left: 80%; animation-delay: 1s; width: 5px; height: 5px; }
        .particle:nth-child(5) { top: 70%; left: 15%; animation-delay: 3s; width: 7px; height: 7px; }
        .particle:nth-child(6) { top: 85%; left: 50%; animation-delay: 5s; width: 4px; height: 4px; }
        .particle:nth-child(7) { top: 20%; left: 90%; animation-delay: 2.5s; width: 6px; height: 6px; }
        .particle:nth-child(8) { top: 60%; left: 40%; animation-delay: 4.5s; width: 9px; height: 9px; }
        .particle:nth-child(9) { top: 40%; left: 70%; animation-delay: 0.5s; width: 5px; height: 5px; }
        .particle:nth-child(10) { top: 75%; left: 85%; animation-delay: 3.5s; width: 7px; height: 7px; }

        @keyframes floatParticle {
            0% { opacity: 0; transform: translateY(0px) scale(0); }
            20% { opacity: 0.6; transform: translateY(-30px) scale(1); }
            50% { opacity: 0.3; transform: translateY(-80px) scale(0.8) translateX(20px); }
            80% { opacity: 0.6; transform: translateY(-130px) scale(1) translateX(-10px); }
            100% { opacity: 0; transform: translateY(-180px) scale(0) translateX(30px); }
        }

        .light-rays {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 0;
            pointer-events: none;
            overflow: hidden;
        }

        .ray {
            position: absolute;
            width: 2px;
            height: 300px;
            background: linear-gradient(180deg, rgba(212, 160, 23, 0), rgba(212, 160, 23, 0.15), rgba(212, 160, 23, 0));
            opacity: 0;
            animation: lightRay 8s infinite ease-in-out;
            transform-origin: bottom center;
        }

        .ray:nth-child(1) { left: 20%; animation-delay: 0s; height: 250px; }
        .ray:nth-child(2) { left: 40%; animation-delay: 2s; height: 300px; }
        .ray:nth-child(3) { left: 60%; animation-delay: 4s; height: 200px; }
        .ray:nth-child(4) { left: 80%; animation-delay: 6s; height: 280px; }
        .ray:nth-child(5) { left: 10%; animation-delay: 1s; height: 220px; }
        .ray:nth-child(6) { left: 90%; animation-delay: 3s; height: 260px; }

        @keyframes lightRay {
            0% { opacity: 0; transform: translateY(100%) rotate(-5deg) scaleY(0.5); }
            30% { opacity: 0.4; transform: translateY(0%) rotate(0deg) scaleY(1); }
            60% { opacity: 0.2; transform: translateY(-20%) rotate(3deg) scaleY(0.8); }
            100% { opacity: 0; transform: translateY(-100%) rotate(5deg) scaleY(0); }
        }

        .floating-shapes {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 0;
            pointer-events: none;
            overflow: hidden;
        }

        .shape {
            position: absolute;
            border: 1px solid rgba(212, 160, 23, 0.06);
            border-radius: 50%;
            opacity: 0;
            animation: floatShape 20s infinite ease-in-out;
        }

        .shape:nth-child(1) { width: 300px; height: 300px; top: -50px; right: -100px; animation-delay: 0s; }
        .shape:nth-child(2) { width: 150px; height: 150px; bottom: 50px; left: -50px; animation-delay: 5s; border-color: rgba(212, 160, 23, 0.04); }
        .shape:nth-child(3) { width: 200px; height: 200px; top: 40%; right: 10%; animation-delay: 10s; border-color: rgba(212, 160, 23, 0.03); }
        .shape:nth-child(4) { width: 400px; height: 400px; bottom: -100px; right: -50px; animation-delay: 3s; border-color: rgba(212, 160, 23, 0.02); }
        .shape:nth-child(5) { width: 100px; height: 100px; top: 20%; left: 5%; animation-delay: 7s; border-color: rgba(212, 160, 23, 0.05); }

        @keyframes floatShape {
            0% { opacity: 0; transform: scale(0.5) rotate(0deg) translateY(0); }
            20% { opacity: 0.4; transform: scale(1) rotate(45deg) translateY(-20px); }
            50% { opacity: 0.2; transform: scale(1.2) rotate(90deg) translateY(-50px); }
            80% { opacity: 0.4; transform: scale(0.9) rotate(135deg) translateY(-20px); }
            100% { opacity: 0; transform: scale(0.5) rotate(180deg) translateY(0); }
        }

        .rotating-rings {
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            z-index: 0;
            pointer-events: none;
            transform: translate(-50%, -50%);
        }

        .ring {
            position: absolute;
            border: 1px solid rgba(212, 160, 23, 0.05);
            border-radius: 50%;
            animation: rotateRing 30s linear infinite;
        }

        .ring:nth-child(1) { width: 600px; height: 600px; top: -300px; left: -300px; animation-duration: 35s; }
        .ring:nth-child(2) { width: 450px; height: 450px; top: -225px; left: -225px; animation-duration: 25s; animation-direction: reverse; border-color: rgba(212, 160, 23, 0.03); }
        .ring:nth-child(3) { width: 750px; height: 750px; top: -375px; left: -375px; animation-duration: 40s; border-color: rgba(212, 160, 23, 0.02); }

        @keyframes rotateRing {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(ellipse at 20% 50%, rgba(26, 60, 42, 0.4), transparent 70%),
                radial-gradient(ellipse at 80% 20%, rgba(184, 134, 11, 0.15), transparent 50%),
                rgba(10, 10, 10, 0.85);
            z-index: 1;
        }

        .hero-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
            position: relative;
            z-index: 2;
        }

        .hero-content h1 {
            font-family: 'Playfair Display', serif;
            font-size: 4rem;
            font-weight: 700;
            line-height: 1.1;
            margin-bottom: 20px;
            animation: fadeInUp 1s ease-out;
        }

        .hero-content h1 .highlight {
            color: var(--gold);
            position: relative;
        }

        .hero-content h1 .highlight::after {
            content: '';
            position: absolute;
            bottom: 8px;
            left: 0;
            width: 100%;
            height: 8px;
            background: rgba(212, 160, 23, 0.2);
            border-radius: 4px;
        }

        .hero-content p {
            font-size: 1.15rem;
            color: var(--off-white);
            opacity: 0.8;
            max-width: 500px;
            margin-bottom: 40px;
            line-height: 1.8;
            animation: fadeInUp 1.2s ease-out;
        }

        .hero-badges {
            display: flex;
            gap: 30px;
            margin-bottom: 40px;
            animation: fadeInUp 1.4s ease-out;
        }

        .hero-badges span {
            font-size: 0.85rem;
            color: var(--light-gold);
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .hero-badges i {
            color: var(--gold);
            font-size: 1rem;
        }

        .hero-buttons {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
            animation: fadeInUp 1.6s ease-out;
        }

        /* ============================================
                   CIRCLE IMAGE SLIDER - FIXED CIRCLE, MOVING IMAGES
                   ============================================ */
        .hero-image {
            display: flex;
            justify-content: center;
            align-items: center;
            position: relative;
            animation: fadeIn 1.8s ease-out;
        }

        .circle-slider-container {
            position: relative;
            width: 420px;
            height: 420px;
            border-radius: 50%;
            overflow: hidden;
            border: 2px solid rgba(212, 160, 23, 0.3);
            box-shadow: 0 0 80px rgba(212, 160, 23, 0.08);
            background: rgba(10, 10, 10, 0.5);
        }

        .circle-slider-track {
            display: flex;
            transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            will-change: transform;
            width: 100%;
            height: 100%;
        }

        .circle-slide {
            min-width: 100%;
            height: 100%;
            flex-shrink: 0;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .circle-slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        /* Slider Navigation - positioned outside the circle */
        .circle-slider-nav {
            position: absolute;
            bottom: -50px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 16px;
            z-index: 10;
            width: 100%;
        }

        .circle-slider-btn {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(212, 160, 23, 0.15);
            color: var(--white);
            font-size: 0.8rem;
            cursor: pointer;
            transition: var(--transition);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .circle-slider-btn:hover {
            background: rgba(212, 160, 23, 0.15);
            border-color: var(--gold);
            color: var(--gold);
        }

        .circle-slider-dots {
            display: flex;
            gap: 8px;
        }

        .circle-slider-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.15);
            cursor: pointer;
            transition: var(--transition);
            border: none;
            padding: 0;
        }

        .circle-slider-dot.active {
            background: var(--gold);
            width: 28px;
            border-radius: 5px;
        }

        .circle-slider-dot:hover {
            background: rgba(212, 160, 23, 0.5);
        }

        /* Floating badges - repositioned to sit on top of circle */
        .floating-badge {
            position: absolute;
            background: rgba(10, 10, 10, 0.85);
            backdrop-filter: blur(8px);
            border: 1px solid rgba(212, 160, 23, 0.2);
            padding: 14px 22px;
            border-radius: 12px;
            font-size: 0.8rem;
            display: flex;
            align-items: center;
            gap: 12px;
            animation: float 6s ease-in-out infinite;
            box-shadow: var(--shadow);
            z-index: 5;
        }

        .floating-badge i {
            color: var(--gold);
            font-size: 1.3rem;
        }

        .floating-badge:nth-child(2) {
            top: 5%;
            right: 5%;
            animation-delay: 1s;
        }
        .floating-badge:nth-child(3) {
            bottom: 5%;
            left: 5%;
            animation-delay: 2s;
        }

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

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

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

        /* ----- FEATURES ----- */
        .features {
            padding: 80px 0;
            position: relative;
            overflow: hidden;
            border-top: 1px solid rgba(212, 160, 23, 0.05);
            border-bottom: 1px solid rgba(212, 160, 23, 0.05);
        }

        .features-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url('../images/features-bg.webp');
            background-size: cover;
            background-position: center;
            opacity: 0.08;
            z-index: 0;
            filter: blur(1px);
        }

        .features .container {
            position: relative;
            z-index: 2;
        }

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

        .feature-item {
            text-align: center;
            padding: 20px;
        }

        .feature-item i {
            font-size: 2.8rem;
            color: var(--gold);
            margin-bottom: 14px;
        }

        .feature-item h4 {
            font-family: 'Playfair Display', serif;
            font-size: 1.2rem;
            margin-bottom: 6px;
        }

        .feature-item p {
            font-size: 0.9rem;
            color: var(--off-white);
            opacity: 0.5;
        }

        /* ----- TESTIMONIALS ----- */
        .testimonials {
            padding: 100px 0;
            position: relative;
            overflow: hidden;
            background: radial-gradient(ellipse at 50% 0%, rgba(26, 60, 42, 0.15), transparent 70%), var(--black);
        }

        .testimonials-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url('../images/testimonials-bg.webp');
            background-size: cover;
            background-position: center;
            opacity: 0.06;
            z-index: 0;
            filter: blur(2px);
        }

        .testimonials .container {
            position: relative;
            z-index: 2;
        }

        .testimonials .section-title {
            font-family: 'Playfair Display', serif;
            font-size: 2.8rem;
            font-weight: 700;
            text-align: center;
            margin-bottom: 12px;
        }

        .testimonials .section-title span {
            color: var(--gold);
        }

        .testimonials .section-sub {
            text-align: center;
            color: var(--light-gold);
            opacity: 0.8;
            font-size: 1.1rem;
            max-width: 700px;
            margin: 0 auto 50px;
        }

        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .testimonial-card {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(212, 160, 23, 0.08);
            border-radius: 20px;
            padding: 35px 30px;
            transition: var(--transition);
            position: relative;
        }

        .testimonial-card:hover {
            transform: translateY(-8px);
            border-color: rgba(212, 160, 23, 0.2);
            background: rgba(255, 255, 255, 0.05);
            box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
        }

        .testimonial-card .stars {
            color: var(--gold);
            font-size: 1.1rem;
            margin-bottom: 12px;
            letter-spacing: 2px;
        }

        .testimonial-card .quote-icon {
            color: var(--gold);
            opacity: 0.2;
            font-size: 2rem;
            margin-bottom: 10px;
        }

        .testimonial-card blockquote {
            font-size: 1rem;
            line-height: 1.7;
            color: var(--off-white);
            opacity: 0.8;
            margin-bottom: 16px;
            font-style: italic;
        }

        .testimonial-card .customer-info {
            display: flex;
            align-items: center;
            gap: 14px;
            border-top: 1px solid rgba(212, 160, 23, 0.06);
            padding-top: 16px;
        }

        .testimonial-card .avatar {
            width: 45px;
            height: 45px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--dark-green), var(--forest-green));
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 600;
            font-size: 1.1rem;
            color: var(--gold);
            border: 1px solid rgba(212, 160, 23, 0.15);
            flex-shrink: 0;
        }

        .testimonial-card .customer-name {
            font-weight: 600;
            color: var(--white);
            font-size: 0.95rem;
        }

        .testimonial-card .customer-role {
            font-size: 0.8rem;
            color: var(--off-white);
            opacity: 0.5;
        }

        .testimonial-card .verified-badge {
            display: inline-flex;
            align-items: center;
            gap: 4px;
            font-size: 0.7rem;
            color: var(--gold);
            background: rgba(212, 160, 23, 0.1);
            padding: 2px 10px;
            border-radius: 50px;
            margin-left: auto;
        }

        /* ----- EXPERIENCE ----- */
        .experience-taste {
            padding: 100px 0;
            position: relative;
            overflow: hidden;
            border-top: 1px solid rgba(212, 160, 23, 0.05);
            border-bottom: 1px solid rgba(212, 160, 23, 0.05);
        }

        .experience-taste-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url('../images/experience-bg.webp');
            background-size: cover;
            background-position: center;
            opacity: 0.07;
            z-index: 0;
            filter: blur(2px);
        }

        .experience-taste-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(10, 10, 10, 0.92);
            z-index: 1;
        }

        .experience-taste .container {
            position: relative;
            z-index: 2;
        }

        .experience-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .experience-content h2 {
            font-family: 'Playfair Display', serif;
            font-size: 2.8rem;
            font-weight: 700;
            margin-bottom: 20px;
        }

        .experience-content h2 span {
            color: var(--gold);
        }

        .experience-content p {
            color: var(--off-white);
            opacity: 0.7;
            line-height: 1.9;
            font-size: 1.05rem;
            margin-bottom: 20px;
        }

        .experience-content .highlight-text {
            color: var(--light-gold);
            opacity: 0.9;
            font-style: italic;
        }

        .experience-features {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            margin-top: 30px;
        }

        .exp-feature-item {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 12px 16px;
            background: rgba(255, 255, 255, 0.03);
            border-radius: 12px;
            border: 1px solid rgba(212, 160, 23, 0.06);
            transition: var(--transition);
        }

        .exp-feature-item:hover {
            background: rgba(255, 255, 255, 0.06);
            border-color: rgba(212, 160, 23, 0.15);
        }

        .exp-feature-item i {
            color: var(--gold);
            font-size: 1.1rem;
            width: 20px;
        }

        .exp-feature-item span {
            font-size: 0.9rem;
            color: var(--off-white);
            opacity: 0.7;
        }

        .experience-image {
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .experience-image .taste-circle {
            width: 450px;
            height: 450px;
            border-radius: 50%;
            background: radial-gradient(circle at 30% 30%, rgba(42, 90, 58, 0.3), rgba(10, 10, 10, 0.9));
            border: 2px solid rgba(212, 160, 23, 0.1);
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            padding: 50px;
            position: relative;
        }

        .taste-circle .big-icon {
            font-size: 5rem;
            color: var(--gold);
            opacity: 0.6;
            margin-bottom: 20px;
        }

        .taste-circle h3 {
            font-family: 'Playfair Display', serif;
            font-size: 1.8rem;
            color: var(--white);
            margin-bottom: 10px;
        }

        .taste-circle p {
            color: var(--off-white);
            opacity: 0.6;
            max-width: 300px;
            line-height: 1.7;
        }

        .taste-circle .gold-line {
            width: 60px;
            height: 2px;
            background: var(--gold);
            margin: 16px auto;
            opacity: 0.3;
        }

        /* ----- PRODUCTS ----- */
        .products {
            padding: 100px 0;
            position: relative;
            overflow: hidden;
        }

        .products-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url('../images/products-bg.webp');
            background-size: cover;
            background-position: center;
            opacity: 0.07;
            z-index: 0;
            filter: blur(2px);
        }

        .products-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(180deg, rgba(10, 10, 10, 0.95), rgba(26, 60, 42, 0.1), rgba(10, 10, 10, 0.95));
            z-index: 1;
        }

        .products .container {
            position: relative;
            z-index: 2;
        }

        .section-title {
            font-family: 'Playfair Display', serif;
            font-size: 2.8rem;
            font-weight: 700;
            text-align: center;
            margin-bottom: 12px;
        }

        .section-title span {
            color: var(--gold);
        }

        .section-sub {
            text-align: center;
            color: var(--off-white);
            opacity: 0.6;
            font-size: 1rem;
            max-width: 600px;
            margin: 0 auto 50px;
            letter-spacing: 0.5px;
        }

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

        .jar-card {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(212, 160, 23, 0.08);
            border-radius: 24px;
            padding: 40px 30px 35px;
            text-align: center;
            transition: var(--transition);
            backdrop-filter: blur(4px);
            position: relative;
            overflow: hidden;
        }

        .jar-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, transparent, var(--gold), transparent);
            opacity: 0;
            transition: var(--transition);
        }

        .jar-card:hover {
            transform: translateY(-12px);
            border-color: rgba(212, 160, 23, 0.2);
            background: rgba(255, 255, 255, 0.05);
            box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
        }

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

        .jar-product-img {
            width: 120px;
            height: 120px;
            object-fit: cover;
            border-radius: 50%;
            margin: 0 auto 16px;
            display: block;
            border: 2px solid rgba(212, 160, 23, 0.15);
        }

        .jar-card h3 {
            font-family: 'Playfair Display', serif;
            font-size: 1.6rem;
            margin-bottom: 6px;
        }

        .jar-card .weight {
            color: var(--light-gold);
            opacity: 0.6;
            font-size: 0.85rem;
            letter-spacing: 1px;
            margin-bottom: 10px;
        }

        .jar-card .price {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--gold);
            margin-bottom: 6px;
        }

        .jar-card .price small {
            font-size: 1rem;
            font-weight: 400;
            color: var(--off-white);
            opacity: 0.5;
        }

        .jar-card .desc {
            font-size: 0.9rem;
            color: var(--off-white);
            opacity: 0.6;
            margin: 14px 0 24px;
            line-height: 1.6;
        }

        .jar-card .add-to-cart-btn {
            padding: 14px 38px;
            font-size: 0.8rem;
            width: 100%;
        }

        .jar-card .badge {
            position: absolute;
            top: 16px;
            right: 16px;
            background: var(--dark-green);
            color: var(--light-gold);
            font-size: 0.65rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            padding: 4px 14px;
            border-radius: 50px;
            border: 1px solid rgba(212, 160, 23, 0.2);
        }

        /* ----- ABOUT ----- */
        .about {
            padding: 100px 0;
            position: relative;
            overflow: hidden;
        }

        .about-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url('../images/about-bg.webp');
            background-size: cover;
            background-position: center;
            opacity: 0.1;
            z-index: 0;
            filter: blur(2px);
        }

        .about .container {
            position: relative;
            z-index: 2;
        }

        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .about-text h2 {
            font-family: 'Playfair Display', serif;
            font-size: 2.8rem;
            margin-bottom: 20px;
        }

        .about-text h2 span {
            color: var(--gold);
        }

        .about-text p {
            color: var(--off-white);
            opacity: 0.7;
            line-height: 1.9;
            margin-bottom: 20px;
        }

        .about-text .highlight-text {
            color: var(--light-gold);
            opacity: 0.9;
            font-style: italic;
        }

        .about-image {
            display: flex;
            justify-content: center;
        }

        .about-image .brand-circle {
            width: 380px;
            height: 380px;
            border-radius: 50%;
            background: radial-gradient(circle at 70% 30%, rgba(42, 90, 58, 0.3), rgba(10, 10, 10, 0.9));
            border: 1px solid rgba(212, 160, 23, 0.15);
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            padding: 40px;
        }

        .brand-circle .quote-icon {
            font-size: 3rem;
            color: var(--gold);
            opacity: 0.3;
            margin-bottom: 16px;
        }

        .brand-circle p {
            font-family: 'Playfair Display', serif;
            font-size: 1.3rem;
            line-height: 1.6;
            color: var(--off-white);
        }

        .brand-circle .author {
            font-family: 'Inter', sans-serif;
            font-size: 0.8rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: var(--gold);
            margin-top: 12px;
        }

        /* ----- FOOTER ----- */
        footer {
            background: rgba(0, 0, 0, 0.6);
            border-top: 1px solid rgba(212, 160, 23, 0.06);
            padding: 50px 0 30px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-brand .logo-text {
            font-size: 1.4rem;
        }

        .footer-brand p {
            color: var(--off-white);
            opacity: 0.5;
            font-size: 0.9rem;
            max-width: 280px;
            margin-top: 12px;
            line-height: 1.7;
        }

        .footer-col h5 {
            font-size: 0.85rem;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            color: var(--gold);
            margin-bottom: 16px;
        }

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

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

        .footer-col ul a {
            color: var(--off-white);
            opacity: 0.5;
            text-decoration: none;
            font-size: 0.9rem;
            transition: var(--transition);
        }

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

        .footer-bottom {
            border-top: 1px solid rgba(212, 160, 23, 0.06);
            padding-top: 24px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 16px;
        }

        .footer-bottom p {
            font-size: 0.8rem;
            color: var(--off-white);
            opacity: 0.3;
        }

        .social-links {
            display: flex;
            gap: 20px;
        }

        .social-links a {
            color: var(--off-white);
            opacity: 0.3;
            font-size: 1.2rem;
            transition: var(--transition);
        }

        .social-links a:hover {
            opacity: 1;
            color: var(--gold);
        }

        /* ============================================
                   RESPONSIVE - CIRCLE SLIDER
                   ============================================ */
        @media (max-width: 1024px) {
            .hero-grid {
                grid-template-columns: 1fr;
                text-align: center;
                gap: 40px;
            }
            .hero-content p {
                margin-left: auto;
                margin-right: auto;
            }
            .hero-badges {
                justify-content: center;
            }
            .hero-buttons {
                justify-content: center;
            }
            .circle-slider-container {
                width: 350px;
                height: 350px;
            }
            .floating-badge {
                display: none;
            }
            .about-grid {
                grid-template-columns: 1fr;
                text-align: center;
            }
            .experience-grid {
                grid-template-columns: 1fr;
                text-align: center;
            }
            .experience-features {
                justify-items: center;
            }
            .experience-image .taste-circle {
                width: 350px;
                height: 350px;
            }
            .footer-grid {
                grid-template-columns: 1fr 1fr;
            }
            .rotating-rings {
                display: none;
            }
            .floating-shapes {
                display: none;
            }
            .cart-sidebar {
                width: 380px;
            }
        }

        @media (max-width: 768px) {
            .nav-links {
                position: fixed;
                top: 0;
                right: -100%;
                width: 75%;
                max-width: 340px;
                height: 100vh;
                background: rgba(10, 10, 10, 0.98);
                backdrop-filter: blur(20px);
                flex-direction: column;
                justify-content: center;
                align-items: center;
                gap: 30px;
                transition: var(--transition);
                padding: 40px;
                border-left: 1px solid rgba(212, 160, 23, 0.1);
            }

            .nav-links.open {
                right: 0;
            }

            .hamburger {
                display: flex;
                z-index: 1001;
            }

            .nav-actions {
                gap: 12px;
            }

            .nav-cta {
                display: none;
            }

            .hero-content h1 {
                font-size: 2.8rem;
            }

            .circle-slider-container {
                width: 300px;
                height: 300px;
            }

            .circle-slider-nav {
                bottom: -45px;
                gap: 12px;
            }
            .circle-slider-btn {
                width: 30px;
                height: 30px;
                font-size: 0.7rem;
            }
            .circle-slider-dot {
                width: 8px;
                height: 8px;
            }
            .circle-slider-dot.active {
                width: 22px;
            }

            .section-title {
                font-size: 2.2rem;
            }

            .jar-grid {
                grid-template-columns: 1fr 1fr;
            }

            .testimonials-grid {
                grid-template-columns: 1fr 1fr;
            }

            .experience-features {
                grid-template-columns: 1fr;
            }

            .experience-image .taste-circle {
                width: 300px;
                height: 300px;
            }

            .footer-grid {
                grid-template-columns: 1fr;
                text-align: center;
            }
            .footer-brand p {
                margin-left: auto;
                margin-right: auto;
            }
            .footer-bottom {
                flex-direction: column;
                text-align: center;
            }
            .rotating-rings {
                display: none;
            }
            .floating-shapes {
                display: none;
            }
            .cart-sidebar {
                width: 320px;
            }
        }

        @media (max-width: 480px) {
            .hero-content h1 {
                font-size: 2.2rem;
            }
            .hero-badges {
                flex-direction: column;
                align-items: center;
                gap: 12px;
            }
            .hero-buttons {
                flex-direction: column;
                align-items: center;
            }
            .circle-slider-container {
                width: 240px;
                height: 240px;
            }
            .circle-slider-nav {
                bottom: -40px;
                gap: 10px;
            }
            .circle-slider-btn {
                width: 26px;
                height: 26px;
                font-size: 0.6rem;
            }
            .circle-slider-dot {
                width: 6px;
                height: 6px;
            }
            .circle-slider-dot.active {
                width: 18px;
            }
            .jar-grid {
                grid-template-columns: 1fr;
            }
            .testimonials-grid {
                grid-template-columns: 1fr;
            }
            .about-text h2 {
                font-size: 2rem;
            }
            .about-image .brand-circle {
                width: 280px;
                height: 280px;
            }
            .brand-circle p {
                font-size: 1rem;
            }
            .experience-content h2 {
                font-size: 2rem;
            }
            .experience-image .taste-circle {
                width: 250px;
                height: 250px;
                padding: 30px;
            }
            .taste-circle .big-icon {
                font-size: 3.5rem;
            }
            .taste-circle h3 {
                font-size: 1.3rem;
            }
            .container {
                padding: 0 16px;
            }
            .nav-container {
                padding: 14px 16px;
            }
            .logo-text {
                font-size: 1.2rem;
            }
            .logo-img {
                width: 40px;
                height: 40px;
            }
            .rotating-rings {
                display: none;
            }
            .floating-shapes {
                display: none;
            }
            .cart-sidebar {
                width: 100%;
                max-width: 100vw;
            }
        }