/* ═══════════════════════════════════════════════════════════════════════
   ETHIOPIAN BREW CO. — Master Stylesheet
   Aligned with Ethiopia Coffee packaging system (white & black variants)
   Cream-dominant, refined, packaging-DNA throughout
   ═══════════════════════════════════════════════════════════════════════ */

/* ───────── 1. TOKENS ───────── */
:root {
  /* Light/cream system — primary palette (white packaging) */
  --c-paper:       #F4EEDB;
  --c-cream:       #EEE7D2;
  --c-linen:       #E6DDC2;
  --c-sand:        #D8CCAE;
  --c-stone:       #8A7E6C;

  /* Dark system — accent only (espresso-tinted, never pure black) */
  --c-onyx:        #1C1814;
  --c-charcoal:    #261F18;
  --c-espresso:    #2E261D;

  /* Kraft (paper bag) */
  --c-kraft:       #B89968;
  --c-kraft-deep:  #8A6F47;

  /* Gold — packaging foil (WCAG 2.2 reviewed)
     --c-gold       : decorative use only on light bg (lines, borders, large display headings on dark bg)
     --c-gold-light : ONLY on dark backgrounds (--c-onyx, --c-espresso)
     --c-gold-deep  : safe for body-size text on cream/paper backgrounds (≥4.5:1 against --c-paper)
     IMPORTANT: never use --c-gold or --c-gold-light for small text on light background. */
  --c-gold:        #B88924;
  --c-gold-light:  #D4AA4F;
  --c-gold-deep:   #75551B;

  /* Text on light (WCAG 2.2 reviewed)
     --c-text       : 13.24:1 against --c-paper (AAA)
     --c-text-mute  : 6.56:1  against --c-paper (AA Large, AAA Small)
     --c-text-soft  : 5.2:1   against --c-paper (AA Small) — micro labels only */
  --c-text:        #2A241B;
  --c-text-mute:   #5C5249;
  --c-text-soft:   #6F6254;

  /* Text on dark */
  --c-text-light:  #EEE7D2;
  --c-text-light-mute: #B5AC9F;

  /* Functional */
  --c-line:        rgba(42, 36, 27, 0.12);
  --c-line-soft:   rgba(42, 36, 27, 0.06);
  --c-line-dark:   rgba(238, 231, 210, 0.12);
  --c-shadow:      rgba(42, 36, 27, 0.04);

  /* Typography */
  --f-display:     'Playfair Display', 'Georgia', serif;
  --f-accent:      'Cormorant Garamond', 'Georgia', serif;
  --f-script:      'Sacramento', 'Pinyon Script', cursive;
  --f-body:        'Outfit', 'Helvetica Neue', sans-serif;

  /* Scale */
  --t-display:     clamp(3.4rem, 8.5vw, 7rem);
  --t-h1:          clamp(2.4rem, 5.5vw, 4.4rem);
  --t-h2:          clamp(1.9rem, 4vw, 3.2rem);
  --t-h3:          clamp(1.4rem, 2.8vw, 2rem);
  --t-h4:          clamp(1.1rem, 1.8vw, 1.35rem);
  --t-body:        clamp(0.96rem, 1.1vw, 1.05rem);
  --t-small:       0.86rem;
  --t-caption:     0.72rem;
  --t-nav:         0.78rem;

  /* Spacing */
  --s-1: 0.5rem;  --s-2: 1rem;  --s-3: 1.5rem;
  --s-4: 2.5rem; --s-5: 4rem;  --s-6: 6.5rem; --s-7: 10rem;

  /* Layout */
  --max:           1320px;
  --max-narrow:    820px;
  --max-wide:      1480px;
  --hdr:           116px;

  /* Motion */
  --e:             cubic-bezier(0.22, 0.61, 0.36, 1);
  --e-out:         cubic-bezier(0.16, 1, 0.3, 1);
  --d1: 0.22s; --d2: 0.45s; --d3: 0.8s;
}

/* ───────── 2. RESET ───────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; text-rendering: optimizeLegibility; }

body {
  font-family: var(--f-body);
  font-weight: 300;
  color: var(--c-text);
  background: var(--c-paper);
  line-height: 1.7;
  font-size: var(--t-body);
  letter-spacing: 0.01em;
  overflow-x: hidden;
  min-height: 100vh;
}

a { text-decoration: none; color: inherit; }
img, svg, iframe { max-width: 100%; display: block; }
ul { list-style: none; }
button, input, textarea, select {
  font-family: inherit; font-size: inherit; color: inherit;
  background: none; border: none;
}
button { cursor: pointer; }

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

/* ───────── 3. LAYOUT UTILITIES ───────── */
.container { max-width: var(--max); margin: 0 auto; padding: 0 var(--s-4); }
.container-narrow { max-width: var(--max-narrow); margin: 0 auto; padding: 0 var(--s-4); }
.container-wide { max-width: var(--max-wide); margin: 0 auto; padding: 0 var(--s-4); }

/* ───────── 4. TYPOGRAPHY HELPERS ───────── */
.overline {
  display: inline-block;
  font-family: var(--f-body);
  font-size: var(--t-caption);
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--c-gold-deep);
}
.overline.on-dark { color: var(--c-gold); }

.italic {
  font-family: var(--f-accent);
  font-style: italic;
  font-weight: 400;
}

.eyebrow {
  font-family: var(--f-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.4em;
  text-transform: uppercase;
}

/* ───────── 5. ORNAMENTS ───────── */
.divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: var(--s-3) auto;
}
.divider .line {
  width: 56px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--c-gold), transparent);
}
.divider .leaf {
  width: 18px; height: 18px;
  color: var(--c-gold);
  flex-shrink: 0;
}
.divider.short .line { width: 32px; }
.divider.wide .line { width: 120px; flex: 0 0 auto; }

/* ───────── 6. REVEAL ANIMATION ───────── */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity var(--d3) var(--e-out), transform var(--d3) var(--e-out);
  will-change: opacity, transform;
}
.reveal.in { opacity: 1; transform: translateY(0); }
.d1 { transition-delay: 0.08s; }
.d2 { transition-delay: 0.16s; }
.d3 { transition-delay: 0.24s; }
.d4 { transition-delay: 0.32s; }
.d5 { transition-delay: 0.40s; }

/* ───────── 7. BUTTONS ───────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 36px;
  font-family: var(--f-body);
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border-radius: 0;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all var(--d2) var(--e);
  white-space: nowrap;
  border: 1px solid transparent;
}

.btn-primary {
  color: var(--c-paper);
  background: var(--c-onyx);
  border-color: var(--c-onyx);
}
.btn-primary::before {
  content: '';
  position: absolute; inset: 0;
  background: var(--c-espresso);
  transform: translateX(-101%);
  transition: transform var(--d3) var(--e-out);
}
[dir="rtl"] .btn-primary::before { transform: translateX(101%); }
.btn-primary > * { position: relative; z-index: 1; }
.btn-primary:hover::before { transform: translateX(0); }
.btn-primary:hover { box-shadow: 0 14px 40px rgba(14, 14, 13, 0.20); }

.btn-gold {
  color: var(--c-onyx);
  background: var(--c-gold);
  border-color: var(--c-gold);
}
.btn-gold::before {
  content: '';
  position: absolute; inset: 0;
  background: var(--c-gold-light);
  transform: translateX(-101%);
  transition: transform var(--d3) var(--e-out);
}
[dir="rtl"] .btn-gold::before { transform: translateX(101%); }
.btn-gold > * { position: relative; z-index: 1; }
.btn-gold:hover::before { transform: translateX(0); }
.btn-gold:hover { box-shadow: 0 14px 40px rgba(196, 151, 59, 0.30); }

.btn-outline {
  color: var(--c-text);
  background: transparent;
  border-color: rgba(42, 36, 27, 0.35);
}
.btn-outline:hover {
  background: var(--c-onyx);
  color: var(--c-paper);
  border-color: var(--c-onyx);
}
.btn-outline.on-dark {
  color: var(--c-paper);
  border-color: rgba(245, 240, 232, 0.35);
}
.btn-outline.on-dark:hover {
  background: var(--c-gold);
  color: var(--c-onyx);
  border-color: var(--c-gold);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  font-family: var(--f-body);
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-gold-deep);
  background: none;
  position: relative;
  transition: color var(--d1) var(--e);
}
.btn-ghost.on-dark { color: var(--c-gold); }
.btn-ghost::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0; right: 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--d2) var(--e-out);
}
[dir="rtl"] .btn-ghost::after { transform-origin: right; }
.btn-ghost:hover::after { transform: scaleX(1); }
.btn-ghost:hover { color: var(--c-onyx); }
.btn-ghost.on-dark:hover { color: var(--c-gold-light); }
.btn-ghost .arrow {
  display: inline-block;
  transition: transform var(--d1) var(--e);
}
.btn-ghost:hover .arrow { transform: translateX(5px); }
[dir="rtl"] .btn-ghost:hover .arrow { transform: translateX(-5px); }
[dir="rtl"] .btn-ghost .arrow { transform: scaleX(-1); }

/* ───────── 8. HEADER ───────── */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--hdr);
  display: flex; align-items: center;
  background: rgba(250, 246, 238, 0.85);
  backdrop-filter: blur(24px) saturate(120%);
  -webkit-backdrop-filter: blur(24px) saturate(120%);
  border-bottom: 1px solid var(--c-line-soft);
  transition: all var(--d2) var(--e);
}
.site-header.scrolled {
  background: rgba(250, 246, 238, 0.96);
  border-bottom-color: var(--c-line);
}

.header-inner {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--s-4);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-3);
}

.header-logo {
  display: flex; align-items: center; gap: 14px;
  flex-shrink: 0;
}
.header-logo img {
  width: 92px; height: 92px;
  border-radius: 50%;
  box-shadow: 0 2px 10px rgba(42, 36, 27, 0.10);
}
@media (max-width: 1100px) {
  .header-logo img { width: 76px; height: 76px; }
}
@media (max-width: 760px) {
  .header-logo img { width: 62px; height: 62px; }
}
.header-logo-text {
  font-family: var(--f-display);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--c-text);
  white-space: nowrap;
}

.nav-main { display: flex; gap: var(--s-4); }
.nav-main a {
  position: relative;
  font-family: var(--f-body);
  font-size: var(--t-nav);
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-text-mute);
  transition: color var(--d1) var(--e);
  padding: 4px 0;
}
.nav-main a:hover, .nav-main a.active { color: var(--c-onyx); }
.nav-main a.active::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 1px;
  background: var(--c-gold);
}

.nav-right { display: flex; align-items: center; gap: var(--s-3); flex-shrink: 0; }
.nav-lang { display: flex; align-items: center; gap: 2px; }
.nav-lang a {
  font-family: var(--f-body);
  font-size: var(--t-caption);
  font-weight: 500;
  letter-spacing: 0.16em;
  color: var(--c-text-mute);
  padding: 4px 8px;
  transition: color var(--d1) var(--e);
}
.nav-lang a:hover, .nav-lang a.active { color: var(--c-gold-deep); }
.nav-lang .sep {
  color: var(--c-text-soft);
  opacity: 0.4;
  font-size: 0.7rem;
}

.hamburger {
  display: none;
  width: 32px; height: 32px;
  position: relative;
  cursor: pointer;
  padding: 0;
}
.hamburger span {
  position: absolute;
  left: 4px; right: 4px;
  height: 1.5px;
  background: var(--c-text);
  transition: all var(--d2) var(--e);
}
.hamburger span:nth-child(1) { top: 10px; }
.hamburger span:nth-child(2) { top: 16px; }
.hamburger span:nth-child(3) { top: 22px; }
.hamburger.open span:nth-child(1) { top: 16px; transform: rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { top: 16px; transform: rotate(-45deg); }

.mobile-menu {
  display: none;
  position: fixed;
  top: var(--hdr); left: 0; right: 0; bottom: 0;
  background: var(--c-paper);
  padding: var(--s-5) var(--s-4);
  z-index: 99;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-12px);
  transition: opacity var(--d2) var(--e), transform var(--d2) var(--e);
  overflow-y: auto;
}
.mobile-menu.open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.mobile-menu .nav-m {
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
}
.mobile-menu .nav-m a {
  font-family: var(--f-display);
  font-size: var(--t-h3);
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--c-text);
  padding: var(--s-2) 0;
  border-bottom: 1px solid var(--c-line);
}
.mobile-menu .lang-m {
  display: flex;
  gap: var(--s-3);
  margin-top: var(--s-5);
  padding-top: var(--s-4);
  border-top: 1px solid var(--c-line);
}
.mobile-menu .lang-m a {
  font-family: var(--f-body);
  font-size: var(--t-caption);
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-text-mute);
}
.mobile-menu .lang-m a.active { color: var(--c-gold-deep); }

/* ───────── 9. SECTIONS BASE ───────── */
.section {
  padding: var(--s-7) 0;
  position: relative;
}
.section.compact { padding: var(--s-6) 0; }
.section.dark {
  background: var(--c-onyx);
  color: var(--c-text-light);
}
.section.kraft { background: linear-gradient(180deg, var(--c-paper) 0%, var(--c-linen) 100%); }
.section.linen { background: var(--c-linen); }

.section-head {
  text-align: center;
  margin-bottom: var(--s-5);
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.section-head h2 {
  font-family: var(--f-display);
  font-size: var(--t-h1);
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.05;
  color: var(--c-text);
  margin-top: var(--s-3);
  text-transform: uppercase;
}
.section.dark .section-head h2 { color: var(--c-text-light); }
.section-head .lead {
  font-family: var(--f-accent);
  font-style: italic;
  font-weight: 400;
  font-size: var(--t-h4);
  color: var(--c-text-mute);
  margin-top: var(--s-3);
}
.section.dark .section-head .lead { color: var(--c-text-light-mute); }

/* ───────── 10. HERO (HOMEPAGE) ───────── */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: calc(var(--hdr) + var(--s-6)) var(--s-4) var(--s-6);
  text-align: center;
  background: var(--c-paper);
}

.hero-bg {
  position: absolute; inset: 0;
  background:
    /* Üstte krem yumuşatma katmanı - üstten dipte silinir */
    linear-gradient(180deg,
      rgba(244, 238, 219, 0.92) 0%,
      rgba(244, 238, 219, 0.78) 35%,
      rgba(244, 238, 219, 0.82) 65%,
      rgba(238, 231, 210, 0.88) 100%),
    /* Gold ışıltı vurguları */
    radial-gradient(ellipse at 50% 100%, rgba(196, 151, 59, 0.10) 0%, transparent 55%),
    radial-gradient(ellipse at 0% 0%, rgba(184, 153, 104, 0.07) 0%, transparent 50%),
    /* Dış cephe fotoğrafı arka planda */
    url('../assets/photos/exterior.jpg');
  background-size: cover, cover, cover, cover;
  background-position: center, center, center, center 30%;
  background-repeat: no-repeat;
  z-index: 0;
}

/* Çok yumuşak vinyet — kenarlarda krem'e geçiş */
.hero::after {
  content: '';
  position: absolute; inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(ellipse at center, transparent 30%, rgba(244, 238, 219, 0.30) 80%, rgba(244, 238, 219, 0.55) 100%);
}

.hero-grain {
  position: absolute; inset: 0;
  opacity: 0.025;
  z-index: 1;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  mix-blend-mode: multiply;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 960px;
}

.hero-overline {
  font-family: var(--f-body);
  font-size: var(--t-caption);
  font-weight: 500;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--c-gold-deep);
  margin-bottom: var(--s-3);
}

.hero-title {
  font-family: var(--f-display);
  font-size: var(--t-display);
  font-weight: 900;
  letter-spacing: 0.01em;
  line-height: 0.95;
  color: var(--c-text);
  margin-bottom: var(--s-2);
  text-transform: uppercase;
}
.hero-title .line { display: block; }

.hero-sub {
  font-family: var(--f-accent);
  font-size: clamp(1.15rem, 2vw, 1.55rem);
  font-style: italic;
  font-weight: 400;
  color: var(--c-text-mute);
  margin-bottom: var(--s-2);
}

.hero-tagline {
  font-family: var(--f-body);
  font-size: var(--t-caption);
  font-weight: 500;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--c-gold-deep);
  margin-bottom: var(--s-5);
}

.hero-buttons {
  display: flex;
  gap: var(--s-3);
  justify-content: center;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  z-index: 2;
}
.hero-scroll span {
  font-family: var(--f-body);
  font-size: var(--t-caption);
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--c-text-soft);
}
.hero-scroll .line {
  width: 1px; height: 44px;
  background: linear-gradient(to bottom, var(--c-gold) 0%, transparent 100%);
  animation: scrollPulse 2.4s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.55); transform-origin: top; }
  50%      { opacity: 1; transform: scaleY(1); }
}

/* ───────── 11. PAGE HERO (sub pages) ───────── */
.page-hero {
  position: relative;
  padding: calc(var(--hdr) + var(--s-6)) var(--s-4) var(--s-6);
  text-align: center;
  background: var(--c-paper);
  overflow: hidden;
}
.page-hero .hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 50% 100%, rgba(196, 151, 59, 0.06) 0%, transparent 60%),
    linear-gradient(180deg, var(--c-paper) 0%, var(--c-cream) 100%);
  z-index: 0;
}
.page-hero-content {
  position: relative; z-index: 2;
  max-width: 820px; margin: 0 auto;
}
.page-hero h1 {
  font-family: var(--f-display);
  font-size: var(--t-h1);
  font-weight: 900;
  letter-spacing: 0.02em;
  line-height: 1.02;
  color: var(--c-text);
  text-transform: uppercase;
  margin: var(--s-3) 0;
}
.page-hero .sub {
  font-family: var(--f-accent);
  font-style: italic;
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  color: var(--c-text-mute);
  margin-top: var(--s-2);
}

/* ───────── 12. CARDS ───────── */
/* Photo placeholder block — premium kraft frame, awaits real photo */
.photo-frame {
  position: relative;
  background: var(--c-cream);
  border: 1px solid var(--c-line);
  overflow: hidden;
  aspect-ratio: 4/5;
}
.photo-frame.wide { aspect-ratio: 4/3; }
.photo-frame.square { aspect-ratio: 1/1; }
.photo-frame.tall { aspect-ratio: 3/4; }
.photo-frame img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.photo-frame .placeholder {
  position: absolute; inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 14px;
  color: var(--c-text-soft);
  background:
    linear-gradient(135deg, var(--c-cream) 0%, var(--c-linen) 100%);
}
.photo-frame .placeholder .ph-icon {
  width: 40px; height: 40px;
  color: var(--c-gold);
  opacity: 0.6;
}
.photo-frame .placeholder .ph-label {
  font-family: var(--f-body);
  font-size: var(--t-caption);
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--c-text-soft);
}

/* Inner frame border ornament — paket frame'i gibi */
.photo-frame .inner-line {
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(196, 151, 59, 0.25);
  pointer-events: none;
  transition: inset var(--d3) var(--e);
}
.photo-frame:hover .inner-line { inset: 10px; }

/* Experience cards */
.exp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-3);
}
.exp-card {
  background: var(--c-paper);
  border: 1px solid var(--c-line);
  transition: all var(--d2) var(--e);
  text-decoration: none;
  color: inherit;
  display: block;
}
.section.dark .exp-card {
  background: var(--c-charcoal);
  border-color: rgba(196, 151, 59, 0.10);
}
.exp-card:hover {
  transform: translateY(-4px);
  border-color: var(--c-gold);
  box-shadow: 0 20px 60px rgba(42, 36, 27, 0.10);
}
.section.dark .exp-card:hover {
  border-color: rgba(196, 151, 59, 0.40);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}
.exp-card .ph { aspect-ratio: 4/5; }
.exp-card .info {
  padding: var(--s-3);
}
.exp-card .num {
  font-family: var(--f-display);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.32em;
  color: var(--c-gold-deep);
  margin-bottom: var(--s-2);
}
.section.dark .exp-card .num { color: var(--c-gold); }
.exp-card h3 {
  font-family: var(--f-display);
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--c-text);
  margin-bottom: var(--s-1);
  text-transform: uppercase;
  line-height: 1.1;
}
.section.dark .exp-card h3 { color: var(--c-text-light); }
.exp-card .desc {
  font-family: var(--f-body);
  font-size: var(--t-small);
  color: var(--c-text-mute);
  line-height: 1.6;
}
.section.dark .exp-card .desc { color: var(--c-text-light-mute); }

/* Product cards */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s-3);
}
.product-card {
  background: var(--c-paper);
  border: 1px solid var(--c-line);
  cursor: pointer;
  transition: all var(--d2) var(--e);
  display: block;
  text-decoration: none;
  color: inherit;
}
.section.dark .product-card {
  background: var(--c-charcoal);
  border-color: rgba(196, 151, 59, 0.10);
}
.product-card:hover {
  transform: translateY(-5px);
  border-color: var(--c-gold);
  box-shadow: 0 18px 50px rgba(42, 36, 27, 0.10);
}
.product-card .ph {
  aspect-ratio: 1/1;
  position: relative;
}
.coming-badge {
  position: absolute;
  top: 14px;
  inset-inline-end: 14px;
  padding: 5px 12px;
  background: rgba(250, 246, 238, 0.95);
  backdrop-filter: blur(10px);
  border: 1px solid var(--c-gold);
  font-family: var(--f-body);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-gold-deep);
  z-index: 2;
}
.section.dark .coming-badge {
  background: rgba(14, 14, 13, 0.92);
  color: var(--c-gold);
}
.product-card .info { padding: var(--s-3); }
.product-card .cat {
  font-family: var(--f-body);
  font-size: var(--t-caption);
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-gold-deep);
  margin-bottom: 4px;
}
.section.dark .product-card .cat { color: var(--c-gold); }
.product-card .name {
  font-family: var(--f-display);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--c-text);
  line-height: 1.25;
  margin-bottom: 4px;
}
.section.dark .product-card .name { color: var(--c-text-light); }
.product-card .note {
  font-family: var(--f-accent);
  font-style: italic;
  font-size: var(--t-small);
  color: var(--c-text-mute);
  line-height: 1.45;
}
.section.dark .product-card .note { color: var(--c-text-light-mute); }

/* ───────── 13. LOCATION ───────── */
.location-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: var(--s-5);
  align-items: stretch;
}

.location-map {
  position: relative;
  min-height: 480px;
  border: 1px solid var(--c-line);
  overflow: hidden;
  background: var(--c-cream);
}
.location-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(8%) contrast(1.02);
}

.location-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.location-info h2 {
  font-family: var(--f-display);
  font-size: var(--t-h1);
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.02;
  color: var(--c-text);
  margin: var(--s-2) 0 var(--s-3);
  text-transform: uppercase;
}
.section.dark .location-info h2 { color: var(--c-text-light); }
.location-info .lead {
  font-family: var(--f-accent);
  font-style: italic;
  font-size: var(--t-h4);
  color: var(--c-text-mute);
  margin-bottom: var(--s-4);
}
.section.dark .location-info .lead { color: var(--c-text-light-mute); }

.loc-row {
  display: flex;
  gap: var(--s-3);
  padding: var(--s-2) 0;
  border-bottom: 1px solid var(--c-line);
}
.section.dark .loc-row { border-bottom-color: var(--c-line-dark); }
.loc-row:last-of-type { border-bottom: none; }
.loc-row .lbl {
  flex: 0 0 110px;
  font-family: var(--f-body);
  font-size: var(--t-caption);
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-gold-deep);
  padding-top: 4px;
}
.section.dark .loc-row .lbl { color: var(--c-gold); }
.loc-row .val {
  font-family: var(--f-body);
  font-size: var(--t-body);
  color: var(--c-text);
  line-height: 1.5;
}
.section.dark .loc-row .val { color: var(--c-text-light); }
.loc-row .val a {
  color: inherit;
  border-bottom: 1px solid var(--c-gold-deep);
  transition: color var(--d1) var(--e);
}
.loc-row .val a:hover { color: var(--c-gold-deep); }
.section.dark .loc-row .val a { border-bottom-color: var(--c-gold); }
.section.dark .loc-row .val a:hover { color: var(--c-gold); }

.loc-actions {
  display: flex;
  gap: var(--s-2);
  flex-wrap: wrap;
  margin-top: var(--s-4);
}

/* ───────── 14. STORY ───────── */
.story-inner {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}
.story-inner h2 {
  font-family: var(--f-display);
  font-size: var(--t-h1);
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.05;
  color: var(--c-text);
  margin-top: var(--s-3);
  margin-bottom: var(--s-3);
  text-transform: uppercase;
}
.section.dark .story-inner h2 { color: var(--c-text-light); }
.story-quote {
  font-family: var(--f-accent);
  font-style: italic;
  font-size: clamp(1.2rem, 2.4vw, 1.6rem);
  line-height: 1.55;
  color: var(--c-text-mute);
  margin: var(--s-4) 0;
}
.section.dark .story-quote { color: var(--c-text-light-mute); }

/* ───────── 15. CONTACT BAND ───────── */
.contact-band {
  background: var(--c-onyx);
  color: var(--c-text-light);
  padding: var(--s-5) 0;
  border-top: 1px solid var(--c-line-dark);
  border-bottom: 1px solid var(--c-line-dark);
}
.contact-band .row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-4);
  flex-wrap: wrap;
}
.contact-band .text h3 {
  font-family: var(--f-display);
  font-size: var(--t-h3);
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--c-text-light);
  text-transform: uppercase;
  margin: 4px 0;
}
.contact-band .text p {
  font-family: var(--f-accent);
  font-style: italic;
  color: var(--c-text-light-mute);
}
.socials {
  display: flex;
  gap: var(--s-2);
  flex-wrap: wrap;
}
.socials a {
  display: inline-flex;
  align-items: center;
  padding: 12px 20px;
  font-family: var(--f-body);
  font-size: var(--t-caption);
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-text-light-mute);
  border: 1px solid rgba(245, 240, 232, 0.18);
  transition: all var(--d1) var(--e);
}
.socials a:hover {
  color: var(--c-text-light);
  border-color: var(--c-gold);
  background: rgba(196, 151, 59, 0.05);
}

/* ───────── 16. FORM ───────── */
.form-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: var(--s-5);
}
.form-field {
  margin-bottom: var(--s-3);
}
.form-field label {
  display: block;
  font-family: var(--f-body);
  font-size: var(--t-caption);
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-gold-deep);
  margin-bottom: 10px;
}
.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  padding: 14px 16px;
  font-family: var(--f-body);
  font-size: var(--t-body);
  font-weight: 400;
  color: var(--c-text);
  background: var(--c-paper);
  border: 1px solid var(--c-line);
  border-radius: 0;
  transition: border-color var(--d1) var(--e);
}
.form-field textarea {
  min-height: 140px;
  resize: vertical;
}
.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  outline: none;
  border-color: var(--c-gold);
}

/* ───────── 17. FOOTER ───────── */
.site-footer {
  background: var(--c-onyx);
  color: var(--c-text-light-mute);
  padding: var(--s-5) 0 var(--s-3);
}

.footer-ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: var(--s-5);
}
.footer-ornament .line {
  flex: 1;
  max-width: 140px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--c-gold), transparent);
}
.footer-ornament .leaf {
  width: 22px; height: 22px;
  color: var(--c-gold);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1fr;
  gap: var(--s-5);
  margin-bottom: var(--s-5);
}

.footer-brand .name {
  font-family: var(--f-display);
  font-size: var(--t-h4);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-text-light);
  margin-bottom: 6px;
}
.footer-brand .tagline {
  font-family: var(--f-body);
  font-size: var(--t-caption);
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--c-gold);
  margin-bottom: var(--s-3);
}
.footer-brand .desc {
  font-family: var(--f-accent);
  font-style: italic;
  color: var(--c-text-light-mute);
  font-size: var(--t-small);
  line-height: 1.65;
  max-width: 340px;
}

.footer-col h4 {
  font-family: var(--f-body);
  font-size: var(--t-caption);
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-gold);
  margin-bottom: var(--s-3);
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  font-family: var(--f-body);
  font-size: var(--t-small);
  font-weight: 300;
  color: var(--c-text-light-mute);
  transition: color var(--d1) var(--e);
}
.footer-col ul li a:hover { color: var(--c-text-light); }

.footer-bottom {
  padding-top: var(--s-3);
  border-top: 1px solid var(--c-line-dark);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--s-1);
}
.footer-copy {
  font-family: var(--f-body);
  font-size: var(--t-caption);
  letter-spacing: 0.1em;
  color: var(--c-text-soft);
}
.footer-email a {
  font-family: var(--f-body);
  font-size: var(--t-caption);
  letter-spacing: 0.15em;
  color: var(--c-gold);
  transition: color var(--d1) var(--e);
}
.footer-email a:hover { color: var(--c-gold-light); }

/* ───────── 18. MOBILE FLOATING BAR ───────── */
.mobile-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 90;
  background: rgba(14, 14, 13, 0.96);
  backdrop-filter: blur(20px);
  border-top: 1px solid rgba(196, 151, 59, 0.20);
  padding: 12px var(--s-3);
}
.mobile-bar a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px;
  width: 100%;
  background: var(--c-gold);
  color: var(--c-onyx);
  font-family: var(--f-body);
  font-size: var(--t-caption);
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  transition: background var(--d1) var(--e);
}
.mobile-bar a:hover { background: var(--c-gold-light); }

/* ───────── 19. INTRO STRIPS (used on subpages) ───────── */
.intro-strip {
  padding: var(--s-6) 0;
  background: var(--c-paper);
  text-align: center;
}
.intro-strip .text {
  max-width: 740px;
  margin: 0 auto;
  font-family: var(--f-accent);
  font-style: italic;
  font-size: clamp(1.05rem, 1.8vw, 1.35rem);
  line-height: 1.65;
  color: var(--c-text-mute);
}

/* ───────── 20. WHOLESALE / COMING SOON BLOCK ───────── */
.coming-soon-block {
  text-align: center;
  padding: var(--s-7) 0;
  background: var(--c-paper);
}
.coming-soon-block .badge {
  display: inline-block;
  padding: 12px 32px;
  font-family: var(--f-body);
  font-size: var(--t-caption);
  font-weight: 500;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--c-paper);
  background: var(--c-onyx);
  margin-bottom: var(--s-3);
}
.coming-soon-block h2 {
  font-family: var(--f-display);
  font-size: var(--t-h1);
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--c-text);
  margin-bottom: var(--s-3);
}
.coming-soon-block .quote {
  font-family: var(--f-accent);
  font-style: italic;
  font-size: var(--t-h4);
  color: var(--c-text-mute);
  max-width: 620px;
  margin: 0 auto var(--s-5);
  line-height: 1.6;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-3);
  max-width: 1100px;
  margin: var(--s-5) auto 0;
}
.service-card {
  padding: var(--s-4);
  background: var(--c-paper);
  border: 1px solid var(--c-line);
  text-align: center;
  transition: all var(--d2) var(--e);
}
.service-card:hover {
  border-color: var(--c-gold);
  transform: translateY(-4px);
}
.service-card .icon {
  width: 50px; height: 50px;
  margin: 0 auto var(--s-2);
  color: var(--c-gold);
}
.service-card h3 {
  font-family: var(--f-display);
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: var(--s-2);
  color: var(--c-text);
}
.service-card p {
  font-family: var(--f-accent);
  font-style: italic;
  font-size: var(--t-small);
  color: var(--c-text-mute);
  line-height: 1.6;
}

/* ───────── 21. STORY PAGE BLOCKS ───────── */
.pillar-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--s-5);
  max-width: 1100px;
  margin: 0 auto;
}
.pillar {
  padding: var(--s-5);
  background: var(--c-paper);
  border: 1px solid var(--c-line);
}
.pillar h3 {
  font-family: var(--f-display);
  font-size: var(--t-h3);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin: var(--s-3) 0;
  color: var(--c-text);
}
.pillar p {
  font-family: var(--f-body);
  font-size: var(--t-body);
  color: var(--c-text-mute);
  line-height: 1.7;
}

.origin-list {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-1) var(--s-3);
  justify-content: center;
  margin-top: var(--s-3);
}
.origin-list li {
  font-family: var(--f-display);
  font-size: 1.1rem;
  letter-spacing: 0.1em;
  color: var(--c-text-light);
  position: relative;
  padding: 0 var(--s-2);
}
.origin-list li::after {
  content: '·';
  position: absolute;
  inset-inline-end: -8px;
  top: 0;
  color: var(--c-gold);
}
.origin-list li:last-child::after { display: none; }

/* ───────── 22. SHOP / MENU CATEGORIES ───────── */
.cat-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--s-2);
  margin-bottom: var(--s-5);
  padding-bottom: var(--s-3);
  border-bottom: 1px solid var(--c-line);
}
.cat-tab {
  padding: 10px 22px;
  font-family: var(--f-body);
  font-size: var(--t-caption);
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-text-mute);
  background: transparent;
  border: 1px solid var(--c-line);
  cursor: pointer;
  transition: all var(--d1) var(--e);
}
.cat-tab:hover { color: var(--c-text); border-color: var(--c-text-mute); }
.cat-tab.active {
  color: var(--c-paper);
  background: var(--c-onyx);
  border-color: var(--c-onyx);
}

.shop-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-3);
}

/* ───────── 23. RESPONSIVE ───────── */
@media (max-width: 1100px) {
  .product-grid { grid-template-columns: repeat(3, 1fr); }
  .shop-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .form-grid { grid-template-columns: 1fr; }
}

@media (max-width: 880px) {
  .nav-main, .nav-right { display: none; }
  .hamburger { display: block; }
  .mobile-menu { display: block; }
  .mobile-bar { display: flex; }
  body { padding-bottom: 64px; }

  .hero {
    padding: calc(var(--hdr) + var(--s-5)) var(--s-3) var(--s-5);
  }
  .hero-buttons {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
  }

  .exp-grid { grid-template-columns: 1fr; }
  .exp-card { max-width: 480px; margin: 0 auto; }

  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .shop-grid { grid-template-columns: 1fr; max-width: 380px; margin: 0 auto; }

  .location-grid {
    grid-template-columns: 1fr;
    gap: var(--s-4);
  }
  .location-map { min-height: 380px; }

  .pillar-grid { grid-template-columns: 1fr; }
  .service-grid { grid-template-columns: 1fr; max-width: 440px; margin-left: auto; margin-right: auto; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: var(--s-3); }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .contact-band .row { flex-direction: column; text-align: center; gap: var(--s-3); }

  .cat-tabs { gap: 8px; }
  .cat-tab { padding: 8px 14px; font-size: 0.66rem; }

  .header-logo-text { display: none; }
}

@media (max-width: 560px) {
  :root { --s-7: 5rem; --s-6: 4rem; --s-5: 3rem; }
  .product-grid { grid-template-columns: 1fr; max-width: 380px; margin: 0 auto; }
  .footer-grid { grid-template-columns: 1fr; }
  .container { padding: 0 var(--s-3); }
}

/* ───────── 24. ACCESSIBILITY ───────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  .hero-scroll .line { animation: none; }
}

:focus-visible {
  outline: 2px solid var(--c-gold);
  outline-offset: 3px;
}

/* ───────── 25. RTL ADJUSTMENTS ───────── */
[dir="rtl"] {
  letter-spacing: 0;
}
[dir="rtl"] .hero-title,
[dir="rtl"] .section-head h2,
[dir="rtl"] .page-hero h1,
[dir="rtl"] .location-info h2,
[dir="rtl"] .story-inner h2,
[dir="rtl"] .coming-soon-block h2,
[dir="rtl"] .contact-band .text h3,
[dir="rtl"] .product-card .name,
[dir="rtl"] .exp-card h3,
[dir="rtl"] .pillar h3,
[dir="rtl"] .service-card h3,
[dir="rtl"] .footer-brand .name {
  letter-spacing: 0;
  font-family: 'Tajawal', 'Cairo', system-ui, sans-serif;
}
[dir="rtl"] .hero-sub,
[dir="rtl"] .page-hero .sub,
[dir="rtl"] .section-head .lead,
[dir="rtl"] .location-info .lead,
[dir="rtl"] .story-quote,
[dir="rtl"] .coming-soon-block .quote,
[dir="rtl"] .contact-band .text p,
[dir="rtl"] .footer-brand .desc,
[dir="rtl"] .product-card .note,
[dir="rtl"] .intro-strip .text,
[dir="rtl"] .service-card p {
  font-family: 'Tajawal', 'Cairo', system-ui, sans-serif;
  font-style: normal;
  letter-spacing: 0;
}
[dir="rtl"] .overline,
[dir="rtl"] .eyebrow,
[dir="rtl"] .nav-main a,
[dir="rtl"] .nav-lang a,
[dir="rtl"] .footer-col h4,
[dir="rtl"] .footer-brand .tagline,
[dir="rtl"] .header-logo-text,
[dir="rtl"] .btn,
[dir="rtl"] .btn-ghost,
[dir="rtl"] .coming-badge,
[dir="rtl"] .footer-copy,
[dir="rtl"] .footer-email a,
[dir="rtl"] .product-card .cat,
[dir="rtl"] .exp-card .num,
[dir="rtl"] .loc-row .lbl,
[dir="rtl"] .form-field label,
[dir="rtl"] .cat-tab,
[dir="rtl"] .socials a,
[dir="rtl"] .mobile-bar a,
[dir="rtl"] .hero-tagline,
[dir="rtl"] .hero-overline,
[dir="rtl"] .hero-scroll span,
[dir="rtl"] .coming-soon-block .badge {
  font-family: 'Tajawal', 'Cairo', system-ui, sans-serif;
  letter-spacing: 0.08em;
}
[dir="rtl"] .nav-main a.active::after { left: auto; right: 0; }
[dir="rtl"] .loc-row .val a { border-bottom: 1px solid var(--c-gold-deep); }
[dir="rtl"] .origin-list li::after {
  inset-inline-end: auto;
  inset-inline-start: -8px;
}

/* Latin brand text always LTR even in RTL pages */
.ltr-brand {
  direction: ltr;
  display: inline-block;
  unicode-bidi: isolate;
}

/* ═══════════════════════════════════════════════════════════════════════
   26. INTRO ANIMATION (Welcome Overlay)
   ═══════════════════════════════════════════════════════════════════════ */
.intro-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: var(--c-paper);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: var(--s-4);
  opacity: 1;
  transition: opacity 0.6s var(--e-out), visibility 0.6s var(--e-out);
}
.intro-overlay.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.intro-overlay::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 100%, rgba(196, 151, 59, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 0% 0%, rgba(184, 153, 104, 0.06) 0%, transparent 50%),
    linear-gradient(180deg, var(--c-paper) 0%, var(--c-cream) 100%);
  z-index: 0;
}
.intro-overlay::after {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.025;
  z-index: 1;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  mix-blend-mode: multiply;
}

.intro-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 560px;
  width: 100%;
}

.intro-logo {
  width: 120px;
  height: 120px;
  margin: 0 auto var(--s-3);
  opacity: 0;
  transform: scale(0.85);
  animation: introLogo 0.9s var(--e-out) 0.1s forwards;
}
@keyframes introLogo {
  to { opacity: 1; transform: scale(1); }
}

.intro-title {
  font-family: var(--f-display);
  font-size: clamp(2.8rem, 7vw, 4.2rem);
  font-weight: 900;
  letter-spacing: 0.02em;
  line-height: 0.95;
  text-transform: uppercase;
  color: var(--c-text);
  margin-bottom: var(--s-1);
  opacity: 0;
  transform: translateY(20px);
  animation: introUp 0.8s var(--e-out) 0.4s forwards;
}
@keyframes introUp {
  to { opacity: 1; transform: translateY(0); }
}

.intro-by {
  font-family: var(--f-script);
  font-style: normal;
  font-size: clamp(1.85rem, 3vw, 2.4rem);
  line-height: 1;
  color: var(--c-text-mute);
  margin-bottom: var(--s-2);
  letter-spacing: 0.01em;
  opacity: 0;
  transform: translateY(15px);
  animation: introUp 0.8s var(--e-out) 0.6s forwards;
}
.intro-by em { font-style: normal; }
.intro-by sup {
  font-family: var(--f-body);
  font-size: 0.4em;
  font-weight: 500;
  letter-spacing: 0;
  margin-left: 4px;
  vertical-align: super;
  color: var(--c-text-soft);
}

.intro-tagline {
  font-family: var(--f-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--c-gold-deep);
  margin-bottom: var(--s-4);
  opacity: 0;
  animation: introFade 0.8s var(--e-out) 0.8s forwards;
}
@keyframes introFade {
  to { opacity: 1; }
}

.intro-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: var(--s-3) auto var(--s-4);
  opacity: 0;
  animation: introFade 0.8s var(--e-out) 1.0s forwards;
}
.intro-divider .line {
  width: 70px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--c-gold), transparent);
}
.intro-divider .leaf {
  width: 22px; height: 22px;
  color: var(--c-gold);
}

.intro-lang-label {
  font-family: var(--f-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--c-text-soft);
  margin-bottom: var(--s-3);
  opacity: 0;
  animation: introFade 0.8s var(--e-out) 1.1s forwards;
}

.intro-langs {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(15px);
  animation: introUp 0.8s var(--e-out) 1.2s forwards;
}

.intro-lang {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 14px 18px 12px;
  background: var(--c-cream);
  border: 1px solid var(--c-line);
  text-decoration: none;
  color: var(--c-text);
  transition: all var(--d2) var(--e);
  min-width: 100px;
  cursor: pointer;
}
.intro-lang:hover, .intro-lang:focus-visible {
  background: var(--c-onyx);
  color: var(--c-paper);
  border-color: var(--c-onyx);
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(42, 36, 27, 0.12);
}
.intro-lang .flag {
  width: 42px;
  height: 28px;
  display: block;
  border: 1px solid rgba(42, 36, 27, 0.08);
  border-radius: 2px;
  overflow: hidden;
}
.intro-lang .flag img,
.intro-lang .flag svg {
  width: 100%; height: 100%;
  display: block;
  object-fit: cover;
}
.intro-lang .code {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: 0.08em;
  line-height: 1;
}
.intro-lang .name {
  font-family: var(--f-body);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.7;
  line-height: 1;
}

.intro-skip {
  margin-top: var(--s-4);
  font-family: var(--f-body);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--c-text-soft);
  background: none;
  border: none;
  padding: 8px 14px;
  cursor: pointer;
  opacity: 0;
  animation: introFade 0.8s var(--e-out) 1.5s forwards;
  transition: color var(--d1) var(--e);
}
.intro-skip:hover { color: var(--c-onyx); }
.intro-skip-progress {
  display: inline-block;
  margin-left: 8px;
  width: 16px; height: 1px;
  background: var(--c-gold);
  vertical-align: middle;
  opacity: 0.5;
}

/* Body lock when intro showing */
body.intro-active {
  overflow: hidden;
}

/* Mobile: smaller intro */
@media (max-width: 560px) {
  .intro-logo { width: 88px; height: 88px; }
  .intro-langs { gap: 8px; }
  .intro-lang { padding: 12px 14px 10px; min-width: 84px; }
  .intro-lang .flag { width: 36px; height: 24px; }
  .intro-lang .code { font-size: 1rem; }
  .intro-lang .name { font-size: 0.55rem; }
}

@media (max-width: 360px) {
  .intro-lang { min-width: 72px; padding: 10px 10px 8px; }
  .intro-lang .flag { width: 30px; height: 20px; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .intro-logo, .intro-title, .intro-by, .intro-tagline,
  .intro-divider, .intro-lang-label, .intro-langs, .intro-skip {
    opacity: 1;
    transform: none;
    animation: none;
  }
}

/* ═══════════════════════════════════════════════════════════════════════
   27. FLAGS IN NAV LANG SWITCHER
   ═══════════════════════════════════════════════════════════════════════ */
.nav-lang a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.nav-lang .flag-mini {
  width: 18px;
  height: 12px;
  display: inline-block;
  border: 1px solid rgba(42, 36, 27, 0.10);
  border-radius: 1px;
  overflow: hidden;
  vertical-align: middle;
  flex-shrink: 0;
}
.nav-lang .flag-mini svg,
.nav-lang .flag-mini img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

/* Mobile menu lang flags */
.mobile-menu .lang-m a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.mobile-menu .lang-m .flag-mini {
  width: 22px;
  height: 14px;
  display: inline-block;
  border: 1px solid rgba(42, 36, 27, 0.10);
  border-radius: 1px;
  overflow: hidden;
}
.mobile-menu .lang-m .flag-mini svg,
.mobile-menu .lang-m .flag-mini img {
  width: 100%; height: 100%;
  display: block;
}

/* ═══════════════════════════════════════════════════════════════════════
   28. ETHIOPIA COFFEE — Brand Stack (logo + sub-line)
   ═══════════════════════════════════════════════════════════════════════ */
/* Hero brand stack */
.brand-stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  margin-bottom: var(--s-2);
}
.brand-stack .main {
  font-family: var(--f-display);
  font-size: var(--t-display);
  font-weight: 900;
  letter-spacing: 0.01em;
  line-height: 0.95;
  text-transform: uppercase;
  color: var(--c-text);
}
.brand-stack .main .line { display: block; }
.brand-stack .sub {
  font-family: var(--f-script);
  font-style: normal;
  font-size: clamp(1.6rem, 2.4vw, 2.1rem);
  color: var(--c-text-mute);
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 1;
  margin-top: 10px;
}
.brand-stack .sub em {
  font-style: normal;
}
.brand-stack .sub sup {
  font-family: var(--f-body);
  font-size: 0.42em;
  font-weight: 400;
  letter-spacing: 0;
  margin-left: 4px;
  vertical-align: super;
  color: var(--c-text-soft);
}

/* Section-level brand mentions (smaller, after a divider, etc.) */
.brand-inline {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
}
.brand-inline .main {
  font-family: var(--f-display);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--c-text);
}
.brand-inline .sub {
  font-family: var(--f-script);
  font-style: normal;
  font-size: 1.4rem;
  color: var(--c-text-mute);
  margin-top: 2px;
  line-height: 1;
}
.brand-inline .sub em { font-style: normal; }

/* Header brand stack (smaller, dual-line in header) */
.header-brand-stack {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.header-brand-stack .main {
  font-family: var(--f-display);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-text);
}
.header-brand-stack .sub {
  font-family: var(--f-script);
  font-style: normal;
  font-size: 1.05rem;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  color: var(--c-text-mute);
  margin-top: 1px;
  line-height: 1;
}
.header-brand-stack .sub em {
  font-style: normal;
  font-weight: 400;
  margin-right: 0;
}
.header-brand-stack .sub sup {
  font-family: var(--f-body);
  font-size: 0.5em;
  font-weight: 500;
  letter-spacing: 0;
  margin-left: 1px;
  color: var(--c-text-soft);
}

/* Footer brand stack */
.footer-brand .brand-stack-footer .main {
  font-family: var(--f-display);
  font-size: var(--t-h4);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-text-light);
}
.footer-brand .brand-stack-footer .sub {
  font-family: var(--f-script);
  font-style: normal;
  font-size: 1.5rem;
  color: var(--c-gold-light);
  margin-top: 8px;
  letter-spacing: 0.01em;
  line-height: 1;
}
.footer-brand .brand-stack-footer .sub em { font-style: normal; }
.footer-brand .brand-stack-footer .sub sup {
  font-family: var(--f-body);
  font-size: 0.42em;
  font-weight: 500;
  letter-spacing: 0;
  margin-left: 3px;
  vertical-align: super;
}

/* RTL adjustments for the new brand stack */
[dir="rtl"] .brand-stack .main,
[dir="rtl"] .brand-inline .main,
[dir="rtl"] .header-brand-stack .main,
[dir="rtl"] .footer-brand .brand-stack-footer .main {
  letter-spacing: 0.04em;
  /* Keep Latin "ETHIOPIA COFFEE" in LTR within RTL pages */
  direction: ltr;
  unicode-bidi: isolate;
}
[dir="rtl"] .brand-stack .sub,
[dir="rtl"] .brand-inline .sub,
[dir="rtl"] .header-brand-stack .sub,
[dir="rtl"] .footer-brand .brand-stack-footer .sub {
  direction: ltr;
  unicode-bidi: isolate;
}

/* ═══════════════════════════════════════════════════════════════════════
   29. OPENING BANNER (15 Haziran 2026 — Grand Opening teaser)
   ═══════════════════════════════════════════════════════════════════════ */
.opening-banner {
  position: relative;
  background: var(--c-onyx);
  color: var(--c-paper);
  overflow: hidden;
}
.opening-banner .opening-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 10% 50%, rgba(196, 151, 59, 0.16) 0%, transparent 60%),
    radial-gradient(ellipse at 100% 50%, rgba(184, 153, 104, 0.10) 0%, transparent 55%);
  pointer-events: none;
}
.opening-banner::after {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.04;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
}
.opening-inner {
  position: relative;
  z-index: 2;
  max-width: var(--container);
  margin: 0 auto;
  padding: var(--s-3) var(--s-3);
  display: flex;
  align-items: center;
  gap: var(--s-3);
  flex-wrap: wrap;
}
.opening-flag {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(196, 151, 59, 0.45);
  border-radius: 50%;
  color: var(--c-gold-light);
}
.opening-flag svg {
  width: 20px;
  height: 20px;
}
.opening-text {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 200px;
}
.opening-pre {
  font-family: var(--f-body);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--c-gold-light);
  line-height: 1;
}
.opening-date {
  font-family: var(--f-display);
  font-size: clamp(1.5rem, 3.2vw, 2rem);
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.1;
  color: var(--c-paper);
  text-transform: uppercase;
}
.opening-sub {
  font-family: var(--f-accent);
  font-style: italic;
  font-size: 0.95rem;
  color: rgba(245, 240, 232, 0.72);
  margin-top: 2px;
}
.opening-cta {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  font-family: var(--f-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--c-onyx);
  background: var(--c-gold-light);
  text-decoration: none;
  border: 1px solid var(--c-gold-light);
  transition: all var(--d2) var(--e);
}
.opening-cta:hover {
  background: var(--c-paper);
  border-color: var(--c-paper);
  transform: translateY(-2px);
}
.opening-cta span {
  display: inline-block;
  transition: transform var(--d2) var(--e);
}
.opening-cta:hover span {
  transform: translateX(4px);
}

/* RTL: kılıç-ok yönü ters */
[dir="rtl"] .opening-cta span {
  transform: scaleX(-1);
}
[dir="rtl"] .opening-cta:hover span {
  transform: scaleX(-1) translateX(4px);
}

@media (max-width: 760px) {
  .opening-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--s-2);
    padding: var(--s-3) var(--s-3);
  }
  .opening-cta { width: 100%; justify-content: center; }
}
@media (max-width: 480px) {
  .opening-date { font-size: 1.4rem; }
  .opening-sub { font-size: 0.85rem; }
}


/* ═══════════════════════════════════════════════════════════════════════
   30. FLOATING SOCIAL STACK — WhatsApp + Instagram + TikTok + X
   ═══════════════════════════════════════════════════════════════════════ */
.floating-stack {
  position: fixed;
  bottom: 28px;
  right: 22px;
  z-index: 50;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
  opacity: 0;
  transform: translateY(20px);
  animation: floatIn 0.6s var(--e-out) 0.6s forwards;
  pointer-events: none;
}
.floating-stack > * { pointer-events: auto; }
@keyframes floatIn {
  to { opacity: 1; transform: translateY(0); }
}

/* Üst — küçük dairesel sosyal düğmeler */
.fab {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  text-decoration: none;
  color: #fff;
  box-shadow:
    0 6px 18px rgba(0,0,0,0.15),
    0 2px 4px rgba(0,0,0,0.08);
  transition: transform var(--d2) var(--e), box-shadow var(--d2) var(--e), filter var(--d2) var(--e);
  flex-shrink: 0;
}
.fab svg {
  width: 18px; height: 18px;
  fill: #fff;
  display: block;
}
.fab:hover {
  transform: translateY(-3px) scale(1.06);
  box-shadow:
    0 12px 28px rgba(0,0,0,0.22),
    0 4px 8px rgba(0,0,0,0.1);
  filter: brightness(1.08);
}

/* Brand renkleri */
.fab-instagram { background: linear-gradient(135deg, #833ab4 0%, #fd1d1d 50%, #fcb045 100%); }
.fab-tiktok    { background: linear-gradient(135deg, #25F4EE 0%, #000 40%, #FE2C55 100%); }
.fab-x         { background: #000; }

/* Alt — WhatsApp ana düğme (etiketli, biraz büyük) */
.fab-whatsapp {
  width: auto;
  height: auto;
  padding: 12px 20px 12px 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--f-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: #fff;
  box-shadow:
    0 12px 32px rgba(37, 211, 102, 0.35),
    0 2px 6px rgba(0, 0, 0, 0.1);
}
.fab-whatsapp svg {
  width: 22px; height: 22px;
  fill: #fff;
}
.fab-whatsapp:hover {
  box-shadow:
    0 18px 42px rgba(37, 211, 102, 0.45),
    0 4px 10px rgba(0, 0, 0, 0.12);
}

/* Body active (intro açıkken) gizle */
body.intro-active .floating-stack {
  opacity: 0 !important;
  pointer-events: none;
}

/* Mobile: bottom mobile-bar varsa daha yukarı */
@media (max-width: 560px) {
  .floating-stack {
    bottom: 80px;
    right: 14px;
    gap: 8px;
  }
  .fab { width: 38px; height: 38px; }
  .fab svg { width: 16px; height: 16px; }
  .fab-whatsapp {
    padding: 10px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    justify-content: center;
  }
  .fab-whatsapp .fab-label { display: none; }
  .fab-whatsapp svg { width: 22px; height: 22px; }
}

/* mobile-bar var ise daha yukarı (ana sayfa/kafemiz altında) */
.mobile-bar ~ .floating-stack { bottom: 90px; }
@media (min-width: 561px) {
  .mobile-bar ~ .floating-stack { bottom: 28px; }
}

/* RTL */
[dir="rtl"] .floating-stack {
  right: auto;
  left: 22px;
  align-items: flex-start;
}
[dir="rtl"] .floating-stack > * {
  /* sosyal düğmeler sola yaslı sıralansın */
}
@media (max-width: 560px) {
  [dir="rtl"] .floating-stack { left: 14px; right: auto; }
}

/* ═══════════════════════════════════════════════════════════════════════
   31. OPENING BANNER — COUNTDOWN CARDS
   ═══════════════════════════════════════════════════════════════════════ */
.opening-countdown {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}
.cd-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 54px;
  padding: 8px 6px;
  background: rgba(245, 240, 232, 0.06);
  border: 1px solid rgba(196, 151, 59, 0.22);
  border-radius: 4px;
  transition: transform var(--d2) var(--e), border-color var(--d2) var(--e);
}
.cd-unit:hover {
  border-color: var(--c-gold);
}
.cd-num {
  font-family: var(--f-display);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1;
  color: var(--c-paper);
  font-variant-numeric: tabular-nums;
  min-width: 38px;
  text-align: center;
}
.cd-lbl {
  font-family: var(--f-body);
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--c-gold-light);
  margin-top: 4px;
  line-height: 1;
}
.cd-lbl-short {
  display: none;
  font-family: var(--f-body);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--c-gold-light);
  margin-top: 3px;
}
.cd-sep {
  font-family: var(--f-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: rgba(212, 170, 79, 0.4);
  align-self: flex-start;
  margin-top: 6px;
  line-height: 1;
}

/* Pulse animasyonu seconds için (saniye değişince hafifçe yanar) */
.cd-num.tick {
  animation: cdTick 0.4s var(--e-out);
}
@keyframes cdTick {
  0%   { color: var(--c-gold-light); transform: scale(1.05); }
  100% { color: var(--c-paper); transform: scale(1); }
}

/* AR/RTL adjustments */
[dir="rtl"] .opening-countdown {
  direction: ltr;  /* Sayılar mantıksal soldan-sağa sayılsın */
  unicode-bidi: isolate;
}

/* Tablet — Sayıları küçült, label'ları yine göster */
@media (max-width: 1100px) {
  .cd-unit { min-width: 48px; padding: 7px 5px; }
  .cd-num { font-size: 1.3rem; min-width: 34px; }
  .cd-lbl { font-size: 0.52rem; letter-spacing: 0.16em; }
  .cd-sep { font-size: 1.2rem; margin-top: 5px; }
  .opening-countdown { gap: 4px; }
}

/* Mobile — Tam görünür ama daha kompakt; label'lar kısalır */
@media (max-width: 760px) {
  .opening-countdown {
    width: 100%;
    justify-content: space-between;
    gap: 4px;
    margin-top: 4px;
  }
  .cd-unit {
    flex: 1 1 0;
    min-width: 0;
    padding: 8px 4px;
  }
  .cd-num { font-size: 1.45rem; min-width: 32px; }
  .cd-lbl { display: none; }
  .cd-lbl-short { display: inline-block; }
  .cd-sep { display: none; }
}

@media (max-width: 380px) {
  .cd-num { font-size: 1.25rem; }
  .cd-lbl-short { font-size: 0.55rem; letter-spacing: 0.05em; }
}

/* ═══════════════════════════════════════════════════════════════════════
   32. DIRECTIONS STRIP (header altında, hero üzerinde — sadece ana + kafemiz)
   ═══════════════════════════════════════════════════════════════════════ */
.directions-strip {
  background: var(--c-linen);
  border-top: 1px solid var(--c-line);
  border-bottom: 1px solid var(--c-line);
  position: relative;
}
.directions-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 14px var(--s-3);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-3);
  flex-wrap: wrap;
}
.directions-text {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}
.pin-icon {
  width: 22px;
  height: 22px;
  color: var(--c-gold-deep);
  flex-shrink: 0;
}
.directions-meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
  line-height: 1.1;
  min-width: 0;
}
.directions-pre {
  font-family: var(--f-body);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--c-gold-deep);
}
.directions-addr {
  font-family: var(--f-body);
  font-size: 0.82rem;
  font-weight: 400;
  color: var(--c-text);
  letter-spacing: 0.02em;
}
.directions-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: var(--c-onyx);
  color: var(--c-paper);
  text-decoration: none;
  font-family: var(--f-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border: 1px solid var(--c-onyx);
  transition: all var(--d2) var(--e);
  flex-shrink: 0;
}
.directions-cta:hover {
  background: var(--c-gold-deep);
  border-color: var(--c-gold-deep);
  color: var(--c-paper);
  transform: translateY(-1px);
}
.directions-cta span {
  display: inline-block;
  transition: transform var(--d2) var(--e);
}
.directions-cta:hover span {
  transform: translateX(4px);
}
[dir="rtl"] .directions-cta span {
  transform: scaleX(-1);
}
[dir="rtl"] .directions-cta:hover span {
  transform: scaleX(-1) translateX(4px);
}

@media (max-width: 600px) {
  .directions-inner {
    padding: 12px var(--s-2);
    gap: 12px;
    flex-direction: column;
    align-items: stretch;
  }
  .directions-cta { justify-content: center; width: 100%; }
  .directions-addr { font-size: 0.78rem; }
}


/* ═══════════════════════════════════════════════════════════════════════
   33. SOCIAL ICONS — ortak stil
   ═══════════════════════════════════════════════════════════════════════ */
.social-icons {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid var(--c-line);
  border-radius: 50%;
  color: var(--c-text-mute);
  background: transparent;
  text-decoration: none;
  transition: all var(--d2) var(--e);
}
.social-icons a:hover {
  color: var(--c-paper);
  background: var(--c-onyx);
  border-color: var(--c-onyx);
  transform: translateY(-2px);
}
.social-icons a svg {
  width: 16px;
  height: 16px;
  display: block;
}

/* Variant: küçük (header için) */
.social-icons.compact a {
  width: 30px;
  height: 30px;
}
.social-icons.compact a svg {
  width: 13px;
  height: 13px;
}

/* Variant: dark zemin (footer ve karşılama gibi) */
.social-icons.on-dark a {
  border-color: rgba(238, 231, 210, 0.20);
  color: var(--c-text-light-mute);
}
.social-icons.on-dark a:hover {
  background: var(--c-gold);
  border-color: var(--c-gold);
  color: var(--c-onyx);
}

/* Variant: light cream (intro overlay vs için) */
.social-icons.on-light a {
  border-color: var(--c-line);
  color: var(--c-text-mute);
}

/* Inline mode — yazıyla birlikte */
.social-icons.inline {
  gap: 8px;
}
.social-icons.inline a {
  width: auto;
  height: auto;
  padding: 4px 10px;
  border-radius: 999px;
  gap: 6px;
  font-family: var(--f-body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.04em;
}
.social-icons.inline a svg {
  width: 14px;
  height: 14px;
}


/* ═══════════════════════════════════════════════════════════════════════
   34. INTRO OVERLAY SOCIAL ROW
   ═══════════════════════════════════════════════════════════════════════ */
.intro-social {
  margin-top: var(--s-4);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  opacity: 0;
  animation: introFade 0.8s var(--e-out) 1.4s forwards;
}
.intro-social-label {
  font-family: var(--f-body);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--c-text-soft);
}
.intro-opening {
  margin-top: var(--s-4);
  padding: 18px 36px 20px;
  background: linear-gradient(180deg, rgba(196, 151, 59, 0.10) 0%, rgba(196, 151, 59, 0.04) 100%);
  border: 1px solid rgba(196, 151, 59, 0.45);
  border-radius: 8px;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  opacity: 0;
  animation: introFade 0.8s var(--e-out) 1.6s forwards;
  position: relative;
}
.intro-opening::before,
.intro-opening::after {
  content: '';
  position: absolute;
  top: 50%; transform: translateY(-50%);
  width: 36px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--c-gold));
}
.intro-opening::before { left: -48px; }
.intro-opening::after { right: -48px; background: linear-gradient(90deg, var(--c-gold), transparent); }

.intro-opening .o-pre {
  font-family: var(--f-body);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--c-gold-deep);
  line-height: 1;
}
.intro-opening .o-date {
  font-family: var(--f-display);
  font-size: clamp(1.6rem, 2.6vw, 2rem);
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--c-text);
  line-height: 1.05;
}

@media (max-width: 560px) {
  .intro-opening { padding: 14px 24px 16px; }
  .intro-opening::before, .intro-opening::after { width: 22px; }
  .intro-opening::before { left: -30px; }
  .intro-opening::after { right: -30px; }
  .intro-opening .o-pre { font-size: 0.6rem; letter-spacing: 0.28em; }
  .intro-opening .o-date { font-size: 1.35rem; }
}


/* ═══════════════════════════════════════════════════════════════════════
   35. HEADER SOCIAL ROW (üst-ek kompakt sıra)
   ═══════════════════════════════════════════════════════════════════════ */
.header-social {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding-left: var(--s-2);
  margin-left: var(--s-1);
  border-left: 1px solid var(--c-line);
}
.header-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  color: var(--c-text-mute);
  text-decoration: none;
  transition: all var(--d2) var(--e);
  border-radius: 50%;
}
.header-social a:hover {
  color: var(--c-paper);
  background: var(--c-onyx);
}
.header-social a svg {
  width: 14px;
  height: 14px;
}

[dir="rtl"] .header-social {
  padding-left: 0;
  margin-left: 0;
  padding-right: var(--s-2);
  margin-right: var(--s-1);
  border-left: none;
  border-right: 1px solid var(--c-line);
}

@media (max-width: 1100px) {
  .header-social { display: none; }
}


/* ═══════════════════════════════════════════════════════════════════════
   36. (reserved)
   ═══════════════════════════════════════════════════════════════════════ */


/* ═══════════════════════════════════════════════════════════════════════
   37. PHOTO PLACEHOLDERS → real images
   ═══════════════════════════════════════════════════════════════════════ */
.photo-frame.has-image {
  background: var(--c-linen);
  overflow: hidden;
}
.photo-frame.has-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.8s var(--e-out);
}
.photo-frame.has-image:hover img {
  transform: scale(1.03);
}
.photo-frame.has-image .inner-line {
  pointer-events: none;
}


/* ═══════════════════════════════════════════════════════════════════════
   38. INLINE LINK ICONS (footer & contact listelerindeki sosyal medya ikonları)
   ═══════════════════════════════════════════════════════════════════════ */
.link-icon {
  display: inline-flex;
  align-items: center;
  margin-right: 8px;
  vertical-align: middle;
  opacity: 0.75;
  transition: opacity var(--d2) var(--e);
}
.link-icon svg {
  width: 14px;
  height: 14px;
  display: block;
  fill: currentColor;
}
a:hover .link-icon {
  opacity: 1;
}

[dir="rtl"] .link-icon {
  margin-right: 0;
  margin-left: 8px;
}

/* contact-band socials için ayarlama (zaten butonlar var, ikonları küçük tut) */
.contact-band .socials a .link-icon {
  margin-right: 6px;
}
.contact-band .socials a .link-icon svg {
  width: 13px;
  height: 13px;
}

/* location-info row icons */
.loc-row .val .link-icon svg {
  width: 12px;
  height: 12px;
}


/* ═══════════════════════════════════════════════════════════════════════
   39. HEADER FIXED — body padding (mobile-menu sonrası ilk içeriğin
       header'ın altında kalmasını engelle)
   ═══════════════════════════════════════════════════════════════════════ */
/* Hero zaten kendi padding-top'unu yönetiyor, ama önce gelen
   opening-banner ve directions-strip için header'a yer aç */
.mobile-menu + .opening-banner,
.mobile-menu + .directions-strip {
  margin-top: var(--hdr);
}
/* ═══════════════════════════════════════════════════════════════════════
   MENU & SHOP — Premium menu/e-commerce styles
   ═══════════════════════════════════════════════════════════════════════ */

/* ──── Category section ──── */
.menu-section {
  padding: var(--s-6) 0;
}
.menu-section + .menu-section {
  border-top: 1px solid var(--c-line);
}

.menu-section-head {
  text-align: center;
  margin-bottom: var(--s-5);
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.menu-section-head .overline {
  display: inline-block;
  margin-bottom: var(--s-2);
}
.menu-section-head h2 {
  font-family: var(--f-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: 0.01em;
  line-height: 1.05;
  text-transform: uppercase;
  color: var(--c-text);
  margin: 0 0 var(--s-3);
}
.menu-section-head .lede {
  font-family: var(--f-accent);
  font-style: italic;
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
  color: var(--c-text-mute);
  line-height: 1.55;
  max-width: 600px;
  margin: 0 auto;
}

/* ──── Menu grid ──── */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(310px, 1fr));
  gap: var(--s-3);
}
.menu-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: var(--s-3);
  background: rgba(255, 255, 255, 0.4);
  border: 1px solid var(--c-line-soft);
  border-radius: 6px;
  transition: all var(--d2) var(--e);
}
.menu-item:hover {
  background: rgba(255, 255, 255, 0.7);
  border-color: var(--c-gold-deep);
  transform: translateY(-2px);
}
.menu-item .name {
  font-family: var(--f-display);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: var(--c-text);
  line-height: 1.2;
}
.menu-item .desc {
  font-family: var(--f-body);
  font-size: 0.86rem;
  font-weight: 300;
  color: var(--c-text-mute);
  line-height: 1.55;
  margin: 0;
}
.menu-item .desc em {
  font-family: var(--f-accent);
  font-style: italic;
  color: var(--c-gold-deep);
  font-weight: 500;
}

@media (max-width: 760px) {
  .menu-grid { grid-template-columns: 1fr; gap: var(--s-2); }
  .menu-item { padding: var(--s-3) var(--s-2); }
}

/* ──── Menu nav (sticky chip strip) ──── */
.menu-nav {
  position: sticky;
  top: var(--hdr);
  z-index: 30;
  background: var(--c-paper);
  border-bottom: 1px solid var(--c-line);
  padding: 12px 0;
}
.menu-nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--s-3);
  display: flex;
  gap: 8px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.menu-nav-inner::-webkit-scrollbar { display: none; }
.menu-nav-inner a {
  flex-shrink: 0;
  padding: 8px 16px;
  background: transparent;
  border: 1px solid var(--c-line);
  border-radius: 999px;
  font-family: var(--f-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--c-text-mute);
  text-decoration: none;
  white-space: nowrap;
  transition: all var(--d2) var(--e);
}
.menu-nav-inner a:hover {
  border-color: var(--c-gold-deep);
  color: var(--c-text);
}


/* ═══════════════════════════════════════════════════════════════════════
   SHOP — Product card with weight selector
   ═══════════════════════════════════════════════════════════════════════ */
.shop-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: var(--s-4);
}
.product-card-v2 {
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid var(--c-line);
  border-radius: 6px;
  overflow: hidden;
  transition: all var(--d3) var(--e);
  display: flex;
  flex-direction: column;
}
.product-card-v2:hover {
  border-color: var(--c-gold-deep);
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(42, 36, 27, 0.06);
}

.product-image {
  position: relative;
  aspect-ratio: 1 / 1;
  background: var(--c-linen);
  overflow: hidden;
}
.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--e-out);
}
.product-card-v2:hover .product-image img {
  transform: scale(1.05);
}
.product-image-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--c-stone);
}
.product-image-placeholder svg {
  width: 40px; height: 40px;
  opacity: 0.5;
}
.product-image-placeholder span {
  font-family: var(--f-body);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.product-badges {
  position: absolute;
  top: 12px; left: 12px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.product-badge {
  padding: 3px 10px;
  background: var(--c-onyx);
  color: var(--c-paper);
  font-family: var(--f-body);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.product-badge.gold {
  background: var(--c-gold);
  color: var(--c-onyx);
}

.product-info {
  padding: var(--s-3);
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.product-info .tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.product-tag {
  font-family: var(--f-body);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-gold-deep);
  padding: 2px 8px;
  border: 1px solid rgba(196, 151, 59, 0.4);
  border-radius: 999px;
}
.product-info .name {
  font-family: var(--f-display);
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: var(--c-text);
  line-height: 1.15;
  margin: 0;
}
.product-info .origin {
  font-family: var(--f-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-stone);
}
.product-info .notes {
  font-family: var(--f-accent);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--c-gold-deep);
}
.product-info .desc {
  font-family: var(--f-body);
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--c-text-mute);
  line-height: 1.55;
  margin: 0;
}
.product-info .desc em {
  font-family: var(--f-accent);
  font-style: italic;
  color: var(--c-gold-deep);
  font-weight: 500;
}

/* Weight selector */
.weight-selector {
  display: flex;
  gap: 6px;
  margin-top: auto;
  padding-top: var(--s-2);
  border-top: 1px solid var(--c-line-soft);
}
.weight-option {
  flex: 1;
  padding: 8px 4px;
  background: transparent;
  border: 1px solid var(--c-line);
  border-radius: 4px;
  font-family: var(--f-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--c-text-mute);
  cursor: pointer;
  transition: all var(--d2) var(--e);
  text-align: center;
}
.weight-option:hover {
  border-color: var(--c-gold);
  color: var(--c-text);
}
.weight-option.active {
  background: var(--c-onyx);
  border-color: var(--c-onyx);
  color: var(--c-paper);
}

.product-cta {
  margin-top: 10px;
  padding: 12px 18px;
  background: var(--c-onyx);
  color: var(--c-paper);
  border: 1px solid var(--c-onyx);
  border-radius: 4px;
  font-family: var(--f-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--d2) var(--e);
  text-align: center;
  text-decoration: none;
  display: inline-block;
}
.product-cta:hover {
  background: var(--c-gold-deep);
  border-color: var(--c-gold-deep);
}

@media (max-width: 760px) {
  .shop-grid { grid-template-columns: 1fr; gap: var(--s-3); }
}

/* ─── Opening info banner inside shop ─── */
.shop-opening-info {
  text-align: center;
  padding: var(--s-3);
  background: var(--c-linen);
  border: 1px dashed var(--c-gold);
  border-radius: 6px;
  margin: var(--s-4) auto var(--s-5);
  max-width: 700px;
}
.shop-opening-info .info-pre {
  font-family: var(--f-body);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--c-gold-deep);
  display: block;
  margin-bottom: 6px;
}
.shop-opening-info .info-msg {
  font-family: var(--f-accent);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--c-text);
}


/* ═══════════════════════════════════════════════════════════════════════
   V9 — MENU & SHOP REDESIGN
   Premium e-commerce + restaurant menu hybrid
   ═══════════════════════════════════════════════════════════════════════ */

/* ─── PAGE HERO ─── */
.page-hero {
  padding: calc(var(--hdr) + var(--s-6)) var(--s-4) var(--s-4);
  text-align: center;
  background: linear-gradient(180deg, var(--c-paper) 0%, var(--c-cream) 100%);
  border-bottom: 1px solid var(--c-line-soft);
}
.page-title {
  font-family: var(--f-display);
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 900;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--c-text);
  line-height: 1;
  margin-bottom: var(--s-3);
}
.page-subtitle {
  font-family: var(--f-accent);
  font-style: italic;
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  color: var(--c-text-mute);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.5;
}

/* ─── STICKY NAV (V8) ─── */
.menu-nav-v8 {
  position: sticky;
  top: var(--hdr);
  z-index: 30;
  background: rgba(244, 238, 219, 0.94);
  backdrop-filter: blur(14px) saturate(120%);
  -webkit-backdrop-filter: blur(14px) saturate(120%);
  border-bottom: 1px solid var(--c-line);
  padding: var(--s-2) 0;
  transition: box-shadow var(--d2) var(--e);
}
.menu-nav-v8 .menu-nav-row {
  display: flex;
  align-items: center;
  gap: var(--s-3);
  padding: 0 var(--s-4);
}
.chips-scroll {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: none;
  flex: 1;
  scroll-behavior: smooth;
  padding-bottom: 4px;
}
.chips-scroll::-webkit-scrollbar { display: none; }

.chip {
  font-family: var(--f-body);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  white-space: nowrap;
  padding: 9px 18px;
  border-radius: 999px;
  border: 1px solid var(--c-line);
  background: transparent;
  color: var(--c-text-mute);
  cursor: pointer;
  transition: all var(--d1) var(--e);
  flex-shrink: 0;
}
.chip:hover {
  background: rgba(184, 137, 36, 0.06);
  border-color: var(--c-gold);
  color: var(--c-text);
}
.chip-active {
  background: var(--c-onyx) !important;
  border-color: var(--c-onyx) !important;
  color: var(--c-paper) !important;
}

/* Search box */
.search-box {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid var(--c-line);
  border-radius: 999px;
  padding: 8px 14px;
  width: 320px;
  flex-shrink: 0;
  transition: all var(--d1) var(--e);
}
.search-box:focus-within {
  background: rgba(255, 255, 255, 0.85);
  border-color: var(--c-gold);
  box-shadow: 0 0 0 4px rgba(184, 137, 36, 0.10);
}
.search-box svg {
  width: 18px; height: 18px;
  color: var(--c-text-soft);
  flex-shrink: 0;
}
.search-box input {
  flex: 1;
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  font-family: var(--f-body);
  font-size: 0.9rem;
  color: var(--c-text);
}
.search-box input::placeholder { color: var(--c-text-soft); font-style: italic; }
.search-clear {
  width: 22px; height: 22px;
  border: 0; background: transparent; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  color: var(--c-text-soft);
  transition: all var(--d1) var(--e);
}
.search-clear:hover {
  background: var(--c-line);
  color: var(--c-text);
}
.search-clear svg { width: 14px; height: 14px; }

@media (max-width: 880px) {
  .menu-nav-v8 .menu-nav-row { flex-direction: column; align-items: stretch; gap: var(--s-2); }
  .search-box { width: 100%; }
}

/* ─── PAGE CONTENT ─── */
.page-content {
  padding: var(--s-6) 0 var(--s-6);
}

.cat-section {
  margin-bottom: var(--s-7);
}
.cat-section:last-child { margin-bottom: 0; }

.cat-section-head {
  text-align: center;
  margin-bottom: var(--s-5);
  padding: 0 var(--s-3);
}
.cat-section-title {
  font-family: var(--f-display);
  font-size: clamp(1.9rem, 3.5vw, 2.6rem);
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--c-text);
  margin-bottom: var(--s-2);
  line-height: 1.1;
}
.cat-section-title::after {
  content: '';
  display: block;
  width: 56px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--c-gold), transparent);
  margin: var(--s-3) auto 0;
}
.cat-section-subtitle {
  font-family: var(--f-accent);
  font-style: italic;
  font-size: clamp(0.95rem, 1.4vw, 1.1rem);
  color: var(--c-text-mute);
  max-width: 600px;
  margin: 0 auto;
}

/* ─── MENU GRID (V8) ─── */
.menu-grid-v8 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: var(--s-3);
  padding: 0 var(--s-3);
}

.menu-card-v8 {
  background: rgba(255, 255, 255, 0.50);
  border: 1px solid var(--c-line);
  border-radius: 6px;
  padding: var(--s-3);
  transition: all var(--d2) var(--e);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.menu-card-v8:hover {
  background: rgba(255, 255, 255, 0.85);
  border-color: var(--c-gold);
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(42, 36, 27, 0.07);
}

.menu-card-v8 .card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}
.menu-card-v8 .card-name {
  font-family: var(--f-display);
  font-size: 1.22rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: var(--c-text);
  line-height: 1.2;
  flex: 1;
}
.menu-card-v8 .card-tagline {
  font-family: var(--f-accent);
  font-style: italic;
  font-size: 0.96rem;
  color: var(--c-gold-deep);
  line-height: 1.3;
  margin-top: -4px;
}
.menu-card-v8 .card-desc {
  font-family: var(--f-body);
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--c-text-mute);
}
.menu-card-v8 .card-options {
  font-family: var(--f-body);
  font-size: 0.78rem;
  color: var(--c-text-mute);
  padding-top: 8px;
  border-top: 1px dashed var(--c-line);
}
.menu-card-v8 .opt-label {
  font-weight: 500;
  color: var(--c-text-mute);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-right: 6px;
}
.menu-card-v8 .card-pair {
  font-family: var(--f-body);
  font-size: 0.78rem;
  color: var(--c-gold-deep);
  font-style: normal;
  padding-top: 4px;
  letter-spacing: 0.02em;
}
.menu-card-v8 .card-pair em {
  color: var(--c-text);
  font-weight: 500;
  font-style: italic;
}

/* Card badges */
.card-badge {
  font-family: var(--f-body);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
  flex-shrink: 0;
  white-space: nowrap;
}
.badge-signature {
  background: linear-gradient(135deg, rgba(184, 137, 36, 0.18), rgba(184, 137, 36, 0.10));
  color: var(--c-gold-deep);
  border: 1px solid rgba(184, 137, 36, 0.30);
}
.badge-house {
  background: var(--c-onyx);
  color: var(--c-paper);
}
.badge-new {
  background: var(--c-gold);
  color: var(--c-onyx);
}
.badge-trending {
  background: linear-gradient(135deg, #C4973B, #8A6F47);
  color: var(--c-paper);
}

/* ─── SHOP GRID (V8) ─── */
.shop-grid-v8 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
  gap: var(--s-4);
  padding: 0 var(--s-3);
}

.shop-card-v8 {
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid var(--c-line);
  border-radius: 10px;
  overflow: hidden;
  transition: all var(--d2) var(--e);
  display: flex;
  flex-direction: column;
  position: relative;
}
.shop-card-v8:hover {
  background: rgba(255, 255, 255, 0.92);
  border-color: var(--c-gold);
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(42, 36, 27, 0.10);
}

.shop-card-v8 .shop-card-visual {
  position: relative;
  aspect-ratio: 16 / 9;
  background: linear-gradient(135deg, var(--c-cream) 0%, var(--c-linen) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid var(--c-line-soft);
}
.shop-card-v8 .shop-icon {
  width: 80px;
  height: 80px;
  color: var(--c-kraft);
  opacity: 0.45;
}
.shop-card-v8 .shop-icon svg { width: 100%; height: 100%; }
.shop-card-v8 .badge {
  position: absolute;
  top: 12px;
  inset-inline-start: 12px;
  z-index: 2;
}
.badge {
  font-family: var(--f-body);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 999px;
  backdrop-filter: blur(6px);
}

.shop-card-v8 .shop-card-body {
  padding: var(--s-3);
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1;
}
.shop-card-v8 .card-name {
  font-family: var(--f-display);
  font-size: 1.32rem;
  font-weight: 700;
  color: var(--c-text);
  line-height: 1.2;
}
.shop-card-v8 .card-tagline {
  font-family: var(--f-accent);
  font-style: italic;
  font-size: 1rem;
  color: var(--c-gold-deep);
  margin-top: -8px;
  line-height: 1.3;
}
.shop-card-v8 .card-desc {
  font-family: var(--f-body);
  font-size: 0.88rem;
  line-height: 1.55;
  color: var(--c-text-mute);
}

/* Card sections (notes, best-for, brew methods, profile) */
.card-section {
  padding-top: 10px;
  border-top: 1px solid var(--c-line-soft);
}
.card-section-label {
  font-family: var(--f-body);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-text-mute);
  margin-bottom: 8px;
}

/* Tasting notes pills */
.note-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.note-pill {
  font-family: var(--f-body);
  font-size: 0.74rem;
  letter-spacing: 0.02em;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(184, 137, 36, 0.12);
  color: var(--c-gold-deep);
  border: 1px solid rgba(184, 137, 36, 0.25);
}

/* Origin meta box */
.card-meta {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 12px 14px;
  background: rgba(244, 238, 219, 0.55);
  border-radius: 6px;
  border-inline-start: 2px solid var(--c-gold);
}
.meta-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 0.82rem;
  line-height: 1.4;
}
.meta-key {
  font-family: var(--f-body);
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--c-text-mute);
  text-transform: uppercase;
  font-size: 0.7rem;
  align-self: center;
}
.meta-val {
  font-family: var(--f-body);
  color: var(--c-text);
  text-align: end;
  font-size: 0.82rem;
}

/* 6-axis flavor profile */
.card-profile {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.ax-row {
  display: grid;
  grid-template-columns: minmax(110px, 0.7fr) 1fr;
  align-items: center;
  gap: 12px;
}
.ax-label {
  font-family: var(--f-body);
  font-size: 0.78rem;
  color: var(--c-text-mute);
  font-weight: 400;
}
.ax-bar {
  display: flex;
  gap: 3px;
}
[dir="rtl"] .ax-bar { flex-direction: row-reverse; }
.ax-dot {
  flex: 1;
  height: 6px;
  border-radius: 2px;
  background: var(--c-line);
  transition: background var(--d1) var(--e);
}
.ax-dot.active {
  background: linear-gradient(90deg, var(--c-gold) 0%, var(--c-gold-deep) 100%);
}

/* Best for */
.card-best-for {
  font-family: var(--f-body);
  font-size: 0.84rem;
  line-height: 1.5;
  color: var(--c-text);
  font-style: italic;
}

/* Brew methods */
.brew-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.brew-chip {
  font-family: var(--f-body);
  font-size: 0.74rem;
  font-weight: 400;
  padding: 4px 10px;
  border-radius: 4px;
  background: var(--c-paper);
  color: var(--c-text-mute);
  border: 1px solid var(--c-line);
}

.btn-block {
  display: flex !important;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  margin-top: auto;
}

/* ─── NO RESULTS ─── */
.no-results {
  text-align: center;
  padding: var(--s-6) var(--s-3);
}
.no-results h3 {
  font-family: var(--f-display);
  font-size: 1.4rem;
  color: var(--c-text);
  margin-bottom: 10px;
}
.no-results p {
  font-family: var(--f-accent);
  font-style: italic;
  font-size: 1rem;
  color: var(--c-text-soft);
  max-width: 500px;
  margin: 0 auto;
}

/* ═══════════════════════════════════════════════════════════════════════
   V9 — ORDER MODAL (Premium order builder)
   ═══════════════════════════════════════════════════════════════════════ */

.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(28, 24, 20, 0.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--s-3);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}
.modal-backdrop.open {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  background: var(--c-paper);
  border-radius: 16px;
  width: 100%;
  max-width: 500px;
  max-height: 88vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 24px 60px rgba(28, 24, 20, 0.30), 0 4px 12px rgba(28, 24, 20, 0.10);
  transform: translateY(20px) scale(0.97);
  transition: transform 0.3s var(--e-out);
  border: 1px solid rgba(184, 137, 36, 0.15);
}
.modal-backdrop.open .modal-content {
  transform: translateY(0) scale(1);
}

.modal-close {
  position: absolute;
  top: 14px;
  inset-inline-end: 14px;
  width: 36px;
  height: 36px;
  border: 0;
  background: transparent;
  cursor: pointer;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-text-mute);
  transition: all var(--d1) var(--e);
  z-index: 2;
}
.modal-close:hover {
  background: rgba(28, 24, 20, 0.08);
  color: var(--c-text);
}
.modal-close svg { width: 18px; height: 18px; }

.modal-head {
  padding: var(--s-4) var(--s-4) var(--s-3);
  text-align: center;
  border-bottom: 1px solid var(--c-line);
  background: linear-gradient(180deg, var(--c-cream) 0%, var(--c-paper) 100%);
}
.modal-title {
  font-family: var(--f-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--c-text);
  letter-spacing: 0.02em;
  margin-bottom: 8px;
}
.modal-subtitle {
  font-family: var(--f-accent);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--c-text-mute);
  line-height: 1.4;
  margin-bottom: 12px;
}
.modal-product-name {
  display: inline-block;
  font-family: var(--f-body);
  font-size: 0.84rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--c-onyx);
  color: var(--c-paper);
}

.modal-body {
  padding: var(--s-3) var(--s-4);
}

.modal-section {
  margin-bottom: var(--s-3);
}
.modal-section:last-child { margin-bottom: 0; }

.modal-label {
  display: block;
  font-family: var(--f-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-text-mute);
  margin-bottom: 10px;
}

.modal-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  gap: 6px;
}
.modal-options-stack {
  grid-template-columns: 1fr;
}

.modal-opt {
  font-family: var(--f-body);
  font-size: 0.86rem;
  font-weight: 500;
  padding: 11px 14px;
  border-radius: 6px;
  border: 1px solid var(--c-line);
  background: rgba(255, 255, 255, 0.5);
  color: var(--c-text);
  cursor: pointer;
  transition: all var(--d1) var(--e);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  text-align: center;
}
.modal-opt:hover {
  border-color: var(--c-gold);
  background: rgba(255, 255, 255, 0.85);
}
.modal-opt.active {
  background: var(--c-onyx);
  border-color: var(--c-onyx);
  color: var(--c-paper);
}
.modal-opt .opt-main {
  font-weight: 600;
  font-size: 0.92rem;
}
.modal-opt .opt-meta {
  font-size: 0.66rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-gold-deep);
  font-weight: 500;
}
.modal-opt.active .opt-meta {
  color: var(--c-gold-light);
}
.modal-options-stack .modal-opt {
  flex-direction: row;
  justify-content: flex-start;
  text-align: start;
}

/* Quantity */
.modal-qty {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--c-line);
  border-radius: 6px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.5);
}
.qty-btn {
  width: 38px;
  height: 38px;
  border: 0;
  background: transparent;
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--c-text);
  cursor: pointer;
  transition: background var(--d1) var(--e);
}
.qty-btn:hover { background: rgba(28, 24, 20, 0.05); }
#modal-qty {
  width: 50px;
  text-align: center;
  border: 0;
  border-inline-start: 1px solid var(--c-line);
  border-inline-end: 1px solid var(--c-line);
  background: transparent;
  font-family: var(--f-body);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--c-text);
  height: 38px;
  outline: none;
  -moz-appearance: textfield;
  appearance: textfield;
}
#modal-qty::-webkit-inner-spin-button,
#modal-qty::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Note textarea */
#modal-note {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid var(--c-line);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.5);
  font-family: var(--f-body);
  font-size: 0.88rem;
  color: var(--c-text);
  resize: vertical;
  min-height: 56px;
  transition: all var(--d1) var(--e);
}
#modal-note::placeholder {
  color: var(--c-text-soft);
  font-style: italic;
}
#modal-note:focus {
  outline: 0;
  border-color: var(--c-gold);
  background: rgba(255, 255, 255, 0.85);
  box-shadow: 0 0 0 3px rgba(184, 137, 36, 0.10);
}

/* Modal footer */
.modal-footer {
  display: flex;
  gap: 10px;
  padding: var(--s-3) var(--s-4);
  border-top: 1px solid var(--c-line);
  background: linear-gradient(0deg, var(--c-cream) 0%, var(--c-paper) 100%);
}
.modal-footer .btn {
  flex: 1;
}
.modal-footer .btn-outline {
  background: transparent;
  border: 1px solid var(--c-line);
  color: var(--c-text-mute);
}
.modal-footer .btn-outline:hover {
  border-color: var(--c-text);
  color: var(--c-text);
  background: rgba(28, 24, 20, 0.03);
}
.modal-submit {
  background: #25D366 !important;
  border-color: #25D366 !important;
  color: #fff !important;
  font-weight: 500;
  letter-spacing: 0.06em;
  display: flex !important;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.modal-submit:hover {
  background: #20BD5B !important;
  border-color: #20BD5B !important;
}
.modal-submit svg {
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════════════════════════════════
   V9 — TRUST BAND (Shop guarantees)
   ═══════════════════════════════════════════════════════════════════════ */

.trust-band {
  padding: var(--s-5) var(--s-3);
  background: linear-gradient(180deg, var(--c-cream) 0%, var(--c-linen) 100%);
  border-top: 1px solid var(--c-line);
}
.trust-band-title {
  font-family: var(--f-display);
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--c-text);
  margin-bottom: var(--s-4);
}
.trust-band-title::after {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--c-gold);
  margin: var(--s-2) auto 0;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--s-3);
  max-width: 1100px;
  margin: 0 auto;
}
.trust-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: var(--s-2);
}
.trust-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
  color: var(--c-gold-deep);
  line-height: 1;
}
.trust-text {
  font-family: var(--f-body);
  font-size: 0.92rem;
  line-height: 1.5;
  color: var(--c-text);
}

/* ═══════════════════════════════════════════════════════════════════════
   MOBILE
   ═══════════════════════════════════════════════════════════════════════ */

@media (max-width: 580px) {
  .menu-grid-v8 { grid-template-columns: 1fr; padding: 0 var(--s-2); }
  .shop-grid-v8 { grid-template-columns: 1fr; padding: 0 var(--s-2); }
  .cat-section { margin-bottom: var(--s-5); }
  .cat-section-head { margin-bottom: var(--s-3); padding: 0 var(--s-2); }
  .menu-card-v8 { padding: var(--s-2) var(--s-3); }
  .shop-card-v8 .shop-card-body { padding: var(--s-3); }
  .menu-card-v8 .card-name { font-size: 1.1rem; }
  .shop-card-v8 .card-name { font-size: 1.22rem; }
  .chips-scroll { padding: 0 var(--s-2); }
  .menu-nav-v8 { padding: 8px 0; }

  .modal-content { max-height: 92vh; border-radius: 12px; }
  .modal-head { padding: var(--s-3) var(--s-3) var(--s-2); }
  .modal-body { padding: var(--s-2) var(--s-3); }
  .modal-footer { padding: var(--s-2) var(--s-3); flex-direction: column-reverse; }
  .modal-title { font-size: 1.3rem; }
  .ax-row { grid-template-columns: minmax(100px, 0.8fr) 1fr; gap: 10px; }
  .ax-label { font-size: 0.74rem; }
}

/* RTL */
[dir="rtl"] .chips-scroll { direction: rtl; }
[dir="rtl"] .search-box input { text-align: right; }
[dir="rtl"] .card-meta { border-inline-start: 0; border-inline-end: 2px solid var(--c-gold); }
[dir="rtl"] #modal-note { text-align: right; direction: rtl; }

/* ═════════════════════════════════════════════════════════════════════
   V9 — 404 PAGES
   ═════════════════════════════════════════════════════════════════════ */
.page-404 {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
.page-404-main {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(var(--hdr) + var(--s-5)) var(--s-3) var(--s-5);
  background: linear-gradient(180deg, var(--c-paper) 0%, var(--c-cream) 100%);
}
.container-404 {
  text-align: center;
  max-width: 580px;
}
.error-code {
  font-family: var(--f-display);
  font-size: clamp(5rem, 12vw, 8rem);
  font-weight: 900;
  color: var(--c-text);
  letter-spacing: 0.02em;
  line-height: 1;
}
.error-code-sub {
  font-family: var(--f-accent);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--c-gold-deep);
  letter-spacing: 0.02em;
  margin-top: 8px;
}
.error-divider {
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--c-gold), transparent);
  margin: var(--s-3) auto;
}
.error-h1 {
  font-family: var(--f-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--c-text);
  margin-bottom: var(--s-2);
}
.error-p {
  font-family: var(--f-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--c-text-mute);
  margin-bottom: var(--s-4);
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}
.error-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.error-actions .btn { flex-shrink: 0; }
.site-footer-min {
  padding: var(--s-3) var(--s-3);
  border-top: 1px solid var(--c-line);
  text-align: center;
  background: var(--c-paper);
}
.footer-min-tag {
  font-family: var(--f-body);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-text-mute);
}

/* ═════════════════════════════════════════════════════════════════════
   V9 — LEGAL PAGES (KVKK / Privacy / Cookies)
   ═════════════════════════════════════════════════════════════════════ */
.page-legal { background: var(--c-paper); }
.legal-main {
  padding: calc(var(--hdr) + var(--s-5)) var(--s-3) var(--s-6);
  background: var(--c-paper);
}
.legal-container {
  max-width: 820px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid var(--c-line);
  border-radius: 8px;
  padding: var(--s-5) var(--s-4);
  box-shadow: 0 4px 14px rgba(28, 24, 20, 0.04);
}
.legal-container h1 {
  font-family: var(--f-display);
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.2;
  color: var(--c-text);
  margin-bottom: var(--s-3);
  padding-bottom: var(--s-3);
  border-bottom: 1px solid var(--c-line);
}
.legal-container h2 {
  font-family: var(--f-display);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: var(--c-text);
  margin-top: var(--s-4);
  margin-bottom: var(--s-2);
}
.legal-container h3 {
  font-family: var(--f-body);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--c-text);
  margin-top: var(--s-3);
  margin-bottom: var(--s-2);
}
.legal-container p {
  font-family: var(--f-body);
  font-size: 0.94rem;
  line-height: 1.7;
  color: var(--c-text);
  margin-bottom: var(--s-2);
}
.legal-container .legal-lead {
  font-size: 1.02rem;
  color: var(--c-text);
  background: rgba(184, 137, 36, 0.06);
  border-inline-start: 3px solid var(--c-gold);
  padding: var(--s-2) var(--s-3);
  border-radius: 4px;
  margin-bottom: var(--s-4);
}
.legal-container ul {
  font-family: var(--f-body);
  font-size: 0.92rem;
  line-height: 1.7;
  color: var(--c-text);
  padding-inline-start: var(--s-3);
  margin-bottom: var(--s-2);
}
.legal-container ul li { margin-bottom: 4px; }
.legal-container strong { color: var(--c-text); font-weight: 600; }
.legal-container em { color: var(--c-gold-deep); font-style: italic; }
.legal-container a {
  color: var(--c-gold-deep);
  text-decoration: underline;
  text-decoration-color: rgba(117, 85, 27, 0.3);
  text-underline-offset: 3px;
  transition: color var(--d1) var(--e);
}
.legal-container a:hover {
  color: var(--c-text);
  text-decoration-color: var(--c-text);
}
.legal-table {
  width: 100%;
  border-collapse: collapse;
  margin: var(--s-2) 0;
  font-family: var(--f-body);
  font-size: 0.88rem;
}
.legal-table th,
.legal-table td {
  text-align: start;
  padding: 10px 12px;
  border: 1px solid var(--c-line);
}
.legal-table th {
  background: rgba(184, 137, 36, 0.08);
  font-weight: 600;
  color: var(--c-text);
  letter-spacing: 0.04em;
  font-size: 0.78rem;
  text-transform: uppercase;
}
.legal-table td {
  background: rgba(255, 255, 255, 0.4);
}
.legal-meta {
  margin-top: var(--s-5);
  padding-top: var(--s-3);
  border-top: 1px solid var(--c-line);
  font-family: var(--f-body);
  font-size: 0.84rem;
  color: var(--c-text-mute);
}
.legal-meta p { margin-bottom: 4px; font-size: 0.84rem; }
.legal-meta strong { color: var(--c-text); }

/* V9 — Footer legal links */
.footer-legal {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px dashed var(--c-line-dark);
  font-family: var(--f-body);
  font-size: 0.74rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.footer-legal a {
  color: var(--c-text-light-mute);
  text-decoration: none;
  transition: color var(--d1) var(--e);
}
.footer-legal a:hover { color: var(--c-paper); }
.footer-legal .sep { color: var(--c-text-light-mute); opacity: 0.5; }

/* ═════════════════════════════════════════════════════════════════════
   V9 — HERO PROOF LAYER (R1.11 - Value proposition strip)
   ═════════════════════════════════════════════════════════════════════ */
.hero-proof {
  padding: var(--s-5) 0;
  background: linear-gradient(180deg, var(--c-paper) 0%, var(--c-cream) 100%);
  border-top: 1px solid var(--c-line-soft);
  border-bottom: 1px solid var(--c-line-soft);
}
.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s-3);
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 var(--s-3);
}
.proof-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: var(--s-2) 0;
}
.proof-icon {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(184, 137, 36, 0.12), rgba(184, 137, 36, 0.04));
  border: 1px solid rgba(184, 137, 36, 0.20);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-gold-deep);
}
.proof-icon svg { width: 22px; height: 22px; }
.proof-text { min-width: 0; }
.proof-title {
  font-family: var(--f-display);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--c-text);
  margin-bottom: 4px;
  line-height: 1.2;
}
.proof-desc {
  font-family: var(--f-body);
  font-size: 0.83rem;
  line-height: 1.5;
  color: var(--c-text-mute);
}

@media (max-width: 980px) {
  .proof-grid { grid-template-columns: repeat(2, 1fr); gap: var(--s-2); }
}
@media (max-width: 520px) {
  .proof-grid { grid-template-columns: 1fr; gap: var(--s-2); }
  .hero-proof { padding: var(--s-4) 0; }
}

/* RTL */
[dir="rtl"] .proof-item { text-align: right; }

/* V9 — "Kafede dene, evde demle" cross-sell badge */
.cafe-to-home {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  margin-top: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(184, 137, 36, 0.10), rgba(184, 137, 36, 0.04));
  border: 1px dashed rgba(184, 137, 36, 0.35);
  font-family: var(--f-body);
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--c-gold-deep);
  text-decoration: none;
  align-self: flex-start;
  transition: all var(--d1) var(--e);
}
.cafe-to-home:hover {
  background: var(--c-gold-deep);
  color: var(--c-paper);
  border-color: var(--c-gold-deep);
  border-style: solid;
}
.cafe-to-home svg {
  width: 12px;
  height: 12px;
  flex-shrink: 0;
}

/* ═════════════════════════════════════════════════════════════════════
   V9 — MOBILE STICKY CTA (shop only, dismissible)
   ═════════════════════════════════════════════════════════════════════ */
.mobile-sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 90;
  padding: 12px;
  background: rgba(28, 24, 20, 0.96);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(184, 137, 36, 0.30);
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: none;
}
.mobile-sticky-cta.visible { transform: translateY(0); }
.msc-inner {
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: 720px;
  margin: 0 auto;
}
.msc-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.msc-text strong {
  font-family: var(--f-body);
  font-size: 0.86rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--c-paper);
  line-height: 1.2;
}
.msc-text span {
  font-family: var(--f-body);
  font-size: 0.72rem;
  color: var(--c-text-light-mute);
  line-height: 1.3;
  margin-top: 2px;
}
.msc-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 14px;
  background: #25D366;
  color: #fff;
  border-radius: 999px;
  font-family: var(--f-body);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-decoration: none;
  flex-shrink: 0;
  transition: background var(--d1) var(--e);
}
.msc-cta:hover { background: #20BD5B; }
.msc-cta svg { width: 14px; height: 14px; }
.msc-close {
  width: 32px;
  height: 32px;
  border: 0;
  background: transparent;
  color: var(--c-text-light-mute);
  cursor: pointer;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all var(--d1) var(--e);
}
.msc-close:hover {
  background: rgba(238, 231, 210, 0.08);
  color: var(--c-paper);
}
.msc-close svg { width: 14px; height: 14px; }

@media (max-width: 768px) {
  .mobile-sticky-cta { display: block; }
}

/* Don't conflict with mobile-bar */
@media (max-width: 768px) {
  body:has(.mobile-sticky-cta.visible) .mobile-bar { display: none; }
}
