/* === Block 1 === */
/* ============================================================
   DESIGN TOKENS
   ============================================================ */
:root {
  --dark:    #0D2B20;
  --emerald: #1B4332;
  --gold:    #C9A227;
  --gold-lt: #E2C05A;
  --cream:   #F5F1E8;
  --black:   #080E0B;
  --text:    #111827;
  --muted:   #6B7280;
  --white:   #FFFFFF;
  --fn-head: 'Fraunces', Georgia, serif;
  --fn-body: 'Inter', sans-serif;
  --fn-ar-h: 'Noto Naskh Arabic', serif;
  --fn-ar-b: 'Noto Sans Arabic', sans-serif;
  --ease: cubic-bezier(.4,0,.2,1);
  --t: 0.28s;
  /* 8-point spacing scale */
  --space-1:  8px;
  --space-2:  16px;
  --space-3:  24px;
  --space-4:  32px;
  --space-5:  40px;
  --space-6:  48px;
  --space-7:  56px;
  --space-8:  64px;
  --space-9:  72px;
  --space-10: 80px;
  --space-11: 88px;
  --space-12: 96px;
  /* Type scale */
  --text-xs:   0.68rem;
  --text-sm:   0.80rem;
  --text-base: 1rem;
  --text-lg:   1.125rem;
  --text-xl:   1.25rem;
  --text-2xl:  1.75rem;
  --text-3xl:  2.25rem;
  /* Buttons */
  --btn-h: 44px;
  --btn-r: 2px;
}

/* ============================================================
   RESET
   ============================================================ */
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth}
body{font-family:var(--fn-body);background:var(--black);color:var(--cream);overflow-x:hidden;-webkit-font-smoothing:antialiased}
img,picture{display:block;max-width:100%;height:auto}
a{text-decoration:none;color:inherit}
ul{list-style:none}
button{cursor:pointer;border:none;background:none;font:inherit}

/* ============================================================
   LANGUAGE
   ============================================================ */
[lang="de"] .ar{display:none!important}
[lang="ar"] .de{display:none!important}
[lang="ar"]{direction:rtl;font-family:var(--fn-ar-b)}
/* Isolate bidi for inline AR within DE context — prevents punctuation
   wandering when AR span is rendered inside an LTR paragraph. */
span[lang="ar"],a[lang="ar"]{unicode-bidi:isolate}
[lang="ar"] h1,[lang="ar"] h2,[lang="ar"] h3,[lang="ar"] h4{font-family:var(--fn-ar-h)}
[lang="ar"] .nav-links{flex-direction:row-reverse}
[lang="ar"] .hero{direction:rtl}
[lang="ar"] .hero-content{padding:4rem 5rem 4rem 3rem}
[lang="ar"] .heute-frisch{flex-direction:row-reverse}
[lang="ar"] .origin-content{direction:rtl;text-align:right}
[lang="ar"] .origin-point{flex-direction:row-reverse}
[lang="ar"] .footer-grid{direction:rtl}
[lang="ar"] .footer-bottom{flex-direction:row-reverse}
[lang="ar"] .page-close{right:auto;left:2rem}

/* ============================================================
   OPEN / CLOSED STATUS
   ============================================================ */
.status-badge{
  display:inline-flex;align-items:center;gap:6px;
  font-size:.7rem;letter-spacing:.12em;text-transform:uppercase;
  padding:4px 10px;border-radius:2px;font-weight:600;
}
.status-open{background:rgba(74,222,128,.12);color:#4ade80;border:1px solid rgba(74,222,128,.25)}
.status-closing{background:rgba(251,191,36,.1);color:#fbbf24;border:1px solid rgba(251,191,36,.25)}
.status-closed{background:rgba(248,113,113,.1);color:#f87171;border:1px solid rgba(248,113,113,.2)}
.status-dot{width:6px;height:6px;border-radius:50%;background:currentColor}

/* ============================================================
   NAV
   ============================================================ */
.nav{
  position:fixed;top:0;left:0;right:0;z-index:1000;
  height:68px;
  background:rgba(8,14,11,.92);
  backdrop-filter:blur(16px);-webkit-backdrop-filter:blur(16px);
  border-bottom:1px solid rgba(201,162,39,.18);
  padding:0 2.5rem;
  display:flex;align-items:center;justify-content:space-between;
  gap:1.5rem;
}
.nav-left{display:flex;align-items:center;gap:1rem}
.nav-logo-img{
  height:38px;width:38px;border-radius:50%;
  object-fit:contain;flex-shrink:0;
}
.nav-brand{line-height:1.2}
.nav-brand-name{
  font-family:var(--fn-head);font-size:.95rem;
  color:var(--gold);letter-spacing:.04em;
  font-weight:700;
}
[lang="ar"] .nav-brand-name{font-family:var(--fn-ar-h)}
.nav-brand-sub{font-size:.65rem;color:rgba(201,162,39,.5);letter-spacing:.12em;text-transform:uppercase}
.nav-links{display:flex;align-items:center;gap:2rem}
.nav-links a{
  font-size:.8rem;font-weight:500;letter-spacing:.06em;
  color:rgba(255,255,255,.7);
  position:relative;transition:color var(--t) var(--ease);
}
.nav-links a::after{
  content:'';position:absolute;bottom:-3px;left:0;right:0;
  height:1px;background:var(--gold);
  transform:scaleX(0);transform-origin:left;
  transition:transform var(--t) var(--ease);
}
[lang="ar"] .nav-links a::after{transform-origin:right}
.nav-links a:hover{color:var(--gold)}
.nav-links a:hover::after,.nav-links a.active::after{transform:scaleX(1)}
.nav-links a.active{color:var(--gold)}
.nav-right{display:flex;align-items:center;gap:1rem}
.lang-toggle{
  background:transparent;
  border:1px solid var(--gold);
  color:var(--cream);
  padding:6px 14px;
  border-radius:2px;
  cursor:pointer;
  font-size:.85rem;
  letter-spacing:.05em;
  transition:all .2s ease;
}
.lang-toggle:hover{background:rgba(201,162,39,.1);color:var(--gold)}
[lang="de"] .lang-toggle-ar{display:none}
[lang="ar"] .lang-toggle-de{display:none}
.hamburger{
  display:none;flex-direction:column;gap:5px;padding:6px;
  transition:opacity var(--t);
}
.hamburger span{display:block;width:22px;height:1.5px;background:var(--gold);transition:var(--t)}
.hamburger.open span:nth-child(1){transform:translateY(6.5px) rotate(45deg)}
.hamburger.open span:nth-child(2){opacity:0}
.hamburger.open span:nth-child(3){transform:translateY(-6.5px) rotate(-45deg)}
/* Mobile menu */
.mobile-menu{
  display:none;position:fixed;
  top:68px;left:0;right:0;bottom:0;
  background:var(--dark);z-index:999;
  flex-direction:column;align-items:center;justify-content:center;gap:3rem;
}
.mobile-menu.open{display:flex}
.mobile-menu a{
  font-family:var(--fn-head);font-size:2rem;
  color:var(--cream);transition:color var(--t);
}
[lang="ar"] .mobile-menu a{font-family:var(--fn-ar-h)}
.mobile-menu a:hover{color:var(--gold)}

/* ============================================================
   HERO
   ============================================================ */
.hero{
  min-height:100svh;padding-top:68px;
  display:grid;grid-template-columns:55% 45%;
  background:var(--dark);overflow:hidden;position:relative;
}
.hero::after{
  content:'';position:absolute;inset:0;
  background:radial-gradient(ellipse 60% 80% at 25% 50%,rgba(201,162,39,.055) 0%,transparent 70%);
  pointer-events:none;
}
.hero-content{
  padding:4rem 3rem 4rem 5rem;
  display:flex;flex-direction:column;justify-content:center;
  position:relative;z-index:1;
}
.hero-status{margin-bottom:var(--space-2)}
/* Layer 2 — meta / supporting (same low weight) */
.hero-kicker{
  display:inline-block;
  font-size:var(--text-xs);letter-spacing:.2em;text-transform:uppercase;
  color:rgba(201,162,39,.5);margin-bottom:var(--space-1);
}
.hero-addr{
  display:block;
  font-size:var(--text-xs);letter-spacing:.15em;text-transform:uppercase;
  color:rgba(201,162,39,.6);margin-bottom:var(--space-3);margin-top:-.25rem;
}
.story-diaspora{
  font-style:italic;font-size:var(--text-sm);
  color:var(--gold);margin-top:var(--space-2);margin-bottom:1.5rem;
}
/* Layer 1 — headline (dominant) */
.hero h1,.hero .hero-h1{
  font-family:var(--fn-head);
  font-size:clamp(2.6rem,4.5vw,4.2rem);
  font-weight:900;line-height:1.05;
  color:var(--cream);letter-spacing:-.02em;
  margin-bottom:var(--space-2);
}
[lang="ar"] .hero h1,[lang="ar"] .hero .hero-h1{font-family:var(--fn-ar-h);letter-spacing:0;line-height:1.2}
.hero h1 em,.hero .hero-h1 em{font-style:italic;color:var(--gold)}
/* Layer 2 — supporting text */
.hero-sub{
  font-size:var(--text-sm);line-height:1.7;
  color:rgba(245,241,232,.52);
  max-width:380px;margin-bottom:var(--space-4);
}
.hero-ctas{display:flex;gap:var(--space-2);flex-wrap:wrap;margin-bottom:var(--space-4)}
/* Stats: compact, no competing weight */
.hero-stats{
  display:flex;gap:var(--space-4);
  padding-top:var(--space-3);margin-top:var(--space-1);
  border-top:1px solid rgba(201,162,39,.15);
}
.hero-stat-val{
  font-family:var(--fn-head);font-size:1.25rem;
  color:rgba(201,162,39,.85);font-weight:700;line-height:1;
  display:flex;align-items:center;gap:5px;
}
.hero-stat-icon{width:18px;height:18px;opacity:.8}
.hero-stat-label{
  font-size:var(--text-xs);letter-spacing:.07em;
  color:rgba(245,241,232,.45);margin-top:5px;
}
/* Hero image */
.hero-img-wrap{
  position:relative;overflow:hidden;
  background:var(--emerald);
}
.hero-img-wrap::before{
  content:'';position:absolute;
  top:0;left:0;bottom:0;width:160px;
  background:linear-gradient(to right,var(--dark),transparent);
  z-index:2;
}
[lang="ar"] .hero-img-wrap::before{
  left:auto;right:0;
  background:linear-gradient(to left,var(--dark),transparent);
}
.hero-img-wrap img{
  width:100%;height:100%;object-fit:cover;
  object-position:center;opacity:.82;
  transition:opacity .6s;
}

/* ============================================================
   HEUTE FRISCH
   ============================================================ */
.heute-frisch{
  background:var(--emerald);
  border-top:1px solid rgba(201,162,39,.18);
  border-bottom:1px solid rgba(201,162,39,.1);
  padding:1.25rem 4rem;
  display:flex;align-items:center;gap:3rem;flex-wrap:wrap;
}
.heute-label-wrap{display:flex;align-items:center;gap:.75rem;flex-shrink:0}
.heute-pulse{
  width:8px;height:8px;border-radius:50%;background:#4ade80;
  animation:pulse 2.2s ease-in-out infinite;
}
@keyframes pulse{0%,100%{opacity:1;transform:scale(1)}50%{opacity:.45;transform:scale(.75)}}
.heute-title{
  font-family:var(--fn-head);font-size:.95rem;
  color:var(--cream);white-space:nowrap;font-weight:600;
}
[lang="ar"] .heute-title{font-family:var(--fn-ar-h)}
.heute-items{display:flex;gap:1.5rem;flex-wrap:wrap;flex:1;align-items:center}
.heute-item{
  font-size:.85rem;color:rgba(245,241,232,.82);
  display:flex;align-items:center;gap:6px;
}
.heute-item::before{content:'◆';font-size:.35rem;color:var(--gold);flex-shrink:0}
.heute-empty{font-size:.85rem;color:rgba(245,241,232,.45);font-style:italic}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-gold,.btn-outline,.btn-wa,.btn-dark{
  min-height:var(--btn-h);
  display:inline-flex;align-items:center;gap:var(--space-1);
  font-size:var(--text-sm);font-weight:600;
  letter-spacing:.05em;border-radius:var(--btn-r);
  transition:background var(--t),border-color var(--t),transform var(--t);
}
.btn-gold{
  background:var(--gold);color:var(--dark);
  padding:0 var(--space-4);
}
.btn-gold:hover{background:var(--gold-lt);transform:translateY(-2px)}
.btn-outline{
  border:1px solid rgba(201,162,39,.45);color:var(--gold);
  padding:0 var(--space-4);font-weight:500;
}
.btn-outline:hover{border-color:var(--gold);background:rgba(201,162,39,.08)}
.btn-wa{
  background:var(--gold);color:var(--dark);
  padding:0 var(--space-3);
}
.btn-wa:hover{background:var(--gold-lt);transform:translateY(-2px)}
.btn-dark{
  background:var(--dark);color:var(--gold);
  padding:0 var(--space-3);
}
.btn-dark:hover{background:var(--emerald)}

/* ============================================================
   SECTION HELPERS
   ============================================================ */
.section-label{
  display:block;font-size:.68rem;letter-spacing:.22em;
  text-transform:uppercase;color:var(--gold);margin-bottom:.875rem;
}
.gold-rule{width:40px;height:1.5px;background:var(--gold);margin:1.25rem 0}
[lang="ar"] .gold-rule{margin-right:0}

/* ============================================================
   PRODUCT HIGHLIGHTS
   ============================================================ */
.products-section{background:var(--black);padding:6rem 5rem}
.products-head{
  display:flex;justify-content:space-between;
  align-items:flex-end;margin-bottom:3.5rem;flex-wrap:wrap;gap:1.5rem;
}
.products-head h2{
  font-family:var(--fn-head);
  font-size:clamp(1.8rem,3vw,2.6rem);
  color:var(--cream);line-height:1.12;font-weight:700;
}
[lang="ar"] .products-head h2{font-family:var(--fn-ar-h)}
.products-grid{
  display:grid;grid-template-columns:repeat(4,1fr);
  gap:3px;
}

/* ============================================================
   ORIGIN MODULE
   ============================================================ */
.origin-section{
  background:radial-gradient(ellipse 80% 60% at 60% 50%,rgba(201,162,39,.04) 0%,transparent 70%),var(--dark);
  padding:7rem 5rem;
  display:grid;grid-template-columns:1fr 1fr;gap:7rem;
  align-items:center;
}
.origin-map svg{width:100%;max-width:380px}
.origin-content h2{
  font-family:var(--fn-head);
  font-size:clamp(1.7rem,2.8vw,2.3rem);
  color:var(--cream);line-height:1.18;font-weight:700;
}
[lang="ar"] .origin-content h2{font-family:var(--fn-ar-h)}
.origin-points{display:flex;flex-direction:column;gap:1.75rem;margin-top:2rem}
.origin-point{display:flex;gap:1rem;align-items:flex-start}
.origin-icon{
  width:34px;height:34px;border-radius:50%;
  background:var(--emerald);color:var(--gold);
  display:flex;align-items:center;justify-content:center;
  flex-shrink:0;margin-top:1px;
}
.origin-icon svg{width:15px;height:15px;stroke:var(--gold);stroke-width:2;fill:none}
.origin-point strong{
  display:block;color:var(--cream);
  font-weight:600;font-size:.9rem;margin-bottom:3px;
}
.origin-point span{
  font-size:.83rem;color:rgba(245,240,232,.75);line-height:1.65;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.rating-row{
  display:flex;align-items:center;justify-content:center;gap:.75rem;
  flex-wrap:wrap;
}
.stars-wrap{display:flex;gap:3px}
.star-icon{width:16px;height:16px;fill:var(--gold);color:var(--gold)}
.rating-txt{font-size:.82rem;color:rgba(245,241,232,.5)}
.testi-author{font-size:.75rem;color:var(--gold);font-weight:600;letter-spacing:.04em}

/* ============================================================
   CONTACT TEASER — fixed: no more yellow background
   ============================================================ */
.contact-teaser{
  background:var(--emerald);
  border-top:1px solid rgba(201,162,39,.25);
  border-bottom:1px solid rgba(201,162,39,.15);
  padding:4rem 5rem;
  display:flex;align-items:center;
  justify-content:space-between;gap:2.5rem;flex-wrap:wrap;
}
.contact-teaser-txt{
  font-family:var(--fn-head);
  font-size:clamp(1.1rem,2vw,1.6rem);
  color:var(--cream);max-width:520px;
  line-height:1.3;font-weight:600;
}
[lang="ar"] .contact-teaser-txt{font-family:var(--fn-ar-h)}
.contact-teaser-line{
  width:40px;height:1.5px;
  background:var(--gold);margin-bottom:1rem;
}
.contact-teaser-btns{display:flex;gap:.875rem;flex-wrap:wrap}

/* ============================================================
   GALLERY STRIP
   ============================================================ */
.gallery-strip{overflow:hidden;padding:3px 0;background:var(--black);display:flex}
.gallery-strip img{
  height:240px;width:auto;object-fit:cover;
  flex-shrink:0;opacity:.72;
  transition:opacity var(--t);
}
.gallery-strip img:hover{opacity:1}
/* --- Gallery section --- */
.gallery-section{padding:var(--space-10) var(--space-6);background:var(--dark)}
.gallery-section .section-header{text-align:center;margin-bottom:var(--space-6)}
.gallery-section .section-header h2{font-family:var(--fn-head);font-size:clamp(1.5rem,3vw,2.2rem);color:var(--cream)}
.gallery-grid{display:grid;grid-template-columns:repeat(3,1fr);grid-auto-rows:260px;gap:8px;max-width:1200px;margin:0 auto}
.gallery-item{overflow:hidden;border-radius:2px}
.gallery-item--wide{grid-column:span 2}
.gallery-item img{width:100%;height:100%;object-fit:cover;transition:transform .4s ease}
.gallery-item img:hover{transform:scale(1.04)}
@media(max-width:768px){
  .gallery-grid{grid-template-columns:repeat(2,1fr);grid-auto-rows:180px}
  .gallery-item--wide{grid-column:span 2}
}
@media(max-width:480px){
  .gallery-grid{grid-template-columns:1fr;grid-auto-rows:220px}
  .gallery-item--wide{grid-column:span 1}
}

.gallery-cta{text-align:center;margin-top:var(--space-6);display:flex;justify-content:center;gap:1rem;flex-wrap:wrap}

#backToTop{
  position:fixed;bottom:24px;left:1.5rem;
  width:40px;height:40px;border-radius:50%;
  background:var(--gold);color:var(--dark);
  border:none;font-size:1.1rem;font-weight:700;
  cursor:pointer;opacity:0;pointer-events:none;
  transition:opacity .3s;z-index:800;
  display:flex;align-items:center;justify-content:center;
}
#backToTop.visible{opacity:1;pointer-events:auto}
@media(min-width:768px){#backToTop{left:1.5rem;right:auto;bottom:24px}}
.galerie-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:12px;max-width:1200px;margin:0 auto}
.galerie-grid img{width:100%;aspect-ratio:4/3;object-fit:cover;border-radius:2px;transition:transform .3s ease;display:block}
.galerie-grid img:hover{transform:scale(1.02)}
@media(max-width:768px){.galerie-grid{grid-template-columns:repeat(2,1fr)}}
@media(max-width:480px){.galerie-grid{grid-template-columns:1fr}}

/* ============================================================
   FOOTER
   ============================================================ */
footer{
  background:var(--emerald);
  border-top:1px solid rgba(201,162,39,.18);
  padding:4rem 5rem 2rem;
}
.footer-grid{
  display:grid;grid-template-columns:1.4fr 1fr 1fr;
  gap:4rem;margin-bottom:3rem;
}
.footer-logo-img{height:46px;width:46px;object-fit:contain;border-radius:50%}
.footer-brand{margin-top:.75rem;margin-bottom:1.25rem}
.footer-brand-name{
  font-family:var(--fn-head);font-size:1.1rem;
  color:var(--gold);font-weight:700;
}
[lang="ar"] .footer-brand-name{font-family:var(--fn-ar-h)}
.footer-brand-sub{
  font-size:.68rem;letter-spacing:.12em;
  color:rgba(201,162,39,.45);text-transform:uppercase;
}
.footer-tagline{
  font-size:.85rem;color:rgba(245,241,232,.55);
  line-height:1.75;max-width:260px;
}
.footer-col-h{
  font-size:.65rem;letter-spacing:.2em;text-transform:uppercase;
  color:var(--gold);margin-bottom:1.25rem;
}
.footer-address{font-style:normal;font-size:.85rem;color:rgba(245,241,232,.62);line-height:2}
.footer-hours{font-size:.85rem;color:rgba(245,241,232,.62);line-height:2;margin-top:1.5rem}
.footer-contact-row{
  display:flex;align-items:center;gap:.625rem;
  font-size:.85rem;color:rgba(245,241,232,.62);
  margin-bottom:.875rem;transition:color var(--t);
}
.footer-contact-row:hover{color:var(--gold)}
.footer-contact-icon{
  width:26px;height:26px;border-radius:50%;
  background:rgba(201,162,39,.1);
  display:flex;align-items:center;justify-content:center;flex-shrink:0;
}
.footer-contact-icon svg{width:13px;height:13px;stroke:var(--gold);stroke-width:2;fill:none}
.footer-allergen{
  border-top:1px solid rgba(201,162,39,.08);
  padding:1rem 2.5rem;
  font-size:.72rem;color:rgba(245,240,232,.35);line-height:1.7;
}
.footer-allergen strong{color:rgba(245,240,232,.5)}
.footer-bottom{
  border-top:1px solid rgba(201,162,39,.12);
  padding-top:1.75rem;
  display:flex;justify-content:space-between;
  align-items:center;flex-wrap:wrap;gap:1rem;
}
.footer-legal{display:flex;gap:1.75rem;flex-wrap:wrap}
.footer-legal a{
  font-size:.75rem;color:rgba(245,241,232,.65);
  transition:color var(--t);
}
.footer-legal a:hover{color:var(--gold)}
.footer-copy{font-size:.75rem;color:rgba(245,241,232,.65)}

/* ============================================================
   PAGE OVERLAYS
   ============================================================ */
.page{
  display:none;position:fixed;inset:0;
  background:var(--black);z-index:900;
  overflow-y:auto;padding-top:68px;
}
.page.active{display:block;animation:fadeIn .25s ease}
/* Gallery overlay is content-consumption, NOT a modal task — the global footer
   stays intentionally visible below the gallery. Override .page fixed positioning
   so #page-galerie flows in document and the footer renders underneath naturally.
   Mobile: overflow-x:hidden prevents any rogue horizontal scroll from images. */
#page-galerie{position:static;inset:auto;overflow-x:hidden;min-height:calc(100vh - 68px)}
#page-galerie.active{display:block;animation:fadeIn .25s ease}
@keyframes fadeIn{from{opacity:0}to{opacity:1}}
.page-close-btn{
  position:fixed;top:16px;right:2rem;z-index:910;
  width:36px;height:36px;border-radius:50%;
  background:rgba(201,162,39,.1);
  border:1px solid rgba(201,162,39,.25);
  color:var(--gold);font-size:1rem;
  display:flex;align-items:center;justify-content:center;
  transition:background var(--t),color var(--t);
}
.page-close-btn:hover{background:var(--gold);color:var(--dark)}
.page-hero{
  background:var(--emerald);padding:3.5rem 5rem;
  border-bottom:1px solid rgba(201,162,39,.15);
}
.page-hero h1{
  font-family:var(--fn-head);
  font-size:clamp(1.8rem,3.5vw,2.8rem);
  color:var(--cream);margin:.5rem 0 .5rem;font-weight:700;
}
[lang="ar"] .page-hero h1{font-family:var(--fn-ar-h)}
.page-hero p{font-size:.95rem;color:rgba(245,241,232,.55)}
.page-content{padding:4.5rem 5rem}

/* --- Products page --- */
.prod-page-grid{
  display:grid;
  grid-template-columns:repeat(auto-fill,minmax(270px,1fr));
  gap:1.75rem;
}
.prod-page-card{background:var(--emerald);overflow:hidden}
.prod-page-card img{width:100%;height:220px;object-fit:cover;opacity:.88}
.prod-page-info{padding:1.4rem}
.prod-page-name{
  font-family:var(--fn-head);font-size:1.1rem;
  color:var(--cream);font-weight:700;
}
[lang="ar"] .prod-page-name{font-family:var(--fn-ar-h)}
.prod-page-ar{
  font-family:var(--fn-ar-h);font-size:.85rem;
  color:var(--gold);margin-top:2px;margin-bottom:.625rem;
}
.prod-page-desc{
  font-size:.82rem;color:rgba(245,241,232,.58);
  line-height:1.6;margin-bottom:.875rem;
}
.prod-page-price{
  font-family:var(--fn-head);font-size:1rem;
  color:var(--gold);margin-bottom:.5rem;font-weight:600;
}
details.allergen{border-top:1px solid rgba(201,162,39,.12);margin-top:.875rem}
details.allergen summary{
  padding:.625rem 0;font-size:.75rem;color:var(--gold);
  letter-spacing:.05em;list-style:none;cursor:pointer;
  display:flex;justify-content:space-between;align-items:center;
}
details.allergen summary::after{content:"▼";font-size:.55rem}
details.allergen[open] summary::after{content:"▲"}
.allergen-txt{
  font-size:.78rem;color:rgba(245,241,232,.45);
  line-height:1.65;padding-bottom:.75rem;
}
.allergen-txt strong{color:rgba(245,241,232,.7)}
.prod-order-hint{
  font-size:.75rem;color:rgba(245,241,232,.38);margin-top:.625rem;
}
/* --- Product cards (static) --- */
.product-card{background:var(--emerald);overflow:hidden}
.product-img-wrap{position:relative;overflow:hidden}
.product-img-wrap img{width:100%;height:220px;object-fit:cover;display:block}
.product-info{padding:1.25rem}
.product-info h3{font-family:var(--fn-head);font-size:.95rem;color:var(--cream);font-weight:700;margin-bottom:6px}
[lang="ar"] .product-info h3{font-family:var(--fn-ar-h)}
.product-price{font-family:var(--fn-head);font-size:.9rem;color:var(--gold);font-weight:600}
.allergen-note{font-size:.65rem;color:rgba(245,240,232,.55);margin-top:4px}
.product-badge-angebot{position:absolute;top:12px;right:12px;background:var(--gold);color:var(--dark);font-size:.65rem;font-weight:700;padding:3px 10px;border-radius:2px;text-transform:uppercase;letter-spacing:.05em}
.allergen-disclaimer{
  margin-top:2.5rem;
  padding:1.25rem 1.5rem;
  background:rgba(27,67,50,.3);
  border:1px solid rgba(201,162,39,.12);
  font-size:.8rem;color:rgba(245,241,232,.5);line-height:1.65;
}
.allergen-disclaimer strong{color:rgba(245,241,232,.72)}

/* --- Catering page --- */
.catering-cards{
  display:grid;grid-template-columns:repeat(3,1fr);
  gap:1.25rem;margin-bottom:3.5rem;
}
.catering-card{
  background:var(--emerald);padding:2rem 1.75rem;
  border-top:2px solid var(--gold);
}
.catering-card-icon{
  width:40px;height:40px;margin-bottom:1.25rem;
  color:var(--gold);
}
.catering-card-icon svg{width:100%;height:100%;stroke:currentColor;stroke-width:1.5;fill:none}
.catering-card h3{
  font-family:var(--fn-head);font-size:1rem;
  color:var(--cream);margin-bottom:.625rem;font-weight:600;
}
[lang="ar"] .catering-card h3{font-family:var(--fn-ar-h)}
.catering-card p{font-size:.82rem;color:rgba(245,241,232,.55);line-height:1.65}
.form-wrap{background:var(--emerald);padding:2.5rem;max-width:660px}
.form-title{
  font-family:var(--fn-head);font-size:1.3rem;
  color:var(--cream);margin-bottom:2rem;font-weight:600;
}
[lang="ar"] .form-title{font-family:var(--fn-ar-h)}
.form-2col{display:grid;grid-template-columns:1fr 1fr;gap:.875rem;margin-bottom:.875rem}
.f-group{display:flex;flex-direction:column;gap:5px;margin-bottom:.875rem}
.f-group.span2{grid-column:1/-1}
.f-group label{
  font-size:.7rem;letter-spacing:.1em;text-transform:uppercase;
  color:rgba(245,241,232,.45);
}
[lang="ar"] .f-group label{text-align:right}
.f-group input,.f-group select,.f-group textarea{
  background:rgba(13,43,32,.55);
  border:1px solid rgba(201,162,39,.18);
  color:var(--cream);padding:9px 12px;
  font-size:.875rem;font-family:var(--fn-body);
  outline:none;width:100%;border-radius:0;
  transition:border-color var(--t);
}
[lang="ar"] .f-group input,[lang="ar"] .f-group select,[lang="ar"] .f-group textarea{
  font-family:var(--fn-ar-b);text-align:right;
}
.f-group input:focus,.f-group select:focus,.f-group textarea:focus{
  border-color:var(--gold);
}
.f-group select option{background:var(--dark)}
.f-group textarea{resize:vertical;min-height:110px}
.form-success{display:none;text-align:center;padding:4rem 2rem}
.form-success h3{
  font-family:var(--fn-head);color:var(--gold);
  font-size:1.4rem;margin-bottom:.5rem;
}
[lang="ar"] .form-success h3{font-family:var(--fn-ar-h)}
.form-success p{font-size:.9rem;color:rgba(245,241,232,.55)}
.form-success-icon{
  width:52px;height:52px;border-radius:50%;
  background:rgba(74,222,128,.1);border:1px solid rgba(74,222,128,.25);
  display:flex;align-items:center;justify-content:center;
  margin:0 auto 1.25rem;
}
.form-success-icon svg{width:24px;height:24px;stroke:#4ade80;stroke-width:2;fill:none}

/* --- Contact page --- */
.kontakt-cards{display:grid;grid-template-columns:repeat(3,1fr);gap:1.5rem;margin-bottom:3.5rem}
.kontakt-card{
  background:var(--emerald);padding:2.25rem 2rem;text-align:center;
  border-bottom:2px solid transparent;transition:border-color var(--t);
}
.kontakt-card:hover{border-bottom-color:var(--gold)}
.kontakt-icon{
  width:44px;height:44px;margin:0 auto 1.5rem;
  color:var(--gold);
}
.kontakt-icon svg{width:100%;height:100%;stroke:currentColor;stroke-width:1.5;fill:none}
.kontakt-card h3{
  font-family:var(--fn-head);color:var(--cream);
  font-size:1rem;margin-bottom:.625rem;font-weight:600;
}
[lang="ar"] .kontakt-card h3{font-family:var(--fn-ar-h)}
.kontakt-card p{font-size:.82rem;color:rgba(245,241,232,.5);line-height:1.6;margin-bottom:1.5rem}
.map-embed{
  width:100%;height:340px;border:none;
  opacity:.82;border:1px solid rgba(201,162,39,.15);
  margin-top:1rem;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media(max-width:960px){
  .hero{grid-template-columns:1fr;min-height:auto}
  .hero-content{padding:3rem 2rem}
  [lang="ar"] .hero-content{padding:3rem 2rem}
  .hero-img-wrap{height:320px}
  .hero-img-wrap::before{display:none}
  .products-section{padding:4.5rem 2rem}
  .products-grid{grid-template-columns:repeat(2,1fr)}
  .origin-section{padding:5rem 2rem;grid-template-columns:1fr;gap:3rem}
  .contact-teaser{padding:3rem 2rem}
  footer{padding:3rem 2rem 1.5rem}
  .footer-grid{grid-template-columns:1fr;gap:2.25rem}
  .heute-frisch{padding:1.25rem 2rem}
  .nav-links{display:none}
  .hamburger{display:flex}
  .page-hero{padding:3rem 2rem}
  .page-content{padding:3rem 2rem}
  .catering-cards{grid-template-columns:1fr}
  .kontakt-cards{grid-template-columns:1fr}
  .form-2col{grid-template-columns:1fr}
}
@media(max-width:600px){
  .products-grid{grid-template-columns:1fr}
  .hero-ctas{flex-direction:column}
  .hero-stats{gap:1.25rem}
  .contact-teaser-btns{flex-direction:column;width:100%}
  .btn-gold,.btn-wa,.btn-dark,.btn-outline{justify-content:center}
  .footer-bottom{flex-direction:column;text-align:center}
  .footer-legal{flex-wrap:wrap;justify-content:center;gap:1rem}
}
@media(max-width:480px){
  .nav-brand-sub{display:none}
}

/* Aleppo map image */
.origin-map{width:100%}
.aleppo-map-wrap{
  position:relative;
  width:100%;
  border-radius:4px;
  overflow:hidden;
  border:1px solid rgba(201,162,39,.25);
  box-shadow:0 8px 40px rgba(0,0,0,.45), 0 0 0 1px rgba(201,162,39,.1);
}
.aleppo-map-img{
  width:100%;
  display:block;
  aspect-ratio:1.15/1;object-fit:cover;
  transition:transform .6s ease;
}
.aleppo-map-wrap:hover .aleppo-map-img{transform:scale(1.02)}
.aleppo-map-caption{
  position:absolute;bottom:0;left:0;right:0;
  background:linear-gradient(transparent, rgba(8,14,11,.85));
  color:rgba(201,162,39,.85);
  font-size:.72rem;letter-spacing:.18em;text-transform:uppercase;
  padding:.875rem 1rem .75rem;text-align:center;
}

/* ============================================================
   PROD CARD — PRICE BADGE + MASTER SEAL
   ============================================================ */
.prod-price-badge{
  position:absolute;top:var(--space-2);left:var(--space-2);
  background:rgba(8,14,11,.82);
  border:1px solid rgba(201,162,39,.4);
  color:var(--gold);
  font-size:var(--text-xs);font-weight:700;letter-spacing:.06em;
  padding:4px 10px;border-radius:2px;
  backdrop-filter:blur(6px);
  z-index:3;
}
[lang="ar"] .prod-price-badge{left:auto;right:var(--space-2)}
.master-seal{
  position:absolute;top:var(--space-2);right:var(--space-2);
  width:68px;height:68px;
  opacity:.82;pointer-events:none;z-index:3;
  transition:opacity var(--t);
}
[lang="ar"] .master-seal{right:auto;left:var(--space-2)}
.prod-card:hover .master-seal{opacity:1}

/* ============================================================
   STORY SECTION
   ============================================================ */
.story-section{
  background:var(--dark);
  padding:var(--space-12) 5rem;
  display:grid;grid-template-columns:380px 1fr;
  gap:var(--space-8);align-items:center;
}
.story-img-wrap{
  position:relative;aspect-ratio:4/5;overflow:hidden;
  border:1px solid rgba(201,162,39,.18);
}
.story-img-wrap img{
  width:100%;height:100%;object-fit:cover;
  filter:grayscale(15%);transition:filter .6s;
}
.story-img-wrap:hover img{filter:grayscale(0%)}
.story-img-caption{
  position:absolute;bottom:0;left:0;right:0;
  padding:1.25rem 1.5rem;
  background:linear-gradient(transparent,rgba(8,14,11,.88));
  font-family:var(--fn-ar-h);font-size:.75rem;
  color:rgba(201,162,39,.6);letter-spacing:.08em;direction:rtl;
}
.story-content .section-label{display:block;margin-bottom:var(--space-1)}
.story-content h2{
  font-family:var(--fn-head);
  font-size:clamp(1.6rem,2.5vw,2.2rem);
  color:var(--cream);line-height:1.12;font-weight:700;
  margin-bottom:var(--space-3);
}
[lang="ar"] .story-content h2{font-family:var(--fn-ar-h)}
.story-text{
  font-size:var(--text-base);line-height:1.85;
  color:rgba(245,241,232,.68);
  max-width:520px;margin-bottom:var(--space-4);
}
.story-sign{
  font-family:var(--fn-ar-h);font-size:1.05rem;
  color:rgba(201,162,39,.6);letter-spacing:.04em;direction:rtl;
  margin-top:var(--space-3);
}
@media(max-width:900px){
  .story-section{grid-template-columns:1fr;padding:var(--space-8) var(--space-4)}
  .story-img-wrap{max-width:420px;margin:0 auto}
}

/* ============================================================
   FOOTER — WHATSAPP UPDATES + SOCIAL
   ============================================================ */
.footer-grid{
  display:grid;grid-template-columns:1.4fr 1fr 1fr 1.2fr;
  gap:3rem;margin-bottom:3rem;
}
.footer-social{display:flex;gap:.75rem;margin-top:1.25rem;flex-wrap:wrap}
.footer-social-link{
  display:inline-flex;align-items:center;gap:.5rem;
  font-size:var(--text-xs);color:rgba(245,241,232,.45);
  border:1px solid rgba(201,162,39,.2);
  padding:6px 12px;border-radius:2px;
  transition:border-color var(--t),color var(--t);
}
.footer-social-link:hover{border-color:var(--gold);color:var(--gold)}
.footer-social-link svg{flex-shrink:0}
.footer-maps-link{
  display:inline-flex;align-items:center;gap:.5rem;
  font-size:var(--text-xs);color:var(--gold);
  margin-top:1rem;transition:opacity var(--t);
}
.footer-maps-link:hover{opacity:.75}
.footer-open-status{margin-top:1rem}
.wa-updates-btn{
  background:rgba(201,162,39,.12);
  border:1px solid rgba(201,162,39,.35);
  color:var(--gold);font-size:var(--text-xs);
  font-family:var(--fn-body);letter-spacing:.1em;text-transform:uppercase;
  font-weight:600;padding:9px 14px;cursor:pointer;
  border-radius:var(--btn-r);
  transition:background var(--t),border-color var(--t);
}
.wa-updates-btn:hover{background:rgba(201,162,39,.22);border-color:var(--gold)}
@media(max-width:900px){
  .footer-grid{grid-template-columns:1fr 1fr}
}
@media(max-width:540px){
  .footer-grid{grid-template-columns:1fr}
}

/* ============================================================
   REDUCED MOTION
   ============================================================ */
/* ============================================================
   ROTATING TESTIMONIALS
   ============================================================ */
.testi-rotate{background:var(--emerald);padding:var(--space-10) 5rem}
.testi-rotate-head{text-align:center;margin-bottom:var(--space-6)}
.testi-rotate-head h2{
  font-family:var(--fn-head);font-size:clamp(1.6rem,2.5vw,2.2rem);
  color:var(--cream);font-weight:700;
}
[lang="ar"] .testi-rotate-head h2{font-family:var(--fn-ar-h)}
.testi-carousel{position:relative;max-width:720px;margin:0 auto;cursor:grab}
.testi-carousel.dragging{cursor:grabbing;user-select:none}
#testiSwipeHint{
  text-align:center;font-size:.72rem;letter-spacing:.12em;text-transform:uppercase;
  color:rgba(201,162,39,.45);margin-top:.75rem;
  opacity:0;transition:opacity .6s ease;pointer-events:none;
  display:none;
}
@media(max-width:768px){#testiSwipeHint{display:block}}
.testi-slide{
  display:none;opacity:0;
  transition:opacity .5s var(--ease);
}
.testi-slide.active{display:block;opacity:1}
.testi-slide-inner{
  background:var(--dark);border:1px solid rgba(201,162,39,.15);
  padding:var(--space-5) var(--space-6);position:relative;
}
.testi-google-badge{
  display:flex;align-items:center;gap:var(--space-1);
  margin-bottom:var(--space-3);
}
.testi-google-logo{
  width:18px;height:18px;flex-shrink:0;
}
.testi-google-label{
  font-size:var(--text-xs);color:rgba(245,241,232,.4);
  letter-spacing:.1em;text-transform:uppercase;
}
.testi-stars-row{display:flex;gap:3px;margin-bottom:var(--space-2)}
.testi-star{width:14px;height:14px;fill:var(--gold)}
.testi-body{
  font-size:var(--text-base);line-height:1.75;
  color:rgba(245,241,232,.82);margin-bottom:var(--space-3);
}
.testi-body[dir="rtl"]{font-family:var(--fn-ar-b)}
.testi-author-row{
  display:flex;align-items:center;gap:var(--space-1);
  font-size:var(--text-xs);color:rgba(245,241,232,.4);
  letter-spacing:.06em;
}
.testi-author-name{color:rgba(245,241,232,.65);font-weight:600}
.testi-quote-deco{
  position:absolute;top:var(--space-3);right:var(--space-4);
  font-family:var(--fn-head);font-size:5rem;line-height:1;
  color:rgba(201,162,39,.07);pointer-events:none;user-select:none;
}
.testi-dots{
  display:flex;justify-content:center;gap:var(--space-1);
  margin-top:var(--space-4);
}
.testi-dot{
  width:8px;height:8px;border-radius:50%;
  background:rgba(201,162,39,.25);border:none;cursor:pointer;
  padding:8px;margin:0 2px;
  background-clip:content-box;box-sizing:content-box;
  transition:background var(--t),transform var(--t);
}
.testi-dot.active{background:var(--gold);transform:scale(1.25)}
.testi-arrow{
  position:absolute;top:50%;transform:translateY(-50%);
  background:transparent;border:1px solid rgba(201,162,39,.4);
  border-radius:50%;width:44px;height:44px;
  display:flex;align-items:center;justify-content:center;
  color:var(--gold);cursor:pointer;
  transition:background .2s ease,border-color .2s ease;
  z-index:10;
}
.testi-arrow:hover{background:rgba(201,162,39,.1);border-color:var(--gold)}
.testi-arrow--prev{left:-60px}
.testi-arrow--next{right:-60px}
@media(max-width:768px){
  .testi-arrow{display:none}
  .testi-rotate{padding:var(--space-8) var(--space-4)}
  .testi-slide-inner{padding:var(--space-4)}
}

/* ============================================================
   SKIP LINK
   ============================================================ */
.skip-link{
  position:fixed;top:var(--space-2);left:var(--space-2);z-index:9999;
  background:var(--gold);color:var(--dark);
  font-size:var(--text-sm);font-weight:700;
  padding:10px 18px;border-radius:var(--btn-r);
  transform:translateY(-200%);
  transition:transform 0.2s var(--ease);
}
.skip-link:focus{transform:translateY(0)}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration:      0.01ms !important;
    animation-iteration-count: 1    !important;
    transition-duration:     0.01ms !important;
    transition-delay:        0ms    !important;
    scroll-behavior:         auto   !important;
  }
}
/* ---- STICKY WA BUTTON (mobile only) ---- */
@media(max-width:768px){
  #wa-sticky-wrap{
    position:fixed;bottom:1.25rem;right:1.25rem;z-index:9999;
    display:flex;align-items:center;gap:.6rem;
    opacity:0;transform:translateY(8px);pointer-events:none;
    transition:opacity .3s ease,transform .3s ease;
  }
  #wa-sticky-wrap.visible{opacity:1;transform:translateY(0);pointer-events:auto}
  [lang="ar"] #wa-sticky-wrap{right:auto;left:1.25rem;flex-direction:row-reverse}
  #wa-label{
    background:var(--gold);color:var(--dark);
    font-size:.7rem;font-weight:700;letter-spacing:.04em;
    padding:.35rem .8rem;border-radius:99px;
    white-space:nowrap;box-shadow:0 2px 10px rgba(0,0,0,.35);
    cursor:pointer;
  }
  #wa-sticky-buttons{display:flex;flex-direction:column;gap:.5rem}
  #wa-sticky,#wa-sticky-2{
    width:52px;height:52px;border-radius:50%;
    background:var(--gold);color:var(--dark);
    display:flex;align-items:center;justify-content:center;
    box-shadow:0 4px 20px rgba(0,0,0,.45);
    text-decoration:none;flex-shrink:0;
  }
  #wa-sticky svg,#wa-sticky-2 svg{width:26px;height:26px;fill:var(--dark)}
}
@media(min-width:769px){#wa-sticky-wrap{display:none}}
@media(max-width:768px){#waEliteFloatingWrap{display:none!important}}
/* ---- REVIEWS TAB ---- */
#reviews-tab{
  position:fixed;right:0;top:50%;z-index:900;
  background:var(--gold);color:var(--dark);
  font-size:.75rem;font-weight:700;letter-spacing:.12em;
  padding:.6rem .75rem;
  border-radius:4px 4px 0 0;
  box-shadow:-3px 0 14px rgba(0,0,0,.35);
  cursor:pointer;user-select:none;
  writing-mode:vertical-rl;
  transform:translateY(-50%);
  transition:padding-right .2s ease;
}
#reviews-tab:hover{padding-right:.95rem}
@media(max-width:768px){#reviews-tab{display:none}}
@media(prefers-reduced-motion:reduce){#reviews-tab{transition:none}}
/* ---- TRUST BAR ---- */
.trust-bar{
  background:rgba(13,43,32,.97);
  border-top:1px solid rgba(201,162,39,.14);
  border-bottom:1px solid rgba(201,162,39,.14);
  padding:0 2rem;min-height:48px;
  display:flex;align-items:center;justify-content:center;
  gap:1.75rem;flex-wrap:wrap;
}
.trust-bar-head{
  font-size:.63rem;letter-spacing:.2em;text-transform:uppercase;
  color:rgba(201,162,39,.5);white-space:nowrap;
}
.trust-badge{
  display:inline-flex;align-items:center;gap:.4rem;
  font-size:.78rem;font-weight:600;color:var(--gold);
  text-decoration:none;white-space:nowrap;
}
.trust-badge:hover{color:var(--cream)}
.trust-sep{color:rgba(201,162,39,.22);font-size:.9rem;line-height:1}
@media(max-width:600px){
  .trust-bar{gap:.85rem;padding:.65rem 1.25rem;min-height:auto}
  .trust-sep{display:none}
  .trust-bar-head{width:100%;text-align:center}
}
/* ---- ISLAMIC ELEMENT (SVG) ---- */
.hero-islamic-svg{
  position:absolute;
  right:130px;top:40%;
  transform:translateY(-50%);
  width:280px;
  z-index:3;
  display:flex;flex-direction:column;align-items:center;justify-content:center;
  gap:8px;pointer-events:none;
  padding:0;
}
.lanterns-row{
  display:flex;justify-content:center;gap:2rem;
  width:100%;align-items:flex-end;
  margin-bottom:16px;
}
.lantern-left{width:55px;height:auto;display:inline-block}
.lantern-right{width:42px;height:auto;display:inline-block}
.islamic-verse{text-align:center;direction:rtl;padding:0 8px;position:relative}
.verse-label{
  display:block;
  font-family:'Noto Naskh Arabic',serif;
  font-size:.7rem;color:var(--gold);opacity:.65;
  letter-spacing:2px;margin-bottom:8px;
}
.verse-text{
  font-family:'Noto Naskh Arabic',serif;
  font-size:clamp(.9rem,1.8vw,1.15rem);
  color:var(--cream);line-height:2;
  margin:0 0 8px 0;direction:rtl;
  word-break:keep-all;overflow-wrap:normal;
  background:linear-gradient(180deg,var(--cream) 0%,var(--gold) 100%);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
  background-clip:text;
}
.verse-gold{
  background:linear-gradient(180deg,var(--gold) 0%,var(--gold) 100%);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
  background-clip:text;
  white-space:nowrap;
}
@media(max-width:639px){
  .verse-text{font-size:1rem}
}
.verse-ref{
  display:block;
  font-family:'Noto Naskh Arabic',serif;
  font-size:.65rem;color:var(--gold);opacity:.6;
  margin-bottom:4px;
}
.verse-sadaqa{
  display:block;
  font-family:'Noto Naskh Arabic',serif;
  font-size:.7rem;color:var(--gold);opacity:.55;
}
.quran-stand{width:160px;height:auto;margin-top:4px}
@media(max-width:768px){
  .hero-islamic-svg{
    display:flex;
    position:relative;
    right:unset;
    top:unset;
    transform:none;
    animation:none;
    width:100%;
    max-width:280px;
    margin:var(--space-3) auto;
    padding:0;
  }
}
@keyframes islamicFadeIn{
  from{opacity:0;transform:translateY(calc(-50% + 18px))}
  to{opacity:1;transform:translateY(-50%)}
}
@media(prefers-reduced-motion:no-preference){
  .hero-islamic-svg{animation:islamicFadeIn 1.2s ease both;animation-delay:.5s}
}
@media(max-width:768px) and (prefers-reduced-motion:no-preference){
  .hero-islamic-svg{animation:none;transform:none}
}

/* ============================================================
   A2 — NAV SCROLL TRANSPARENCY
   ============================================================ */
.nav{transition:background var(--t) var(--ease),border-color var(--t) var(--ease),box-shadow var(--t) var(--ease)}
.nav.nav-at-top{background:rgba(8,14,11,.15)!important;border-bottom-color:transparent!important;box-shadow:none}
.nav-wa-cta{
  display:none;
  align-items:center;gap:.5rem;
  background:var(--gold);color:var(--dark);
  font-size:.75rem;font-weight:700;letter-spacing:.04em;
  padding:7px 14px;border-radius:2px;
  text-decoration:none;transition:background var(--t);white-space:nowrap;
}
.nav-wa-cta:hover{background:var(--gold-lt)}
.nav-wa-cta svg{flex-shrink:0}
@media(min-width:1024px){.nav-wa-cta{display:flex}}

/* ============================================================
   A3 — FLOATING WA BUTTON (DESKTOP)
   ============================================================ */
@keyframes wa-pulse-ring{0%,100%{box-shadow:0 4px 20px rgba(201,162,39,.4),0 0 0 0 rgba(201,162,39,.35)}70%{box-shadow:0 4px 20px rgba(201,162,39,.4),0 0 0 14px rgba(201,162,39,0)}}

/* ============================================================
   A4 — PRODUCT CARD HOVER & QUICK ORDER
   ============================================================ */
.product-card{
  transition:transform .3s var(--ease),box-shadow .3s var(--ease),border-color .3s var(--ease);
  border:1px solid transparent;
}
.product-card:hover{transform:scale(1.02);box-shadow:0 12px 40px rgba(0,0,0,.45);border-color:rgba(201,162,39,.2)}
.product-img-wrap img{transition:transform .5s var(--ease)}
.product-card:hover .product-img-wrap img{transform:scale(1.08)}
.product-overlay{
  position:absolute;inset:0;
  background:rgba(8,14,11,.72);
  display:flex;align-items:flex-end;justify-content:center;
  padding-bottom:1.25rem;
  opacity:0;transition:opacity .3s var(--ease);
}
.product-card:hover .product-overlay{opacity:1}
.product-overlay-btn{
  background:var(--cream);color:var(--dark);
  font-size:.72rem;font-weight:700;letter-spacing:.04em;
  padding:8px 16px;border-radius:20px;border:none;cursor:pointer;
  text-decoration:none;
  transform:translateY(8px);transition:transform .3s var(--ease),background .2s;
  display:flex;align-items:center;gap:6px;
}
.product-card:hover .product-overlay-btn{transform:translateY(0)}
.product-overlay-btn:hover{background:var(--gold)}
.product-price{font-size:1rem!important;font-weight:700!important;color:var(--gold)!important}

/* ============================================================
   A6 — GALLERY LIGHTBOX
   ============================================================ */
.galerie-grid{cursor:default}
.galerie-grid img{cursor:pointer;transition:transform .4s var(--ease),filter .3s}
.galerie-grid img:hover{transform:scale(1.05);filter:brightness(.8)}
#lightbox{
  position:fixed;inset:0;z-index:10000;
  background:rgba(0,0,0,.96);
  display:none;align-items:center;justify-content:center;flex-direction:column;gap:.75rem;
}
#lightbox.open{display:flex}
@keyframes lb-in{from{opacity:0;transform:scale(.93)}to{opacity:1;transform:scale(1)}}
#lb-img{max-width:90vw;max-height:82vh;object-fit:contain;border-radius:4px;animation:lb-in .3s ease}
#lb-close{
  position:absolute;top:1rem;right:1.5rem;
  background:none;border:none;color:rgba(255,255,255,.65);
  font-size:2rem;cursor:pointer;line-height:1;transition:color .2s;padding:4px;
}
#lb-close:hover{color:var(--gold)}
#lb-prev,#lb-next{
  position:absolute;top:50%;transform:translateY(-50%);
  background:rgba(255,255,255,.07);border:1px solid rgba(255,255,255,.15);
  color:rgba(255,255,255,.75);
  width:48px;height:48px;border-radius:50%;
  display:flex;align-items:center;justify-content:center;
  cursor:pointer;transition:background .2s,color .2s,border-color .2s;font-size:1.3rem;
}
#lb-prev{left:1.5rem}#lb-next{right:1.5rem}
#lb-prev:hover,#lb-next:hover{background:var(--gold);color:var(--dark);border-color:var(--gold)}
#lb-dots{display:flex;gap:8px;margin-top:.25rem}
#lb-dots button{width:8px;height:8px;border-radius:50%;background:rgba(255,255,255,.22);cursor:pointer;transition:background .2s;border:none;padding:0;flex-shrink:0}
#lb-dots button.lbd-active{background:var(--gold)}
#lb-caption{font-size:.75rem;color:rgba(255,255,255,.4);margin-top:-.25rem;letter-spacing:.04em}
@media(max-width:600px){#lb-prev{left:.5rem}#lb-next{right:.5rem}}

/* ============================================================
   A7 — SCROLL ANIMATIONS
   ============================================================ */
@media(prefers-reduced-motion:no-preference){
  .fade-up,.fade-left,.fade-right,.fade-scale{
    opacity:0;transition:opacity .6s var(--ease),transform .6s var(--ease);
  }
  .fade-up{transform:translateY(28px)}
  .fade-left{transform:translateX(-28px)}
  .fade-right{transform:translateX(28px)}
  .fade-scale{transform:scale(.96)}
  .fade-up.in,.fade-left.in,.fade-right.in,.fade-scale.in{opacity:1;transform:none}
}

/* A10 — CONTACT QUICK ACTIONS */
.contact-quick-btns{
  display:flex;gap:.75rem;flex-wrap:wrap;margin-top:1.5rem;margin-bottom:1.5rem;
}
.cqb{
  display:inline-flex;align-items:center;gap:.5rem;
  padding:9px 18px;border-radius:3px;font-size:.8rem;font-weight:600;
  letter-spacing:.03em;text-decoration:none;transition:all var(--t);
}
.cqb-call{background:rgba(201,162,39,.12);color:var(--gold);border:1px solid rgba(201,162,39,.3)}
.cqb-call:hover{background:var(--gold);color:var(--dark)}
.cqb-wa{background:rgba(201,162,39,.12);color:var(--gold);border:1px solid rgba(201,162,39,.3)}
.cqb-wa:hover{background:var(--gold);color:var(--dark)}
.cqb-route{background:rgba(201,162,39,.08);color:rgba(245,241,232,.7);border:1px solid rgba(201,162,39,.15)}
.cqb-route:hover{background:rgba(201,162,39,.18);color:var(--cream)}
.contact-hours-box{
  background:rgba(201,162,39,.07);border:1px solid rgba(201,162,39,.15);
  border-radius:4px;padding:1rem 1.25rem;margin-bottom:1.5rem;
  font-size:.85rem;color:rgba(245,241,232,.75);line-height:1.8;
}
.contact-hours-box strong{color:var(--gold);font-weight:700}

/* ============================================================
   HOW-TO ORDER SECTION
   ============================================================ */
.howto-section{
  padding:var(--space-10) var(--space-6);
  background:linear-gradient(180deg,var(--dark) 0%,#142412 100%);
  position:relative;
}
.howto-container{
  max-width:1100px;
  margin:0 auto;
  text-align:center;
}
.howto-container .section-header{margin-bottom:var(--space-5)}
.howto-h2{
  font-family:var(--fn-head);
  font-size:clamp(1.8rem,4vw,2.6rem);
  color:var(--cream);
  margin:var(--space-2) 0 var(--space-6);
}
.howto-steps{
  list-style:none;
  padding:0;
  margin:0 0 var(--space-6);
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:var(--space-5);
}
.howto-step{
  background:rgba(245,240,232,.04);
  border:1px solid rgba(201,162,39,.15);
  border-radius:4px;
  padding:var(--space-5);
  text-align:center;
  transition:all .3s ease;
}
.howto-step:hover{
  background:rgba(245,240,232,.06);
  border-color:rgba(201,162,39,.35);
  transform:translateY(-3px);
}
.howto-num{
  width:44px;height:44px;
  border-radius:50%;
  background:var(--gold);
  color:var(--dark);
  font-family:var(--fn-head);
  font-size:1.3rem;font-weight:700;
  display:flex;align-items:center;justify-content:center;
  margin:0 auto var(--space-3);
}
.howto-step h3{
  font-family:var(--fn-head);
  font-size:1.15rem;
  color:var(--gold);
  margin:0 0 var(--space-2);
}
.howto-step p{
  font-size:.92rem;
  color:rgba(245,240,232,.78);
  line-height:1.6;
  margin:0;
}
.howto-hint{
  font-size:.88rem;
  color:rgba(245,240,232,.62);
  margin:0 auto var(--space-5);
  max-width:600px;
}
.howto-cta{margin-top:var(--space-4)}
@media(max-width:768px){
  .howto-steps{grid-template-columns:1fr;gap:var(--space-3)}
}
@media(prefers-reduced-motion:reduce){
  .howto-step{transition:none}
  .howto-step:hover{transform:none}
}

/* ============================================================
   FAQ SECTION
   ============================================================ */
.faq-section{
  padding:var(--space-10) var(--space-6);
  background:var(--dark);
}
.faq-container{
  max-width:800px;
  margin:0 auto;
}
.faq-container .section-header{text-align:center;margin-bottom:var(--space-5)}
.faq-h2{
  font-family:var(--fn-head);
  font-size:clamp(1.6rem,3.5vw,2.2rem);
  color:var(--cream);
  text-align:center;
  margin:var(--space-2) 0 var(--space-6);
}
.faq-list{
  display:flex;flex-direction:column;
  gap:var(--space-2);
}
.faq-item{
  background:rgba(245,240,232,.04);
  border:1px solid rgba(201,162,39,.15);
  border-radius:3px;
  overflow:hidden;
  transition:border-color .2s ease;
}
.faq-item[open]{
  border-color:rgba(201,162,39,.4);
  background:rgba(245,240,232,.06);
}
.faq-item summary{
  padding:var(--space-3) var(--space-4);
  cursor:pointer;
  font-family:var(--fn-head);
  font-size:1rem;
  color:var(--cream);
  list-style:none;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:1rem;
}
.faq-item summary::-webkit-details-marker{display:none}
.faq-item summary::after{
  content:'+';
  color:var(--gold);
  font-size:1.5rem;font-weight:300;
  transition:transform .2s ease;
  line-height:1;
  flex-shrink:0;
}
.faq-item[open] summary::after{content:'−'}
.faq-item summary:hover{color:var(--gold)}
.faq-answer{
  padding:0 var(--space-4) var(--space-4);
  color:rgba(245,240,232,.78);
  font-size:.95rem;
  line-height:1.7;
}
.faq-answer a{
  color:var(--gold);
  text-decoration:underline;
  text-underline-offset:3px;
}
[lang="ar"] .faq-item summary{flex-direction:row-reverse}
@media(prefers-reduced-motion:reduce){
  .faq-item{transition:none}
  .faq-item summary::after{transition:none}
}

/* === Block 2 === */
@media(max-width:900px){
      #smartcheckout{padding:3rem 1.25rem !important;}
      #sc-layout{grid-template-columns:1fr !important;}
    }
    .sc-row{display:flex; align-items:center; gap:.75rem; padding:.75rem 0; border-bottom:1px solid #F3F4F6;}
    .sc-row:last-child{border-bottom:none;}
    .sc-row-info{flex:1; min-width:0;}
    .sc-row-name{font-weight:600; color:var(--dark); font-size:.9rem; line-height:1.2;}
    .sc-row-price{font-size:.75rem; color:var(--muted); margin-top:2px;}
    .sc-qty{display:flex; align-items:center; gap:.5rem;}
    .sc-btn{width:28px; height:28px; border-radius:6px; background:var(--cream); color:var(--dark); border:1px solid #E5E7EB; font-weight:700; font-size:1rem; cursor:pointer; display:flex; align-items:center; justify-content:center; transition:background .2s;}
    .sc-btn:hover{background:var(--emerald); color:#fff; border-color:var(--emerald);}
    .sc-val{min-width:24px; text-align:center; font-weight:700; color:var(--dark);}
    .sc-row.active{background:rgba(27,67,50,.04); border-radius:8px; padding-left:.5rem; padding-right:.5rem;}

/* === Block 3 === */
#waEliteBtnInner { transition: transform 0.3s ease, background-color 0.3s ease; }
    #waEliteBtnInner:hover { transform: scale(1.1); background-color: var(--emerald) !important; }
    #waEliteBtnInner::after {
      content: ''; position: absolute; inset: 0; border-radius: 50%;
      border: 2px solid var(--gold); animation: elitePingAnim 2s cubic-bezier(0, 0, 0.2, 1) infinite;
    }
    @keyframes elitePingAnim { 75%, 100% { transform: scale(1.6); opacity: 0; } }