/* ============================================================
   MAM'S NATURAL FOODS - UNIFIED STYLE SHEET
   VERSION    : 14.0.0
   RELEASE    : 24 July 2026
   ============================================================ */

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

:root {
    /* Dark Theme (Default) */
    --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);
    
    /* Theme specific */
    --bg-primary: #0a0a0a;
    --bg-secondary: rgba(255, 255, 255, 0.03);
    --bg-card: rgba(255, 255, 255, 0.02);
    --text-primary: #fafaf8;
    --text-secondary: #f0ede6;
    --text-muted: rgba(255, 255, 255, 0.5);
    --border-color: rgba(212, 160, 23, 0.06);
    --input-bg: rgba(255, 255, 255, 0.04);
    --input-border: rgba(212, 160, 23, 0.1);
    --hover-bg: rgba(255, 255, 255, 0.05);
    --footer-bg: rgba(0, 0, 0, 0.6);
}

/* ----- LIGHT THEME ----- */
body.light-theme {
    --bg-primary: #f5f2ed;
    --bg-secondary: rgba(0, 0, 0, 0.03);
    --bg-card: rgba(0, 0, 0, 0.02);
    --text-primary: #1a1a1a;
    --text-secondary: #2a2a2a;
    --text-muted: rgba(0, 0, 0, 0.5);
    --border-color: rgba(184, 134, 11, 0.12);
    --input-bg: rgba(0, 0, 0, 0.03);
    --input-border: rgba(184, 134, 11, 0.15);
    --hover-bg: rgba(0, 0, 0, 0.04);
    --footer-bg: rgba(255, 255, 255, 0.9);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    transition: background-color 0.3s ease, color 0.3s ease;
}

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

::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-primary);
}
::-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);
}

/* ============================================
   THEME TOGGLE BUTTON
   ============================================ */
.theme-toggle {
    background: none;
    border: none;
    color: var(--text-secondary);
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition);
    padding: 8px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.theme-toggle:hover {
    color: var(--gold);
    transform: rotate(20deg);
}

/* ----- 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);
}

body.light-theme header {
    background: rgba(245, 242, 237, 0.95);
    border-bottom: 1px solid rgba(184, 134, 11, 0.15);
}

.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(--text-primary);
}

.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;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.cart-icon {
    position: relative;
    color: var(--text-secondary);
    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(--text-secondary);
    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(--text-secondary);
    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(--bg-primary);
    border-left: 1px solid var(--border-color);
    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 var(--border-color);
}

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

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

.cart-close {
    background: none;
    border: none;
    color: var(--text-secondary);
    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;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

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

.cart-empty p {
    color: var(--text-muted);
    font-size: 1rem;
}

/* Start Shopping Button in Empty Cart - Centered */
.cart-empty .btn-start-shopping {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: 16px;
    padding: 8px 20px;
    background: linear-gradient(135deg, var(--gold), var(--dark-gold));
    color: var(--black);
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: 0 3px 12px rgba(212, 160, 23, 0.2);
    cursor: pointer;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    line-height: 1;
}

.cart-empty .btn-start-shopping:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 5px 16px rgba(212, 160, 23, 0.35);
}

.cart-empty .btn-start-shopping i {
    font-size: 0.65rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.cart-empty .btn-start-shopping .btn-text {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.cart-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid var(--border-color);
    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 var(--border-color);
}

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

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

.cart-item-weight {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.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: var(--input-bg);
    border-radius: 8px;
    padding: 4px 8px;
}

.cart-item-qty button {
    background: none;
    border: none;
    color: var(--text-secondary);
    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(--text-secondary);
    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;
}

body.light-theme .cart-item-remove {
    color: rgba(0, 0, 0, 0.3);
}

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

.cart-footer {
    padding: 20px 30px;
    border-top: 1px solid var(--border-color);
    background: var(--bg-secondary);
}

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

.cart-total-label {
    font-size: 1rem;
    color: var(--text-muted);
}

.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;
}

body.light-theme .hero-bg {
    opacity: 0.08;
}

@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;
}

body.light-theme .hero-overlay {
    background: radial-gradient(ellipse at 20% 50%, rgba(26, 60, 42, 0.1), transparent 70%),
                radial-gradient(ellipse at 80% 20%, rgba(184, 134, 11, 0.08), transparent 50%),
                rgba(245, 242, 237, 0.85);
}

.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;
    color: var(--text-primary);
}

.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(--text-secondary);
    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;
}

body.light-theme .hero-badges span {
    color: var(--dark-gold);
}

.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);
}

body.light-theme .circle-slider-container {
    background: rgba(245, 242, 237, 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;
}

.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(--text-secondary);
    font-size: 0.8rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

body.light-theme .circle-slider-btn {
    background: rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(184, 134, 11, 0.15);
}

.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;
}

body.light-theme .circle-slider-dot {
    background: rgba(0, 0, 0, 0.15);
}

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

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

.floating-badge {
    position: absolute;
    background: var(--bg-secondary);
    backdrop-filter: blur(8px);
    border: 1px solid var(--border-color);
    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;
}

body.light-theme .floating-badge {
    background: rgba(245, 242, 237, 0.95);
}

.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 var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.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);
}

body.light-theme .features-bg {
    opacity: 0.04;
}

.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;
    color: var(--text-primary);
    margin-bottom: 6px;
}

.feature-item p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* ----- 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(--bg-primary);
}

.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);
}

body.light-theme .testimonials-bg {
    opacity: 0.03;
}

.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;
    color: var(--text-primary);
}

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

.testimonials .section-sub {
    text-align: center;
    color: var(--text-secondary);
    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: var(--bg-card);
    border: 1px solid var(--border-color);
    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: var(--hover-bg);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
}

.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(--text-secondary);
    opacity: 0.8;
    margin-bottom: 16px;
    font-style: italic;
}

.testimonial-card .customer-info {
    display: flex;
    align-items: center;
    gap: 14px;
    border-top: 1px solid var(--border-color);
    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;
}

body.light-theme .testimonial-card .avatar {
    background: linear-gradient(135deg, #e8d5b0, #d4a017);
    color: var(--black);
}

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

.testimonial-card .customer-role {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.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 var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.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);
}

body.light-theme .experience-taste-bg {
    opacity: 0.035;
}

.experience-taste-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-primary);
    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;
    color: var(--text-primary);
}

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

.experience-content p {
    color: var(--text-secondary);
    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;
}

body.light-theme .experience-content .highlight-text {
    color: var(--dark-gold);
}

.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: var(--bg-secondary);
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.exp-feature-item:hover {
    background: var(--hover-bg);
    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(--text-secondary);
    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), var(--bg-primary));
    border: 2px solid var(--border-color);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 50px;
    position: relative;
}

body.light-theme .experience-image .taste-circle {
    background: radial-gradient(circle at 30% 30%, rgba(42, 90, 58, 0.1), var(--bg-primary));
}

.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(--text-primary);
    margin-bottom: 10px;
}

.taste-circle p {
    color: var(--text-secondary);
    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);
}

body.light-theme .products-bg {
    opacity: 0.035;
}

.products-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, var(--bg-primary), rgba(26, 60, 42, 0.1), var(--bg-primary));
    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;
    color: var(--text-primary);
}

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

.section-sub {
    text-align: center;
    color: var(--text-secondary);
    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: var(--bg-card);
    border: 1px solid var(--border-color);
    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: var(--hover-bg);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
}

.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;
    color: var(--text-primary);
}

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

body.light-theme .jar-card .weight {
    color: var(--dark-gold);
}

.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(--text-muted);
}

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

.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);
}

body.light-theme .jar-card .badge {
    background: #e8d5b0;
    color: var(--dark-green);
}

.jar-card .badge.best-seller {
    background: linear-gradient(135deg, var(--dark-gold), var(--gold));
    color: var(--black);
}

.jar-card .badge.new {
    background: linear-gradient(135deg, var(--forest-green), var(--dark-green));
    color: var(--light-gold);
}

body.light-theme .jar-card .badge.new {
    color: var(--white);
}

.jar-card .badge.limited {
    background: linear-gradient(135deg, #8b0000, #5a0000);
    color: var(--light-gold);
}

.jar-card .badge.premium {
    background: linear-gradient(135deg, #2a1a3a, #1a0a2a);
    color: var(--light-gold);
}

.jar-card .badge.popular {
    background: linear-gradient(135deg, #1a3a5a, #0a1a3a);
    color: var(--light-gold);
}

/* Product Features Mini Icons */
.product-features {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin: 12px 0 16px;
    position: relative;
    z-index: 1;
}

.product-features span {
    font-size: 0.7rem;
    color: var(--text-secondary);
    opacity: 0.4;
    display: flex;
    align-items: center;
    gap: 4px;
}

.product-features span i {
    color: var(--gold);
    font-size: 0.6rem;
}

/* ----- PRODUCT ACTIONS ----- */
.product-actions {
    display: flex;
    gap: 10px;
    margin-top: 16px;
    width: 100%;
}

.product-actions .add-to-cart-btn {
    flex: 1;
    padding: 14px 20px;
    font-size: 0.8rem;
    min-width: 0;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.product-actions .add-to-cart-btn {
    background: linear-gradient(135deg, var(--gold), var(--dark-gold));
    color: var(--black);
    border: none;
    box-shadow: 0 4px 20px rgba(212, 160, 23, 0.3);
}

.product-actions .add-to-cart-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 30px rgba(212, 160, 23, 0.5);
}

.product-actions .btn-buy-now {
    flex: 0 0 auto;
    padding: 14px 24px;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
    border-radius: 50px;
    font-weight: 600;
    background: transparent;
    color: var(--text-secondary);
    border: 2px solid rgba(212, 160, 23, 0.3);
    box-shadow: none;
    position: relative;
    overflow: hidden;
}

.product-actions .btn-buy-now::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 160, 23, 0.1), transparent);
    transition: 0.6s;
}

.product-actions .btn-buy-now:hover::before {
    left: 100%;
}

.product-actions .btn-buy-now:hover {
    transform: translateY(-3px) scale(1.02);
    border-color: var(--gold);
    box-shadow: 0 8px 30px rgba(212, 160, 23, 0.2);
    background: rgba(212, 160, 23, 0.05);
}

.product-actions .btn-buy-now i {
    color: var(--gold);
    font-size: 0.9rem;
}

.product-actions .btn-buy-now .btn-gold-text {
    color: var(--gold);
}

.product-actions .btn-buy-now .btn-text {
    color: var(--text-secondary);
}

/* ----- 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);
}

body.light-theme .about-bg {
    opacity: 0.05;
}

.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;
    color: var(--text-primary);
}

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

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

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

body.light-theme .about-text .highlight-text {
    color: var(--dark-gold);
}

.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), var(--bg-primary));
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 40px;
}

body.light-theme .about-image .brand-circle {
    background: radial-gradient(circle at 70% 30%, rgba(42, 90, 58, 0.1), var(--bg-primary));
}

.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(--text-secondary);
}

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

/* ============================================
   PRODUCTS PAGE SPECIFIC
   ============================================ */
.products-page {
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.products-page-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.05;
    z-index: 0;
    filter: blur(2px);
}

body.light-theme .products-page-bg {
    opacity: 0.025;
}

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

.page-header {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.page-header .gold-line {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    margin: 12px auto 16px;
}

.page-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-primary);
}

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

.page-subtitle {
    color: var(--text-secondary);
    opacity: 0.6;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.back-to-home {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
    padding: 10px 20px;
    border-radius: 50px;
    border: 1px solid var(--border-color);
    margin-bottom: 30px;
}

.back-to-home:hover {
    color: var(--gold);
    border-color: rgba(212, 160, 23, 0.2);
    transform: translateX(-5px);
}

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

.filter-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 40px;
    padding: 16px 20px;
    background: var(--bg-secondary);
    border-radius: 16px;
    border: 1px solid var(--border-color);
}

.filter-bar .results-count {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.filter-bar .results-count span {
    color: var(--gold);
    opacity: 1;
}

.filter-bar .sort-options {
    display: flex;
    gap: 8px;
}

.filter-bar .sort-options button {
    background: none;
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.75rem;
    cursor: pointer;
    transition: var(--transition);
    opacity: 0.5;
}

.filter-bar .sort-options button:hover,
.filter-bar .sort-options button.active {
    background: rgba(212, 160, 23, 0.1);
    border-color: var(--gold);
    opacity: 1;
    color: var(--gold);
}

/* ============================================
   PRODUCT DETAIL PAGE SPECIFIC
   ============================================ */
.product-detail {
    padding: 140px 0 80px;
    min-height: 100vh;
    background: var(--bg-primary);
}

.product-detail-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    background: var(--bg-card);
    border-radius: 24px;
    padding: 50px;
    border: 1px solid var(--border-color);
}

.product-detail-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.product-detail-image img {
    width: 100%;
    max-width: 450px;
    height: auto;
    border-radius: 20px;
    border: 2px solid var(--border-color);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.product-detail-image img:hover {
    transform: scale(1.02);
    border-color: rgba(212, 160, 23, 0.3);
}

.product-detail-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--gold);
    color: var(--black);
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.product-detail-info h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.product-detail-info .weight-info {
    color: var(--light-gold);
    opacity: 0.6;
    font-size: 1.1rem;
    margin-bottom: 16px;
}

body.light-theme .product-detail-info .weight-info {
    color: var(--dark-gold);
}

.product-detail-info .price-info {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 20px;
}

.product-detail-info .price-info small {
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-muted);
}

.product-short-desc {
    font-size: 1.1rem;
    color: var(--gold);
    opacity: 0.9;
    font-weight: 500;
    margin-bottom: 20px;
    padding: 16px 20px;
    background: rgba(212, 160, 23, 0.05);
    border-radius: 12px;
    border-left: 3px solid var(--gold);
}

.product-short-desc i {
    margin-right: 10px;
}

.product-detail-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--border-color);
}

.action-row {
    display: flex;
    gap: 12px;
    align-items: center;
    width: 100%;
}

.action-row-buttons {
    justify-content: flex-start;
}

.action-row-buttons .btn-primary,
.action-row-buttons .btn-buy-now {
    flex: 1;
    padding: 16px 30px;
    font-size: 1rem;
    text-align: center;
    justify-content: center;
    min-width: 0;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.action-row-buttons .btn-primary {
    background: linear-gradient(135deg, var(--gold), var(--dark-gold));
    color: var(--black);
    border: none;
    box-shadow: 0 4px 20px rgba(212, 160, 23, 0.3);
}

.action-row-buttons .btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 30px rgba(212, 160, 23, 0.5);
}

.action-row-buttons .btn-buy-now {
    background: transparent;
    color: var(--text-secondary);
    border: 2px solid rgba(212, 160, 23, 0.3);
    box-shadow: none;
    position: relative;
    overflow: hidden;
}

.action-row-buttons .btn-buy-now::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 160, 23, 0.1), transparent);
    transition: 0.6s;
}

.action-row-buttons .btn-buy-now:hover::before {
    left: 100%;
}

.action-row-buttons .btn-buy-now:hover {
    transform: translateY(-3px) scale(1.02);
    border-color: var(--gold);
    box-shadow: 0 8px 30px rgba(212, 160, 23, 0.2);
    background: rgba(212, 160, 23, 0.05);
}

.action-row-buttons .btn-buy-now i {
    color: var(--gold);
    font-size: 1.1rem;
}

.action-row-buttons .btn-buy-now .btn-text {
    color: var(--text-secondary);
}

.action-row-buttons .btn-buy-now .btn-gold-text {
    color: var(--gold);
}

.action-row-bottom {
    justify-content: flex-start;
    flex-wrap: wrap;
}

.action-row-bottom .quantity-selector {
    flex: 0 0 auto;
}

.quantity-selector {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--input-bg);
    border-radius: 12px;
    padding: 4px;
    border: 1px solid var(--input-border);
}

.quantity-selector button {
    width: 40px;
    height: 40px;
    border: none;
    background: transparent;
    color: var(--text-secondary);
    font-size: 1.2rem;
    cursor: pointer;
    border-radius: 8px;
    transition: var(--transition);
}

.quantity-selector button:hover {
    background: rgba(212, 160, 23, 0.1);
    color: var(--gold);
}

.quantity-selector span {
    color: var(--text-secondary);
    font-size: 1.1rem;
    font-weight: 600;
    min-width: 40px;
    text-align: center;
}

.product-full-description {
    margin-bottom: 30px;
}

.product-full-description .full-desc {
    color: var(--text-secondary);
    opacity: 0.7;
    line-height: 1.8;
    font-size: 1.05rem;
}

.product-full-description .full-desc p {
    margin-bottom: 12px;
}

.product-detail-info .features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
}

.product-detail-info .features .feature {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: var(--bg-secondary);
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.product-detail-info .features .feature i {
    color: var(--gold);
    font-size: 1.1rem;
}

.product-detail-info .features .feature span {
    color: var(--text-secondary);
    opacity: 0.7;
    font-size: 0.9rem;
}

.related-products {
    margin-top: 80px;
}

.related-products h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: var(--text-primary);
    margin-bottom: 40px;
    text-align: center;
}

.related-products h2 span {
    color: var(--gold);
}

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

.related-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 25px 20px;
    text-align: center;
    transition: var(--transition);
    text-decoration: none;
    color: inherit;
}

.related-card:hover {
    transform: translateY(-8px);
    border-color: rgba(212, 160, 23, 0.2);
    background: var(--hover-bg);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.related-card img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 12px;
    border: 1px solid var(--border-color);
}

.related-card h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.related-card .related-weight {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.related-card .related-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--gold);
    margin-top: 8px;
}

/* ============================================
   CHECKOUT PAGE SPECIFIC
   ============================================ */
.checkout-section {
    padding: 120px 0 80px;
    min-height: calc(100vh - 80px);
}

.checkout-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-primary);
}

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

.checkout-subtitle {
    color: var(--text-secondary);
    opacity: 0.5;
    margin-bottom: 40px;
    font-size: 1rem;
}

.checkout-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 50px;
}

.checkout-form-section h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    margin-bottom: 6px;
    color: var(--text-primary);
}

.checkout-form-section .form-sub {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 25px;
}

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

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 6px;
}

.form-group label .required {
    color: var(--gold);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    background: var(--input-bg);
    border: 1px solid var(--input-border);
    border-radius: 12px;
    color: var(--text-primary);
    font-size: 0.95rem;
    font-family: 'Inter', sans-serif;
    transition: var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--gold);
    background: var(--input-bg);
    box-shadow: 0 0 0 3px rgba(212, 160, 23, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23d4a017' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    cursor: pointer;
}

.form-group select option {
    background: var(--bg-primary);
    color: var(--text-primary);
}

.form-group textarea {
    resize: vertical;
    min-height: 80px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-divider {
    border: none;
    border-top: 1px solid var(--border-color);
    margin: 30px 0;
}

.payment-methods {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 8px;
}

.payment-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    cursor: pointer;
    transition: var(--transition);
}

.payment-option:hover {
    background: var(--hover-bg);
    border-color: rgba(212, 160, 23, 0.15);
}

.payment-option.active {
    border-color: var(--gold);
    background: rgba(212, 160, 23, 0.08);
}

.payment-option input[type="radio"] {
    appearance: none;
    width: 18px;
    height: 18px;
    border: 2px solid var(--text-muted);
    border-radius: 50%;
    position: relative;
    cursor: pointer;
    flex-shrink: 0;
    transition: var(--transition);
}

.payment-option input[type="radio"]:checked {
    border-color: var(--gold);
}

.payment-option input[type="radio"]:checked::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background: var(--gold);
    border-radius: 50%;
}

.payment-option .payment-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 8px;
}

.payment-option .payment-label i {
    color: var(--gold);
    font-size: 1.1rem;
}

.order-summary {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 30px;
    position: sticky;
    top: 100px;
    backdrop-filter: blur(4px);
}

.order-summary h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.order-summary h3 span {
    color: var(--gold);
}

.order-items {
    max-height: 300px;
    overflow-y: auto;
    margin-bottom: 20px;
}

.order-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
}

.order-item-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid var(--border-color);
    flex-shrink: 0;
}

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

.order-item-name {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-primary);
}

.order-item-weight {
    font-size: 0.75rem;
    color: var(--text-muted);
}

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

.order-item-qty {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-right: 8px;
}

.order-totals {
    border-top: 1px solid var(--border-color);
    padding-top: 16px;
}

.order-total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    font-size: 0.95rem;
    color: var(--text-secondary);
    opacity: 0.7;
}

.order-total-row.total {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-primary);
    opacity: 1;
    border-top: 1px solid var(--border-color);
    padding-top: 16px;
    margin-top: 8px;
}

.order-total-row.total .amount {
    color: var(--gold);
    font-size: 1.4rem;
}

.promo-code {
    display: flex;
    gap: 10px;
    margin: 16px 0;
}

.promo-code input {
    flex: 1;
    padding: 10px 14px;
    background: var(--input-bg);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    color: var(--text-primary);
    font-size: 0.85rem;
    outline: none;
    transition: var(--transition);
}

.promo-code input:focus {
    border-color: var(--gold);
}

.promo-code input::placeholder {
    color: var(--text-muted);
}

.promo-code button {
    padding: 10px 20px;
    background: transparent;
    border: 1px solid var(--gold);
    border-radius: 10px;
    color: var(--gold);
    font-weight: 600;
    font-size: 0.8rem;
    cursor: pointer;
    transition: var(--transition);
}

.promo-code button:hover {
    background: var(--gold);
    color: var(--black);
}

.place-order-btn {
    width: 100%;
    padding: 18px;
    background: linear-gradient(135deg, var(--gold), var(--dark-gold));
    color: var(--black);
    border: none;
    border-radius: 50px;
    font-size: 1.05rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    cursor: pointer;
    transition: var(--transition);
    margin-top: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.place-order-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 40px rgba(212, 160, 23, 0.3);
}

.place-order-btn:active {
    transform: scale(0.98);
}

.place-order-btn.loading .spinner {
    display: inline-block;
}
.place-order-btn.loading .btn-text {
    display: none;
}

.spinner {
    display: none;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(0, 0, 0, 0.1);
    border-top: 3px solid var(--black);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

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

/* ============================================
   SUCCESS MODAL
   ============================================ */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    z-index: 3000;
    display: none;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease-out;
}

.modal-overlay.active {
    display: flex;
}

.modal-content {
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 50px 40px;
    max-width: 480px;
    width: 90%;
    text-align: center;
    animation: scaleIn 0.4s ease-out;
}

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

.modal-content .success-icon {
    font-size: 4rem;
    color: #2a5a3a;
    background: rgba(42, 90, 58, 0.15);
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    border: 2px solid rgba(42, 90, 58, 0.2);
}

.modal-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: var(--text-primary);
}

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

.modal-content p {
    color: var(--text-secondary);
    opacity: 0.6;
    font-size: 0.95rem;
    margin-bottom: 25px;
    line-height: 1.7;
}

.modal-content .order-number {
    color: var(--gold);
    font-weight: 600;
    font-size: 1.1rem;
    background: rgba(212, 160, 23, 0.06);
    padding: 8px 20px;
    border-radius: 50px;
    display: inline-block;
    margin-bottom: 20px;
}

/* ============================================
   BREADCRUMB
   ============================================ */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 30px;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.breadcrumb a {
    color: var(--gold);
    text-decoration: none;
    transition: var(--transition);
}

.breadcrumb a:hover {
    opacity: 0.7;
}

.breadcrumb .separator {
    opacity: 0.3;
}

/* ============================================
   ERROR PAGE
   ============================================ */
.error-page {
    text-align: center;
    padding: 100px 20px;
}

.error-page i {
    font-size: 5rem;
    color: var(--gold);
    opacity: 0.3;
    margin-bottom: 20px;
}

.error-page h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.error-page p {
    color: var(--text-secondary);
    opacity: 0.6;
    font-size: 1.1rem;
    margin-bottom: 30px;
}

/* ============================================
   FOOTER
   ============================================ */
footer {
    background: var(--footer-bg);
    border-top: 1px solid var(--border-color);
    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(--text-secondary);
    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(--text-secondary);
    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 var(--border-color);
    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(--text-muted);
}

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

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

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

/* ============================================
   RESPONSIVE
   ============================================ */
@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;
    }
    .checkout-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .order-summary {
        position: static;
    }
    .product-detail-container {
        grid-template-columns: 1fr;
        padding: 30px;
    }
    .product-detail-image img {
        max-width: 350px;
    }
}

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

    .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;
    }

    .products-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .filter-bar {
        flex-direction: column;
        align-items: flex-start;
    }

    .filter-bar .sort-options {
        flex-wrap: wrap;
    }

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

    .checkout-title {
        font-size: 2rem;
    }
    .form-row {
        grid-template-columns: 1fr;
    }
    .payment-methods {
        grid-template-columns: 1fr;
    }

    .product-detail {
        padding: 100px 0 60px;
    }
    .product-detail-container {
        padding: 20px;
    }
    .product-detail-info h1 {
        font-size: 2.2rem;
    }
    .product-detail-info .price-info {
        font-size: 2rem;
    }
    .action-row {
        flex-direction: column;
        width: 100%;
    }
    .action-row-buttons .btn-primary,
    .action-row-buttons .btn-buy-now {
        width: 100%;
        flex: 1 1 100%;
    }
    .action-row-bottom {
        flex-direction: row;
        justify-content: center;
        align-items: center;
        gap: 12px;
        flex-wrap: wrap;
    }
    .action-row-bottom .quantity-selector {
        width: 100%;
        justify-content: center;
    }
    .product-detail-info .features {
        grid-template-columns: 1fr;
    }
    .related-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .product-actions {
        flex-direction: column;
    }
    .product-actions .add-to-cart-btn,
    .product-actions .btn-buy-now {
        width: 100%;
        flex: 1 1 auto;
        padding: 14px 20px;
        font-size: 0.85rem;
    }
    .product-actions .btn-buy-now {
        white-space: normal;
    }
}

@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;
    }

    .products-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    .page-title {
        font-size: 1.8rem;
    }
    .products-page {
        padding: 100px 0 60px;
    }
    .jar-card {
        padding: 30px 20px 25px;
    }
    .jar-product-img {
        width: 110px;
        height: 110px;
    }
    .filter-bar .sort-options button {
        font-size: 0.7rem;
        padding: 4px 12px;
    }

    .product-detail-container {
        padding: 16px;
    }
    .product-detail-info h1 {
        font-size: 1.8rem;
    }
    .related-grid {
        grid-template-columns: 1fr;
    }
    .product-detail-image img {
        max-width: 250px;
    }
    .action-row-buttons .btn-primary,
    .action-row-buttons .btn-buy-now {
        padding: 14px 20px;
        font-size: 0.85rem;
    }

    .product-actions .add-to-cart-btn,
    .product-actions .btn-buy-now {
        font-size: 0.75rem;
        padding: 12px 16px;
    }

    .checkout-section {
        padding: 100px 0 60px;
    }
    .modal-content {
        padding: 30px 20px;
    }
    .modal-content .success-icon {
        width: 70px;
        height: 70px;
        font-size: 2.8rem;
    }
}

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

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

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

/* ============================================
   FAQ PAGE STYLES
   ============================================ */
.faq-page {
    padding: 140px 0 80px;
    min-height: 100vh;
    background: var(--bg-primary);
}

.faq-page .page-header {
    text-align: center;
    margin-bottom: 50px;
}

.faq-page .page-header h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.faq-page .page-header h1 span {
    color: var(--gold);
}

.faq-page .page-header p {
    color: var(--text-secondary);
    opacity: 0.6;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.faq-page .gold-line {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    margin: 12px auto 16px;
}

.faq-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-bottom: 50px;
    padding: 20px;
    background: var(--bg-secondary);
    border-radius: 16px;
    border: 1px solid var(--border-color);
}

.faq-nav button {
    padding: 10px 24px;
    background: transparent;
    border: 1px solid var(--border-color);
    border-radius: 50px;
    color: var(--text-secondary);
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    opacity: 0.6;
    display: flex;
    align-items: center;
    gap: 8px;
}

.faq-nav button:hover {
    opacity: 1;
    border-color: rgba(212, 160, 23, 0.3);
}

.faq-nav button.active {
    background: linear-gradient(135deg, var(--gold), var(--dark-gold));
    color: var(--black);
    opacity: 1;
    border-color: var(--gold);
    box-shadow: 0 4px 20px rgba(212, 160, 23, 0.3);
}

.faq-nav button i {
    font-size: 0.9rem;
}

.faq-section {
    display: none;
    max-width: 900px;
    margin: 0 auto;
}

.faq-section.active {
    display: block;
    animation: fadeIn 0.4s ease-out;
}

.faq-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--gold);
    margin-bottom: 30px;
    text-align: center;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    margin-bottom: 16px;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: rgba(212, 160, 23, 0.15);
}

.faq-question {
    width: 100%;
    padding: 20px 24px;
    background: transparent;
    border: none;
    color: var(--text-primary);
    font-size: 1.05rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    transition: var(--transition);
    font-family: 'Inter', sans-serif;
}

.faq-question:hover {
    color: var(--gold);
}

.faq-question .faq-icon {
    flex-shrink: 0;
    color: var(--gold);
    font-size: 1.2rem;
    transition: var(--transition);
}

.faq-question .faq-icon .fa-chevron-down {
    transition: var(--transition);
}

.faq-question .faq-icon .fa-chevron-down.rotated {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), padding 0.3s ease;
    padding: 0 24px;
}

.faq-answer.open {
    max-height: 500px;
    padding: 0 24px 20px 24px;
}

.faq-answer p {
    color: var(--text-secondary);
    opacity: 0.7;
    line-height: 1.8;
    font-size: 0.95rem;
    margin: 0;
}

.faq-contact {
    margin-top: 60px;
    padding: 40px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    text-align: center;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.faq-contact h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.faq-contact h3 span {
    color: var(--gold);
}

.faq-contact p {
    color: var(--text-secondary);
    opacity: 0.6;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.faq-contact .contact-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
}

.faq-contact .contact-buttons a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
}

.faq-contact .btn-email {
    background: linear-gradient(135deg, var(--gold), var(--dark-gold));
    color: var(--black);
}

.faq-contact .btn-email:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(212, 160, 23, 0.3);
}

.faq-contact .btn-whatsapp {
    background: #25D366;
    color: var(--white);
}

.faq-contact .btn-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.3);
}

/* ============================================
   CONTACT PAGE STYLES
   ============================================ */
.contact-page {
    padding: 140px 0 80px;
    min-height: 100vh;
    background: var(--bg-primary);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-top: 30px;
}

.contact-info {
    padding: 30px 0;
}

.contact-info h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.contact-info h2 span {
    color: var(--gold);
}

.contact-info .info-text {
    color: var(--text-secondary);
    opacity: 0.6;
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 30px;
}

.contact-info .info-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-info .info-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px 20px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    transition: var(--transition);
}

.contact-info .info-item:hover {
    background: var(--hover-bg);
    border-color: rgba(212, 160, 23, 0.15);
}

.contact-info .info-item .icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 50%;
    background: rgba(212, 160, 23, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1.2rem;
}

.contact-info .info-item .content h4 {
    color: var(--text-primary);
    font-size: 0.95rem;
    margin-bottom: 2px;
}

.contact-info .info-item .content p,
.contact-info .info-item .content a {
    color: var(--text-secondary);
    opacity: 0.5;
    font-size: 0.9rem;
    text-decoration: none;
    transition: var(--transition);
}

.contact-info .info-item .content a:hover {
    color: var(--gold);
    opacity: 1;
}

.contact-social {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
}

.contact-social h4 {
    color: var(--text-secondary);
    opacity: 0.6;
    font-size: 0.9rem;
    margin-bottom: 12px;
}

.contact-social .social-icons {
    display: flex;
    gap: 12px;
}

.contact-social .social-icons a {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    opacity: 0.5;
    transition: var(--transition);
    text-decoration: none;
    font-size: 1.1rem;
}

.contact-social .social-icons a:hover {
    opacity: 1;
    color: var(--gold);
    border-color: rgba(212, 160, 23, 0.2);
    transform: translateY(-3px);
}

.contact-form-wrapper {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 40px;
}

.contact-form-wrapper h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.contact-form-wrapper h2 span {
    color: var(--gold);
}

.contact-form-wrapper .form-sub {
    color: var(--text-secondary);
    opacity: 0.5;
    font-size: 0.95rem;
    margin-bottom: 25px;
}

.contact-form-wrapper .form-group {
    margin-bottom: 18px;
}

.contact-form-wrapper .form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 5px;
}

.contact-form-wrapper .form-group label .required {
    color: var(--gold);
}

.contact-form-wrapper .form-group input,
.contact-form-wrapper .form-group textarea {
    width: 100%;
    padding: 12px 16px;
    background: var(--input-bg);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    color: var(--text-primary);
    font-size: 0.95rem;
    font-family: 'Inter', sans-serif;
    transition: var(--transition);
    outline: none;
}

.contact-form-wrapper .form-group input:focus,
.contact-form-wrapper .form-group textarea:focus {
    border-color: var(--gold);
    background: var(--input-bg);
    box-shadow: 0 0 0 3px rgba(212, 160, 23, 0.08);
}

.contact-form-wrapper .form-group input::placeholder,
.contact-form-wrapper .form-group textarea::placeholder {
    color: var(--text-muted);
}

.contact-form-wrapper .form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-form-wrapper .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.contact-form-wrapper .btn-submit {
    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: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.contact-form-wrapper .btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(212, 160, 23, 0.3);
}

.contact-form-wrapper .btn-submit:active {
    transform: scale(0.98);
}

.contact-map {
    margin-top: 60px;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    height: 300px;
    background: var(--bg-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: var(--text-secondary);
    opacity: 0.3;
}

.contact-map i {
    font-size: 3rem;
    margin-bottom: 12px;
    color: var(--gold);
}

.contact-map p {
    font-size: 1rem;
}

/* ============================================
   RETURN POLICY PAGE STYLES
   ============================================ */
.policy-page {
    padding: 140px 0 80px;
    min-height: 100vh;
    background: var(--bg-primary);
}

.policy-content {
    max-width: 900px;
    margin: 0 auto;
}

.policy-section {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 30px;
    margin-bottom: 24px;
    transition: var(--transition);
}

.policy-section:hover {
    border-color: rgba(212, 160, 23, 0.12);
    background: var(--hover-bg);
}

.policy-section .section-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.policy-section .section-header .icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 50%;
    background: rgba(212, 160, 23, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1.2rem;
}

.policy-section .section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: var(--text-primary);
    margin: 0;
}

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

.policy-section p {
    color: var(--text-secondary);
    opacity: 0.7;
    line-height: 1.8;
    font-size: 1rem;
    margin-bottom: 12px;
}

.policy-section p:last-child {
    margin-bottom: 0;
}

.policy-section ul {
    list-style: none;
    padding: 0;
    margin: 12px 0;
}

.policy-section ul li {
    color: var(--text-secondary);
    opacity: 0.7;
    line-height: 1.8;
    font-size: 1rem;
    padding: 8px 0;
    padding-left: 28px;
    position: relative;
    border-bottom: 1px solid var(--border-color);
}

.policy-section ul li:last-child {
    border-bottom: none;
}

.policy-section ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: 700;
}

.policy-section .highlight-box {
    background: rgba(212, 160, 23, 0.05);
    border-left: 3px solid var(--gold);
    padding: 16px 20px;
    border-radius: 8px;
    margin: 12px 0;
}

.policy-section .highlight-box p {
    margin: 0;
    color: var(--light-gold);
    opacity: 0.9;
}

body.light-theme .policy-section .highlight-box p {
    color: var(--dark-gold);
}

.policy-section .highlight-box i {
    color: var(--gold);
    margin-right: 8px;
}

.timeline {
    position: relative;
    padding: 20px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 24px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: rgba(212, 160, 23, 0.15);
}

.timeline-item {
    display: flex;
    gap: 20px;
    margin-bottom: 24px;
    position: relative;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-item .step-number {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 50%;
    background: rgba(212, 160, 23, 0.1);
    border: 2px solid rgba(212, 160, 23, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-weight: 700;
    font-size: 1.1rem;
    position: relative;
    z-index: 1;
}

.timeline-item .step-content {
    flex: 1;
    padding-top: 4px;
}

.timeline-item .step-content h4 {
    color: var(--text-primary);
    font-size: 1.05rem;
    margin-bottom: 4px;
}

.timeline-item .step-content p {
    color: var(--text-secondary);
    opacity: 0.6;
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.6;
}

.policy-contact {
    margin-top: 40px;
    padding: 40px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    text-align: center;
}

.policy-contact h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.policy-contact h3 span {
    color: var(--gold);
}

.policy-contact p {
    color: var(--text-secondary);
    opacity: 0.6;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.policy-contact .contact-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
}

.policy-contact .contact-buttons a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
}

.policy-contact .btn-email {
    background: linear-gradient(135deg, var(--gold), var(--dark-gold));
    color: var(--black);
}

.policy-contact .btn-email:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(212, 160, 23, 0.3);
}

.policy-contact .btn-whatsapp {
    background: #25D366;
    color: var(--white);
}

.policy-contact .btn-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.3);
}

.policy-contact .btn-phone {
    background: var(--bg-secondary);
    color: var(--text-secondary);
    border: 1px solid var(--border-color);
}

.policy-contact .btn-phone:hover {
    background: var(--hover-bg);
    border-color: rgba(212, 160, 23, 0.2);
    transform: translateY(-3px);
}

/* ============================================
   BACK TO TOP BUTTON
   ============================================ */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--gold), var(--dark-gold));
    color: var(--black);
    border: none;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(212, 160, 23, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(212, 160, 23, 0.5);
}


/* ============================================
   THEME TOGGLE
   ============================================ */
.theme-toggle-wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
}

.theme-toggle-label {
    font-size: 0.65rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Theme toggle switch */
.theme-switch {
    position: relative;
    width: 44px;
    height: 24px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    display: inline-block;
    flex-shrink: 0;
}

.theme-switch::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    width: 18px;
    height: 18px;
    background: var(--gold);
    border-radius: 50%;
    transition: var(--transition);
}

.theme-switch.active::after {
    left: 22px;
}

.theme-switch:hover {
    border-color: var(--gold);
}

/* Theme toggle button */
.theme-toggle {
    background: none;
    border: none;
    color: var(--text-secondary);
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition);
    padding: 8px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.theme-toggle:hover {
    color: var(--gold);
    transform: rotate(20deg);
}

/* Responsive */
@media (max-width: 768px) {
    .theme-toggle-label {
        display: none;
    }
    .theme-switch {
        width: 36px;
        height: 20px;
    }
    .theme-switch::after {
        width: 14px;
        height: 14px;
        top: 2px;
        left: 2px;
    }
    .theme-switch.active::after {
        left: 18px;
    }
}

@media (max-width: 480px) {
    .theme-switch {
        width: 32px;
        height: 18px;
    }
    .theme-switch::after {
        width: 12px;
        height: 12px;
        top: 2px;
        left: 2px;
    }
    .theme-switch.active::after {
        left: 16px;
    }
}


/* ============================================
   PAGE HEADER - Unified for FAQ, Contact, Return Policy
   ============================================ */
.page-header {
    text-align: center;
    margin-bottom: 50px;
}

.page-header h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.page-header h1 span {
    color: var(--gold);
}

.page-header p {
    color: var(--text-secondary);
    opacity: 0.6;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.page-header .gold-line {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    margin: 12px auto 16px;
}