/* ==========================================================
   ZRIR LUXE — Ultra Modern Premium Design System 2026
   Luxury Nut Spread E-Commerce — Cutting Edge Design
   ========================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500&family=Space+Grotesk:wght@300;400;500;600;700&display=swap');

/* --- 1. DESIGN TOKENS --- */
:root {
    --gold: #c8986e;
    --gold-light: #dfc098;
    --gold-lighter: #eedcc4;
    --gold-dark: #a87a50;
    --gold-deep: #8a6040;
    --gold-glow: rgba(200,152,110,0.3);
    --gold-gradient: linear-gradient(135deg, #dfc098, #c8986e, #a87a50);
    --gold-gradient-text: linear-gradient(135deg, #e8d0a8, #c8986e);
    --dark: #060606;
    --dark-soft: #0e0e0e;
    --dark-card: #141414;
    --dark-elevated: #1a1a1a;
    --dark-border: rgba(255,255,255,0.06);
    --cream: #faf6f0;
    --cream-dark: #f0e8dc;
    --cream-deep: #e8ddd0;
    --white: #ffffff;
    --text: #1a1714;
    --text-soft: #6d655c;
    --text-light: #a09890;
    --text-on-dark: rgba(250,246,240,0.9);
    --text-on-dark-soft: rgba(250,246,240,0.5);
    --text-on-dark-muted: rgba(250,246,240,0.3);
    --glass-bg: rgba(255,255,255,0.6);
    --glass-bg-dark: rgba(14,14,14,0.8);
    --glass-border: rgba(255,255,255,0.12);
    --glass-border-dark: rgba(255,255,255,0.06);
    --shadow-xs: 0 1px 3px rgba(0,0,0,0.03);
    --shadow-sm: 0 2px 10px rgba(0,0,0,0.04);
    --shadow-md: 0 8px 30px rgba(0,0,0,0.06);
    --shadow-lg: 0 20px 60px rgba(0,0,0,0.08);
    --shadow-xl: 0 30px 80px rgba(0,0,0,0.12);
    --shadow-2xl: 0 40px 100px rgba(0,0,0,0.16);
    --shadow-gold: 0 10px 40px rgba(200,152,110,0.25);
    --shadow-gold-lg: 0 20px 60px rgba(200,152,110,0.35);
    --radius-xs: 8px;
    --radius-sm: 12px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --radius-2xl: 40px;
    --radius-full: 9999px;
    --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
    --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
    --ease-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --transition: all 0.4s var(--ease);
    --transition-fast: all 0.2s ease;
    --transition-slow: all 0.8s var(--ease-out);
    --transition-spring: all 0.5s var(--ease-spring);
    --font-serif: 'Cormorant Garamond', 'Georgia', serif;
    --font-sans: 'Space Grotesk', 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* --- 2. RESET & BASE --- */
*, *::before, *::after { box-sizing: border-box; }

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-sans);
    color: var(--text);
    background: var(--cream);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    margin: 0;
}

body.loading {
    overflow: hidden;
}

h1, h2, h3, h4, h5 {
    font-family: var(--font-serif);
    font-weight: 600;
    line-height: 1.15;
    letter-spacing: -0.01em;
}

.serif { font-family: var(--font-serif); }

::selection {
    background: var(--gold);
    color: white;
}

img { max-width: 100%; height: auto; }
a { transition: var(--transition-fast); }

/* --- 3. PRELOADER --- */
.preloader {
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: var(--dark);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 24px;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.preloader-logo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    animation: preloaderPulse 1.5s ease-in-out infinite;
}

.preloader-bar {
    width: 120px;
    height: 2px;
    background: rgba(255,255,255,0.1);
    border-radius: 2px;
    overflow: hidden;
}

.preloader-bar::after {
    content: '';
    display: block;
    width: 40%;
    height: 100%;
    background: var(--gold-gradient);
    border-radius: 2px;
    animation: preloaderSlide 1.2s ease-in-out infinite;
}

@keyframes preloaderPulse {
    0%, 100% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.05); opacity: 1; }
}

@keyframes preloaderSlide {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(350%); }
}

/* --- 4. GRAIN TEXTURE OVERLAY --- */
.grain-overlay {
    position: fixed;
    inset: 0;
    z-index: 9998;
    pointer-events: none;
    opacity: 0.035;
    mix-blend-mode: multiply;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 256px;
}

/* --- 5. SCROLLBAR --- */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb {
    background: var(--gold);
    border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover { background: var(--gold-light); }

html {
    scrollbar-width: thin;
    scrollbar-color: var(--gold) var(--dark);
}

/* --- 6. NAVBAR --- */
.navbar-zrir {
    background: rgba(6,6,6,0.6);
    backdrop-filter: blur(30px) saturate(200%);
    -webkit-backdrop-filter: blur(30px) saturate(200%);
    border-bottom: 1px solid var(--dark-border);
    padding: 0.9rem 0;
    transition: var(--transition);
    z-index: 1050;
}

.navbar-zrir.scrolled {
    padding: 0.5rem 0;
    background: rgba(6,6,6,0.95);
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}

.navbar-brand-zrir {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.brand-logo-img {
    height: 46px;
    width: auto;
    transition: var(--transition);
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(200,152,110,0.15);
}

.navbar-zrir.scrolled .brand-logo-img { height: 36px; }

.brand-text-wrap {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.brand-name {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    font-weight: 700;
    background: var(--gold-gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 5px;
    text-decoration: none;
}

.brand-sub {
    font-family: var(--font-sans);
    font-size: 0.48rem;
    letter-spacing: 3.5px;
    text-transform: uppercase;
    color: var(--gold);
    opacity: 0.5;
}

.nav-link-zrir {
    color: rgba(255,255,255,0.55) !important;
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 0.5rem 1.2rem !important;
    transition: var(--transition-fast);
    position: relative;
}

.nav-link-zrir::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 1.5px;
    background: var(--gold-gradient);
    transition: var(--transition);
    transform: translateX(-50%);
}

.nav-link-zrir:hover {
    color: var(--cream) !important;
}

.nav-link-zrir:hover::after { width: 60%; }

.cart-btn-nav {
    background: transparent;
    border: 1px solid rgba(200,152,110,0.3);
    color: var(--gold-light) !important;
    padding: 0.45rem 1.3rem !important;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: var(--transition);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    position: relative;
    overflow: hidden;
}

.cart-btn-nav::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gold-gradient);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: inherit;
}

.cart-btn-nav:hover {
    border-color: var(--gold);
    color: var(--dark) !important;
}

.cart-btn-nav:hover::before { opacity: 1; }

.cart-btn-nav > * { position: relative; z-index: 1; }
.cart-btn-nav > i { position: relative; z-index: 1; }
.cart-btn-nav > span { position: relative; z-index: 1; }

.cart-badge {
    background: var(--gold) !important;
    color: var(--dark) !important;
    font-size: 0.6rem;
    font-weight: 700;
    width: 18px;
    height: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    position: relative;
    z-index: 1;
}

.footer-brand-img {
    height: 65px;
    border-radius: 50%;
    margin-bottom: 1.2rem;
    box-shadow: 0 0 30px rgba(200,152,110,0.15);
}

/* --- 7. HERO SECTION --- */
.hero {
    background: var(--dark);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -15%;
    width: 900px;
    height: 900px;
    background: radial-gradient(circle, rgba(200,152,110,0.07) 0%, transparent 65%);
    border-radius: 50%;
    animation: heroGlow 10s ease-in-out infinite alternate;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(200,152,110,0.04) 0%, transparent 65%);
    border-radius: 50%;
    animation: heroGlow 12s ease-in-out infinite alternate-reverse;
}

@keyframes heroGlow {
    0% { transform: scale(1) translate(0, 0); }
    100% { transform: scale(1.3) translate(40px, -30px); }
}

/* Floating Particles */
.hero-particles {
    position: absolute;
    inset: 0;
    z-index: 1;
    overflow: hidden;
}

.hero-particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: var(--gold);
    border-radius: 50%;
    opacity: 0;
    animation: particleFloat 8s ease-in-out infinite;
}

.hero-particle:nth-child(1) { left: 10%; top: 20%; animation-delay: 0s; animation-duration: 7s; }
.hero-particle:nth-child(2) { left: 25%; top: 60%; animation-delay: 1.5s; animation-duration: 9s; width: 2px; height: 2px; }
.hero-particle:nth-child(3) { left: 50%; top: 30%; animation-delay: 3s; animation-duration: 8s; }
.hero-particle:nth-child(4) { left: 70%; top: 70%; animation-delay: 2s; animation-duration: 10s; width: 4px; height: 4px; }
.hero-particle:nth-child(5) { left: 85%; top: 40%; animation-delay: 4s; animation-duration: 7.5s; width: 2px; height: 2px; }
.hero-particle:nth-child(6) { left: 40%; top: 80%; animation-delay: 5s; animation-duration: 9s; }
.hero-particle:nth-child(7) { left: 60%; top: 15%; animation-delay: 1s; animation-duration: 11s; width: 2px; height: 2px; }
.hero-particle:nth-child(8) { left: 15%; top: 45%; animation-delay: 3.5s; animation-duration: 8.5s; }

@keyframes particleFloat {
    0% { opacity: 0; transform: translateY(0) scale(0); }
    10% { opacity: 0.6; transform: translateY(-10px) scale(1); }
    90% { opacity: 0.6; transform: translateY(-120px) scale(1); }
    100% { opacity: 0; transform: translateY(-140px) scale(0); }
}

/* Hero Grid Lines */
.hero-grid {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-image:
        linear-gradient(rgba(200,152,110,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(200,152,110,0.03) 1px, transparent 1px);
    background-size: 80px 80px;
    mask-image: radial-gradient(ellipse at center, black 20%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 20%, transparent 70%);
}

.hero-content {
    position: relative;
    z-index: 3;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 22px;
    background: rgba(200,152,110,0.08);
    border: 1px solid rgba(200,152,110,0.15);
    border-radius: var(--radius-full);
    color: var(--gold-light);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    margin-bottom: 2.5rem;
    animation: fadeSlideDown 0.8s var(--ease-out) forwards;
    backdrop-filter: blur(10px);
}

.hero-title {
    font-family: var(--font-serif);
    font-size: clamp(3.2rem, 7vw, 6rem);
    font-weight: 600;
    color: var(--cream);
    line-height: 1.0;
    margin-bottom: 1.8rem;
    animation: fadeSlideUp 1s var(--ease-out) forwards;
    animation-delay: 0.2s;
    opacity: 0;
    letter-spacing: -0.02em;
}

.hero-title .gold {
    background: var(--gold-gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-style: italic;
}

.hero-subtitle {
    font-size: 1.05rem;
    color: var(--text-on-dark-soft);
    max-width: 480px;
    line-height: 1.9;
    margin-bottom: 3rem;
    animation: fadeSlideUp 1s var(--ease-out) forwards;
    animation-delay: 0.4s;
    opacity: 0;
    font-weight: 300;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 17px 38px;
    background: var(--gold-gradient);
    color: var(--dark);
    border: none;
    border-radius: var(--radius-full);
    font-family: var(--font-sans);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.hero-cta::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.2), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.hero-cta:hover {
    color: var(--dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow-gold-lg);
}

.hero-cta:hover::after { opacity: 1; }

.hero-cta .arrow {
    transition: transform 0.3s ease;
}

.hero-cta:hover .arrow {
    transform: translateX(6px);
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--text-on-dark-muted);
    font-size: 0.65rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    animation: scrollBounce 2.5s ease-in-out infinite;
}

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

.hero-visual {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 1000px;
}

.hero-pot-img {
    max-width: 380px;
    width: 100%;
    border-radius: var(--radius-2xl);
    box-shadow: 0 50px 100px rgba(0,0,0,0.6), 0 0 100px rgba(200,152,110,0.15), 0 0 200px rgba(200,152,110,0.05);
    animation: fadeSlideUp 1.2s var(--ease-out) forwards;
    animation-delay: 0.5s;
    opacity: 0;
    transition: transform 0.6s var(--ease);
    filter: drop-shadow(0 0 40px rgba(200,152,110,0.12));
}

.hero-pot-img:hover {
    transform: scale(1.05) rotate(-1.5deg) translateY(-10px);
    filter: drop-shadow(0 0 60px rgba(200,152,110,0.2));
}

.hero-pot-glow {
    position: absolute;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(200,152,110,0.14) 0%, rgba(200,152,110,0.05) 40%, transparent 65%);
    border-radius: 50%;
    z-index: -1;
    animation: glowPulse 5s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.15); opacity: 1; }
}

.hero-dot { display: none; }

/* --- 8. MARQUEE STRIP --- */
.marquee-strip {
    background: var(--dark);
    border-top: 1px solid var(--dark-border);
    border-bottom: 1px solid var(--dark-border);
    padding: 1rem 0;
    overflow: hidden;
    position: relative;
}

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

.marquee-strip::before {
    left: 0;
    background: linear-gradient(90deg, var(--dark), transparent);
}

.marquee-strip::after {
    right: 0;
    background: linear-gradient(-90deg, var(--dark), transparent);
}

.marquee-track {
    display: flex;
    animation: marqueeScroll 30s linear infinite;
    width: max-content;
}

.marquee-track:hover {
    animation-play-state: paused;
}

.marquee-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0 40px;
    white-space: nowrap;
    font-family: var(--font-sans);
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text-on-dark-soft);
}

.marquee-item i {
    color: var(--gold);
    font-size: 0.6rem;
}

.marquee-dot {
    width: 4px;
    height: 4px;
    background: var(--gold);
    border-radius: 50%;
    opacity: 0.4;
}

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

/* --- 9. FEATURES --- */
.features-strip {
    background: var(--white);
    border-bottom: 1px solid rgba(0,0,0,0.04);
    padding: 5rem 0;
    position: relative;
}

.feature-item {
    text-align: center;
    padding: 2.5rem 2rem;
    border-radius: var(--radius-xl);
    transition: var(--transition);
    position: relative;
    border: 1px solid transparent;
}

.feature-item:hover {
    background: var(--cream);
    transform: translateY(-6px);
    border-color: rgba(200,152,110,0.1);
    box-shadow: var(--shadow-lg);
}

.feature-icon-wrap {
    width: 68px;
    height: 68px;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, rgba(200,152,110,0.1), rgba(200,152,110,0.03));
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: var(--transition);
    position: relative;
}

.feature-item:hover .feature-icon-wrap {
    background: var(--gold-gradient);
    transform: scale(1.1) rotate(-5deg);
    box-shadow: var(--shadow-gold);
}

.feature-icon-wrap i {
    font-size: 1.5rem;
    color: var(--gold);
    transition: var(--transition);
}

.feature-item:hover .feature-icon-wrap i { color: white; }

.feature-item h5 {
    font-family: var(--font-sans);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.6rem;
    letter-spacing: 0.5px;
}

.feature-item p {
    font-size: 0.88rem;
    color: var(--text-soft);
    margin: 0;
    line-height: 1.7;
}

/* --- 10. SECTION HEADERS --- */
.section-title {
    font-size: clamp(2.2rem, 4.5vw, 3.2rem);
    font-weight: 600;
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: 0.95rem;
    color: var(--text-soft);
    letter-spacing: 0.5px;
    font-weight: 400;
}

.section-label {
    display: inline-block;
    font-family: var(--font-sans);
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
    position: relative;
    padding-left: 40px;
}

.section-label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 28px;
    height: 1px;
    background: var(--gold-gradient);
}

/* --- 11. ABOUT / STORY SECTION --- */
.about-section {
    padding: 7rem 0;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(200,152,110,0.06) 0%, transparent 70%);
    border-radius: 50%;
}

.about-img-wrap {
    border-radius: var(--radius-2xl);
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-xl);
}

.about-img-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(6,6,6,0.3));
    pointer-events: none;
}

.about-img-wrap img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: transform 0.8s var(--ease);
}

.about-img-wrap:hover img {
    transform: scale(1.05);
}

.about-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.5rem 1rem;
}

.about-stat-number {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gold-dark);
    line-height: 1;
    margin-bottom: 0.3rem;
}

.about-stat-label {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--text-soft);
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* --- 12. PRODUCT CARDS --- */
.product-card {
    background: var(--white);
    border: 1px solid rgba(0,0,0,0.04);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: var(--transition);
    position: relative;
}

.product-card::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    background: var(--gold-gradient);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
    padding: 1px;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
}

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

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-2xl);
    border-color: transparent;
}

.product-img-wrap {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #f5f0eb, #ebe3d9);
}

.product-img-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(6,6,6,0.08));
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    z-index: 1;
}

.product-card:hover .product-img-wrap::after {
    opacity: 1;
}

.product-img {
    height: 280px;
    width: 100%;
    object-fit: cover;
    transition: transform 0.7s var(--ease);
}

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

.product-img-placeholder {
    height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f5f0eb, #ebe3d9);
}

.product-img-placeholder i {
    font-size: 3rem;
    color: var(--gold-light);
    opacity: 0.4;
}

.product-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 6px 16px;
    background: var(--gold-gradient);
    color: var(--dark);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border-radius: var(--radius-full);
    z-index: 2;
    box-shadow: var(--shadow-gold);
}

.product-quick-add {
    position: absolute;
    bottom: 16px;
    right: 16px;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--dark);
    color: var(--cream);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    opacity: 0;
    transform: translateY(12px) scale(0.8);
    transition: var(--transition-spring);
    cursor: pointer;
    z-index: 2;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.product-card:hover .product-quick-add {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.product-quick-add:hover {
    background: var(--gold);
    color: var(--dark);
    transform: scale(1.1) !important;
}

.product-body { padding: 1.8rem; }

.product-category {
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.product-name {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    transition: var(--transition-fast);
}

.product-name a {
    color: var(--text);
    text-decoration: none;
}

.product-name a:hover { color: var(--gold); }

.product-desc {
    font-size: 0.85rem;
    color: var(--text-soft);
    margin-bottom: 1.2rem;
    line-height: 1.7;
}

.product-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1.2rem;
    border-top: 1px solid rgba(0,0,0,0.05);
}

.product-price {
    font-family: var(--font-sans);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text);
}

.product-price small {
    font-size: 0.72rem;
    font-weight: 400;
    color: var(--text-light);
}

.product-weight {
    font-size: 0.75rem;
    color: var(--text-light);
    background: var(--cream);
    padding: 5px 14px;
    border-radius: var(--radius-full);
    font-weight: 500;
}

/* --- 13. BUTTONS --- */
.btn-zrir {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 34px;
    background: var(--gold-gradient);
    color: var(--dark);
    border: 2px solid transparent;
    border-radius: var(--radius-full);
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn-zrir::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.25), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: inherit;
}

.btn-zrir:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-gold-lg);
    color: var(--dark);
}

.btn-zrir:hover::after { opacity: 1; }

.btn-zrir:active { transform: translateY(-1px); }

.btn-zrir-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 34px;
    background: transparent;
    color: var(--text);
    border: 2px solid rgba(0,0,0,0.1);
    border-radius: var(--radius-full);
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
}

.btn-zrir-outline:hover {
    border-color: var(--gold);
    color: var(--gold-dark);
    transform: translateY(-3px);
    background: rgba(200,152,110,0.04);
}

.btn-zrir-dark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 34px;
    background: var(--dark);
    color: var(--cream);
    border: 2px solid var(--dark);
    border-radius: var(--radius-full);
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
}

.btn-zrir-dark:hover {
    background: var(--dark-soft);
    color: var(--gold-light);
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

.btn-zrir-sm { padding: 10px 24px; font-size: 0.72rem; }
.btn-zrir-lg { padding: 20px 48px; font-size: 0.85rem; }

.btn-zrir-icon {
    width: 50px;
    height: 50px;
    padding: 0;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* --- 14. CTA BANNER --- */
.cta-section {
    background: var(--dark);
    position: relative;
    overflow: hidden;
    padding: 8rem 0;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -300px;
    right: -200px;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(200,152,110,0.06) 0%, transparent 60%);
    border-radius: 50%;
    animation: heroGlow 8s ease-in-out infinite alternate;
}

.cta-section::after {
    content: '';
    position: absolute;
    bottom: -200px;
    left: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(200,152,110,0.04) 0%, transparent 60%);
    border-radius: 50%;
}

.cta-title {
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    color: var(--cream);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.cta-title em {
    background: var(--gold-gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-style: italic;
}

.cta-text {
    color: var(--text-on-dark-soft);
    font-size: 1.08rem;
    margin-bottom: 2.5rem;
    font-weight: 300;
}

/* --- 15. TESTIMONIALS --- */
.testimonial-section {
    padding: 7rem 0;
    background: var(--cream);
    position: relative;
}

.testimonial-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    border: 1px solid rgba(0,0,0,0.04);
    transition: var(--transition);
    height: 100%;
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(200,152,110,0.1);
}

.testimonial-stars {
    display: flex;
    gap: 3px;
    margin-bottom: 1.2rem;
}

.testimonial-stars i {
    color: var(--gold);
    font-size: 0.85rem;
}

.testimonial-text {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    font-weight: 400;
    font-style: italic;
    line-height: 1.7;
    color: var(--text);
    margin-bottom: 1.5rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--gold-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-family: var(--font-serif);
    font-weight: 700;
    font-size: 1.1rem;
}

.testimonial-name {
    font-weight: 600;
    font-size: 0.9rem;
    margin: 0;
}

.testimonial-location {
    font-size: 0.78rem;
    color: var(--text-light);
    margin: 0;
}

.testimonial-quote-icon {
    position: absolute;
    top: 24px;
    right: 28px;
    font-size: 2.5rem;
    color: var(--gold-lighter);
    opacity: 0.3;
}

/* --- 16. PROCESS / STORY --- */
.process-section {
    padding: 7rem 0;
    background: var(--dark);
    position: relative;
    overflow: hidden;
}

.process-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(200,152,110,0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(200,152,110,0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
}

.process-step {
    text-align: center;
    position: relative;
    z-index: 1;
}

.process-number {
    font-family: var(--font-serif);
    font-size: 3rem;
    font-weight: 300;
    background: var(--gold-gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 1rem;
    opacity: 0.6;
}

.process-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: rgba(200,152,110,0.08);
    border: 1px solid rgba(200,152,110,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.2rem;
    transition: var(--transition);
}

.process-step:hover .process-icon {
    background: var(--gold-gradient);
    border-color: transparent;
    transform: scale(1.1);
    box-shadow: var(--shadow-gold);
}

.process-icon i {
    font-size: 1.4rem;
    color: var(--gold);
    transition: var(--transition);
}

.process-step:hover .process-icon i { color: white; }

.process-step h5 {
    font-family: var(--font-sans);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--cream);
    margin-bottom: 0.5rem;
}

.process-step p {
    font-size: 0.85rem;
    color: var(--text-on-dark-soft);
    line-height: 1.7;
    max-width: 220px;
    margin: 0 auto;
}

/* --- 17. NEWSLETTER --- */
.newsletter-section {
    padding: 5rem 0;
    background: var(--cream-dark);
    position: relative;
}

.newsletter-card {
    background: var(--white);
    border-radius: var(--radius-2xl);
    padding: 4rem;
    text-align: center;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(0,0,0,0.04);
    position: relative;
    overflow: hidden;
}

.newsletter-card::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(200,152,110,0.06) 0%, transparent 70%);
    border-radius: 50%;
}

.newsletter-input-wrap {
    display: flex;
    gap: 12px;
    max-width: 480px;
    margin: 0 auto;
}

.newsletter-input {
    flex: 1;
    padding: 16px 24px;
    border: 2px solid rgba(0,0,0,0.06);
    border-radius: var(--radius-full);
    font-family: var(--font-sans);
    font-size: 0.92rem;
    background: var(--cream);
    transition: var(--transition-fast);
    outline: none;
}

.newsletter-input:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 4px rgba(200,152,110,0.1);
}

.newsletter-input::placeholder {
    color: var(--text-light);
}

/* --- 18. FOOTER --- */
/* ==========================================================
   FOOTER — Ultra Modern Mobile-First
   ========================================================== */
.footer-zrir {
    background: linear-gradient(180deg, var(--dark) 0%, #050505 100%);
    color: var(--text-on-dark-soft);
    padding: 5rem 0 2rem;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(200,152,110,0.1);
}

.footer-zrir::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(200,152,110,0.4), transparent);
}

.footer-glow {
    position: absolute;
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 400px;
    background: radial-gradient(ellipse at top, rgba(200,152,110,0.08) 0%, transparent 60%);
    pointer-events: none;
}

/* ====== TOP: Brand block ====== */
.footer-top {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.footer-brand-img {
    height: 80px;
    width: 80px;
    border-radius: 50%;
    margin-bottom: 1.5rem;
    box-shadow: 0 0 50px rgba(200,152,110,0.2), 0 0 0 1px rgba(200,152,110,0.15);
    object-fit: cover;
}

.footer-desc {
    font-size: 0.92rem;
    line-height: 1.8;
    max-width: 540px;
    margin: 0 auto 1.8rem;
    color: var(--text-on-dark-soft);
}

.footer-social {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.footer-social a {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.08);
    background: rgba(255,255,255,0.02);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-on-dark);
    font-size: 1.05rem;
    transition: var(--transition);
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.footer-social a::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gold-gradient);
    border-radius: 50%;
    transform: scale(0);
    transition: transform 0.4s var(--ease-spring);
}

.footer-social a:hover {
    border-color: transparent;
    color: var(--dark);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(200,152,110,0.35);
}

.footer-social a:hover::before { transform: scale(1); }
.footer-social a > i { position: relative; z-index: 1; }

/* ====== MIDDLE: Links Grid ====== */
.footer-middle {
    display: grid;
    grid-template-columns: 1fr 1fr 1.6fr;
    gap: 3rem;
    padding: 3rem 0;
    border-top: 1px solid rgba(255,255,255,0.06);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    position: relative;
    z-index: 1;
}

.footer-col {
    min-width: 0;
}

.footer-title {
    font-family: var(--font-sans);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.8rem;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 32px;
    height: 2px;
    background: var(--gold-gradient);
    border-radius: 2px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.85rem;
}

.footer-links a {
    color: var(--text-on-dark-soft);
    text-decoration: none;
    font-size: 0.92rem;
    transition: var(--transition-fast);
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.footer-links a i {
    color: var(--gold);
    opacity: 0;
    transform: translateX(-8px);
    transition: var(--transition-fast);
    font-size: 1.1rem;
}

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

.footer-links a:hover i {
    opacity: 1;
    transform: translateX(0);
}

/* Contact list */
.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 1.1rem;
}

.footer-contact-icon {
    flex-shrink: 0;
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(223,192,152,0.12), rgba(200,152,110,0.05));
    border: 1px solid rgba(200,152,110,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-light);
    font-size: 0.95rem;
    transition: var(--transition);
}

.footer-contact li:hover .footer-contact-icon {
    background: var(--gold-gradient);
    border-color: transparent;
    color: var(--dark);
    transform: scale(1.05);
}

.footer-contact-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
    line-height: 1.4;
    min-width: 0;
}

.footer-contact-label {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-on-dark-muted);
    font-weight: 500;
}

.footer-contact-text a,
.footer-contact-text span:not(.footer-contact-label) {
    color: var(--text-on-dark);
    text-decoration: none;
    font-size: 0.92rem;
    font-weight: 500;
    transition: var(--transition-fast);
    word-break: break-word;
}

.footer-contact-text a:hover {
    color: var(--gold-light);
}

/* ====== BOTTOM: Copyright ====== */
.footer-bottom {
    margin-top: 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 0.82rem;
    color: var(--text-on-dark-muted);
    position: relative;
    z-index: 1;
}

.footer-copy {
    letter-spacing: 0.3px;
}

.footer-made {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.footer-made i {
    color: #e74c3c;
    font-size: 0.85rem;
    animation: heartBeat 1.6s ease-in-out infinite;
}

@keyframes heartBeat {
    0%, 100% { transform: scale(1); }
    20% { transform: scale(1.15); }
    40% { transform: scale(1); }
}

/* ====== TABLET ====== */
@media (max-width: 991px) {
    .footer-zrir {
        padding: 4rem 0 1.8rem;
    }
    .footer-top {
        margin-bottom: 3rem;
    }
    .footer-middle {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem 2rem;
        padding: 2.5rem 0;
    }
    .footer-col-contact {
        grid-column: 1 / -1;
    }
    .footer-contact {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1rem 1.5rem;
    }
    .footer-contact li {
        margin-bottom: 0;
    }
}

/* ====== MOBILE ====== */
@media (max-width: 576px) {
    .footer-zrir {
        padding: 3.5rem 0 1.5rem;
    }
    .footer-brand-img {
        height: 70px;
        width: 70px;
        margin-bottom: 1.2rem;
    }
    .footer-desc {
        font-size: 0.88rem;
        line-height: 1.7;
        margin-bottom: 1.5rem;
    }
    .footer-social a {
        width: 42px;
        height: 42px;
        font-size: 1rem;
    }
    .footer-top {
        margin-bottom: 2.5rem;
    }
    .footer-middle {
        grid-template-columns: 1fr;
        gap: 2.2rem;
        padding: 2.2rem 0;
    }
    .footer-contact {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    .footer-title {
        font-size: 0.65rem;
        letter-spacing: 2.5px;
        margin-bottom: 1.2rem;
    }
    .footer-links li {
        margin-bottom: 0.75rem;
    }
    .footer-links a {
        font-size: 0.9rem;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 8px;
        font-size: 0.78rem;
        margin-top: 1.5rem;
    }
}

/* --- 19. GLASS CARDS --- */
.glass-card {
    background: var(--white);
    border: 1px solid rgba(0,0,0,0.05);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.glass-card:hover {
    box-shadow: var(--shadow-lg);
}

/* --- 20. PAGE HEADERS --- */
.page-header {
    padding: 4rem 0 2.5rem;
    text-align: center;
}

.page-header h1 {
    font-size: clamp(2.2rem, 4.5vw, 3.2rem);
    margin-bottom: 0.5rem;
}

/* --- 21. CATALOG SIDEBAR --- */
.catalog-sidebar {
    position: sticky;
    top: 100px;
}

.filter-card {
    background: var(--white);
    border: 1px solid rgba(0,0,0,0.05);
    border-radius: var(--radius-xl);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
}

.filter-title {
    font-family: var(--font-sans);
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.filter-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px 16px;
    border-radius: var(--radius-sm);
    color: var(--text-soft);
    text-decoration: none;
    font-size: 0.92rem;
    font-weight: 500;
    transition: var(--transition-fast);
    margin-bottom: 4px;
}

.filter-link:hover {
    background: var(--cream);
    color: var(--text);
    transform: translateX(4px);
}

.filter-link.active {
    background: var(--gold-gradient);
    color: var(--dark);
    font-weight: 600;
    box-shadow: var(--shadow-gold);
}

.filter-link i {
    font-size: 0.7rem;
    opacity: 0;
    transition: var(--transition-fast);
}

.filter-link:hover i,
.filter-link.active i { opacity: 1; }

/* --- 22. PRODUCT DETAIL --- */
.detail-img-wrap {
    border-radius: var(--radius-2xl);
    overflow: hidden;
    background: linear-gradient(135deg, #f5f0eb, #ebe3d9);
    box-shadow: var(--shadow-xl);
    position: relative;
}

.detail-img-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    box-shadow: inset 0 0 0 1px rgba(0,0,0,0.04);
    pointer-events: none;
}

.detail-img {
    width: 100%;
    max-height: 560px;
    object-fit: cover;
    transition: transform 0.8s var(--ease);
}

.detail-img:hover {
    transform: scale(1.04);
}

.detail-placeholder {
    height: 460px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f5f0eb, #ebe3d9);
    border-radius: var(--radius-2xl);
}

.detail-category {
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 3.5px;
    text-transform: uppercase;
    color: var(--gold);
}

.detail-name {
    font-size: clamp(2rem, 4vw, 2.8rem);
    margin: 0.5rem 0;
    letter-spacing: -0.02em;
}

.detail-price {
    font-family: var(--font-sans);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--gold-dark);
}

.detail-price small {
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--text-light);
}

.detail-desc {
    font-size: 1rem;
    color: var(--text-soft);
    line-height: 2;
}

.detail-ingredients {
    background: var(--cream);
    border-radius: var(--radius-lg);
    padding: 1.8rem;
    border: 1px solid rgba(0,0,0,0.03);
}

.detail-ingredients h6 {
    font-family: var(--font-sans);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--text-light);
    margin-bottom: 0.6rem;
}

.qty-control {
    display: inline-flex;
    align-items: center;
    border: 2px solid rgba(0,0,0,0.06);
    border-radius: var(--radius-full);
    overflow: hidden;
    transition: var(--transition-fast);
}

.qty-control:focus-within {
    border-color: var(--gold);
    box-shadow: 0 0 0 4px rgba(200,152,110,0.1);
}

.qty-control button {
    width: 46px;
    height: 46px;
    border: none;
    background: transparent;
    font-size: 1.1rem;
    cursor: pointer;
    transition: var(--transition-fast);
    color: var(--text);
}

.qty-control button:hover { background: var(--cream); }

.qty-control input {
    width: 50px;
    text-align: center;
    border: none;
    font-weight: 600;
    font-size: 1rem;
    background: transparent;
    font-family: var(--font-sans);
}

.qty-control input:focus { outline: none; }

.trust-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 1.5rem;
    background: var(--cream);
    border-radius: var(--radius-lg);
    transition: var(--transition);
    border: 1px solid transparent;
}

.trust-badge:hover {
    background: var(--cream-dark);
    transform: translateY(-4px);
    border-color: rgba(200,152,110,0.1);
    box-shadow: var(--shadow-md);
}

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

.trust-badge span {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--text-soft);
    letter-spacing: 0.5px;
}

/* --- 23. CART PAGE --- */
.cart-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
}

.cart-table thead th {
    font-family: var(--font-sans);
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--text-light);
    padding: 1.2rem 1.5rem;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.cart-table tbody td {
    padding: 1.3rem 1.5rem;
    vertical-align: middle;
    border-bottom: 1px solid rgba(0,0,0,0.03);
    transition: background 0.2s ease;
}

.cart-table tbody tr:hover td {
    background: rgba(200,152,110,0.02);
}

.cart-product-info {
    display: flex;
    align-items: center;
    gap: 16px;
}

.cart-product-img {
    width: 72px;
    height: 72px;
    border-radius: var(--radius-md);
    object-fit: cover;
    box-shadow: var(--shadow-sm);
}

.cart-product-img-placeholder {
    width: 72px;
    height: 72px;
    border-radius: var(--radius-md);
    background: var(--cream);
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-product-name {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    font-weight: 600;
    margin: 0;
}

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

.cart-qty {
    display: inline-flex;
    align-items: center;
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: var(--radius-full);
    transition: var(--transition-fast);
}

.cart-qty:hover {
    border-color: rgba(200,152,110,0.3);
}

.cart-qty button, .cart-qty span {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    background: transparent;
    font-size: 0.9rem;
    cursor: pointer;
}

.cart-qty span {
    font-weight: 600;
    cursor: default;
    width: 30px;
}

.cart-remove {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid rgba(220, 53, 69, 0.12);
    background: transparent;
    color: #dc3545;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.cart-remove:hover {
    background: #dc3545;
    color: white;
    border-color: #dc3545;
    transform: scale(1.1);
}

.summary-card {
    background: var(--dark);
    color: var(--cream);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
}

.summary-card::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(200,152,110,0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.summary-title {
    font-family: var(--font-sans);
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 2rem;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.7rem 0;
    font-size: 0.95rem;
}

.summary-row.total {
    padding-top: 1.2rem;
    margin-top: 0.5rem;
    border-top: 1px solid rgba(255,255,255,0.08);
    font-size: 1.4rem;
    font-weight: 700;
}

.summary-row .label { color: var(--text-on-dark-soft); }
.summary-row .value { font-weight: 600; }

.summary-row.total .value {
    background: var(--gold-gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cart-empty {
    text-align: center;
    padding: 6rem 2rem;
}

.cart-empty-icon {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--cream-dark), var(--cream-deep));
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.cart-empty-icon i {
    font-size: 2.5rem;
    color: var(--gold-light);
}

/* --- 24. CHECKOUT --- */
.checkout-form .form-control,
.checkout-form .form-select {
    border: 2px solid rgba(0,0,0,0.05);
    border-radius: var(--radius-sm);
    padding: 13px 18px;
    font-size: 0.95rem;
    transition: var(--transition-fast);
    background: var(--white);
    font-family: var(--font-sans);
}

.checkout-form .form-control:focus,
.checkout-form .form-select:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 5px rgba(200,152,110,0.08);
}

.checkout-form label {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: var(--text);
    margin-bottom: 6px;
}

.payment-option {
    border: 2px solid rgba(0,0,0,0.05);
    border-radius: var(--radius-lg);
    padding: 1.8rem;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.payment-option::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(200,152,110,0.03);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.payment-option:hover {
    border-color: rgba(200,152,110,0.2);
}

.payment-option:hover::before { opacity: 1; }

.payment-option i {
    font-size: 1.8rem;
    color: var(--text-light);
    margin-bottom: 0.6rem;
    display: block;
    transition: var(--transition);
}

.payment-option span {
    font-size: 0.82rem;
    font-weight: 600;
}

.btn-check:checked + .payment-option {
    border-color: var(--gold);
    background: rgba(200,152,110,0.04);
    box-shadow: 0 0 0 4px rgba(200,152,110,0.08);
}

.btn-check:checked + .payment-option i { color: var(--gold); }

.order-summary-sidebar {
    background: var(--cream);
    border-radius: var(--radius-xl);
    padding: 2rem;
    border: 1px solid rgba(0,0,0,0.04);
}

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

.order-item:last-child { border-bottom: none; }

.order-item-img {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-sm);
    object-fit: cover;
    box-shadow: var(--shadow-xs);
}

.order-item-name {
    font-weight: 600;
    font-size: 0.9rem;
}

.order-item-qty {
    font-size: 0.8rem;
    color: var(--text-light);
}

/* --- 25. CONFIRMATION --- */
.confirm-card {
    text-align: center;
    padding: 3.5rem;
}

.confirm-icon {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(25,135,84,0.1), rgba(25,135,84,0.04));
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    animation: confirmPop 0.5s var(--ease-spring) forwards;
}

@keyframes confirmPop {
    0% { transform: scale(0); }
    100% { transform: scale(1); }
}

.confirm-icon i {
    font-size: 2.8rem;
    color: #198754;
}

.confirm-details {
    background: var(--cream);
    border-radius: var(--radius-lg);
    padding: 2rem;
    text-align: left;
    border: 1px solid rgba(0,0,0,0.03);
}

/* --- 26. ORDER TRACKING --- */
.track-progress {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    margin: 2.5rem 0;
}

.track-progress::before {
    content: '';
    position: absolute;
    top: 22px;
    left: 22px;
    right: 22px;
    height: 2px;
    background: rgba(0,0,0,0.05);
    z-index: 0;
}

.track-progress-fill {
    position: absolute;
    top: 22px;
    left: 22px;
    height: 2px;
    background: var(--gold-gradient);
    z-index: 1;
    transition: width 1s var(--ease-out);
}

.track-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    z-index: 2;
    position: relative;
}

.track-dot {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--white);
    border: 2px solid rgba(0,0,0,0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    color: var(--text-light);
    transition: var(--transition);
}

.track-step.active .track-dot {
    background: var(--gold-gradient);
    border-color: transparent;
    color: white;
    box-shadow: var(--shadow-gold);
}

.track-step.active .track-label {
    color: var(--text);
    font-weight: 600;
}

.track-label {
    font-size: 0.75rem;
    color: var(--text-light);
    font-weight: 500;
}

/* --- 27. BREADCRUMB --- */
.breadcrumb-zrir {
    display: flex;
    align-items: center;
    gap: 10px;
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
}

.breadcrumb-zrir li {
    font-size: 0.82rem;
    color: var(--text-light);
}

.breadcrumb-zrir li a {
    color: var(--text-soft);
    text-decoration: none;
    transition: var(--transition-fast);
}

.breadcrumb-zrir li a:hover { color: var(--gold); }

.breadcrumb-zrir .sep {
    font-size: 0.6rem;
    opacity: 0.3;
}

/* --- 28. PROFILE & AUTH --- */
.profile-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 2rem;
}

.profile-avatar {
    width: 76px;
    height: 76px;
    border-radius: 50%;
    background: var(--gold-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 700;
    flex-shrink: 0;
    text-transform: uppercase;
    box-shadow: var(--shadow-gold);
}

.profile-name {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    font-weight: 600;
    margin: 0;
}

.profile-email {
    font-size: 0.88rem;
    color: var(--text-soft);
    margin: 0;
}

.order-history-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.04);
    text-decoration: none;
    color: var(--text);
    transition: var(--transition-fast);
}

.order-history-item:last-child { border-bottom: none; }

.order-history-item:hover {
    color: var(--gold);
    transform: translateX(4px);
}

.order-history-id {
    font-weight: 700;
    font-size: 0.95rem;
}

.order-history-date {
    font-size: 0.8rem;
    color: var(--text-light);
}

.order-history-total {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--gold-dark);
}

.auth-divider {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 1.5rem 0;
    color: var(--text-light);
    font-size: 0.82rem;
}

.auth-divider::before,
.auth-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: rgba(0,0,0,0.05);
}

/* --- 29. ANIMATIONS --- */
@keyframes fadeSlideUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeSlideDown {
    from { opacity: 0; transform: translateY(-25px); }
    to { opacity: 1; transform: translateY(0); }
}

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

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

.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }
.stagger-5 { transition-delay: 0.5s; }
.stagger-6 { transition-delay: 0.6s; }

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9990;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25d366;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    text-decoration: none;
    box-shadow: 0 6px 24px rgba(37,211,102,0.35);
    transition: var(--transition);
    animation: floatPulse 3s ease-in-out infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1) translateY(-4px);
    box-shadow: 0 10px 30px rgba(37,211,102,0.45);
    color: white;
}

@keyframes floatPulse {
    0%, 100% { box-shadow: 0 6px 24px rgba(37,211,102,0.35); }
    50% { box-shadow: 0 6px 24px rgba(37,211,102,0.55), 0 0 0 12px rgba(37,211,102,0.1); }
}

/* --- 30. RESPONSIVE --- */
@media (max-width: 991px) {
    .hero { min-height: auto; padding: 8rem 0 5rem; }
    .hero-visual { display: none !important; }
    .hero-title { font-size: 2.8rem; }
    .hero-scroll { display: none; }
    .hero-particles { display: none; }
    .about-img-wrap img { height: 350px; }
    .newsletter-card { padding: 3rem 2rem; }
}

@media (max-width: 768px) {
    .hero-title { font-size: 2.2rem; }
    .hero-subtitle { font-size: 0.95rem; }
    .product-img, .product-img-placeholder { height: 200px; }
    .cart-table thead { display: none; }
    .cart-table tbody td { display: block; padding: 0.5rem 1rem; border: none; }
    .cart-table tbody td:first-child { padding-top: 1.2rem; }
    .cart-table tbody td:last-child { padding-bottom: 1.2rem; border-bottom: 1px solid rgba(0,0,0,0.04); }
    .summary-card { margin-top: 1rem; }
    .newsletter-input-wrap { flex-direction: column; }
    .process-step { margin-bottom: 2rem; }
    .about-stat-number { font-size: 2rem; }
    .whatsapp-float { bottom: 20px; right: 20px; width: 50px; height: 50px; font-size: 1.4rem; }
    .section-title { font-size: 1.8rem; }
    .marquee-item { padding: 0 20px; font-size: 0.65rem; }
}

@media (max-width: 576px) {
    .hero { padding: 6rem 0 3rem; }
    .hero-title { font-size: 1.9rem; }
    .hero-badge { font-size: 0.6rem; letter-spacing: 1.5px; padding: 8px 14px; }
    .hero-cta { padding: 14px 28px; font-size: 0.75rem; }
    .product-body { padding: 1.2rem; }
    .product-name { font-size: 1.1rem; }
    .features-strip { padding: 3rem 0; }
    .feature-item { padding: 1.5rem 1rem; }
    .confirm-card { padding: 2rem 1.5rem; }
}

/* --- 31. BOOTSTRAP OVERRIDES --- */
.btn-warning {
    background: var(--gold-gradient);
    border: none;
    color: var(--dark);
    font-weight: 600;
    border-radius: var(--radius-full);
}
.btn-warning:hover {
    background: var(--gold-dark);
    color: white;
}

.form-control:focus, .form-select:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 5px rgba(200,152,110,0.08);
}

.list-group-item.active {
    background: var(--gold-gradient);
    border-color: transparent;
    color: var(--dark);
}

.card { border-radius: var(--radius-xl); }
.card.border-0 { border: none !important; }

.btn-check:checked + .btn-outline-dark {
    background: var(--gold-gradient);
    border-color: transparent;
    color: var(--dark);
}

.alert {
    border-radius: var(--radius-md);
    border: none;
    backdrop-filter: blur(10px);
}

/* --- 32. UTILITIES --- */
.divider {
    height: 1px;
    background: rgba(0,0,0,0.05);
    margin: 1.5rem 0;
}

.badge-zrir {
    padding: 5px 14px;
    border-radius: var(--radius-full);
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 1px;
}

.text-gold { color: var(--gold) !important; }
.bg-cream { background: var(--cream) !important; }

/* Smooth reveal for images */
img[src] {
    animation: fadeIn 0.5s ease;
}

/* Elegant link underline */
.elegant-link {
    position: relative;
    text-decoration: none;
    color: var(--gold);
    font-weight: 600;
}

.elegant-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--gold-gradient);
    transition: width 0.3s var(--ease);
}

.elegant-link:hover::after { width: 100%; }

/* Dark section utility */
.dark-section {
    background: var(--dark);
    color: var(--text-on-dark);
}

.dark-section .section-title { color: var(--cream); }
.dark-section .section-subtitle { color: var(--text-on-dark-soft); }

/* Gradient text utility */
.gradient-text {
    background: var(--gold-gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Back to top */
.back-to-top {
    position: fixed;
    bottom: 100px;
    right: 30px;
    z-index: 9989;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--dark);
    color: var(--gold-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    text-decoration: none;
    border: 1px solid var(--dark-border);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--gold);
    color: var(--dark);
    border-color: var(--gold);
    transform: translateY(-4px);
}

/* ==========================================================
   33. NEW: STORY SECTION ENHANCEMENTS (Djerbian identity)
   ========================================================== */
.story-img-wrap {
    position: relative;
    border-radius: var(--radius-2xl);
    overflow: visible;
}

.story-img-wrap img {
    border-radius: var(--radius-2xl);
}

.story-floating-badge {
    position: absolute;
    bottom: -28px;
    right: -20px;
    background: rgba(14,14,14,0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(200,152,110,0.25);
    border-radius: var(--radius-xl);
    padding: 18px 24px;
    box-shadow: var(--shadow-xl), var(--shadow-gold);
    z-index: 5;
    animation: floatBadge 6s ease-in-out infinite;
}

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

.story-badge-inner {
    display: flex;
    align-items: center;
    gap: 14px;
}

.story-badge-inner > i {
    font-size: 1.8rem;
    background: var(--gold-gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.story-badge-inner > div {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.story-badge-label {
    font-size: 0.62rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-on-dark-muted);
    font-weight: 500;
}

.story-badge-value {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    color: var(--cream);
    font-weight: 600;
    margin-top: 2px;
}

.story-corner-accent {
    position: absolute;
    width: 60px;
    height: 60px;
    border: 2px solid var(--gold);
    z-index: 6;
    pointer-events: none;
    opacity: 0.7;
}

.story-corner-tl {
    top: -10px;
    left: -10px;
    border-right: none;
    border-bottom: none;
    border-top-left-radius: 12px;
}

.story-corner-br {
    bottom: -10px;
    right: -10px;
    border-left: none;
    border-top: none;
    border-bottom-right-radius: 12px;
    opacity: 0.4;
}

/* Hide BR corner when badge is positioned there on small screens */
@media (max-width: 991px) {
    .story-floating-badge {
        right: 50%;
        transform: translateX(50%);
        bottom: -32px;
    }
    @keyframes floatBadge {
        0%, 100% { transform: translateX(50%) translateY(0); }
        50% { transform: translateX(50%) translateY(-6px); }
    }
    .story-corner-br { display: none; }
}

/* ==========================================================
   34. NEW: PROCESS SECTION V2 (image + vertical steps)
   ========================================================== */
.process-section-v2 {
    padding: 8rem 0;
}

.process-image-wrap {
    position: relative;
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: var(--shadow-2xl), 0 0 80px rgba(200,152,110,0.12);
    border: 1px solid rgba(200,152,110,0.15);
}

.process-image-wrap img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    display: block;
    transition: transform 1.2s var(--ease);
}

.process-image-wrap:hover img {
    transform: scale(1.04);
}

.process-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(6,6,6,0.55) 100%);
    pointer-events: none;
}

.process-image-tag {
    position: absolute;
    bottom: 24px;
    left: 24px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(14,14,14,0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(200,152,110,0.3);
    color: var(--gold-light);
    padding: 10px 20px;
    border-radius: var(--radius-full);
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    box-shadow: var(--shadow-md);
}

.process-image-tag i {
    font-size: 1rem;
    color: var(--gold);
}

.process-steps-vertical {
    display: flex;
    flex-direction: column;
    gap: 1.4rem;
    position: relative;
}

.process-steps-vertical::before {
    content: '';
    position: absolute;
    left: 28px;
    top: 60px;
    bottom: 60px;
    width: 1px;
    background: linear-gradient(180deg,
        transparent,
        rgba(200,152,110,0.3) 20%,
        rgba(200,152,110,0.3) 80%,
        transparent);
}

.process-step-h {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.2rem 0;
    position: relative;
    z-index: 1;
    transition: var(--transition);
}

.process-step-num {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--dark-elevated);
    border: 1px solid rgba(200,152,110,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-serif);
    font-size: 1.3rem;
    font-weight: 600;
    background-clip: padding-box;
    color: var(--gold-light);
    transition: var(--transition);
}

.process-step-h:hover .process-step-num {
    background: var(--gold-gradient);
    color: var(--dark);
    border-color: transparent;
    transform: scale(1.08);
    box-shadow: var(--shadow-gold);
}

.process-step-body {
    flex: 1;
    padding-top: 4px;
}

.process-step-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: rgba(200,152,110,0.1);
    color: var(--gold);
    font-size: 0.95rem;
    margin-bottom: 0.6rem;
}

.process-step-body h5 {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--cream);
    margin: 0 0 0.4rem 0;
    letter-spacing: -0.01em;
}

.process-step-body p {
    color: var(--text-on-dark-soft);
    font-size: 0.92rem;
    line-height: 1.7;
    margin: 0;
}

@media (max-width: 991px) {
    .process-image-wrap img { height: 420px; }
    .process-steps-vertical { margin-top: 2rem; }
    .process-step-body h5 { font-size: 1.2rem; }
}

/* ==========================================================
   35. NEW: BENTO LIFESTYLE GALLERY
   ========================================================== */
.bento-gallery {
    display: grid;
    grid-template-columns: 1fr min(40vw, 440px);
    grid-template-rows: min(40vw, 440px);
    gap: 1.2rem;
    grid-template-areas: "wide square";
    max-width: 1100px;
    margin: 0 auto;
    justify-content: center;
}

/* 3-image bento: tall ambiance + 2 elongated wide images stacked */
.bento-gallery-3 {
    --bento-row: clamp(200px, 24vw, 280px);
    --bento-gap: 1rem;
    display: grid;
    grid-template-columns:
        calc(var(--bento-row) * 1.5)
        calc(var(--bento-row) * 2.55);
    grid-template-rows: var(--bento-row) var(--bento-row);
    gap: var(--bento-gap);
    grid-template-areas:
        "tall wide-top"
        "tall wide-bot";
    justify-content: center;
    max-width: 100%;
}

.bento-gallery-3 .bento-tall { grid-area: tall; }
.bento-gallery-3 .bento-wide-top { grid-area: wide-top; }
.bento-gallery-3 .bento-wide-bot { grid-area: wide-bot; }

.bento-item {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    cursor: pointer;
    transition: var(--transition);
}

.bento-item:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl), var(--shadow-gold);
}

.bento-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 1.2s var(--ease);
}

.bento-item:hover img {
    transform: scale(1.08);
}

.bento-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 35%, rgba(6,6,6,0.4) 70%, rgba(6,6,6,0.85) 100%);
    pointer-events: none;
}

.bento-tall { grid-area: tall; }
.bento-wide { grid-area: wide; }
.bento-square { grid-area: square; }

.bento-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.6rem 1.8rem;
    z-index: 2;
    color: var(--cream);
    transform: translateY(8px);
    transition: var(--transition);
}

.bento-item:hover .bento-caption {
    transform: translateY(0);
}

.bento-caption-label {
    display: inline-block;
    font-size: 0.62rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--gold-light);
    margin-bottom: 0.4rem;
    padding: 4px 12px;
    background: rgba(200,152,110,0.15);
    border: 1px solid rgba(200,152,110,0.3);
    border-radius: var(--radius-full);
    backdrop-filter: blur(8px);
}

.bento-caption h4 {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    font-weight: 600;
    margin: 0;
    color: var(--cream);
    line-height: 1.2;
    text-shadow: 0 2px 20px rgba(0,0,0,0.4);
}

@media (max-width: 991px) {
    .bento-gallery {
        grid-template-columns: 1fr min(42vw, 340px);
        grid-template-rows: min(42vw, 340px);
        max-width: 100%;
    }
    .bento-gallery-3 {
        --bento-row: clamp(170px, 27vw, 230px);
    }
}

@media (max-width: 768px) {
    .bento-gallery-3 {
        --bento-row: 150px;
        grid-template-columns: 1fr;
        grid-template-rows: 70vw 38vw 38vw;
        grid-template-areas:
            "tall"
            "wide-top"
            "wide-bot";
        max-width: 560px;
    }
}

@media (max-width: 576px) {
    .bento-gallery {
        grid-template-columns: 1fr;
        grid-template-rows: 56vw 90vw;
        grid-template-areas:
            "wide"
            "square";
        max-width: 100%;
    }
    .bento-gallery-3 {
        grid-template-rows: 80vw 42vw 42vw;
    }
    .bento-caption h4 { font-size: 1.2rem; }
}

/* ==========================================================
   36. NEW: TRANSPARENCY / COMPOSITION SECTION
   ========================================================== */
.transparency-section {
    padding: 7rem 0;
    background: var(--white);
    position: relative;
}

.transparency-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(200,152,110,0.04) 0%, transparent 60%);
    border-radius: 50%;
    pointer-events: none;
}

.transparency-card {
    background: var(--cream);
    border: 1px solid rgba(0,0,0,0.04);
    border-radius: var(--radius-xl);
    padding: 2.4rem 2.2rem;
    height: 100%;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.transparency-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gold-gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.6s var(--ease);
}

.transparency-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(200,152,110,0.2);
}

.transparency-card:hover::before {
    transform: scaleX(1);
}

.transparency-no {
    background: var(--dark);
    color: var(--text-on-dark);
    border-color: var(--dark-border);
}

.transparency-no::before {
    background: linear-gradient(90deg, #c8986e, #8a6040);
}

.transparency-header {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-bottom: 1.4rem;
    margin-bottom: 1.4rem;
    border-bottom: 1px solid rgba(0,0,0,0.06);
}

.transparency-no .transparency-header {
    border-bottom-color: rgba(255,255,255,0.08);
}

.transparency-header i {
    font-size: 1.8rem;
    background: var(--gold-gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.transparency-no .transparency-header i {
    color: var(--gold-light);
    background: none;
    -webkit-text-fill-color: var(--gold-light);
}

.transparency-header h4 {
    font-family: var(--font-serif);
    font-size: 1.55rem;
    font-weight: 600;
    margin: 0;
    color: var(--text);
    letter-spacing: -0.01em;
}

.transparency-no .transparency-header h4 {
    color: var(--cream);
}

.transparency-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.transparency-list li {
    display: flex;
    flex-direction: column;
    padding: 0.95rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.04);
    line-height: 1.5;
}

.transparency-no .transparency-list li {
    border-bottom-color: rgba(255,255,255,0.05);
}

.transparency-list li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.transparency-list li:first-child {
    padding-top: 0;
}

.transparency-list strong {
    font-family: var(--font-sans);
    font-size: 1rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 2px;
    letter-spacing: -0.005em;
}

.transparency-no .transparency-list strong {
    color: var(--cream);
}

.transparency-list span {
    font-size: 0.82rem;
    color: var(--text-soft);
    font-weight: 400;
}

.transparency-no .transparency-list span {
    color: var(--text-on-dark-soft);
}

.transparency-note {
    max-width: 820px;
    margin: 3rem auto 0;
    background: linear-gradient(135deg, rgba(200,152,110,0.06), rgba(200,152,110,0.02));
    border: 1px solid rgba(200,152,110,0.18);
    border-radius: var(--radius-lg);
    padding: 1.5rem 1.8rem;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    position: relative;
}

.transparency-note i {
    font-size: 1.3rem;
    color: var(--gold-dark);
    flex-shrink: 0;
    margin-top: 2px;
}

.transparency-note p {
    margin: 0;
    font-size: 0.88rem;
    color: var(--text-soft);
    line-height: 1.75;
}

.transparency-note strong {
    color: var(--gold-dark);
    font-weight: 600;
}

@media (max-width: 768px) {
    .transparency-card { padding: 1.8rem 1.5rem; }
    .transparency-header h4 { font-size: 1.3rem; }
    .transparency-note { padding: 1.2rem 1.4rem; flex-direction: column; gap: 8px; }
}

/* ==========================================================
   37. NEW: TEXTURE SHOWCASE SECTION
   ========================================================== */
.texture-section {
    padding: 7rem 0;
    background: var(--cream);
    position: relative;
    overflow: hidden;
}

.texture-section::before {
    content: '';
    position: absolute;
    top: -150px;
    left: -150px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(200,152,110,0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.texture-section::after {
    content: '';
    position: absolute;
    bottom: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(200,152,110,0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.texture-img-wrap {
    position: relative;
    border-radius: var(--radius-2xl);
    overflow: hidden;
    aspect-ratio: 1 / 1;
    max-width: 520px;
    margin: 0 auto;
    box-shadow: var(--shadow-2xl);
    border: 1px solid rgba(200,152,110,0.15);
}

.texture-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 1.4s var(--ease);
}

.texture-img-wrap:hover img {
    transform: scale(1.06);
}

.texture-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70%;
    height: 70%;
    background: radial-gradient(circle, rgba(200,152,110,0.18) 0%, transparent 60%);
    pointer-events: none;
    mix-blend-mode: screen;
    animation: textureGlow 6s ease-in-out infinite;
}

@keyframes textureGlow {
    0%, 100% { opacity: 0.6; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 1; transform: translate(-50%, -50%) scale(1.08); }
}

.texture-points {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 0.5rem;
}

.texture-point {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 18px;
    background: var(--white);
    border: 1px solid rgba(0,0,0,0.04);
    border-radius: var(--radius-md);
    transition: var(--transition);
    box-shadow: var(--shadow-xs);
}

.texture-point:hover {
    transform: translateX(6px);
    border-color: rgba(200,152,110,0.25);
    box-shadow: var(--shadow-md);
}

.texture-point i {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(223,192,152,0.18), rgba(200,152,110,0.1));
    color: var(--gold-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
    transition: var(--transition);
}

.texture-point:hover i {
    background: var(--gold-gradient);
    color: white;
}

.texture-point span {
    font-family: var(--font-sans);
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text);
    letter-spacing: -0.005em;
}

@media (max-width: 991px) {
    .texture-section { padding: 5rem 0; }
    .texture-img-wrap { max-width: 420px; margin-bottom: 2rem; }
}

/* ==========================================================
   38. NEW: PACK CARDS (1, 2, 3 pots formats)
   ========================================================== */
.pack-card {
    position: relative;
    background: var(--white);
    border: 1px solid rgba(0,0,0,0.04);
    border-radius: var(--radius-xl);
    padding: 0;
    height: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.pack-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(200,152,110,0.25);
}

.pack-card-featured {
    border: 2px solid var(--gold);
    box-shadow: var(--shadow-md), 0 0 0 4px rgba(200,152,110,0.08);
}

.pack-card-featured:hover {
    box-shadow: var(--shadow-xl), 0 0 0 6px rgba(200,152,110,0.12);
}

.pack-badge-top {
    position: absolute;
    top: 18px;
    right: 18px;
    z-index: 5;
    background: var(--gold-gradient);
    color: var(--dark);
    font-family: var(--font-sans);
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 7px 14px;
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-gold);
}

.pack-count {
    position: absolute;
    top: 18px;
    left: 18px;
    z-index: 5;
    display: flex;
    align-items: baseline;
    gap: 6px;
    background: rgba(14,14,14,0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(200,152,110,0.3);
    color: var(--cream);
    padding: 9px 16px;
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-md);
}

.pack-count-num {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    font-weight: 700;
    background: var(--gold-gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.pack-count-label {
    font-family: var(--font-sans);
    font-size: 0.7rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--gold-light);
}

.pack-img-wrap {
    width: 100%;
    height: 320px;
    overflow: hidden;
    background: var(--cream);
    position: relative;
}

.pack-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--ease);
}

.pack-card:hover .pack-img-wrap img {
    transform: scale(1.05);
}

.pack-body {
    padding: 1.8rem 1.6rem 1.6rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.pack-title {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--text);
    margin: 0 0 0.6rem 0;
    letter-spacing: -0.01em;
}

.pack-desc {
    color: var(--text-soft);
    font-size: 0.92rem;
    line-height: 1.6;
    margin: 0 0 1.2rem 0;
    flex: 1;
}

.pack-meta {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 12px 0;
    border-top: 1px solid rgba(0,0,0,0.05);
    border-bottom: 1px solid rgba(0,0,0,0.05);
    margin-bottom: 1.2rem;
}

.pack-weight {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    color: var(--text-soft);
    font-weight: 500;
}

.pack-weight i {
    color: var(--gold);
    font-size: 0.9rem;
}

.pack-savings {
    display: inline-flex;
    align-items: center;
    align-self: flex-start;
    gap: 6px;
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--gold-dark);
    background: rgba(200,152,110,0.1);
    padding: 4px 12px;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pack-savings::before {
    content: '✦';
    font-size: 0.7rem;
}

.pack-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.pack-price {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 700;
    color: var(--text);
    line-height: 1;
}

.pack-price small {
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-soft);
    margin-left: 4px;
}

.pack-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 22px;
    background: var(--dark);
    color: var(--cream);
    font-family: var(--font-sans);
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: var(--radius-full);
    text-decoration: none;
    transition: var(--transition);
    border: 1px solid var(--dark);
}

.pack-btn:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--dark);
    transform: translateX(2px);
}

.pack-btn i {
    transition: transform 0.3s var(--ease);
}

.pack-btn:hover i {
    transform: translateX(3px);
}

.pack-btn-featured {
    background: var(--gold-gradient);
    color: var(--dark);
    border-color: transparent;
    box-shadow: var(--shadow-gold);
}

.pack-btn-featured:hover {
    background: var(--dark);
    color: var(--cream);
    box-shadow: var(--shadow-md);
}

@media (max-width: 991px) {
    .pack-img-wrap { height: 280px; }
    .pack-title { font-size: 1.4rem; }
    .pack-price { font-size: 1.7rem; }
}

@media (max-width: 576px) {
    .pack-img-wrap { height: 240px; }
    .pack-body { padding: 1.4rem 1.2rem 1.2rem; }
    .pack-footer { flex-direction: column; align-items: stretch; gap: 12px; }
    .pack-btn { justify-content: center; }
}
