/* Sayfa geçişlerinde (giriş↔menü) tarayıcı otomatik crossfade yapsın → siyah flaş gider. */
@view-transition {
  navigation: auto;
}

@font-face {
  font-family: "Libre Baskerville Local";
  src: url("assets/fonts/LibreBaskerville-Regular.woff2") format("woff2"), url("assets/fonts/LibreBaskerville-Regular.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Libre Baskerville Local";
  src: url("assets/fonts/LibreBaskerville-Bold.woff2") format("woff2"), url("assets/fonts/LibreBaskerville-Bold.ttf") format("truetype");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: "Revans Local";
  src: url("assets/fonts/Revans-Medium.woff2") format("woff2"), url("assets/fonts/Revans-Medium.ttf") format("truetype");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "IBM Plex Sans Local";
  src: url("assets/fonts/IBMPlexSans-Regular.woff2") format("woff2"), url("assets/fonts/IBMPlexSans-Regular.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "IBM Plex Sans Local";
  src: url("assets/fonts/IBMPlexSans-Medium.woff2") format("woff2"), url("assets/fonts/IBMPlexSans-Medium.ttf") format("truetype");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "IBM Plex Sans Local";
  src: url("assets/fonts/IBMPlexSans-SemiBold.woff2") format("woff2"), url("assets/fonts/IBMPlexSans-SemiBold.ttf") format("truetype");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "IBM Plex Sans Local";
  src: url("assets/fonts/IBMPlexSans-Bold.woff2") format("woff2"), url("assets/fonts/IBMPlexSans-Bold.ttf") format("truetype");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

:root {
  color-scheme: dark;
  --display-font: "Revans Local", "Libre Baskerville Local", "Libre Baskerville", Georgia, "Times New Roman", serif;
  --font: "IBM Plex Sans Local", "IBM Plex Sans", "Helvetica Neue", Arial, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  --bg: #070706;
  --panel: #10100f;
  --panel-2: #171513;
  --sheet: #12110f;
  --ink: #f6efe4;
  --paper: #ffffff;
  --paper-soft: #f2eee6;
  --muted: #a29a90;
  --soft: #ffffff;
  --brass: #c5a06a;
  --brass-deep: #7d6040;
  --line: rgba(246, 239, 228, 0.12);
  --line-strong: rgba(246, 239, 228, 0.28);
  --wood: #744628;
  --shadow: 0 22px 54px rgba(0, 0, 0, 0.52);
  --radius-card: 14px;
  --radius-media: 12px;
  --touch-target: 44px;
  /* Motion dili tokenları — docs/daniels-visual-motion-system.md §2.
     Tüm loop animasyonları tek taban süre × dar oran bandı (0.85–1.31) ve tek easing kullanır;
     damla/yerçekimi efektleri belgeli istisna olarak --motion-ease-drip alır. */
  --motion-ease: cubic-bezier(0.37, 0, 0.63, 1);

  /* ── Planlı tasarım ölçeği (tek kaynak; magic-number yerine token) ──────────
     Tüm tipografi/boşluk/etiket bu ölçekten beslenir; değer değiştirmek = tek
     yerden değiştirmek. */
  /* Tip ölçeği */
  --fs-display: clamp(2.25rem, 7vw, 3.5rem); /* hero başlık (akışkan) */
  --fs-h2: 1.5rem;        /* 24px — bölüm / strip başlığı */
  --fs-title: 1.1875rem;  /* 19px — ürün adı + fiyat (dengeli) */
  --fs-body: 0.9375rem;   /* 15px — gövde */
  --fs-sm: 0.8125rem;     /* 13px — ikincil / çip etiketi */
  --fs-label: 0.6875rem;  /* 11px — eyebrow / etiket */
  --fs-micro: 0.625rem;   /* 10px — mikro */
  /* Tracking + satır yüksekliği */
  --track-display: -0.018em;
  --track-tight: -0.012em;
  --track-label: 0.14em;
  --lh-tight: 1.05;
  --lh-snug: 1.16;
  --lh-body: 1.5;
  /* Boşluk ölçeği (4px tabanı) */
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 24px;
  --space-6: 32px;
  /* Yarı-ton etiket rengi */
  --ink-label: rgba(246, 239, 228, 0.55);
}

* {
  box-sizing: border-box;
  letter-spacing: 0;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  padding-bottom: 104px;
  background:
    linear-gradient(135deg, rgba(246, 239, 228, 0.018) 0 1px, transparent 1px 11px),
    linear-gradient(180deg, rgba(246, 239, 228, 0.035), transparent 280px),
    linear-gradient(180deg, rgba(125, 96, 64, 0.13), transparent 520px),
    var(--bg);
  color: var(--ink);
  font-family: var(--font);
  font-size: 15px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img,
video {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  color: inherit;
  font: inherit;
}

button {
  border: 0;
  cursor: pointer;
}

.category-chip,
.dialog-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  white-space: nowrap;
}

.is-dialog-open {
  overflow: hidden;
}

.media-frame {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: var(--radius-media);
  background:
    radial-gradient(circle at 50% 78%, rgba(116, 70, 40, 0.24), transparent 31%),
    radial-gradient(circle at 34% 18%, rgba(246, 239, 228, 0.055), transparent 28%),
    linear-gradient(145deg, rgba(246, 239, 228, 0.035), rgba(0, 0, 0, 0.28)),
    #090908;
  isolation: isolate;
  transform-style: preserve-3d;
  will-change: transform;
}

.media-frame > img,
.media-frame > video {
  position: relative;
  z-index: 3;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 57%;
  filter: saturate(0.88) contrast(1.05) brightness(0.93);
  transform: translateZ(0);
}
/* Fotoğrafın sert dikdörtgen kenarını karta erit: çevreye yumuşak iç-vinyet. */
.media-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
  border-radius: inherit;
  box-shadow: inset 0 0 14px 1px rgba(16, 16, 15, 0.55);
}

.menu-card-main > .media-frame > img,
.menu-card-main > .media-frame > video {
  object-position: center 62%;
}

.visual-hot-cup > img,
.visual-bean-pack > img {
  object-position: center 58%;
}

.visual-cold-cup > img,
.visual-cold-bottle > img {
  z-index: 4;
  filter: saturate(0.92) contrast(1.1) brightness(0.91);
}

.visual-hot-cup > img {
  transform-origin: 50% 82%;
}

.motion-milk-glide > img {
  transform: translateZ(0);
}

.motion-foam-breath > img {
  transform: translateZ(0);
}

.visual-cold-cup > img {
  transform: translateZ(0);
}

.menu-card-main > .visual-cold-cup > img,
.menu-card-main > .visual-cold-bottle > img {
  object-fit: cover;
  object-position: center 66%;
}

.visual-cold-bottle {
  background:
    radial-gradient(ellipse at 52% 72%, rgba(116, 70, 40, 0.22), transparent 38%),
    radial-gradient(ellipse at 38% 18%, rgba(246, 239, 228, 0.045), transparent 34%),
    linear-gradient(145deg, rgba(246, 239, 228, 0.03), rgba(0, 0, 0, 0.32)),
    #080807;
}

.visual-cold-bottle > img {
  object-position: center 58%;
  filter: saturate(0.9) contrast(1.14) brightness(0.9);
}

.visual-bean-pack > img {
  transform-origin: 50% 86%;
}

.motion-ice-tilt > img {
  transform: translateZ(0);
}

.motion-bean-rock > img {
  transform: translateZ(0);
}

.motion-pack-sway > img {
  transform: translateZ(0);
}

.media-plinth,
.media-fx {
  position: absolute;
  pointer-events: none;
}

.media-plinth {
  right: 12%;
  bottom: 8px;
  left: 12%;
  z-index: 2;
  height: 18px;
  border-radius: 999px;
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.58), transparent 68%);
  filter: blur(2px);
  opacity: 0.72;
}

.media-fx {
  z-index: 5;
  display: none;
}

.quick-item.is-in-view {
  border-color: rgba(197, 160, 106, 0.2);
}

.menu-card.is-in-view .media-frame,
.quick-item.is-in-view .media-frame {
  transform: translateZ(0);
}

.menu-card.is-in-view .media-frame > img,
.quick-item.is-in-view .media-frame > img {
  will-change: auto;
}

.motion-cup-drift > img {
  transform: translateZ(0);
}

.motion-bottle-rock > img {
  transform-origin: 50% 84%;
}

.hero {
  position: relative;
  min-height: 282px;
  overflow: hidden;
  background: var(--bg);
}

.hero::after {
  position: absolute;
  right: 16px;
  bottom: 0;
  left: 16px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(197, 160, 106, 0.46), transparent);
  opacity: 0.72;
  content: "";
}

.hero-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 72%;
  filter: saturate(0.62) contrast(1.12) brightness(0.74);
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 7, 6, 0.08), rgba(7, 7, 6, 0.86) 68%, var(--bg)),
    linear-gradient(90deg, rgba(7, 7, 6, 0.91), rgba(7, 7, 6, 0.16));
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: end;
  min-height: inherit;
  max-width: 1040px;
  margin: 0 auto;
  padding: 62px 18px 26px;
}

.eyebrow,
.section-heading p,
.quick-strip-head p {
  margin: 0;
  color: var(--ink-label);
  font-family: var(--font);
  font-size: var(--fs-label);
  font-weight: 600;
  letter-spacing: var(--track-label);
}

.hero h1 {
  font-family: var(--display-font);
  max-width: 12ch;
  margin: 8px 0 8px;
  font-size: var(--fs-display);
  font-weight: 700;
  line-height: var(--lh-tight);
  text-shadow: 0 14px 34px rgba(0, 0, 0, 0.52);
  letter-spacing: var(--track-display);
}

.hero p:not(.eyebrow) {
  max-width: 500px;
  margin: 0;
  color: rgba(246, 239, 228, 0.78);
  font-size: 15px;
  line-height: 1.5;
}

.menu-tools,
.category-rail,
.quick-strip-section,
.menu-root,
.featured-section,
.location {
  width: min(1040px, 100%);
  margin: 0 auto;
}

.menu-tools {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: center;
  padding: 12px 16px 9px;
  border-bottom: 1px solid rgba(246, 239, 228, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.026), rgba(7, 7, 6, 0)),
    var(--bg);
}

.search-box {
  display: block;
  min-width: 0;
}

.search-box input {
  width: 100%;
  min-height: 44px;
  padding: 0 12px;
  border: 1px solid rgba(246, 239, 228, 0.095);
  border-radius: 6px;
  outline: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.028), rgba(255, 255, 255, 0.01)),
    rgba(255, 255, 255, 0.018);
  color: var(--ink);
  font-size: 14px;
}

.search-box input:focus {
  border-color: var(--line-strong);
  box-shadow: 0 0 0 3px rgba(255, 246, 230, 0.08);
}

.category-rail {
  position: sticky;
  top: 0;
  z-index: 24;
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 8px 16px 10px;
  border-bottom: 1px solid rgba(246, 239, 228, 0.1);
  background: rgba(7, 7, 6, 0.96);
  scrollbar-width: none;
  backdrop-filter: blur(16px);
  touch-action: pan-x;
}

.result-pill {
  display: none;
  color: rgba(246, 239, 228, 0.52);
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
}

.category-rail::-webkit-scrollbar,
.quick-strip::-webkit-scrollbar {
  display: none;
}

.category-chip {
  gap: 8px;
  flex: 0 0 auto;
  min-height: 44px;
  padding: 0 var(--space-3);
  border-radius: var(--radius-card);
  color: var(--ink-label);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.01em;
  background: none;
}

.category-chip.is-active {
  background: rgba(197, 160, 106, 0.1);
  color: var(--ink);
}

.quick-strip-section {
  padding: 18px 16px 5px;
}

.quick-strip-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 11px;
}

.quick-strip-head div {
  display: grid;
  gap: 4px;
}

.quick-strip-head h2 {
  font-family: var(--display-font);
  margin: 0;
  font-size: var(--fs-h2);
  font-weight: 700;
  line-height: var(--lh-snug);
  letter-spacing: var(--track-tight);
}

.quick-strip-head a {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  min-height: var(--touch-target);
  padding: 0 2px;
  color: rgba(246, 239, 228, 0.62);
  font-size: 12px;
  font-weight: 600;
}

.quick-strip {
  display: grid;
  grid-auto-columns: minmax(188px, 66%);
  grid-auto-flow: column;
  gap: 11px;
  overflow-x: auto;
  padding-bottom: 14px;
  scrollbar-width: none;
  touch-action: pan-x;
}

.quick-item {
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 10px;
  min-height: 226px;
  padding: 0;
  border: 0;
  background: none;
  color: var(--ink);
  text-align: left;
  box-shadow: none;
  overflow: visible;
  opacity: 1;
  transform: none;
  filter: none;
}

.quick-item > * {
  position: relative;
  z-index: 1;
}

.quick-item .media-frame {
  width: 100%;
  aspect-ratio: 1.2;
}

.quick-item span {
  overflow-wrap: anywhere;
  font-family: var(--display-font);
  font-size: var(--fs-title);
  font-weight: 600;
  line-height: 1.16;
  letter-spacing: var(--track-tight);
}

.quick-item strong {
  justify-self: start;
  color: var(--ink);
  font-family: var(--display-font);
  font-size: 17px;
  font-weight: 600;
}

.menu-root {
  display: grid;
  gap: 24px;
  padding: 15px 16px 34px;
}

.menu-section {
  scroll-margin-top: 122px;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 11px;
  padding-top: 12px;
  border-top: 1px solid rgba(246, 239, 228, 0.1);
}

.section-heading.compact {
  display: grid;
  margin-bottom: 12px;
}

.section-heading > div {
  display: grid;
  gap: 3px;
  min-width: 0;
}

.section-heading h2 {
  font-family: var(--display-font);
  margin: 0;
  font-size: var(--fs-h2);
  font-weight: 700;
  line-height: var(--lh-snug);
  letter-spacing: var(--track-tight);
}

.section-heading span {
  max-width: 650px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.52;
}

.menu-grid,
.featured-grid {
  display: grid;
  gap: 18px;
}

/* Kartların KENDİ çerçevesi yok — tek çerçeve görselin kendisi (çerçeve-içinde-çerçeve
   hissi giderildi). Ürünler boşlukla ayrılır; görsel yumuşak köşeli + vinyetli tek öğe. */
.menu-card,
.feature-card {
  position: relative;
  border: 0;
  background: none;
  overflow: visible;
}

.menu-card {
  opacity: 1;
  transform: none;
  filter: none;
}

/* Zemin kalktığı için basışta dokunsal geri bildirim: ürün hafifçe çöker. */
.menu-card-main,
.quick-item {
  transition: transform 150ms var(--motion-ease);
}
.menu-card-main:active,
.quick-item:active {
  transform: scale(0.985);
}

.menu-card:active {
  transform: translateY(1px) scale(0.996);
}

.menu-card-main {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-areas:
    "media copy"
    "media price";
  grid-template-columns: 124px minmax(0, 1fr);
  align-items: end;
  gap: 16px;
  width: 100%;
  min-height: 158px;
  padding: 14px;
  background: transparent;
  text-align: left;
}

.menu-card.is-section-lead {
  background: none;
}

.menu-card.is-section-lead .menu-card-main {
  grid-template-areas:
    "media media"
    "copy price";
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  min-height: 0;
}

.menu-card.is-section-lead .menu-card-main > .media-frame {
  width: 100%;
  height: auto;
  aspect-ratio: 1.62;
}

.menu-card.is-section-lead .menu-copy {
  align-self: center;
}

.menu-card-main > .media-frame {
  grid-area: media;
  width: 124px;
  height: 138px;
}

.menu-copy {
  grid-area: copy;
  display: grid;
  gap: 7px;
  align-items: start;
  align-self: end;
  min-width: 0;
  padding-top: 4px;
}

.menu-copy strong {
  overflow-wrap: anywhere;
  font-family: var(--display-font);
  font-size: var(--fs-title);
  font-weight: 700;
  line-height: 1.16;
  letter-spacing: var(--track-tight);
}

.menu-desc {
  color: rgba(246, 239, 228, 0.5);
  display: -webkit-box;
  font-size: 12.5px;
  line-height: 1.34;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.tag-row em {
  padding: 4px 7px;
  border: 1px solid rgba(246, 239, 228, 0.09);
  border-radius: 999px;
  background: rgba(246, 239, 228, 0.045);
  color: rgba(246, 239, 228, 0.66);
  font-size: 11px;
  font-style: normal;
  font-weight: 600;
}

.price {
  grid-area: price;
  justify-self: end;
  align-self: start;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  font-family: var(--display-font);
  font-size: var(--fs-title);
  font-weight: 600;
  white-space: nowrap;
  letter-spacing: 0.01em;
}

.price.is-pending {
  color: rgba(246, 239, 228, 0.5);
}

.empty-note {
  margin: 0;
  padding: 18px;
  border: 1px dashed var(--line);
  border-radius: 8px;
  color: var(--muted);
}

/* Data-fail / no-JS fallback — boşta kalmayan zarif hata yüzeyi. */
.menu-fallback {
  margin: 40px 16px;
  padding: 28px 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  background: var(--panel);
  text-align: center;
}

.menu-fallback-brand {
  margin: 0 0 14px;
  color: var(--brass);
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.menu-fallback h2 {
  margin: 0 0 6px;
  font-size: 22px;
}

.menu-fallback p {
  margin: 0 0 18px;
  color: var(--muted);
}

.menu-fallback-retry {
  min-height: var(--touch-target);
  padding: 0 22px;
  border: 1px solid var(--brass);
  border-radius: 999px;
  background: rgba(197, 160, 106, 0.12);
  color: var(--brass);
  font-weight: 600;
}

.menu-fallback-addr {
  margin-top: 18px !important;
  font-size: 13px;
}

.featured-section {
  padding: 6px 16px 34px;
}

.feature-card {
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  width: 100%;
  min-height: 102px;
  padding: 9px;
  color: var(--ink);
  text-align: left;
}

.feature-card .media-frame {
  width: 86px;
  height: 86px;
}

.feature-card span {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.feature-card small {
  color: rgba(246, 239, 228, 0.56);
  font-size: 11px;
  font-weight: 600;
}

.feature-card strong {
  overflow-wrap: anywhere;
  font-family: var(--font);
  font-size: 15px;
  font-weight: 700;
}

.feature-card em {
  align-self: center;
  padding: 7px 9px;
  border-radius: 6px;
  border: 1px solid rgba(197, 160, 106, 0.26);
  background: rgba(197, 160, 106, 0.1);
  color: #f1d7a5;
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
}

.location {
  padding: 4px 16px 42px;
}

.item-dialog {
  width: min(540px, calc(100% - 18px));
  max-height: calc(100svh - 18px);
  margin: auto auto 0;
  padding: 0;
  border: 1px solid rgba(246, 239, 228, 0.12);
  border-radius: 18px 18px 0 0;
  background:
    radial-gradient(circle at 50% 0%, rgba(197, 160, 106, 0.12), transparent 38%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(16, 16, 15, 0.99)),
    var(--sheet);
  color: var(--ink);
  overflow: hidden;
  overscroll-behavior: contain;
  box-shadow: var(--shadow);
}

/* Sürükle-kapat tutamağı — native bottom-sheet sinyali. */
.dialog-grip {
  position: absolute;
  top: 8px;
  left: 50%;
  z-index: 7;
  width: 40px;
  height: 4px;
  border-radius: 999px;
  background: rgba(246, 239, 228, 0.3);
  transform: translateX(-50%);
  pointer-events: none;
}

#dialog-body {
  width: 100%;
  max-height: calc(100svh - 18px);
  overflow-y: auto;
  overscroll-behavior: contain;
  padding-bottom: 24px;
}

.item-dialog[open] {
  animation: sheetEnter 260ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.item-dialog::backdrop {
  background: rgba(7, 7, 6, 0.76);
  backdrop-filter: blur(8px);
}

.dialog-close {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  width: 44px;
  min-height: 44px;
  padding: 0;
  border-radius: 999px;
  border: 1px solid rgba(246, 239, 228, 0.13);
  background: rgba(7, 7, 6, 0.86);
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.dialog-close svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  stroke-width: 1.5px;
  fill: none;
}

.dialog-image {
  width: 100%;
  height: min(48svh, 480px);
  background: #050504;
  object-fit: contain;
  filter: saturate(0.84) contrast(1.1) brightness(0.92);
}

.dialog-visual-frame {
  width: 100%;
  height: min(48svh, 480px);
  padding: 8px;
  border: 0;
  border-radius: 0;
  background:
    radial-gradient(circle at 50% 78%, rgba(197, 160, 106, 0.18), transparent 32%),
    linear-gradient(145deg, rgba(246, 239, 228, 0.07), rgba(0, 0, 0, 0.34)),
    #050504;
}

.dialog-visual-frame .dialog-image {
  width: 100%;
  height: 100%;
  background: transparent;
  object-fit: contain;
}

.dialog-copy {
  display: grid;
  gap: 13px;
  padding: 14px 16px 16px;
  border-top: 1px solid rgba(246, 239, 228, 0.08);
}

.dialog-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.dialog-summary > div {
  min-width: 0;
}

.dialog-copy p {
  margin: 0;
  color: rgba(246, 239, 228, 0.6);
  font-size: 11px;
  font-weight: 600;
}

.dialog-copy h3 {
  font-family: var(--display-font);
  margin: 3px 0 0;
  overflow-wrap: anywhere;
  font-size: var(--fs-h2);
  font-weight: 700;
  line-height: var(--lh-snug);
  letter-spacing: var(--track-tight);
}

.dialog-copy strong {
  flex: 0 0 auto;
  padding: 9px 10px;
  border-radius: 7px;
  border: 1px solid rgba(197, 160, 106, 0.32);
  background: rgba(197, 160, 106, 0.12);
  color: #f1d7a5;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
}

.dialog-specs {
  display: flex;
  gap: 7px;
  overflow-x: auto;
  padding-bottom: 1px;
  scrollbar-width: none;
}

.dialog-specs::-webkit-scrollbar {
  display: none;
}

.dialog-specs span {
  flex: 0 0 auto;
  max-width: 190px;
  padding: 7px 9px;
  border: 1px solid rgba(246, 239, 228, 0.1);
  border-radius: 999px;
  background: rgba(246, 239, 228, 0.045);
  color: rgba(246, 239, 228, 0.72);
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.dialog-copy span,
.dialog-copy small {
  color: rgba(246, 239, 228, 0.66);
  line-height: 1.55;
}

.dialog-desc {
  margin: 4px 0 0;
  color: rgba(246, 239, 228, 0.72);
  font-size: 14px;
  line-height: 1.55;
  overflow-wrap: anywhere;
}

/* Instagram'ın yeni güncellemesindeki gibi: ekrana yayılmayan, ortalanmış
   yüzen kapsül; blur'lu koyu cam, ikon-odaklı kompakt dokunma hedefleri. */
.bottom-nav {
  position: fixed;
  bottom: calc(14px + env(safe-area-inset-bottom, 0px));
  left: 50%;
  z-index: 35;
  display: flex;
  align-items: center;
  gap: 6px;
  width: max-content;
  padding: 7px;
  border: 1px solid rgba(246, 239, 228, 0.16);
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0) 58%),
    rgba(10, 10, 9, 0.74);
  -webkit-backdrop-filter: blur(18px) saturate(1.15);
  backdrop-filter: blur(18px) saturate(1.15);
  transform: translateX(-50%);
  box-shadow: var(--shadow);
}

.bottom-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: var(--touch-target);
  height: var(--touch-target);
  border-radius: 999px;
  color: rgba(246, 239, 228, 0.7);
  transition:
    background-color 160ms ease,
    color 160ms ease,
    transform 150ms var(--motion-ease);
}

/* Etiketler görsel olarak gizli; erişilebilir ad olarak yaşamaya devam eder. */
.bottom-nav a span {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.bottom-nav a svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  stroke-width: 1.5px;
  fill: none;
}

.bottom-nav a:active {
  background: rgba(246, 239, 228, 0.1);
  color: var(--ink);
  transform: scale(0.92);
}

.bottom-nav a:focus-visible {
  color: var(--ink);
  outline: 2px solid var(--brass);
  outline-offset: 2px;
}

.bottom-nav a.is-active {
  background: rgba(197, 160, 106, 0.16);
  color: var(--brass) !important;
}

.bottom-nav a.is-active svg {
  stroke: var(--brass) !important;
}



@keyframes sheetEnter {
  from {
    opacity: 0;
    transform: translate3d(0, 18px, 0) scale(0.985);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}









































@media (min-width: 720px) {
  .menu-tools,
  .category-rail,
  .quick-strip-section,
  .menu-root,
  .featured-section,
  .location {
    padding-right: 24px;
    padding-left: 24px;
  }

  .hero {
    min-height: 360px;
  }

  .hero-content {
    padding-right: 24px;
    padding-left: 24px;
  }


  .menu-tools {
    grid-template-columns: minmax(320px, 520px);
    align-items: center;
    justify-content: space-between;
  }

  .quick-strip {
    grid-auto-columns: minmax(202px, 25%);
  }

  .menu-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  /* Günün kahvesi tek kart — geniş ekranda yarım kolonda yalnız kalmasın */
  .featured-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .menu-card-main {
    grid-template-columns: 132px minmax(0, 1fr);
    min-height: 166px;
  }

  .menu-card-main > .media-frame {
    width: 132px;
    height: 146px;
  }

  .item-dialog {
    width: min(620px, calc(100% - 28px));
    margin: auto;
    border-radius: 14px;
  }

  #dialog-body {
    max-height: calc(100vh - 40px);
  }

  .dialog-image,
  .dialog-visual-frame .dialog-image {
    height: min(54svh, 560px);
  }
}

@media (min-width: 1040px) {

  .menu-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .menu-card.is-section-lead {
    grid-column: span 2;
  }

  .menu-card-main {
    grid-template-columns: 126px minmax(0, 1fr);
  }

  .menu-card-main > .media-frame {
    width: 126px;
    height: 142px;
  }
}

@media (max-height: 700px) {
  .dialog-image {
    height: min(50svh, 340px);
  }

  .dialog-copy {
    padding: 14px;
  }
}

/* ── Scroll-life katmanı (20260610b) ─────────────────────────────────────────
   Kaydırma altında yaşam: tek seferlik kart/başlık sahne girişi, brass scroll
   progress çizgisi, bölüm numarası dili ve marka marquee şeridi.
   Gizleme yalnız html.js-anim altında — JS yoksa her şey koşulsuz görünür. */

.section-no {
  margin-right: 8px;
  color: var(--brass);
  font-family: var(--mono);
  font-weight: 600;
  letter-spacing: var(--track-label);
}

.section-no::after {
  content: "\2014";
  margin-left: 8px;
  color: rgba(197, 160, 106, 0.45);
}

html.js-anim .menu-card,
html.js-anim .quick-item {
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    opacity 620ms var(--motion-ease),
    transform 680ms var(--motion-ease);
  transition-delay: 0ms, 0ms, min(var(--motion-delay, 0ms), 240ms), min(var(--motion-delay, 0ms), 240ms);
}

html.js-anim .section-heading {
  transition:
    opacity 560ms var(--motion-ease),
    transform 640ms var(--motion-ease);
}

html.js-anim .menu-card:not(.has-entered),
html.js-anim .quick-item:not(.has-entered),
html.js-anim .section-heading:not(.has-entered) {
  opacity: 0;
  transform: translate3d(0, 18px, 0);
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 60;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--brass), rgba(197, 160, 106, 0.3));
  transform: scaleX(0);
  transform-origin: 0 50%;
  pointer-events: none;
}

/* Signature rail: dikey sayfa kaydırmasında yatay drift hissini bitir —
   kazara kaymalar kart sınırına geri oturur, kasıtlı kaydırma carousel gibi snap'ler. */
.quick-strip {
  scroll-snap-type: x mandatory;
  scroll-padding-left: 4px;
  overscroll-behavior-x: contain;
}

.quick-item {
  scroll-snap-align: start;
}

.category-rail {
  overscroll-behavior-x: contain;
}

/* Sıcak içecek kartlarında espresso hissi: siyah-zeminli buhar loop'u screen
   blend ile fincan üstüne biner; ürün videosu olan kartlar (hero) bunu almaz. */
.fx-steam-video {
  position: absolute;
  left: 50%;
  bottom: 34%;
  z-index: 5;
  width: 60%;
  height: 62%;
  object-fit: cover;
  transform: translateX(-50%);
  mix-blend-mode: screen;
  opacity: 0.36;
  filter: blur(1px);
  pointer-events: none;
}

.dialog-visual-frame .fx-steam-video {
  bottom: 30%;
  width: 46%;
  opacity: 0.44;
}

/* Dokunma hissi: basılı anında anlık tepki — "tıkladım ama tepki yok" algısını bitirir. */
.menu-card-main {
  transition: transform 150ms var(--motion-ease);
}

.menu-card-main:active {
  transform: scale(0.988);
}

.quick-item .media-frame {
  transition: transform 150ms var(--motion-ease);
}

.quick-item:active .media-frame {
  transform: scale(0.965) translateZ(0);
}

/* Erişilebilirlik (WCAG 2.4.7): klavye/switch kullanıcısı için tüm interaktif
   yüzeylerde görünür brass odak halkası. :focus-visible olduğu için fare
   dokunuşunda halka çıkmaz, premium his bozulmaz. */
.menu-card-main:focus-visible,
.quick-item:focus-visible,
.category-chip:focus-visible,
.dialog-close:focus-visible,
.quick-strip-head a:focus-visible,
.section-heading a:focus-visible {
  outline: 2px solid var(--brass);
  outline-offset: 2px;
  border-radius: var(--radius-card);
}

.dialog-close:focus-visible {
  border-radius: 999px;
}

.brand-marquee {
  margin: 30px 0 6px;
  padding: 13px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marqueeSlide 34s linear infinite;
  will-change: transform;
}

.marquee-track span {
  padding-right: 0.6em;
  color: rgba(246, 239, 228, 0.42);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.24em;
  white-space: nowrap;
  text-transform: uppercase;
}

@keyframes marqueeSlide {
  to {
    transform: translate3d(-50%, 0, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .scroll-progress {
    display: none;
  }

  .marquee-track {
    animation: none;
  }

  .fx-steam-video {
    display: none;
  }
}

/* ── İmza anı (20260611g) — duygusal kapanış beat'i (narrative/"ilgi" rotası) ──
   Araştırmanın işaret ettiği headroom: component cilası değil, bir AN. Editöryel,
   ortalanmış, bol nefesli bir marka credo'su — açılış→menü→kapanış duygusal yayı. */
.signature-note {
  width: min(620px, 100%);
  margin: 0 auto;
  padding: var(--space-6) var(--space-4) var(--space-5);
  display: grid;
  justify-items: center;
  gap: var(--space-3);
  text-align: center;
}
.signature-note::before {
  width: 30px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(197, 160, 106, 0.65), transparent);
  content: "";
}
.signature-note p {
  margin: 0;
  font-size: var(--fs-label);
  font-weight: 600;
  letter-spacing: var(--track-label);
  color: var(--ink-label);
}
.signature-note blockquote {
  margin: 0;
  max-width: 26ch;
  font-family: var(--display-font);
  font-size: clamp(1.2rem, 5vw, 1.5rem);
  font-weight: 500;
  line-height: 1.36;
  letter-spacing: var(--track-tight);
  color: var(--ink);
  text-wrap: balance;
}
.signature-note strong {
  font-family: var(--mono);
  font-size: var(--fs-micro);
  font-weight: 600;
  letter-spacing: 0.3em;
  color: var(--brass);
}

/* ── Sayfa geçişi (20260611h) — "karadan beliriş" sinematik giriş ─────────────
   Vitrin sahne kartına basınca karaya dalar (visual-widget), menü bu perdeyle
   karadan belirir → sert window.location.href yerine sinematik kesme. */
.page-veil {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: var(--bg);
  pointer-events: none;
}
.page-veil--enter {
  opacity: 1;
  animation: veilOut 720ms var(--motion-ease) forwards;
}
@keyframes veilOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@media (prefers-reduced-motion: reduce) {
  .page-veil {
    display: none !important;
  }
}

/* ── Menü/Çekirdek açılışında "MOTOR GİDİŞ" geçişi (girişten gelindiğinde) ─────
   Menü'ye basınca ANINDA bu sayfaya gelinir; bu overlay'de motor sürüp gider,
   sonra menü belirir. Gidiş animasyonu burada (hedef sayfada) olduğu için
   mobil navigasyonu HİÇ bozmaz. */
.motor-exit-overlay {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: #060605; /* giriş ekranının koyu zemini */
  pointer-events: auto; /* geçiş sürerken dokunuşları yut — görünmez menüye hayalet tıklama olmasın */
  will-change: opacity, transform;
  transition: opacity 640ms ease, transform 640ms cubic-bezier(0.22, 0.61, 0.36, 1);
}
/* Aşama 1: DANIEL'S + tagline + butonlar motoru uğurlar (motorla birlikte sahneden ayrılır) */
.motor-exit-overlay .exit-content,
.motor-exit-overlay .exit-glow {
  transition: opacity 560ms ease, transform 560ms cubic-bezier(0.22, 0.61, 0.36, 1);
}
.motor-exit-overlay.is-content-leaving .exit-content {
  opacity: 0;
  transform: translateY(-14px);
}
.motor-exit-overlay.is-content-leaving .exit-glow {
  opacity: 0;
}
/* Aşama 2: boş sahne hafif yukarı süzülüp menüye açılır (perde kalkar gibi) */
.motor-exit-overlay.is-revealing {
  opacity: 0;
  transform: translateY(-2.5vh) scale(1.012);
}

/* ── Konum CTA: Google Maps yol tarifi (şube bilgisi bölümü) ─────────────────── */
.location-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 14px;
  border: 1px solid rgba(197, 160, 106, 0.4);
  background: rgba(197, 160, 106, 0.08);
  color: #ecd6ab;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.02em;
}
.location-cta svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}
.location-cta:active {
  transform: scale(0.97);
}

/* ── Takometre rayı: aktif çipin altında ibre tiki; seçim yayla (spring) oturur ── */
.category-chip {
  position: relative;
}
.category-chip::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 5px;
  width: 14px;
  height: 2px;
  border-radius: 2px;
  background: var(--brass);
  transform: translateX(-50%) scaleX(0);
  transition: transform 320ms cubic-bezier(0.34, 1.56, 0.64, 1);
}
.category-chip.is-active::after {
  transform: translateX(-50%) scaleX(1);
}
.category-chip.is-active {
  animation: chipRev 300ms cubic-bezier(0.34, 1.56, 0.64, 1);
}
@keyframes chipRev {
  0% { transform: scale(0.95); }
  60% { transform: scale(1.04); }
  100% { transform: scale(1); }
}
@media (prefers-reduced-motion: reduce) {
  .category-chip::after {
    transition: none;
  }
}

/* ── Çekirdek sayfası: yatay kaydırmalı profil şeridi (scroll-snap) ─────────── */
.page-beans .menu-section {
  min-width: 0; /* grid-item içerik kadar büyümesin — şerit konteyneri kalsın */
}
.page-beans .menu-grid {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 4px 2px 10px;
  scrollbar-width: none;
}
.page-beans .menu-grid::-webkit-scrollbar {
  display: none;
}
.page-beans .menu-card {
  flex: 0 0 min(78vw, 360px);
  scroll-snap-align: center;
}
/* Şeritteki kartlar giriş koreografisinden muaf: yatay scroll'da viewport-observer
   geç tetiklenir, 2.+ kartlar görünmez kalırdı. */
html.js-anim .page-beans .menu-grid .menu-card:not(.has-entered) {
  opacity: 1;
  transform: none;
}

/* ── Giriş → menü morph: wordmark ve motor şeridi sayfa takasında süreklilik ── */
@media (prefers-reduced-motion: no-preference) {
  .motor-exit-overlay .exit-wordmark {
    view-transition-name: daniels-wordmark;
  }
  .motor-exit-overlay .exit-motor {
    view-transition-name: daniels-motor;
  }
}
/* Girişle BİREBİR aynı: motor alt 54vh şeritte, aynı ölçek/konum → yakınlaşma yok,
   menüye basınca motor park ettiği yerden hareket eder. */
.motor-exit-overlay .exit-motor {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 54vh;
  overflow: hidden;
}
.motor-exit-overlay .exit-motor::after {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(180deg, #060605 0%, rgba(6, 6, 5, 0.5) 18%, transparent 46%),
    linear-gradient(0deg, rgba(6, 6, 5, 0.4), transparent 38%);
  content: "";
}
.motor-exit-overlay video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 46%;
}
@media (prefers-reduced-motion: reduce) {
  .motor-exit-overlay {
    display: none !important;
  }
}
/* Overlay içeriği = girişin DANIEL'S + tagline + butonları (statik görünür).
   Geçişte birden kaybolmaz; motor gidişiyle birlikte tüm overlay yumuşakça solar. */
.motor-exit-overlay .exit-glow {
  position: absolute;
  left: 50%;
  top: 27%;
  width: 130vw;
  height: 66vh;
  transform: translate(-50%, -50%);
  background: radial-gradient(ellipse at center, rgba(197, 160, 106, 0.2), rgba(116, 70, 40, 0.08) 34%, transparent 62%);
  pointer-events: none;
}
.motor-exit-overlay .exit-content {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 52vh;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  gap: 22px;
  padding: 0 22px 3.5vh;
}
.motor-exit-overlay .exit-head {
  display: grid;
  justify-items: center;
  gap: 14px;
  text-align: center;
}
.motor-exit-overlay .exit-wordmark {
  font-family: var(--display-font);
  font-size: clamp(2.2rem, 13vw, 4.4rem);
  font-weight: 500;
  letter-spacing: 0.26em;
  text-indent: 0.26em;
  color: #f4ecda;
  text-shadow: 0 0 42px rgba(197, 160, 106, 0.32), 0 2px 30px rgba(0, 0, 0, 0.6);
}
.motor-exit-overlay .exit-tagline {
  margin: 0;
  font-family: var(--font);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: rgba(244, 236, 218, 0.62);
}
.motor-exit-overlay .exit-actions {
  width: min(440px, 92vw);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
/* Geçiş overlay klonu — girişle BİREBİR aynı döküm-pirinç materyal + statik far-izi
   rim (kısa süreli overlay olduğu için animasyona gerek yok). */
.motor-exit-overlay .exit-btn {
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 60px;
  padding: 0 16px;
  border-radius: 14px;
  font-family: var(--display);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-indent: 0.18em;
  line-height: 1.15;
  text-align: center;
  white-space: nowrap;
  color: #3a2510;
  background:
    radial-gradient(circle 2.6px at 12px 12px, rgba(255, 249, 232, 0.95), rgba(120, 78, 40, 0.85) 52%, rgba(120, 78, 40, 0) 100%),
    radial-gradient(circle 2.6px at calc(100% - 12px) 12px, rgba(255, 249, 232, 0.95), rgba(120, 78, 40, 0.85) 52%, rgba(120, 78, 40, 0) 100%),
    radial-gradient(circle 2.6px at 12px calc(100% - 12px), rgba(255, 249, 232, 0.95), rgba(120, 78, 40, 0.85) 52%, rgba(120, 78, 40, 0) 100%),
    radial-gradient(circle 2.6px at calc(100% - 12px) calc(100% - 12px), rgba(255, 249, 232, 0.95), rgba(120, 78, 40, 0.85) 52%, rgba(120, 78, 40, 0) 100%),
    linear-gradient(155deg, #f3dcae 0%, #e6c389 26%, #c5a06a 52%, #a9824f 74%, #caa56e 100%);
  box-shadow:
    inset 0 1.4px 0 rgba(255, 247, 225, 0.92),
    inset 0 -2px 2px rgba(74, 44, 17, 0.55),
    inset 0 0 0 1px rgba(120, 78, 40, 0.3),
    0 10px 22px -8px rgba(0, 0, 0, 0.78),
    0 2px 6px rgba(0, 0, 0, 0.55);
  text-shadow: 0 1px 0 rgba(255, 247, 225, 0.6), 0 -1px 0 rgba(74, 44, 17, 0.32);
}
.motor-exit-overlay .exit-btn > span {
  position: relative;
  z-index: 3;
}
.motor-exit-overlay .exit-btn:not(.exit-btn--ghost)::before {
  content: "";
  position: absolute;
  inset: 6px;
  z-index: 1;
  border-radius: 9px;
  border: 1px solid rgba(120, 78, 40, 0.5);
  box-shadow: inset 0 1px 0 rgba(255, 247, 225, 0.4), 0 1px 0 rgba(255, 247, 225, 0.28);
  pointer-events: none;
}
.motor-exit-overlay .exit-btn::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  padding: 1.4px;
  border-radius: inherit;
  pointer-events: none;
  background: conic-gradient(from 150deg, rgba(255, 247, 225, 0), rgba(255, 247, 225, 0.55) 90deg, rgba(255, 247, 225, 0) 200deg, rgba(255, 247, 225, 0) 360deg);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  filter: drop-shadow(0 0 4px rgba(255, 247, 225, 0.5));
}
.motor-exit-overlay .exit-btn--ghost {
  color: #e7d4b0;
  font-size: 12.5px;
  letter-spacing: 0.1em;
  text-indent: 0.1em;
  background:
    radial-gradient(circle 2.6px at 12px 12px, rgba(214, 178, 120, 0.85), rgba(0, 0, 0, 0.85) 55%, rgba(0, 0, 0, 0) 100%),
    radial-gradient(circle 2.6px at calc(100% - 12px) 12px, rgba(214, 178, 120, 0.85), rgba(0, 0, 0, 0.85) 55%, rgba(0, 0, 0, 0) 100%),
    radial-gradient(circle 2.6px at 12px calc(100% - 12px), rgba(214, 178, 120, 0.85), rgba(0, 0, 0, 0.85) 55%, rgba(0, 0, 0, 0) 100%),
    radial-gradient(circle 2.6px at calc(100% - 12px) calc(100% - 12px), rgba(214, 178, 120, 0.85), rgba(0, 0, 0, 0.85) 55%, rgba(0, 0, 0, 0) 100%),
    linear-gradient(157deg, #2a2522 0%, #1b1714 48%, #121010 100%);
  box-shadow:
    inset 0 1.2px 0 rgba(199, 160, 106, 0.34),
    inset 0 -2px 3px rgba(0, 0, 0, 0.72),
    inset 0 0 0 1px rgba(197, 160, 106, 0.2),
    0 9px 20px -9px rgba(0, 0, 0, 0.8),
    0 2px 5px rgba(0, 0, 0, 0.5);
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.6), 0 -1px 0 rgba(199, 160, 106, 0.12);
}
.motor-exit-overlay .exit-btn--ghost::before {
  content: "";
  position: absolute;
  inset: 6px;
  z-index: 1;
  border-radius: 9px;
  border: 1px solid rgba(197, 160, 106, 0.3);
  box-shadow: inset 0 1px 0 rgba(0, 0, 0, 0.45);
  background: repeating-linear-gradient(157deg, rgba(199, 160, 106, 0.05) 0 1px, transparent 1px 3px);
  opacity: 0.9;
  pointer-events: none;
}
.motor-exit-overlay .exit-btn--ghost::after {
  background: conic-gradient(from 150deg, rgba(236, 214, 171, 0), rgba(236, 214, 171, 0.4) 90deg, rgba(236, 214, 171, 0) 200deg, rgba(236, 214, 171, 0) 360deg);
  filter: drop-shadow(0 0 3px rgba(236, 214, 171, 0.3));
}
