/* ===== 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: none;
}

@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; animation: pulse-loader 1.5s infinite; }
.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;
    animation: pulse-loader 1.5s infinite;
}

.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: none;
    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-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(135deg, var(--gold-light) 0%, var(--gold) 40%, var(--gold-dark) 100%);
    -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;
    letter-spacing: -2px;
}

.hero-tagline {
    font-size: 1.3rem;
    color: var(--text-dim);
    letter-spacing: 8px;
    font-weight: 300;
    margin-bottom: 24px;
    opacity: 0;
    animation: fadeIn 1s 2.1s var(--ease) forwards;
}

.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);
    animation: scroll-pulse 2s infinite;
}

@keyframes scroll-pulse {
    0%, 100% { opacity: 1; transform: scaleY(1); }
    50% { opacity: 0.3; transform: scaleY(0.6); }
}

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

.w-product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--ease), filter 0.5s;
}

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

.w-product-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s var(--ease);
}

.w-product:hover .w-product-overlay { 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 {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* ===== 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: none;
    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; }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 75%;
        height: 100vh;
        background: var(--bg);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 32px;
        transition: right 0.5s var(--ease);
        border-left: 1px solid rgba(201, 169, 110, 0.1);
    }

    .nav-links.open { right: 0; }
    .nav-links a { font-size: 1.2rem; color: var(--text); }
    .menu-toggle { display: flex; }

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