/* ===== GANNED — Immersive Luxury Design ===== */

:root {
    --bg: #0A0A0A;
    --bg-card: #141414;
    --bg-elevated: #1A1A1A;
    --text: #F5F0EB;
    --text-dim: #8A8078;
    --text-muted: #5A5550;
    --gold: #C9A96E;
    --gold-light: #E8D5A8;
    --gold-dark: #8B7340;
    --coffee: #8B5E3C;
    --coffee-glow: rgba(139, 94, 60, 0.3);
    --spice: #C44D2B;
    --spice-glow: rgba(196, 77, 43, 0.3);
    --incense: #7B6BA5;
    --incense-glow: rgba(123, 107, 165, 0.3);
    --whatsapp: #25D366;
    --radius: 20px;
    --ease: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-out: cubic-bezier(0, 0, 0.2, 1);
}

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

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    scrollbar-width: thin;
    scrollbar-color: var(--gold-dark) var(--bg);
}

body {
    font-family: 'Tajawal', sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 2;
    overflow-x: hidden;
    /* cursor: auto; — disabled, normal arrow */
}

@media (pointer: coarse) {
    body { cursor: auto; }
    .cursor, .cursor-follower { display: none !important; }
}

.container { max-width: 1300px; margin: 0 auto; padding: 0 32px; }

em { font-family: 'Amiri', serif; font-style: italic; color: var(--gold); }

.overline {
    display: inline-block;
    font-size: 0.75rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
    font-weight: 500;
}

/* ===== PRELOADER ===== */
.preloader {
    position: fixed;
    inset: 0;
    background: var(--bg);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

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

.preloader-inner { text-align: center; }
.preloader-icon { font-size: 3rem; margin-bottom: 16px; opacity: 0.9; }
.preloader-text { font-family: 'Amiri', serif; font-size: 2.5rem; font-weight: 700; color: var(--gold); margin-bottom: 24px; line-height: 1.6; }

.preloader-logo {
    width: 120px;
    height: auto;
    margin-bottom: 24px;
    filter: drop-shadow(0 0 24px rgba(201, 169, 110, 0.25));
}

.preloader-bar {
    width: 200px;
    height: 2px;
    background: var(--bg-elevated);
    border-radius: 2px;
    overflow: hidden;
    margin: 0 auto;
}

.preloader-fill {
    height: 100%;
    width: 0;
    background: var(--gold);
    animation: loader-fill 1.5s var(--ease) forwards;
}

@keyframes loader-fill { to { width: 100%; } }
@keyframes pulse-loader {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.7; }
}

/* ===== CUSTOM CURSOR ===== */
.cursor {
    width: 8px;
    height: 8px;
    background: var(--gold);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 10000;
    transition: transform 0.1s;
    mix-blend-mode: difference;
}

.cursor-follower {
    width: 36px;
    height: 36px;
    border: 1px solid var(--gold);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.3s var(--ease), width 0.3s, height 0.3s, border-color 0.3s;
    opacity: 0.5;
}

.cursor-follower.hover {
    width: 60px;
    height: 60px;
    border-color: var(--gold-light);
    opacity: 0.8;
}

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1000;
    padding: 24px 0;
    transition: all 0.5s var(--ease);
}

.navbar.scrolled {
    padding: 14px 0;
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(30px);
    border-bottom: 1px solid rgba(201, 169, 110, 0.08);
}

.nav-container { display: flex; justify-content: space-between; align-items: center; }

.logo { text-decoration: none; display: flex; align-items: center; }
.logo-img { height: 50px; width: auto; transition: all 0.3s var(--ease); }
.navbar.scrolled .logo-img { height: 40px; }
.logo-ar { font-family: 'Amiri', serif; font-size: 1.8rem; font-weight: 700; color: var(--gold); line-height: 1.6; }
.logo-en { font-size: 0.6rem; letter-spacing: 6px; color: var(--text-dim); text-transform: uppercase; }

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

.nav-links a {
    text-decoration: none;
    color: var(--text-dim);
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -6px;
    right: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.4s var(--ease);
}

.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    /* cursor: auto; — disabled, normal arrow */
    padding: 8px;
}

.menu-toggle span {
    width: 28px;
    height: 1.5px;
    background: var(--gold);
    transition: all 0.3s var(--ease);
    transform-origin: center;
}

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

/* ===== HERO ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, #1a0f08 0%, #0A0A0A 40%, #0d0a12 100%);
}

.hero-grain {
    position: absolute;
    inset: 0;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 600px 400px at 30% 70%, var(--coffee-glow) 0%, transparent 70%),
        radial-gradient(ellipse 500px 300px at 70% 30%, var(--incense-glow) 0%, transparent 70%);
}

.hero-smoke {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.hero-particles {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    mix-blend-mode: screen;
    z-index: 1;
}
@media (prefers-reduced-motion: reduce) {
    .hero-particles { display: none; }
}

.hero-content {
    position: relative;
    text-align: center;
    padding: 120px 0;
}

.hero-eyebrow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 40px;
    font-size: 0.8rem;
    color: var(--text-dim);
    letter-spacing: 3px;
    opacity: 0;
    animation: fadeIn 1s 1.6s var(--ease) forwards;
}

.hero-eyebrow .line { width: 40px; height: 1px; background: var(--gold-dark); }

.hero-title {
    margin-bottom: 20px;
    overflow: visible;
    padding-top: 40px;
}

.title-line {
    display: block;
    font-family: 'Amiri', serif;
    font-size: clamp(5rem, 15vw, 12rem);
    font-weight: 700;
    line-height: 1.6;
    padding-top: 0.2em;
    padding-bottom: 0.1em;
    background: linear-gradient(
        100deg,
        var(--gold-dark) 0%,
        var(--gold) 20%,
        #f5d97a 42%,
        #fff5d1 50%,
        #f5d97a 58%,
        var(--gold) 80%,
        var(--gold-dark) 100%
    );
    background-size: 280% 100%;
    background-position: 150% 0;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0;
    transform: translateY(100%);
    animation:
        revealUp 1s 1.8s var(--ease) forwards,
        shimmerSweep 5.5s 2.9s linear infinite;
    letter-spacing: -2px;
    filter: drop-shadow(0 0 30px rgba(201, 169, 110, 0.25));
}

@keyframes shimmerSweep {
    0%   { background-position: 150% 0; }
    100% { background-position: -130% 0; }
}

.hero-tagline {
    font-size: 1.3rem;
    color: var(--text-dim);
    letter-spacing: 8px;
    font-weight: 300;
    margin-bottom: 24px;
}

.hero-tagline .tw {
    display: inline-block;
    opacity: 0;
    transform: translateY(14px);
    filter: blur(6px);
    animation: tagWordIn 0.9s var(--ease) forwards;
}

.hero-tagline .tw:nth-child(1) { animation-delay: 2.1s; }
.hero-tagline .tw:nth-child(2) { animation-delay: 2.3s; }
.hero-tagline .tw:nth-child(3) { animation-delay: 2.5s; }
.hero-tagline .tw:nth-child(4) { animation-delay: 2.7s; }

@keyframes tagWordIn {
    to {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
}

@media (prefers-reduced-motion: reduce) {
    .title-line {
        animation: revealUp 1s 1.8s var(--ease) forwards;
        background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 40%, var(--gold-dark) 100%);
        -webkit-background-clip: text;
        background-clip: text;
    }
    .hero-tagline .tw {
        animation: none;
        opacity: 1;
        transform: none;
        filter: none;
    }
}

.hero-desc {
    font-size: 1rem;
    color: var(--text-muted);
    max-width: 500px;
    margin: 0 auto 48px;
    line-height: 1.9;
    opacity: 0;
    animation: fadeIn 1s 2.3s var(--ease) forwards;
}

.hero-cta {
    opacity: 0;
    animation: fadeIn 1s 2.5s var(--ease) forwards;
}

/* National trust strip under hero description */
.hero-trust-strip {
    display: flex; justify-content: center; gap: 12px;
    flex-wrap: wrap; margin-top: 24px; margin-bottom: 24px;
    opacity: 0;
    animation: fadeIn 1s 2s var(--ease) forwards;
}
.trust-badge {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 8px 16px;
    background: rgba(201, 169, 110, 0.08);
    border: 1px solid rgba(201, 169, 110, 0.25);
    border-radius: 50px;
    font-size: 0.85rem;
    color: var(--gold-light);
    backdrop-filter: blur(10px);
}
@media (max-width: 600px) {
    .hero-trust-strip { gap: 8px; }
    .trust-badge { font-size: 0.75rem; padding: 6px 12px; }
}

.cta-main {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    border: 1px solid var(--gold);
    color: var(--gold);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 60px;
    transition: all 0.4s var(--ease);
    position: relative;
    overflow: hidden;
}

.cta-main::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.5s var(--ease);
    border-radius: 60px;
}

.cta-main:hover { color: var(--bg); }
.cta-main:hover::before { transform: scaleX(1); transform-origin: left; }
.cta-main span, .cta-main svg { position: relative; z-index: 1; }

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: var(--text-muted);
    font-size: 0.7rem;
    letter-spacing: 2px;
    opacity: 0;
    animation: fadeIn 1s 2.8s var(--ease) forwards;
}

.scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--gold-dark), transparent);
    opacity: 0.7;
}

/* ===== STORY ===== */
.story {
    padding: 160px 0;
    position: relative;
}

.story-header {
    text-align: center;
    margin-bottom: 80px;
}

.story-header h2 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.3;
}

.story-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.story-card {
    background: var(--bg-card);
    border: 1px solid rgba(255,255,255,0.04);
    border-radius: var(--radius);
    padding: 48px 36px;
    position: relative;
    overflow: hidden;
    transition: all 0.5s var(--ease);
    opacity: 0;
    transform: translateY(40px);
}

.story-card.visible { opacity: 1; transform: translateY(0); }

.story-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0;
    transition: opacity 0.5s;
}

.story-card:hover { transform: translateY(-8px); border-color: rgba(201, 169, 110, 0.15); }
.story-card:hover::before { opacity: 1; }

.story-card-num {
    font-size: 4rem;
    font-weight: 900;
    color: rgba(255,255,255,0.03);
    position: absolute;
    top: 16px;
    left: 20px;
    line-height: 1;
}

.story-card-icon { font-size: 2rem; margin-bottom: 20px; }

.story-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 12px;
}

.story-card p {
    color: var(--text-dim);
    font-size: 0.95rem;
    line-height: 1.8;
}

/* ===== PRODUCT WORLDS ===== */
.product-world {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 100px 0;
}

.world-bg {
    position: absolute;
    inset: 0;
}

.world-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.15;
    filter: blur(2px);
    transition: opacity 0.6s;
}

.world-overlay {
    position: absolute;
    inset: 0;
}

.world-coffee .world-overlay {
    background: linear-gradient(135deg, rgba(10,10,10,0.95) 0%, rgba(60,30,15,0.85) 100%);
}

.world-spices .world-overlay {
    background: linear-gradient(135deg, rgba(10,10,10,0.95) 0%, rgba(80,25,10,0.85) 100%);
}

.world-incense .world-overlay {
    background: linear-gradient(135deg, rgba(10,10,10,0.95) 0%, rgba(40,30,60,0.85) 100%);
}

.world-content { position: relative; z-index: 1; width: 100%; }

.world-header { margin-bottom: 60px; }

.world-num {
    display: block;
    font-size: 6rem;
    font-weight: 900;
    line-height: 1;
    -webkit-text-stroke: 1px var(--gold-dark);
    -webkit-text-fill-color: transparent;
    margin-bottom: 8px;
    opacity: 0.3;
}

.world-overline {
    display: block;
    font-size: 0.75rem;
    letter-spacing: 4px;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 12px;
}

.world-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 12px;
}

.world-coffee .world-title { color: var(--coffee); text-shadow: 0 0 60px var(--coffee-glow); }
.world-spices .world-title { color: var(--spice); text-shadow: 0 0 60px var(--spice-glow); }
.world-incense .world-title { color: var(--incense); text-shadow: 0 0 60px var(--incense-glow); }

.world-desc { color: var(--text-dim); font-size: 1.1rem; }

.world-products {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.w-product {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s var(--ease);
}

.w-product.visible { opacity: 1; transform: translateY(0); }

.w-product-img {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 4/5;
    margin-bottom: 20px;
    transform: perspective(900px) rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg));
    transform-style: preserve-3d;
    transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
    will-change: transform;
}

.w-product-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%),
        rgba(255, 245, 209, 0.22) 0%,
        rgba(255, 245, 209, 0.08) 25%,
        transparent 55%);
    opacity: 0;
    transition: opacity 0.4s var(--ease);
    pointer-events: none;
    mix-blend-mode: screen;
    z-index: 2;
}

.w-product-img.tilt-active {
    transition: transform 0.08s linear, box-shadow 0.3s var(--ease);
    box-shadow:
        0 30px 60px rgba(0, 0, 0, 0.55),
        0 0 0 1px rgba(201, 169, 110, 0.18),
        0 0 40px rgba(201, 169, 110, 0.12);
}
.w-product-img.tilt-active::after { opacity: 1; }

@media (prefers-reduced-motion: reduce), (hover: none) {
    .w-product-img {
        transform: none;
        transition: box-shadow 0.3s var(--ease);
    }
    .w-product-img::after { display: none; }
}
@media (hover: none) {
    .w-product:active .w-product-img {
        transform: scale(0.97);
        transition: transform 0.15s var(--ease);
    }
}

.w-product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--ease), filter 0.5s, opacity 0.6s var(--ease);
    opacity: 0;
}
.w-product-img img.blur-loaded,
.w-product-img img[data-loaded="1"] {
    opacity: 1;
}

.w-product:hover .w-product-img img {
    transform: scale(1.1);
    filter: brightness(0.6);
}

.w-product-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 18px;
    padding: 24px 20px;
    background: linear-gradient(180deg, rgba(10,10,10,0.35) 0%, rgba(10,10,10,0.88) 70%);
    opacity: 0;
    transition: opacity 0.4s var(--ease);
    text-align: center;
}

.w-product:hover .w-product-overlay { opacity: 1; }

.w-product-overlay-desc {
    color: #f5efe0;
    font-size: 0.92rem;
    line-height: 1.7;
    max-width: 92%;
    margin: 0;
    transform: translateY(-10px);
    opacity: 0;
    transition: transform 0.45s var(--ease) 0.05s, opacity 0.45s var(--ease) 0.05s;
}
.w-product:hover .w-product-overlay-desc {
    transform: translateY(0);
    opacity: 1;
}

.w-order-btn {
    padding: 14px 32px;
    background: var(--gold);
    color: var(--bg);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    border-radius: 50px;
    transform: translateY(20px);
    transition: all 0.4s var(--ease);
}

.w-product:hover .w-order-btn { transform: translateY(0); }
.w-order-btn:hover { background: var(--gold-light); box-shadow: 0 8px 30px rgba(201, 169, 110, 0.3); }

.w-product h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.w-product > p {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ===== MEGA BOX ===== */
.mega-box {
    padding: 140px 0;
    position: relative;
    overflow: hidden;
    text-align: center;
    background: linear-gradient(160deg, #1a1208 0%, #0A0A0A 40%, #12100a 100%);
    border-top: 1px solid rgba(201, 169, 110, 0.1);
    border-bottom: 1px solid rgba(201, 169, 110, 0.1);
}

.mega-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(201, 169, 110, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.mega-content { position: relative; z-index: 1; }

.mega-badge {
    display: inline-block;
    padding: 8px 24px;
    background: linear-gradient(135deg, rgba(201, 169, 110, 0.15), rgba(201, 169, 110, 0.05));
    border: 1px solid rgba(201, 169, 110, 0.2);
    border-radius: 50px;
    font-size: 0.9rem;
    color: var(--gold);
    margin-bottom: 24px;
}

.mega-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 900;
    line-height: 1.4;
    margin-bottom: 16px;
}

.mega-desc {
    font-size: 1.1rem;
    color: var(--text-dim);
    max-width: 550px;
    margin: 0 auto 48px;
    line-height: 1.8;
}

.mega-items {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.mega-category {
    background: var(--bg-card);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: var(--radius);
    padding: 24px 32px;
    min-width: 200px;
}

.mega-category h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.mega-category span {
    font-size: 0.85rem;
    color: var(--text-dim);
}

.mega-divider {
    font-size: 1.5rem;
    color: var(--gold-dark);
    font-weight: 300;
}

.mega-pricing {
    display: flex;
    justify-content: center;
    align-items: baseline;
    gap: 20px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.mega-old-price {
    font-size: 1.3rem;
    color: var(--text-muted);
    text-decoration: line-through;
}

.mega-new-price {
    font-family: 'Amiri', serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1.2;
}

.mega-save {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(37, 211, 102, 0.1);
    border: 1px solid rgba(37, 211, 102, 0.2);
    border-radius: 50px;
    color: var(--whatsapp);
    font-size: 0.85rem;
    font-weight: 600;
}

.mega-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 20px 48px;
    background: var(--gold);
    color: var(--bg);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 60px;
    transition: all 0.4s var(--ease);
    margin-bottom: 16px;
}

.mega-cta:hover {
    background: var(--gold-light);
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(201, 169, 110, 0.25);
}

.mega-cta .wa-icon { width: 22px; height: 22px; }

.mega-note {
    font-size: 0.85rem;
    color: var(--gold-dark);
}

@media (max-width: 768px) {
    .mega-items { flex-direction: column; gap: 12px; }
    .mega-divider { display: none; }
    .mega-category { width: 100%; }
    .mega-new-price { font-size: 2.5rem; }
}

/* ===== PRODUCT PRICE ===== */
.w-price {
    display: inline-block;
    font-family: 'Amiri', serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 6px;
}

/* ===== DELIVERY & PAYMENT ===== */
.delivery {
    padding: 140px 0;
    border-top: 1px solid rgba(255,255,255,0.04);
}

.delivery-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.delivery-block h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    line-height: 1.3;
    margin-bottom: 40px;
}

.delivery-options, .payment-methods {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.delivery-option, .payment-method {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 24px;
    background: var(--bg-card);
    border: 1px solid rgba(255,255,255,0.04);
    border-radius: var(--radius);
    transition: all 0.4s var(--ease);
}

.delivery-option:hover, .payment-method:hover {
    border-color: rgba(201, 169, 110, 0.15);
    transform: translateY(-3px);
}

.delivery-icon, .pay-icon {
    font-size: 1.8rem;
    min-width: 40px;
}

.delivery-option h4, .payment-method h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 4px;
}

.delivery-option p, .payment-method p {
    font-size: 0.9rem;
    color: var(--text-dim);
}

.delivery-note {
    display: block;
    font-size: 0.8rem;
    color: var(--gold-dark);
    margin-top: 6px;
}

@media (max-width: 768px) {
    .delivery-grid { grid-template-columns: 1fr; gap: 60px; }
}

/* ===== GOLDEN GUARANTEE ===== */
.guarantee {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(201, 169, 110, 0.06) 0%, transparent 100%);
    border-top: 1px solid rgba(201, 169, 110, 0.1);
    border-bottom: 1px solid rgba(201, 169, 110, 0.1);
}

.guarantee-inner {
    display: flex;
    align-items: center;
    gap: 32px;
    max-width: 700px;
    margin: 0 auto;
    text-align: right;
}

.guarantee-icon {
    font-size: 3.5rem;
    min-width: 70px;
    text-align: center;
    filter: drop-shadow(0 0 20px rgba(201, 169, 110, 0.3));
}

.guarantee-text h3 {
    font-family: 'Amiri', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 8px;
    line-height: 1.6;
}

.guarantee-text p {
    font-size: 1rem;
    color: var(--text-dim);
    line-height: 1.8;
}

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

@media (max-width: 768px) {
    .guarantee-inner {
        flex-direction: column;
        text-align: center;
    }
}

/* ===== REVIEWS MARQUEE ===== */
.reviews {
    padding: 60px 0;
    border-top: 1px solid rgba(255,255,255,0.04);
    border-bottom: 1px solid rgba(255,255,255,0.04);
    overflow: hidden;
}

.reviews-marquee { position: relative; }

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

.review-item {
    white-space: nowrap;
    font-size: 1rem;
    color: var(--text-dim);
    letter-spacing: 1px;
}

.review-item::before { content: ''; }

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

/* ===== CONTACT ===== */
.contact {
    padding: 160px 0;
    position: relative;
}

.contact-inner {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 80px;
    align-items: center;
}

.contact-text h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 20px;
}

.contact-text p {
    color: var(--text-dim);
    font-size: 1.05rem;
    margin-bottom: 40px;
    max-width: 400px;
}

.cta-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 20px 44px;
    background: var(--whatsapp);
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.05rem;
    border-radius: 60px;
    transition: all 0.4s var(--ease);
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.3);
}

.cta-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(37, 211, 102, 0.25);
}

.cta-whatsapp .wa-icon { width: 22px; height: 22px; }

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

.info-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.info-label { font-size: 0.75rem; color: var(--gold); letter-spacing: 3px; text-transform: uppercase; }
.info-value { font-size: 1.1rem; color: var(--text); }

/* ===== FOOTER ===== */
.footer {
    padding: 40px 0;
    border-top: 1px solid rgba(255,255,255,0.04);
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
}

.footer-brand { display: flex; flex-direction: column; }
.footer-logo { font-family: 'Amiri', serif; font-size: 2rem; font-weight: 700; color: var(--gold); line-height: 1.6; }
.footer-logo-img { height: 70px; width: auto; }
.footer-en { font-size: 0.6rem; letter-spacing: 6px; color: var(--text-muted); }

.footer-social { display: flex; gap: 24px; }
.footer-social a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s;
    letter-spacing: 1px;
}
.footer-social a:hover { color: var(--gold); }

.footer-bottom { text-align: center; font-size: 0.8rem; color: var(--text-muted); }

/* ===== CART ===== */
.cart-toggle {
    position: relative;
    background: none;
    border: none;
    color: var(--gold);
    /* cursor: auto; — disabled, normal arrow */
    padding: 8px;
    margin-left: 8px;
    transition: color 0.3s;
}

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

.cart-count {
    position: absolute;
    top: 0;
    left: 0;
    width: 18px;
    height: 18px;
    background: var(--spice);
    color: #fff;
    font-size: 0.65rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(0);
    transition: all 0.3s var(--ease);
}

.cart-count.show { opacity: 1; transform: scale(1); }

.cart-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    backdrop-filter: blur(4px);
}

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

.cart-sidebar {
    position: fixed;
    top: 0;
    left: -420px;
    width: 400px;
    max-width: 90vw;
    height: 100vh;
    background: var(--bg-card);
    z-index: 2001;
    display: flex;
    flex-direction: column;
    transition: left 0.4s var(--ease);
    border-right: 1px solid rgba(201, 169, 110, 0.1);
}

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

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

.cart-header h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--gold);
}

.cart-close {
    background: none;
    border: none;
    color: var(--text-dim);
    font-size: 1.2rem;
    cursor: pointer;
    padding: 4px 8px;
    transition: color 0.3s;
}

.cart-close:hover { color: var(--text); }

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 16px 24px;
}

.cart-empty {
    text-align: center;
    color: var(--text-muted);
    padding: 60px 0;
    font-size: 1rem;
}

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

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

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

.cart-item-price {
    font-family: 'Amiri', serif;
    font-size: 1rem;
    color: var(--gold);
}

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

.cart-qty-btn {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.1);
    background: transparent;
    color: var(--text-dim);
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.cart-qty-btn:hover { border-color: var(--gold); color: var(--gold); }

.cart-qty-num {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text);
    min-width: 20px;
    text-align: center;
}

.cart-footer {
    padding: 24px;
    border-top: 1px solid rgba(255,255,255,0.06);
}

.cart-total {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 20px;
    font-size: 1rem;
    color: var(--text-dim);
}

.cart-total-price {
    font-family: 'Amiri', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--gold);
}

.cart-checkout {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 16px;
    background: var(--whatsapp);
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    border-radius: 50px;
    transition: all 0.3s var(--ease);
}

.cart-checkout:hover {
    background: #20BA5C;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.3);
}

.cart-checkout .wa-icon { width: 20px; height: 20px; }

/* Add to cart button style */
button.w-order-btn {
    border: none;
    font-family: inherit;
    cursor: pointer;
}

.add-to-cart-toast {
    position: fixed;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    background: var(--gold);
    color: var(--bg);
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    z-index: 3000;
    opacity: 0;
    transition: all 0.3s var(--ease);
    pointer-events: none;
}

.add-to-cart-toast.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    left: 28px;
    width: 56px;
    height: 56px;
    background: var(--whatsapp);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
    transition: all 0.3s var(--ease);
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
}

.whatsapp-float:hover { transform: scale(1.1); }
.whatsapp-float svg { width: 28px; height: 28px; fill: #fff; }

/* ===== ANIMATIONS ===== */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes revealUp {
    from { opacity: 0; transform: translateY(100%); }
    to { opacity: 1; transform: translateY(0); }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 968px) {
    .story-cards { grid-template-columns: 1fr; gap: 20px; }
    .world-products { grid-template-columns: 1fr 1fr; }
    .contact-inner { grid-template-columns: 1fr; gap: 48px; }
    .world-num { font-size: 4rem; }
}

/* ===== FEATURE 10 — MOBILE HORIZONTAL SWIPE GALLERY ===== */
@media (max-width: 900px) {
    .world-products {
        display: flex;
        grid-template-columns: none;
        gap: 16px;
        overflow-x: auto;
        overflow-y: visible;
        scroll-snap-type: x mandatory;
        scroll-padding: 0 24px;
        padding: 4px 24px 28px;
        margin: 0 -24px;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
        overscroll-behavior-x: contain;
    }
    .world-products::-webkit-scrollbar { display: none; }
    .world-products .w-product {
        flex: 0 0 78%;
        max-width: 320px;
        scroll-snap-align: center;
        scroll-snap-stop: always;
    }
    .world-products .w-product-img {
        aspect-ratio: 4/5;
        margin-bottom: 14px;
    }
    .world-products::after {
        content: '';
        flex: 0 0 8vw;
    }
    /* Static swipe hint — arrow + text, no animation */
    .world-header::after {
        content: '← اسحب لليسار';
        display: block;
        margin-top: 14px;
        font-size: 0.75rem;
        color: var(--gold);
        letter-spacing: 2px;
        opacity: 0.65;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        inset: 0;
        width: 100vw;
        height: 100vh;
        height: 100dvh;
        background:
            radial-gradient(ellipse at 50% 20%, rgba(201,169,110,0.14) 0%, transparent 60%),
            linear-gradient(180deg, #120d08 0%, #0a0a0a 100%);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 36px;
        padding: 20vh 24px 8vh;
        border-left: none;
        opacity: 0;
        visibility: hidden;
        transform: scale(0.96);
        transition: opacity 0.4s var(--ease), transform 0.4s var(--ease), visibility 0.4s;
        backdrop-filter: blur(6px);
        -webkit-backdrop-filter: blur(6px);
        z-index: 9000;
    }
    .nav-links.open {
        opacity: 1;
        visibility: visible;
        transform: scale(1);
    }
    .nav-links li {
        opacity: 0;
        transform: translateY(24px);
    }
    .nav-links.open li {
        animation: navLinkIn 0.55s var(--ease) forwards;
    }
    .nav-links.open li:nth-child(1) { animation-delay: 0.14s; }
    .nav-links.open li:nth-child(2) { animation-delay: 0.22s; }
    .nav-links.open li:nth-child(3) { animation-delay: 0.30s; }
    .nav-links.open li:nth-child(4) { animation-delay: 0.38s; }
    @keyframes navLinkIn {
        to { opacity: 1; transform: translateY(0); }
    }
    .nav-links a {
        font-family: 'Amiri', serif;
        font-size: 2rem;
        color: var(--gold-light);
        letter-spacing: 2px;
        padding: 12px 28px;
        min-height: 56px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }
    .nav-links a:hover, .nav-links a:focus {
        color: #fff5d1;
    }
    .nav-links.open::before {
        content: 'قنِّد';
        position: absolute;
        top: 10vh;
        left: 50%;
        transform: translateX(-50%);
        font-family: 'Amiri', serif;
        font-size: 2.4rem;
        background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 50%, var(--gold-dark) 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        font-weight: 700;
        opacity: 0;
        animation: navLinkIn 0.5s 0.08s var(--ease) forwards;
    }
    body.menu-open { overflow: hidden; }
    .menu-toggle {
        display: flex;
        z-index: 9100;
        position: relative;
    }

    .world-products { grid-template-columns: 1fr; }
    .w-product-img { aspect-ratio: 16/10; }

    .title-line { font-size: 4rem !important; }
    .hero-tagline { letter-spacing: 4px; font-size: 1rem; }

    .footer-top { flex-direction: column; gap: 24px; text-align: center; }
}

@media (max-width: 480px) {
    .container { padding: 0 20px; }
    .title-line { font-size: 3rem !important; }
    .hero-tagline { letter-spacing: 2px; font-size: 0.9rem; }
    .cta-main { padding: 16px 32px; font-size: 0.85rem; }
    .story-card { padding: 36px 24px; }
    .product-world { padding: 80px 0; }
    .contact { padding: 100px 0; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
    .marquee-track { animation: none; }
    .cursor, .cursor-follower { display: none !important; }
}

/* ============================================ */
/* ACCESSIBILITY — focus states, skip link, etc */
/* ============================================ */

/* Global visible focus ring on all interactive elements (WCAG 2.4.7) */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
[tabindex]:focus-visible {
    outline: 2px solid var(--gold-light);
    outline-offset: 2px;
    border-radius: 4px;
}

/* Skip to content link — hidden by default, visible on keyboard focus */
.skip-link {
    position: fixed;
    top: -60px;
    right: 16px;
    background: var(--gold);
    color: var(--bg);
    padding: 12px 24px;
    border-radius: 0 0 8px 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    z-index: 10001;
    transition: top 0.25s ease;
}
.skip-link:focus,
.skip-link:focus-visible {
    top: 0;
    outline: 2px solid var(--gold-light);
    outline-offset: 2px;
}

/* Cart close button — raise touch target to 44×44 (WCAG 2.5.5 AAA) */
.cart-close {
    min-width: 44px;
    min-height: 44px;
    padding: 10px 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

/* Menu toggle — same minimum touch target */
.menu-toggle {
    min-width: 44px;
    min-height: 44px;
}

/* Cart toggle — ensure full tappable area */
.cart-toggle {
    min-width: 44px;
    min-height: 44px;
}

/* ===== ORDER CONFIRMATION POPUP ===== */
.order-confirm-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    padding: 20px;
    animation: fadeIn 0.3s ease;
}
.order-confirm-box {
    background: var(--bg-card, #141414);
    border: 1px solid var(--gold, #C9A96E);
    border-radius: 20px;
    padding: 48px 36px;
    text-align: center;
    max-width: 380px;
    width: 100%;
    animation: scaleIn 0.3s ease;
}
@keyframes scaleIn {
    from { transform: scale(0.9); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}
.order-confirm-icon {
    font-size: 3.5rem;
    margin-bottom: 16px;
}
.order-confirm-box h2 {
    color: var(--gold, #C9A96E);
    font-size: 1.4rem;
    margin-bottom: 12px;
    font-family: 'Amiri', serif;
}
.order-confirm-msg {
    color: var(--text, #F5F0EB);
    font-size: 1rem;
    margin-bottom: 8px;
}
.order-confirm-detail {
    color: var(--text-dim, #8A8078);
    font-size: 0.85rem;
    margin-bottom: 16px;
    line-height: 1.6;
}
.order-confirm-total {
    color: var(--gold-light, #E8D5A8);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 24px;
    padding: 12px;
    background: rgba(201, 169, 110, 0.08);
    border-radius: 10px;
}
.order-confirm-btn {
    background: var(--gold, #C9A96E);
    color: var(--bg, #0A0A0A);
    border: none;
    padding: 14px 48px;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    font-family: 'Tajawal', sans-serif;
    transition: transform 0.2s, opacity 0.2s;
}
.order-confirm-btn:hover {
    transform: scale(1.03);
    opacity: 0.9;
}

/* ===== MOBILE STICKY WHATSAPP CHECKOUT BAR ===== */
.mobile-checkout-bar {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: 12px;
    z-index: 95;
    display: none;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    background: rgba(10, 10, 10, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(201, 169, 110, 0.35);
    border-radius: 18px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.6), 0 0 0 1px rgba(201,169,110,0.08) inset;
    transform: translateY(120%);
    transition: transform 0.4s var(--ease), opacity 0.3s;
    padding-bottom: max(10px, env(safe-area-inset-bottom));
}
.mobile-checkout-bar.visible {
    display: flex;
    transform: translateY(0);
}
.mcb-count {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--gold);
    font-weight: 700;
    min-width: 46px;
}
.mcb-count-num {
    font-family: 'Amiri', serif;
    font-size: 1.2rem;
}
.mcb-total {
    flex: 0 1 auto;
    display: flex;
    flex-direction: column;
    line-height: 1.1;
    color: var(--text-dim);
    font-size: 0.72rem;
    letter-spacing: 1px;
}
.mcb-total-num {
    color: var(--gold-light);
    font-size: 1rem;
    font-weight: 700;
    font-family: 'Amiri', serif;
    letter-spacing: 0;
}
.mcb-btn {
    flex: 1 1 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 14px;
    min-height: 44px;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: #fff;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.95rem;
    font-family: inherit;
    cursor: pointer;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
    transition: transform 0.15s var(--ease);
}
.mcb-btn:active { transform: scale(0.97); }

/* Show only on mobile/touch devices */
@media (min-width: 901px), (hover: hover) and (pointer: fine) {
    .mobile-checkout-bar { display: none !important; }
}
/* Reserve bottom space when bar is visible so ambient FAB and content don't collide */
body.has-mobile-bar { padding-bottom: 86px; }
body.has-mobile-bar .ambient-fab { bottom: calc(178px + env(safe-area-inset-bottom)); }

/* ===== PRODUCT BOTTOM SHEET (mobile tap) ===== */
.product-sheet-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.72);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s var(--ease), visibility 0.35s;
    z-index: 110;
}
.product-sheet-backdrop.open {
    opacity: 1;
    visibility: visible;
}
.product-sheet {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 111;
    max-height: 88vh;
    background: linear-gradient(180deg, #141008 0%, #0a0a0a 100%);
    border-top: 1px solid rgba(201, 169, 110, 0.4);
    border-radius: 24px 24px 0 0;
    box-shadow: 0 -20px 60px rgba(0,0,0,0.7);
    transform: translateY(100%);
    transition: transform 0.4s var(--ease);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: max(24px, env(safe-area-inset-bottom));
}
.product-sheet.open { transform: translateY(0); }
.ps-handle {
    width: 48px;
    height: 5px;
    border-radius: 3px;
    background: rgba(201, 169, 110, 0.4);
    margin: 12px auto 4px;
}
.ps-close {
    position: absolute;
    top: 14px;
    right: 16px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(201, 169, 110, 0.3);
    background: rgba(0,0,0,0.5);
    color: var(--gold);
    font-size: 1rem;
    cursor: pointer;
    z-index: 2;
}
.ps-img-wrap {
    width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden;
    background: #0a0a0a;
}
.ps-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.ps-body {
    padding: 24px 22px 18px;
    text-align: right;
}
.ps-name {
    font-family: 'Amiri', serif;
    font-size: 1.7rem;
    font-weight: 700;
    margin-bottom: 8px;
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 50%, var(--gold-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.ps-price {
    font-size: 1.15rem;
    color: var(--gold-light);
    font-weight: 700;
    margin-bottom: 14px;
}
.ps-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 22px;
}
.ps-add {
    width: 100%;
    min-height: 56px;
    padding: 16px;
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
    color: #0a0a0a;
    border: none;
    border-radius: 14px;
    font-weight: 700;
    font-size: 1.05rem;
    font-family: inherit;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(201,169,110,0.35);
    transition: transform 0.15s var(--ease);
}
.ps-add:active { transform: scale(0.98); }
@media (min-width: 901px), (hover: hover) and (pointer: fine) {
    .product-sheet, .product-sheet-backdrop { display: none !important; }
}
/* Cards as tap targets on touch — whole card cursor pointer */
@media (hover: none), (max-width: 900px) {
    .w-product { cursor: pointer; -webkit-tap-highlight-color: rgba(201,169,110,0.1); }
    /* Disable the hidden hover overlay so it can't intercept taps */
    .w-product-overlay,
    .w-product-overlay * { pointer-events: none !important; }
}

/* ===== FEATURE 8 — LIVE STATS BAR ===== */
.stats-bar {
    padding: 48px 0;
    background: linear-gradient(180deg, rgba(10,10,10,0.95) 0%, rgba(18,13,8,0.9) 100%);
    border-top: 1px solid rgba(201, 169, 110, 0.12);
    border-bottom: 1px solid rgba(201, 169, 110, 0.12);
    position: relative;
    z-index: 2;
}
.stats-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}
.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    min-width: 100px;
}
.stat-num {
    font-family: 'Amiri', serif;
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 700;
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 50%, var(--gold-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    letter-spacing: 1px;
}
.stat-label {
    font-size: 0.85rem;
    color: var(--text-dim);
    letter-spacing: 2px;
    font-weight: 300;
}
.stat-divider {
    width: 1px;
    height: 40px;
    background: linear-gradient(180deg, transparent 0%, rgba(201,169,110,0.35) 50%, transparent 100%);
}
@media (max-width: 600px) {
    .stats-wrap { gap: 20px; }
    .stat-divider { display: none; }
    .stat { min-width: 90px; }
}

/* ===== FEATURE 4 — AMBIENT MUSIC FAB ===== */
.ambient-fab {
    position: fixed;
    bottom: 24px;
    left: 24px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 1px solid rgba(201, 169, 110, 0.4);
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: var(--gold);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 90;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5), 0 0 0 1px rgba(201,169,110,0.08) inset;
    transition: transform 0.3s var(--ease), background 0.3s, box-shadow 0.3s;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeIn 0.8s 3.2s var(--ease) forwards;
}
.ambient-fab:hover {
    background: rgba(201, 169, 110, 0.12);
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 14px 40px rgba(0,0,0,0.6), 0 0 30px rgba(201,169,110,0.2);
}
.ambient-fab:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 3px;
}
.ambient-icon { display: none; }
.ambient-fab .icon-play { display: block; transform: translateX(2px); }
.ambient-fab.playing .icon-play { display: none; }
.ambient-fab.playing .icon-pause { display: block; }
.ambient-fab.playing {
    background: rgba(201, 169, 110, 0.18);
    box-shadow: 0 14px 40px rgba(0,0,0,0.6), 0 0 36px rgba(201,169,110,0.35);
}
.ambient-ring {
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 1px solid rgba(201, 169, 110, 0.5);
    opacity: 0;
    pointer-events: none;
}
.ambient-fab.playing .ambient-ring {
    animation: ambientPulse 2.4s var(--ease) infinite;
}
@keyframes ambientPulse {
    0%   { opacity: 0.7; transform: scale(1); }
    70%  { opacity: 0; transform: scale(1.45); }
    100% { opacity: 0; transform: scale(1.45); }
}
@media (max-width: 900px) {
    .ambient-fab {
        bottom: calc(104px + env(safe-area-inset-bottom));
        left: auto;
        right: 14px;
        width: 48px;
        height: 48px;
    }
}

/* ===== FEATURE 5 — SECTION HUE TRANSITIONS ===== */
:root {
    --hue-r: 10;
    --hue-g: 10;
    --hue-b: 10;
}
body {
    transition: background-color 1.2s var(--ease);
    background-color: rgb(var(--hue-r), var(--hue-g), var(--hue-b));
}
body[data-hue="coffee"]  { --hue-r: 22; --hue-g: 13; --hue-b: 8;  }
body[data-hue="spice"]   { --hue-r: 26; --hue-g: 10; --hue-b: 10; }
body[data-hue="incense"] { --hue-r: 18; --hue-g: 10; --hue-b: 24; }
@media (prefers-reduced-motion: reduce) {
    body { transition: none; }
}
