:root {
  --bg: #0b0b0b;
  --bg-2: #12100f;
  --panel: #151412;
  --panel-2: #1d1a17;
  --panel-soft: rgba(255, 255, 255, 0.045);
  --line: rgba(255, 245, 230, 0.13);
  --line-strong: rgba(212, 163, 69, 0.34);
  --text: #fff7ec;
  --muted: #b9ada0;
  --muted-2: #8f8479;
  --red: #c51d22;
  --red-2: #8d1216;
  --red-soft: rgba(197, 29, 34, 0.18);
  --gold: #d4a345;
  --gold-2: #f0c36b;
  --cream: #f7ead8;
  --green: #19a463;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.38);
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --content: 1120px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
  background:
    radial-gradient(circle at 20% 0%, rgba(197, 29, 34, 0.18), transparent 26rem),
    radial-gradient(circle at 90% 5%, rgba(212, 163, 69, 0.14), transparent 22rem),
    linear-gradient(180deg, #080808 0%, #11100f 46%, #0d0d0d 100%);
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.30;
  background-image:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(180deg, black 0%, transparent 85%);
}

a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
button { color: inherit; }

.app-shell { min-height: 100vh; position: relative; }
.loading-card,
.error-panel {
  width: min(460px, calc(100% - 28px));
  margin: 84px auto;
  display: grid;
  gap: 10px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.035));
  box-shadow: var(--shadow);
  text-align: center;
}
.loading-card strong,
.error-panel h2 { font-size: 24px; color: var(--text); margin: 0; }
.loading-card span,
.error-panel p { color: var(--muted); margin: 0; line-height: 1.5; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(18px);
  background: rgba(8, 8, 8, 0.78);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.header-inner {
  width: min(var(--content), calc(100% - 28px));
  margin: 0 auto;
  min-height: 68px;
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr) 46px;
  align-items: center;
  gap: 10px;
}
.icon-button {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255,255,255,0.045);
  cursor: pointer;
  transition: 0.16s ease;
}
.icon-button:hover { border-color: var(--gold); transform: translateY(-1px); }
.header-brand {
  min-width: 0;
  text-align: center;
}
.header-brand strong {
  display: block;
  font-size: 18px;
  line-height: 1.1;
  letter-spacing: 0.5px;
}
.header-brand span {
  display: block;
  margin-top: 3px;
  color: var(--gold-2);
  font-size: 12px;
  font-weight: 800;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 42px 14px 30px;
  border-bottom: 1px solid rgba(212,163,69,0.20);
  background:
    linear-gradient(90deg, rgba(125,18,24,0.34) 0%, rgba(13,13,13,0.20) 42%, rgba(255,188,13,0.10) 100%),
    linear-gradient(180deg, rgba(255,255,255,0.040), rgba(255,255,255,0.0) 58%);
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 65% 20%, rgba(197,29,34,0.20), transparent 18rem),
    linear-gradient(180deg, rgba(255,255,255,0.035), transparent 48%);
}
.hero-inner {
  position: relative;
  z-index: 2;
  width: min(var(--content), 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  gap: 34px;
  align-items: center;
}
.logo-card {
  min-height: 170px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  border: 2px solid rgba(255,188,13,0.44);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255,250,240,0.98), rgba(255,236,199,0.96));
  box-shadow: 0 24px 54px rgba(0,0,0,0.42);
}
.logo-card img {
  display: block;
  width: 100%;
  max-height: 156px;
  object-fit: contain;
  border-radius: 6px;
}
.logo-fallback {
  color: #151515;
  font-size: 36px;
  font-weight: 1000;
  text-align: center;
  letter-spacing: 1px;
}
.brand-kicker {
  display: inline-flex;
  align-items: center;
  margin: 0 0 10px;
  padding: 7px 11px;
  border: 1px solid rgba(212,163,69,0.36);
  border-radius: 999px;
  color: var(--gold-2);
  background: rgba(212,163,69,0.10);
  font-size: 13px;
  font-weight: 900;
}
h1 {
  margin: 0;
  font-size: clamp(36px, 5.8vw, 70px);
  letter-spacing: 0;
  line-height: 0.96;
}
.hero-description {
  max-width: 720px;
  margin: 13px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}
.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 17px;
}
.meta-chip {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 11px;
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 999px;
  background: rgba(255,255,255,0.055);
  color: var(--cream);
  font-size: 12px;
  font-weight: 900;
}

.container {
  width: min(var(--content), calc(100% - 28px));
  margin: 18px auto 48px;
}
.panel {
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(255,255,255,0.075), rgba(255,255,255,0.035));
  box-shadow: var(--shadow);
}
.brand-switcher { padding: 12px; }
.unit-tabs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}
.unit-tab {
  min-height: 78px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255,255,255,0.045), rgba(255,255,255,0.018));
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.03);
  cursor: pointer;
  text-align: left;
  transition: 0.18s ease;
}
.unit-tab:hover {
  background: linear-gradient(180deg, rgba(255,255,255,0.065), rgba(255,255,255,0.028));
  border-color: rgba(212,163,69,0.25);
  transform: translateY(-1px);
}
.unit-tab.active {
  background: linear-gradient(135deg, #9e1518 0%, var(--red) 100%);
  border-color: rgba(255,255,255,0.12);
  box-shadow: 0 16px 34px rgba(197, 29, 34, 0.28), inset 0 1px 0 rgba(255,255,255,0.12);
}
.unit-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: rgba(212,163,69,0.11);
  color: var(--gold-2);
  font-size: 22px;
  overflow: hidden;
  flex: 0 0 auto;
}
.unit-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  display: block;
  padding: 3px;
}
.brand-unit-logo {
  width: 96px;
  height: 52px;
  border-radius: 15px;
  background: linear-gradient(180deg, #f7ead8 0%, #f3e4cf 100%);
  border: 1px solid rgba(212,163,69,0.35);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.55), 0 8px 18px rgba(0,0,0,0.12);
}
.unit-tab.active .unit-icon {
  background: linear-gradient(180deg, #fbf0df 0%, #f2e1c8 100%);
  color: #fff;
}
.unit-tab-text { min-width: 0; width: 100%; }
.unit-tab-name { display: block; font-size: 17px; font-weight: 1000; }
.unit-tab-subtitle { display: block; margin-top: 3px; color: var(--muted); font-size: 12px; font-weight: 800; line-height: 1.3; }
.unit-tab.active .unit-tab-subtitle { color: rgba(255,255,255,0.84); }

.toolbar {
  position: relative;
  top: auto;
  z-index: 2;
  margin-top: 14px;
  padding: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}
.search-wrap {
  position: relative;
  border-radius: 20px;
}
.search-wrap input {
  width: 100%;
  min-height: 56px;
  padding: 0 18px 0 54px;
  color: var(--text);
  border: 1px solid rgba(255, 245, 230, 0.16);
  border-radius: 20px;
  outline: none;
  background: linear-gradient(180deg, rgba(255,255,255,0.055), rgba(255,255,255,0.030));
  font-size: 16px;
  font-weight: 800;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.045);
}
.search-wrap input::placeholder { color: var(--muted-2); }
.search-wrap input:focus { border-color: var(--gold); box-shadow: 0 0 0 4px rgba(212,163,69,0.11); }
.search-icon {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gold-2);
  font-size: 24px;
  line-height: 1;
  opacity: 0.92;
}

.category-scroll {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 3px 2px 12px;
  scrollbar-width: none;
}
.category-scroll::-webkit-scrollbar {
  display: none;
}
.category-chip {
  flex: 0 0 auto;
  min-height: 42px;
  padding: 10px 16px;
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255,255,255,0.07), rgba(255,255,255,0.03));
  color: var(--cream);
  cursor: pointer;
  font-size: 13px;
  font-weight: 1000;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
  transition: 0.16s ease;
}
.category-chip:hover {
  border-color: rgba(212,163,69,0.28);
  transform: translateY(-1px);
}
.category-chip.active {
  color: #fff;
  background: linear-gradient(135deg, #9f1518 0%, var(--red) 100%);
  border-color: rgba(255,255,255,0.08);
  box-shadow: 0 12px 24px rgba(197,29,34,0.25);
}

.main-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 16px;
  margin-top: 14px;
  align-items: start;
}
.unit-panel { display: none; padding: 18px; }
.unit-panel.active { display: block; }
.unit-head {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}
.unit-kicker { margin: 0 0 7px; color: var(--gold-2); font-size: 12px; font-weight: 1000; letter-spacing: .7px; text-transform: uppercase; }
.unit-head h2 { margin: 0; font-size: clamp(26px, 3vw, 38px); line-height: 1; }
.unit-head p { margin: 8px 0 0; color: var(--muted); line-height: 1.55; }
.product-count {
  white-space: nowrap;
  border: 1px solid rgba(197,29,34,0.30);
  border-radius: 999px;
  padding: 8px 11px;
  color: #ffdadb;
  background: var(--red-soft);
  font-size: 12px;
  font-weight: 1000;
}
.category-section { margin-top: 18px; }
.category-heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}
.category-heading h3 { margin: 0; font-size: 23px; }
.category-heading span { color: var(--muted); font-size: 13px; font-weight: 900; }
.products { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
.product-card {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-rows: auto 1fr auto;
  border: 1px solid rgba(255,245,230,0.10);
  border-radius: 24px;
  background:
    radial-gradient(circle at top right, rgba(212,163,69,0.14), transparent 28%),
    linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.03));
  box-shadow: 0 14px 26px rgba(0,0,0,0.18), inset 0 1px 0 rgba(255,255,255,0.04);
  transition: 0.18s ease;
  min-height: 100%;
}
.product-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, rgba(212,163,69,0.0), rgba(212,163,69,0.75), rgba(197,29,34,0.85));
  opacity: 0.9;
}
.product-card:hover {
  transform: translateY(-2px);
  border-color: rgba(212,163,69,0.32);
  box-shadow: 0 18px 34px rgba(0,0,0,0.24);
}
.product-body {
  display: grid;
  gap: 8px;
  padding: 14px 16px 10px;
}
.product-media {
  width: calc(100% - 18px);
  aspect-ratio: 1.15 / 1;
  min-height: 94px;
  margin: 10px 9px 0;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 18px;
  color: var(--gold-2);
  background:
    radial-gradient(circle at 30% 20%, rgba(212,163,69,0.24), transparent 44%),
    linear-gradient(180deg, rgba(212,163,69,0.16), rgba(212,163,69,0.09));
  border: 1px solid rgba(212,163,69,0.22);
}
.product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.product-symbol {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  font-size: 42px;
}
.product-card h4 {
  margin: 0;
  font-size: 18px;
  line-height: 1.24;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 44px;
}
.product-description {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
  font-size: 13px;
  min-height: 38px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.product-allergens { margin: 7px 0 0; color: #e8b469; font-size: 12px; line-height: 1.4; }
.product-allergens span { font-weight: 1000; }
.product-footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 10px;
  padding: 0 16px 16px;
  margin-top: auto;
}
.product-footer-left {
  min-width: 0;
  display: grid;
  gap: 7px;
}
.product-detail-hint {
  display: inline-flex;
  align-items: center;
  width: max-content;
  max-width: 100%;
  min-height: 28px;
  padding: 5px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.08);
  color: var(--muted);
  background: rgba(255,255,255,0.04);
  font-size: 11px;
  font-weight: 1000;
  line-height: 1;
}
.product-badge {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  max-width: 55%;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(212,163,69,0.24);
  background: rgba(212,163,69,0.10);
  color: var(--gold-2);
  font-size: 12px;
  font-weight: 1000;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.product-price {
  min-width: 0;
  text-align: right;
  color: #fff3f3;
  background: linear-gradient(135deg, #9f1518 0%, var(--red) 100%);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  padding: 8px 10px;
  font-size: 18px;
  font-weight: 1000;
  line-height: 1.1;
  box-shadow: 0 10px 20px rgba(197,29,34,0.22);
}

.empty-search,
.coming-soon {
  display: none;
  margin-top: 16px;
  border: 1px dashed rgba(212,163,69,0.34);
  border-radius: 20px;
  background: rgba(212,163,69,0.07);
  padding: 28px 18px;
  text-align: center;
}
.empty-search.show,
.coming-soon.show { display: block; }
.coming-icon { font-size: 42px; margin-bottom: 8px; }
.coming-soon h3,
.empty-search h3 { margin: 0; font-size: 22px; }
.coming-soon p,
.empty-search p { margin: 8px auto 0; max-width: 520px; color: var(--muted); line-height: 1.55; }

.side-column { display: grid; gap: 14px; position: sticky; top: 148px; }
.info-card { padding: 18px; }
.info-card h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 16px;
  font-size: 23px;
}
.card-icon {
  width: 46px;
  height: 46px;
  display: inline-grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--gold-2);
  background: rgba(212,163,69,0.08);
  font-size: 22px;
  line-height: 1;
  flex: 0 0 46px;
}
.contact-lines { display: grid; gap: 16px; }
.contact-line {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  color: var(--cream);
  line-height: 1.45;
  font-weight: 800;
}
.contact-line .mini-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--gold-2);
  background: rgba(212,163,69,0.10);
  font-size: 23px;
  line-height: 1;
}
.contact-line a { color: var(--text); }
.contact-line small { display: block; color: var(--muted); font-weight: 700; }
.action-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 20px;
}
.contact-action {
  min-height: 62px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(0,0,0,0.16);
  color: var(--text);
  cursor: pointer;
  font-weight: 1000;
  white-space: nowrap;
  padding: 0 16px;
  line-height: 1.05;
  font-size: 15px;
}
.action-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 26px;
  font-size: 26px;
  line-height: 1;
  flex: 0 0 auto;
}
.contact-action.primary { background: linear-gradient(135deg, var(--red-2), var(--red)); border-color: var(--red); }
.hours-list { display: grid; gap: 13px; }
.hour-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: var(--muted);
  font-size: 15px;
}
.hour-row strong { color: var(--text); }
.hour-row.closed span,
.hour-row.closed strong { color: #ff4a4f; }
.notice-card {
  background: linear-gradient(135deg, #f6e7d1, #fff7e8);
  color: #241712;
  border-color: rgba(255,255,255,0.25);
}
.notice-card h3 { color: #241712; }
.notice-card p { margin: 0; color: #3b2a20; line-height: 1.55; font-size: 17px; font-weight: 900; }
.notice-card b { color: var(--red-2); }
.note-card { background: linear-gradient(135deg, rgba(55,17,17,0.96), rgba(27,13,13,0.96)); color: #fff4e7; }
.note-card p { margin: 0; color: #fff4e7; line-height: 1.55; font-size: 14px; }
.footer { margin: 22px 0 0; color: var(--muted-2); text-align: center; font-size: 12px; line-height: 1.5; }
.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 60;
  display: none;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 999px;
  color: white;
  background: linear-gradient(135deg, #075e32, #128c42);
  box-shadow: 0 18px 40px rgba(18,140,66,0.35);
  font-size: 24px;
  font-weight: 1000;
}
.floating-whatsapp.show { display: flex; }
.hidden { display: none !important; }

/* Dörtyol marka sekmeleri hizalama düzeltmesi */
.brand-switcher,
.toolbar,
.main-grid,
.unit-panel.active,
.category-scroll,
.products {
  width: 100%;
}
.main-grid > div { min-width: 0; }
.unit-tab { min-width: 0; }
.unit-tab-name,
.unit-tab-subtitle { overflow-wrap: anywhere; }

@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .logo-card { width: min(430px, 100%); margin: 0 auto; }
  .hero-meta { justify-content: center; }
  .main-grid { grid-template-columns: 1fr; }
  .side-column { position: static; }
  .products { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 10px; }
}
@media (max-width: 780px) {
  .products { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 9px; }
}

@media (max-width: 680px) {
  .header-inner { width: min(100% - 18px, var(--content)); }
  .hero { padding: 22px 9px 16px; }
  .container { width: min(100% - 18px, var(--content)); margin-top: 12px; }
  .brand-switcher { width: 100%; padding: 8px; border-radius: 20px; margin-left: 0; margin-right: 0; }
  .logo-card { min-height: 105px; padding: 10px; border-radius: 22px; }
  .logo-card img { max-height: 116px; object-fit: contain; object-position: center center; }
  .unit-tabs { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 6px; width: 100%; align-items: stretch; }
  .unit-tab { min-height: 78px; grid-template-columns: 1fr; justify-items: center; align-content: center; gap: 7px; padding: 8px 4px; text-align: center; border-radius: 16px; width: 100%; }
  .unit-icon { width: 42px; height: 42px; border-radius: 12px; font-size: 18px; }
  .brand-unit-logo { width: 64px; height: 36px; border-radius: 11px; }
  .unit-icon img { padding: 1px; }
  .unit-tab-text { display: flex; align-items: center; justify-content: center; min-height: 24px; }
  .unit-tab-name { font-size: 11px; line-height: 1.12; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
  .unit-tab-subtitle { display: none; }
  .toolbar { top: auto; }
  .unit-panel { padding: 12px; }
  .unit-head { display: block; }
  .products { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 8px; }
  .product-card { border-radius: 16px; }
  .product-media { width: calc(100% - 10px); min-height: 62px; margin: 5px 5px 0; border-radius: 12px; }
  .product-body { padding: 8px 8px 5px; gap: 5px; }
  .product-card h4 { font-size: 12px; line-height: 1.16; min-height: 28px; }
  .product-description { display: none; }
  .product-allergens { display: none; }
  .product-symbol { font-size: 25px; }
  .product-footer { display: grid; grid-template-columns: 1fr; gap: 6px; padding: 0 8px 9px; align-items: stretch; }
  .product-footer-left { display: block; }
  .product-badge { display: none; }
  .product-detail-hint {
    width: 100%;
    justify-content: center;
    min-height: 24px;
    padding: 5px 6px;
    font-size: 9.5px;
    color: var(--gold-2);
    border-color: rgba(212,163,69,0.20);
    background: rgba(212,163,69,0.08);
  }
  .product-detail-hint::before { margin-right: 3px; }
  .product-price { min-width: 0; text-align: center; font-size: 13px; padding: 7px 8px; margin-top: 0; }
  h1 { letter-spacing: 0; }
  .action-row { grid-template-columns: 1fr; }
  .contact-action { justify-content: flex-start; padding-left: 18px; }
  .contact-action.primary { justify-content: center; }
}

@media (max-width: 420px) {
  .brand-switcher { padding: 7px; }
  .unit-tabs { gap: 5px; }
  .unit-tab { min-height: 70px; padding: 7px 3px; }
  .unit-icon { width: 36px; height: 36px; font-size: 17px; }
  .brand-unit-logo { width: 60px; height: 34px; }
  .unit-tab-name { font-size: 10.5px; }
  .products { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 7px; }
  .unit-panel { padding: 10px; }
  .product-card h4 { font-size: 11px; min-height: 26px; }
  .product-symbol { font-size: 23px; }
  .product-detail-hint {
    min-height: 22px;
    padding: 4px 5px;
    font-size: 9px;
  }
  .product-price { font-size: 12px; padding: 6px 7px; }
}

.logo-card img {
  width: 100%;
  max-height: 150px;
  object-fit: contain;
  object-position: center center;
}
.unit-icon.brand-unit-logo {
  width: 96px;
  height: 52px;
  border-radius: 15px;
  padding: 3px;
  background: linear-gradient(180deg, #f7ead8 0%, #f3e4cf 100%);
}
.unit-icon.brand-unit-logo img {
  width: 100%;
  height: 100%;
  padding: 0;
  object-fit: contain;
  object-position: center center;
}
@media (max-width: 680px) {
  .unit-icon.brand-unit-logo {
    width: 64px;
    height: 36px;
  }
}
@media (max-width: 420px) {
  .unit-icon.brand-unit-logo {
    width: 60px;
    height: 34px;
  }
}


/* Bölüme göre ince vurgu renkleri */
:root {
  --unit-accent: var(--red);
  --unit-accent-dark: var(--red-2);
  --unit-accent-soft: rgba(197, 29, 34, 0.18);
  --unit-accent-line: rgba(197, 29, 34, 0.42);
}
body[data-unit="pide"] {
  --unit-accent: #c51d22;
  --unit-accent-dark: #8d1216;
  --unit-accent-soft: rgba(197, 29, 34, 0.18);
  --unit-accent-line: rgba(197, 29, 34, 0.42);
}
body[data-unit="kasap"] {
  --unit-accent: #a50f18;
  --unit-accent-dark: #6f0c12;
  --unit-accent-soft: rgba(165, 15, 24, 0.18);
  --unit-accent-line: rgba(165, 15, 24, 0.46);
}
body[data-unit="restoran"] {
  --unit-accent: #b76628;
  --unit-accent-dark: #7a3f17;
  --unit-accent-soft: rgba(183, 102, 40, 0.17);
  --unit-accent-line: rgba(212, 163, 69, 0.46);
}

body[data-unit] .unit-tab.active,
body[data-unit] .category-chip.active,
body[data-unit] .product-price,
body[data-unit] .contact-action.primary {
  background: linear-gradient(135deg, var(--unit-accent-dark) 0%, var(--unit-accent) 100%);
}
body[data-unit] .product-count {
  border-color: var(--unit-accent-line);
  background: var(--unit-accent-soft);
}
body[data-unit] .brand-kicker,
body[data-unit] .unit-kicker {
  color: var(--gold-2);
}
body[data-unit] .product-card::before {
  background: linear-gradient(90deg, rgba(212,163,69,0.0), rgba(212,163,69,0.75), var(--unit-accent));
}
body[data-unit="kasap"] .hero {
  border-bottom-color: rgba(165, 15, 24, 0.28);
}
body[data-unit="restoran"] .hero {
  border-bottom-color: rgba(183, 102, 40, 0.32);
}

/* Kategori butonları kaydırmada görünür kalsın */
.unit-panel.active .category-scroll {
  position: sticky;
  top: 78px;
  z-index: 35;
  margin: 0 -4px 12px;
  padding: 8px 4px 12px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(15,14,13,0.94), rgba(15,14,13,0.82));
  backdrop-filter: blur(14px);
  box-shadow: 0 10px 22px rgba(0,0,0,0.20);
}

/* Popüler ürün yıldız etiketi */
.product-card.popular {
  border-color: rgba(240, 195, 107, 0.42);
  box-shadow: 0 18px 34px rgba(0,0,0,0.24), 0 0 0 1px rgba(212,163,69,0.10) inset;
}
.featured-ribbon {
  position: absolute;
  top: 9px;
  left: 9px;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 6px 9px;
  border-radius: 999px;
  color: #26160b;
  background: linear-gradient(135deg, #ffe4a0, #f0c36b);
  border: 1px solid rgba(255,255,255,0.42);
  box-shadow: 0 10px 20px rgba(0,0,0,0.24);
  font-size: 11px;
  font-weight: 1000;
  line-height: 1;
}

/* Instagram yakında kartı */
.instagram-card {
  background:
    radial-gradient(circle at 20% 0%, rgba(197,29,34,0.14), transparent 42%),
    linear-gradient(135deg, rgba(255,255,255,0.075), rgba(255,255,255,0.035));
}
.instagram-card .card-icon {
  color: #fff3e7;
  background: linear-gradient(135deg, var(--unit-accent-dark), var(--unit-accent));
  border-color: rgba(255,255,255,0.12);
}
.instagram-card p {
  margin: 0;
  color: var(--cream);
  line-height: 1.5;
  font-size: 15px;
}
.instagram-card p + p {
  margin-top: 8px;
}
.instagram-card b {
  color: var(--gold-2);
}
.instagram-note {
  color: var(--muted) !important;
  font-weight: 800;
}

/* İletişim kartı ve aksiyon butonları */
.contact-card .contact-line.address-line {
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.info-card .contact-actions {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}
.info-card .contact-action {
  min-height: 68px;
  flex-direction: column;
  gap: 6px;
  padding: 10px 8px;
  border-color: rgba(255,255,255,0.10);
  background: linear-gradient(180deg, rgba(255,255,255,0.065), rgba(255,255,255,0.025));
  font-size: 13px;
  text-align: center;
}
.info-card .contact-action:hover {
  border-color: rgba(212,163,69,0.34);
  transform: translateY(-1px);
}
.info-card .contact-action.whatsapp {
  background: linear-gradient(135deg, #0b6b3b, #128c42);
  border-color: rgba(255,255,255,0.10);
}
.info-card .contact-action.disabled {
  opacity: 0.45;
  pointer-events: none;
}
.info-card .action-icon {
  font-size: 24px;
}

@media (max-width: 680px) {
  .unit-panel.active .category-scroll {
    top: 69px;
    margin: 0 -2px 10px;
    padding: 7px 2px 10px;
    border-radius: 15px;
  }
  .featured-ribbon {
    top: 6px;
    left: 6px;
    min-height: 22px;
    padding: 5px 7px;
    font-size: 9.5px;
  }
  .info-card .contact-actions {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 7px;
  }
  .info-card .contact-action {
    min-height: 58px;
    justify-content: center;
    padding: 8px 4px;
    font-size: 11.5px;
    line-height: 1.1;
  }
  .info-card .action-icon {
    font-size: 20px;
  }
}


body.modal-open {
  overflow: hidden;
}

.language-welcome-backdrop {
  position: fixed;
  inset: 0;
  z-index: 220;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background:
    radial-gradient(circle at 50% 12%, rgba(255, 188, 13, 0.24), transparent 34%),
    rgba(18, 12, 8, 0.82);
  backdrop-filter: blur(12px);
}

.language-welcome-backdrop.show {
  display: flex;
}

.language-welcome {
  width: min(760px, 100%);
  overflow: hidden;
  padding: clamp(28px, 5vw, 46px);
  border: 1px solid rgba(255, 188, 13, 0.55);
  border-radius: 26px;
  color: #fff8e8;
  text-align: center;
  background:
    radial-gradient(circle at 100% 0%, rgba(255, 188, 13, 0.24), transparent 32%),
    linear-gradient(135deg, rgba(132, 12, 21, 0.98), rgba(38, 18, 10, 0.98));
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.56);
}

.language-welcome-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 14px;
  border: 1px solid rgba(255, 188, 13, 0.45);
  border-radius: 999px;
  color: #3b1206;
  background: #ffbc0d;
  font-size: 13px;
  font-weight: 1000;
}

.language-welcome h2 {
  margin: 18px 0 10px;
  color: #fff8e8;
  font-size: clamp(38px, 7vw, 64px);
  line-height: 1;
  letter-spacing: 0;
}

.language-welcome p {
  max-width: 560px;
  margin: 0 auto;
  color: #fff;
  font-size: clamp(19px, 3vw, 25px);
  font-weight: 950;
  line-height: 1.35;
}

.language-welcome small {
  display: block;
  margin-top: 8px;
  color: rgba(255, 248, 232, 0.78);
  font-size: 15px;
  font-weight: 800;
}

.language-welcome-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.language-welcome-actions button {
  min-height: 112px;
  display: grid;
  gap: 8px;
  align-content: center;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 18px;
  color: #2b1107;
  background: #fff4d7;
  cursor: pointer;
  font: inherit;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.2);
}

.language-welcome-actions button:last-child {
  color: #fff8e8;
  background: linear-gradient(135deg, #1f2937, #111827);
}

.language-welcome-actions button:hover,
.language-welcome-actions button:focus-visible {
  transform: translateY(-2px);
  border-color: #ffbc0d;
  outline: none;
}

.language-welcome-actions strong {
  font-size: clamp(24px, 4vw, 34px);
  font-weight: 1000;
  line-height: 1;
}

.language-welcome-actions span {
  font-size: 14px;
  font-weight: 850;
  line-height: 1.3;
}

.campaign-popup-backdrop {
  position: fixed;
  inset: 0;
  z-index: 190;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 18px;
  background: rgba(13, 10, 8, 0.76);
  backdrop-filter: blur(10px);
}

.campaign-popup-backdrop.show {
  display: flex;
}

.campaign-popup {
  position: relative;
  width: min(520px, 100%);
  overflow: hidden;
  padding: 28px;
  border: 1px solid rgba(255, 188, 13, 0.62);
  border-radius: 22px;
  color: #fff7e6;
  background:
    radial-gradient(circle at 88% 0%, rgba(255, 188, 13, 0.28), transparent 34%),
    linear-gradient(135deg, rgba(194, 0, 31, 0.98), rgba(91, 8, 17, 0.98));
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.5);
}

.campaign-popup.campaign-special {
  border-color: rgba(74, 222, 128, 0.72);
  background:
    radial-gradient(circle at 88% 0%, rgba(134, 239, 172, 0.24), transparent 34%),
    linear-gradient(135deg, rgba(21, 128, 61, 0.98), rgba(20, 83, 45, 0.98));
}

.campaign-popup.campaign-hours {
  border-color: rgba(147, 197, 253, 0.72);
  background:
    radial-gradient(circle at 88% 0%, rgba(191, 219, 254, 0.24), transparent 34%),
    linear-gradient(135deg, rgba(30, 64, 175, 0.98), rgba(30, 41, 59, 0.98));
}

.campaign-popup-x {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  color: #fff;
  background: rgba(255, 255, 255, 0.10);
  cursor: pointer;
  font-size: 22px;
  font-weight: 900;
}

.campaign-popup-label,
.campaign-popup-eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  margin: 0 0 12px;
  padding: 6px 10px;
  border-radius: 999px;
  color: #381105;
  background: #ffbc0d;
  font-size: 12px;
  font-weight: 1000;
  line-height: 1;
}

.campaign-popup-eyebrow {
  margin-left: 8px;
  color: #fff7e6;
  background: rgba(255, 255, 255, 0.14);
}

.campaign-popup h2 {
  max-width: calc(100% - 48px);
  margin: 0 0 12px;
  color: #fff7e6;
  font-size: clamp(30px, 5vw, 46px);
  line-height: 1.02;
  letter-spacing: 0;
}

.campaign-popup-message {
  margin: 0;
  color: #fff;
  white-space: pre-line;
  font-size: clamp(18px, 3.4vw, 24px);
  font-weight: 950;
  line-height: 1.35;
}

.campaign-popup small {
  display: block;
  margin-top: 14px;
  color: rgba(255, 247, 230, 0.84);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.4;
}

.campaign-popup-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.campaign-popup-actions button {
  min-height: 48px;
  border-radius: 14px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 1000;
}

.campaign-popup-primary {
  flex: 1 1 190px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: #351006;
  background: #ffbc0d;
}

.campaign-popup-secondary {
  flex: 0 1 130px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #fff7e6;
  background: rgba(255, 255, 255, 0.10);
}

.product-card {
  cursor: pointer;
}
.product-card:focus-visible {
  outline: 2px solid rgba(240,195,107,0.85);
  outline-offset: 2px;
}

.product-modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 18px;
  background: rgba(6, 6, 6, 0.72);
  backdrop-filter: blur(8px);
}
.product-modal-backdrop.show {
  display: flex;
}
.product-modal {
  position: relative;
  width: min(560px, 100%);
  max-height: min(88vh, 760px);
  overflow: auto;
  border: 1px solid rgba(255,245,230,0.12);
  border-radius: 26px;
  background:
    radial-gradient(circle at top right, rgba(212,163,69,0.12), transparent 30%),
    linear-gradient(180deg, rgba(23,22,20,0.98), rgba(12,11,10,0.98));
  box-shadow: 0 28px 70px rgba(0,0,0,0.42);
}
.product-modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 14px;
  background: rgba(255,255,255,0.06);
  cursor: pointer;
}
.product-modal-media {
  width: calc(100% - 28px);
  min-height: 180px;
  margin: 14px 14px 0;
  display: grid;
  place-items: center;
  border-radius: 20px;
  overflow: hidden;
  color: var(--gold-2);
  background:
    radial-gradient(circle at 30% 20%, rgba(212,163,69,0.24), transparent 44%),
    linear-gradient(180deg, rgba(212,163,69,0.17), rgba(212,163,69,0.10));
  border: 1px solid rgba(212,163,69,0.22);
}
.product-modal-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.product-modal-symbol {
  font-size: 72px;
  line-height: 1;
}
.product-modal-content {
  padding: 18px 18px 20px;
}
.product-modal-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
}
.product-modal-badge {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(212,163,69,0.24);
  background: rgba(212,163,69,0.10);
  color: var(--gold-2);
  font-size: 12px;
  font-weight: 1000;
}
.product-modal-price {
  color: #fff3f3;
  background: linear-gradient(135deg, var(--unit-accent-dark) 0%, var(--unit-accent) 100%);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  padding: 8px 12px;
  font-size: 18px;
  font-weight: 1000;
  line-height: 1.1;
}
.product-modal h3 {
  margin: 0 0 12px;
  font-size: 28px;
  line-height: 1.12;
}
.product-modal-text {
  margin: 0;
  color: var(--text);
  line-height: 1.65;
  font-size: 15px;
}
.product-modal-extra {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.product-modal-extra strong {
  display: block;
  margin-bottom: 6px;
  color: var(--gold-2);
  font-size: 13px;
  letter-spacing: 0.3px;
  text-transform: uppercase;
}
.product-modal-extra p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
  font-size: 14px;
}
@media (max-width: 680px) {
  .language-welcome-backdrop {
    align-items: flex-end;
    padding: 12px;
  }

  .language-welcome {
    border-radius: 22px 22px 0 0;
  }

  .language-welcome-actions {
    grid-template-columns: 1fr;
  }

  .language-welcome-actions button {
    min-height: 88px;
  }

  .campaign-popup-backdrop {
    align-items: flex-end;
    padding: 12px;
  }

  .campaign-popup {
    padding: 22px 18px 18px;
    border-radius: 22px 22px 0 0;
  }

  .campaign-popup h2 {
    font-size: 32px;
  }

  .campaign-popup-message {
    font-size: 19px;
  }

  .campaign-popup-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .product-modal-backdrop {
    padding: 12px;
    align-items: flex-end;
  }
  .product-modal {
    width: 100%;
    max-height: 85vh;
    border-radius: 22px 22px 0 0;
  }
  .product-modal-close {
    top: 10px;
    right: 10px;
    width: 38px;
    height: 38px;
    border-radius: 12px;
  }
  .product-modal-media {
    width: calc(100% - 20px);
    min-height: 126px;
    margin: 10px 10px 0;
    border-radius: 16px;
  }
  .product-modal-symbol {
    font-size: 56px;
  }
  .product-modal-content {
    padding: 14px 14px 18px;
  }
  .product-modal-top {
    align-items: flex-start;
    flex-direction: column;
  }
  .product-modal h3 {
    font-size: 24px;
  }
  .product-modal-text {
    font-size: 14px;
  }
  .product-modal-price {
    font-size: 16px;
  }
}


/* Ürün kartı alt etiket taşma düzeltmesi */
.product-footer-left {
  min-width: 0;
  max-width: calc(100% - 96px);
  align-items: flex-start;
}
.product-footer-left .product-badge {
  max-width: 100%;
  width: max-content;
  white-space: nowrap;
  overflow: visible;
  text-overflow: clip;
}
.product-footer-left .product-detail-hint {
  max-width: 100%;
  white-space: nowrap;
}
@media (max-width: 680px) {
  .product-footer-left {
    max-width: 100%;
  }
  .product-footer-left .product-badge {
    display: none;
  }
}

/* Pide & Izgara sipariş/sepet sistemi */
.order-info-card {
  background:
    radial-gradient(circle at 18% 0%, rgba(25,164,99,0.16), transparent 42%),
    linear-gradient(135deg, rgba(255,255,255,0.075), rgba(255,255,255,0.035));
}
.order-info-card p {
  margin: 0;
  color: var(--cream);
  line-height: 1.55;
  font-weight: 800;
}
.order-rules {
  display: grid;
  gap: 8px;
  margin-top: 14px;
}
.order-rules span {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding: 9px 10px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  background: rgba(255,255,255,0.045);
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
}
.order-rules b { color: var(--gold-2); }

.product-order-row {
  padding: 0 16px 16px;
}
.add-cart-button,
.modal-add-cart-button {
  width: 100%;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border: 1px solid rgba(255,255,255,0.11);
  border-radius: 15px;
  color: #fff7ec;
  background: linear-gradient(135deg, #0b6b3b, #158a4d);
  box-shadow: 0 12px 24px rgba(18,140,66,0.20);
  cursor: pointer;
  font-size: 13px;
  font-weight: 1000;
  line-height: 1;
  transition: 0.16s ease;
}
.add-cart-button:hover,
.modal-add-cart-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 28px rgba(18,140,66,0.28);
}
.add-cart-button:disabled,
.modal-add-cart-button:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  transform: none;
}
.modal-add-cart-button {
  margin-top: 16px;
  min-height: 50px;
  border-radius: 17px;
  font-size: 15px;
}

.floating-cart {
  position: fixed;
  left: 18px;
  bottom: 18px;
  z-index: 80;
  display: none;
  align-items: center;
  gap: 8px;
  min-height: 56px;
  max-width: calc(100% - 36px);
  padding: 9px 12px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 999px;
  color: #fff7ec;
  background: linear-gradient(135deg, var(--unit-accent-dark), var(--unit-accent));
  box-shadow: 0 18px 40px rgba(197,29,34,0.28);
  cursor: pointer;
  font-weight: 1000;
}
.floating-cart.show { display: inline-flex; }
.floating-cart-icon {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  font-size: 21px;
}
.floating-cart-count {
  min-width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: #301307;
  background: var(--gold-2);
  font-size: 12px;
}
.floating-cart-total {
  white-space: nowrap;
  font-size: 13px;
}
.floating-cart.has-items {
  box-shadow: 0 20px 44px rgba(212,163,69,0.26), 0 0 0 1px rgba(240,195,107,0.18) inset;
}

.cart-backdrop {
  position: fixed;
  inset: 0;
  z-index: 130;
  display: none;
  align-items: stretch;
  justify-content: flex-end;
  background: rgba(5,5,5,0.66);
  backdrop-filter: blur(8px);
}
.cart-backdrop.show { display: flex; }
.cart-panel {
  width: min(460px, 100%);
  height: 100%;
  overflow: auto;
  padding: 18px;
  border-left: 1px solid rgba(255,245,230,0.12);
  background:
    radial-gradient(circle at top right, rgba(212,163,69,0.14), transparent 34%),
    linear-gradient(180deg, rgba(21,20,18,0.99), rgba(10,10,9,0.99));
  box-shadow: -24px 0 60px rgba(0,0,0,0.42);
}
.cart-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.cart-kicker {
  margin: 0 0 6px;
  color: var(--gold-2);
  font-size: 12px;
  font-weight: 1000;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.cart-head h3 {
  margin: 0;
  font-size: 28px;
  line-height: 1.05;
}
.cart-close {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 14px;
  background: rgba(255,255,255,0.06);
  cursor: pointer;
}
.cart-rules-mini {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin: 14px 0;
}
.cart-rules-mini span {
  padding: 10px;
  border: 1px solid rgba(212,163,69,0.18);
  border-radius: 14px;
  background: rgba(212,163,69,0.08);
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  line-height: 1.35;
}
.cart-rules-mini b { color: var(--gold-2); }
.cart-items {
  display: grid;
  gap: 10px;
}
.cart-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  padding: 12px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
  background: rgba(255,255,255,0.045);
}
.cart-item-main {
  min-width: 0;
}
.cart-item-main strong {
  display: block;
  margin-bottom: 5px;
  color: var(--text);
  line-height: 1.2;
}
.cart-item-main span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}
.cart-qty {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  justify-self: end;
}
.cart-qty button {
  width: 30px;
  height: 30px;
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 10px;
  background: rgba(255,255,255,0.07);
  cursor: pointer;
  font-weight: 1000;
}
.cart-qty b {
  min-width: 18px;
  text-align: center;
}
.cart-line-total {
  color: var(--gold-2);
  font-weight: 1000;
  font-size: 13px;
}
.cart-remove {
  justify-self: end;
  border: 0;
  color: #ffb8b8;
  background: transparent;
  cursor: pointer;
  font-size: 12px;
  font-weight: 1000;
}
.cart-empty {
  display: grid;
  gap: 7px;
  padding: 22px 14px;
  border: 1px dashed rgba(212,163,69,0.34);
  border-radius: 18px;
  background: rgba(212,163,69,0.07);
  text-align: center;
}
.cart-empty span {
  color: var(--muted);
  line-height: 1.45;
}
.payment-box {
  display: grid;
  gap: 9px;
  margin-top: 16px;
  padding: 14px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
  background: rgba(255,255,255,0.045);
}
.payment-box strong {
  color: var(--gold-2);
  font-size: 13px;
  letter-spacing: 0.3px;
  text-transform: uppercase;
}
.payment-box label {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--cream);
  font-size: 14px;
  font-weight: 900;
}
.payment-box small {
  margin-left: auto;
  color: var(--green);
  font-weight: 1000;
}
.order-note-label {
  display: block;
  margin: 16px 0 7px;
  color: var(--gold-2);
  font-size: 13px;
  font-weight: 1000;
  text-transform: uppercase;
}
.order-note {
  width: 100%;
  resize: vertical;
  min-height: 82px;
  padding: 12px;
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 16px;
  outline: none;
  color: var(--text);
  background: rgba(255,255,255,0.045);
  font-weight: 800;
}
.order-note::placeholder { color: var(--muted-2); }
.cart-summary {
  display: grid;
  gap: 8px;
  margin-top: 16px;
  padding: 14px;
  border: 1px solid rgba(212,163,69,0.18);
  border-radius: 18px;
  background: rgba(212,163,69,0.075);
}
.cart-summary div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted);
  font-weight: 900;
}
.cart-summary b { color: var(--text); }
.cart-summary .discount b { color: var(--green); }
.cart-summary .grand-total {
  padding-top: 8px;
  border-top: 1px solid rgba(255,255,255,0.08);
  color: var(--cream);
  font-size: 17px;
}
.cart-summary .grand-total b { color: var(--gold-2); }
.minimum-warning {
  margin: 4px 0 0;
  color: #ffd0a1;
  font-size: 13px;
  font-weight: 900;
  line-height: 1.4;
}
.send-order-button {
  width: 100%;
  min-height: 54px;
  margin-top: 14px;
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 18px;
  color: #fff;
  background: linear-gradient(135deg, #0b6b3b, #128c42);
  cursor: pointer;
  box-shadow: 0 16px 32px rgba(18,140,66,0.25);
  font-size: 15px;
  font-weight: 1000;
}
.send-order-button:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  box-shadow: none;
}
.cart-message {
  min-height: 20px;
  margin: 10px 0 0;
  color: var(--muted);
  text-align: center;
  font-size: 13px;
  font-weight: 900;
  line-height: 1.45;
}

@media (max-width: 680px) {
  .product-order-row {
    padding: 0 8px 9px;
  }
  .add-cart-button {
    min-height: 31px;
    border-radius: 11px;
    gap: 3px;
    font-size: 9.2px;
    letter-spacing: -0.2px;
  }
  .floating-cart {
    left: 12px;
    bottom: 12px;
    min-height: 50px;
    padding: 7px 9px;
  }
  .floating-cart-icon {
    width: 34px;
    height: 34px;
    font-size: 18px;
  }
  .floating-cart-total {
    display: none;
  }
  .cart-backdrop {
    align-items: flex-end;
  }
  .cart-panel {
    width: 100%;
    height: min(88vh, 760px);
    border-left: 0;
    border-top: 1px solid rgba(255,245,230,0.12);
    border-radius: 24px 24px 0 0;
    padding: 14px;
  }
  .cart-head h3 {
    font-size: 24px;
  }
  .cart-rules-mini {
    grid-template-columns: 1fr;
  }
  .cart-item {
    grid-template-columns: minmax(0, 1fr) auto;
    border-radius: 16px;
    padding: 10px;
  }
}

/* Online sipariş teslimat bilgileri */
.customer-order-box {
  display: grid;
  gap: 8px;
  margin-top: 16px;
  padding: 14px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
  background: rgba(255,255,255,0.045);
}
.customer-order-box strong {
  color: var(--gold-2);
  font-size: 13px;
  letter-spacing: 0.3px;
  text-transform: uppercase;
}
.customer-order-box label {
  color: var(--cream);
  font-size: 12px;
  font-weight: 1000;
}
.order-input {
  width: 100%;
  min-height: 44px;
  padding: 11px 12px;
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 15px;
  outline: none;
  color: var(--text);
  background: rgba(255,255,255,0.045);
  font-weight: 800;
}
.order-input::placeholder { color: var(--muted-2); }
.order-input:focus,
.order-note:focus {
  border-color: rgba(240,195,107,0.58);
  box-shadow: 0 0 0 3px rgba(240,195,107,0.08);
}

/* Profesyonel işletme seçimi */
.business-picker {
  margin-bottom: 18px;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.business-picker-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  margin: 0 0 14px;
}

.business-picker-head p {
  margin: 0 0 4px;
  color: #ffbc0d;
  font-size: 12px;
  font-weight: 1000;
  letter-spacing: 0;
  text-transform: uppercase;
}

.business-picker-head h2 {
  margin: 0;
  color: var(--text);
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.05;
}

.business-picker-head > span {
  max-width: 340px;
  color: #f7ead8;
  font-size: 14px;
  font-weight: 900;
  line-height: 1.4;
  text-align: right;
}

.business-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.unit-tab.business-card {
  position: relative;
  min-height: 214px;
  display: grid;
  grid-template-columns: 1fr;
  align-content: space-between;
  gap: 13px;
  padding: 16px;
  overflow: hidden;
  text-align: left;
  color: #2c1914;
  border: 2px solid rgba(255, 188, 13, 0.36);
  border-radius: 8px;
  background: linear-gradient(180deg, #fffaf0 0%, #ffecc7 100%);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.28);
}

.unit-tab.business-card:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 188, 13, 0.82);
  background: linear-gradient(180deg, #fff7e6 0%, #ffdf95 100%);
}

.unit-tab.business-card.active {
  color: #fff7e6;
  border-color: rgba(255, 188, 13, 0.88);
  background: linear-gradient(135deg, #9b1118 0%, #d71920 58%, #ef7d12 100%);
  box-shadow: 0 18px 42px rgba(125, 18, 24, 0.30);
}

.business-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
}

.unit-tab.business-card .brand-unit-logo {
  width: 116px;
  height: 62px;
  min-width: 116px;
  border: 1px solid rgba(122, 41, 19, 0.16);
  border-radius: 8px;
  background: #fff8e8;
}

.unit-tab-status {
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  padding: 6px 9px;
  color: #7d1218;
  border: 1px solid rgba(125, 18, 24, 0.22);
  border-radius: 8px;
  background: #ffdc68;
  font-size: 11px;
  font-weight: 1000;
  white-space: nowrap;
}

.unit-tab.business-card.active .unit-tab-status {
  color: #3b160c;
  border-color: rgba(255, 255, 255, 0.32);
  background: #ffbc0d;
}

.unit-tab.business-card .unit-tab-text {
  display: grid;
  gap: 5px;
}

.unit-tab.business-card .unit-tab-name {
  color: inherit;
  font-size: 24px;
  line-height: 1.05;
  font-weight: 1000;
}

.unit-tab.business-card .unit-tab-subtitle {
  color: #7d1218;
  font-size: 13px;
  line-height: 1.25;
  font-weight: 1000;
}

.unit-tab.business-card .unit-tab-lead {
  display: block;
  color: #4e3021;
  font-size: 13px;
  line-height: 1.35;
  font-weight: 800;
}

.unit-tab.business-card.active .unit-tab-subtitle,
.unit-tab.business-card.active .unit-tab-lead {
  color: #fff0bf;
}

.business-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.business-card-meta span {
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  padding: 5px 8px;
  color: #3b160c;
  border: 1px solid rgba(122, 41, 19, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.48);
  font-size: 11px;
  font-weight: 1000;
  line-height: 1.15;
}

.unit-tab.business-card.active .business-card-meta span {
  color: #fff7e6;
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.14);
}

.unit-tab-cta {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: start;
  gap: 8px;
  padding: 9px 13px;
  color: #fff7e6;
  border-radius: 8px;
  background: #d71920;
  font-size: 13px;
  font-weight: 1000;
  box-shadow: 0 10px 18px rgba(215, 25, 32, 0.22);
}

.unit-tab.business-card.active .unit-tab-cta {
  color: #3b160c;
  background: #ffbc0d;
  box-shadow: 0 10px 18px rgba(59, 22, 12, 0.20);
}

@media (max-width: 900px) {
  .business-cards {
    grid-template-columns: 1fr;
  }

  .unit-tab.business-card {
    min-height: 178px;
  }
}

@media (max-width: 680px) {
  .business-picker-head {
    display: grid;
    gap: 8px;
  }

  .business-picker-head > span {
    max-width: none;
    text-align: left;
  }

  .unit-tab.business-card {
    min-height: 168px;
    padding: 14px;
  }

  .unit-tab.business-card .brand-unit-logo {
    width: 96px;
    height: 54px;
    min-width: 96px;
  }

  .unit-tab.business-card .unit-tab-name {
    font-size: 21px;
  }
}

.campaign-card {
  color: #fff7e6;
  border-color: rgba(255, 188, 13, 0.55);
  background: linear-gradient(135deg, #8f0f16 0%, #d71920 58%, #f08a16 100%);
  box-shadow: 0 16px 34px rgba(125, 18, 24, 0.22);
}

.campaign-card h3,
.campaign-card p,
.campaign-card b {
  color: #fff7e6;
}

/* Okunabilirlik ve sade profesyonel görünüm */
:root {
  --bg: #0f0f0f;
  --bg-2: #151515;
  --panel: #1b1b1b;
  --panel-2: #222222;
  --panel-soft: rgba(255, 255, 255, 0.055);
  --line: rgba(255, 255, 255, 0.13);
  --line-strong: rgba(244, 196, 48, 0.42);
  --text: #fffaf2;
  --muted: #d5c8b8;
  --muted-2: #b2a696;
  --red: #c8101e;
  --red-2: #8f1119;
  --red-soft: rgba(200, 16, 30, 0.16);
  --gold: #f4c430;
  --gold-2: #ffd75c;
  --cream: #fff2d7;
  --shadow: 0 14px 34px rgba(0, 0, 0, 0.28);
  --radius-xl: 12px;
  --radius-lg: 10px;
  --radius-md: 8px;
}

body {
  background: linear-gradient(180deg, #0d0d0d 0%, #151515 48%, #101010 100%);
}

body::before {
  opacity: 0.08;
}

.site-header {
  background: rgba(13, 13, 13, 0.94);
  border-bottom: 1px solid rgba(255,255,255,0.12);
}

.icon-button,
.panel,
.product-card,
.info-card,
.search-wrap input,
.category-chip,
.contact-action,
.customer-order-box,
.order-input {
  border-radius: 8px;
}

.panel,
.unit-panel.active,
.info-card {
  background: #1b1b1b;
  border-color: rgba(255,255,255,0.14);
  box-shadow: 0 12px 28px rgba(0,0,0,0.24);
}

.hero {
  padding: 34px 14px 28px;
  background: linear-gradient(180deg, #171717 0%, #101010 100%);
  border-bottom: 1px solid rgba(244,196,48,0.24);
}

.hero::after {
  background: linear-gradient(90deg, rgba(200,16,30,0.16), transparent 58%);
}

.hero-inner {
  grid-template-columns: 300px minmax(0, 1fr);
  gap: 30px;
}

.logo-card {
  min-height: 150px;
  padding: 14px;
  border: 1px solid rgba(244,196,48,0.46);
  border-radius: 8px;
  background: #fff4df;
  box-shadow: 0 16px 32px rgba(0,0,0,0.30);
}

.brand-kicker,
.meta-chip,
.product-badge,
.unit-tab-status {
  border-radius: 8px;
}

.brand-kicker {
  color: #1a1308;
  border-color: rgba(244,196,48,0.65);
  background: #f4c430;
}

.hero-description,
.unit-head p,
.product-description,
.category-heading span,
.hour-row,
.contact-line small,
.instagram-note,
.footer {
  color: var(--muted);
}

.meta-chip {
  color: #fffaf2;
  background: #242424;
  border-color: rgba(255,255,255,0.16);
}

.business-picker-head p,
.unit-kicker {
  color: var(--gold-2);
}

.business-picker-head > span {
  color: var(--muted);
  font-weight: 800;
}

.unit-tab.business-card {
  color: var(--text);
  border: 1px solid rgba(255,255,255,0.15);
  background: #1c1c1c;
  box-shadow: 0 10px 24px rgba(0,0,0,0.22);
}

.unit-tab.business-card:hover {
  border-color: rgba(244,196,48,0.52);
  background: #222222;
}

.unit-tab.business-card.active {
  color: #fffaf2;
  border-color: rgba(244,196,48,0.62);
  background: linear-gradient(135deg, #8f1119 0%, #c8101e 100%);
  box-shadow: 0 14px 30px rgba(143,17,25,0.30);
}

.unit-tab.business-card .brand-unit-logo {
  background: #fff4df;
  border-color: rgba(244,196,48,0.42);
  box-shadow: none;
}

.unit-tab.business-card .unit-tab-subtitle {
  color: var(--gold-2);
}

.unit-tab.business-card .unit-tab-lead {
  color: var(--muted);
  font-weight: 700;
}

.unit-tab.business-card.active .unit-tab-subtitle,
.unit-tab.business-card.active .unit-tab-lead {
  color: #fff2d7;
}

.business-card-meta span {
  color: #fffaf2;
  border-color: rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.07);
}

.unit-tab-status,
.unit-tab-cta,
.unit-tab.business-card.active .unit-tab-cta {
  color: #1d1406;
  background: #f4c430;
  border-color: rgba(244,196,48,0.66);
  box-shadow: none;
}

.unit-tab-cta {
  justify-self: stretch;
}

.toolbar {
  margin-top: 16px;
}

.search-wrap input {
  color: var(--text);
  background: #181818;
  border-color: rgba(255,255,255,0.18);
}

.search-wrap input::placeholder {
  color: #c3b8a9;
}

.category-chip {
  color: #f7efe5;
  background: #222222;
  border-color: rgba(255,255,255,0.15);
  box-shadow: none;
}

.category-chip.active {
  color: #fffaf2;
  background: #c8101e;
  border-color: rgba(244,196,48,0.42);
  box-shadow: none;
}

.unit-panel.active .category-scroll {
  background: rgba(18,18,18,0.96);
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: 0 8px 16px rgba(0,0,0,0.22);
}

.product-card {
  border-color: rgba(255,255,255,0.14);
  background: #202020;
  box-shadow: 0 10px 20px rgba(0,0,0,0.20);
}

.product-card:hover {
  border-color: rgba(244,196,48,0.44);
  box-shadow: 0 14px 24px rgba(0,0,0,0.25);
}

.product-card::before,
body[data-unit] .product-card::before {
  height: 3px;
  background: linear-gradient(90deg, var(--unit-accent), var(--gold));
}

.product-media {
  border-radius: 8px;
  color: var(--gold-2);
  background: #151515;
  border-color: rgba(244,196,48,0.28);
}

.product-card h4 {
  color: #fffaf2;
  font-size: 17px;
}

.product-detail-hint {
  color: #efe4d4;
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.12);
}

.product-badge {
  color: #1d1406;
  background: #f4c430;
  border-color: rgba(244,196,48,0.72);
}

.product-price,
body[data-unit] .product-price {
  color: #fffaf2;
  background: #c8101e;
  border-color: rgba(255,255,255,0.10);
  box-shadow: none;
}

.add-cart-button,
.modal-add-cart,
.send-order-button {
  border-radius: 8px;
}

.contact-line {
  color: #fff2d7;
}

.contact-line a {
  color: #fffaf2;
}

.card-icon,
.contact-line .mini-icon {
  color: #1d1406;
  background: #f4c430;
  border-color: rgba(244,196,48,0.64);
}

.info-card .contact-action {
  color: #fffaf2;
  background: #242424;
  border-color: rgba(255,255,255,0.16);
  box-shadow: none;
}

.info-card .contact-action.whatsapp {
  background: #118447;
}

.contact-action.primary,
body[data-unit] .contact-action.primary {
  color: #fffaf2;
  background: #c8101e;
}

.notice-card,
.campaign-card {
  color: #fffaf2;
  background: #1f1f1f;
  border-color: rgba(244,196,48,0.34);
  box-shadow: 0 10px 22px rgba(0,0,0,0.20);
}

.notice-card h3,
.notice-card p,
.notice-card b,
.campaign-card h3,
.campaign-card p,
.campaign-card b {
  color: #fffaf2;
}

.campaign-item {
  background: rgba(255,255,255,0.055);
  border-color: rgba(255,255,255,0.12);
}

.campaign-item span {
  color: #1d1406;
  background: #f4c430;
}

.instagram-card {
  background: #1b1b1b;
}

.instagram-card p {
  color: #fff2d7;
}

.floating-cart-summary {
  border-radius: 8px;
}

@media (max-width: 680px) {
  .hero {
    padding: 20px 9px 14px;
  }
  .logo-card {
    border-radius: 8px;
  }
  .unit-tab.business-card {
    min-height: 158px;
  }
  .product-card {
    border-radius: 8px;
  }
  .product-card h4 {
    font-size: 12.5px;
  }
}

.brand-kicker {
  min-height: auto;
  padding: 0 0 0 12px;
  border: 0;
  border-left: 4px solid var(--gold);
  border-radius: 0;
  background: transparent;
  color: var(--gold-2);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.35;
  text-transform: none;
}

@media (max-width: 980px) {
  .brand-kicker {
    padding: 0;
    border-left: 0;
    border-bottom: 2px solid var(--gold);
    padding-bottom: 4px;
  }
}

.campaign-list {
  display: grid;
  gap: 10px;
  margin-top: 10px;
}

.campaign-item {
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  padding: 10px;
  border: 1px solid rgba(255, 247, 230, 0.20);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
}

.campaign-item span {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 8px;
  color: #3b160c;
  border-radius: 8px;
  background: #ffbc0d;
  font-size: 12px;
  font-weight: 1000;
  text-align: center;
}

.campaign-item p {
  margin: 0;
  font-size: 14px;
  line-height: 1.35;
  font-weight: 900;
}

.campaign-item b {
  color: #ffde66;
}

.campaign-item.custom-campaign {
  border-color: rgba(255, 188, 13, 0.55);
  background: linear-gradient(135deg, rgba(213, 0, 50, 0.92), rgba(122, 13, 22, 0.94));
  box-shadow: 0 14px 30px rgba(122, 13, 22, 0.25);
}

.campaign-item.custom-campaign span {
  color: #3b160c;
  background: #ffbc0d;
}

.campaign-item.custom-campaign p {
  color: #fff7e6;
  white-space: pre-line;
}

.campaign-item.custom-campaign b {
  color: #ffde66;
}

.campaign-item.custom-campaign.campaign-discount {
  border-color: rgba(255, 188, 13, 0.72);
  background: linear-gradient(135deg, rgba(195, 0, 31, 0.96), rgba(111, 7, 18, 0.96));
}

.campaign-item.custom-campaign.campaign-special {
  border-color: rgba(74, 222, 128, 0.62);
  background: linear-gradient(135deg, rgba(21, 128, 61, 0.94), rgba(20, 83, 45, 0.96));
  box-shadow: 0 14px 30px rgba(20, 83, 45, 0.22);
}

.campaign-item.custom-campaign.campaign-hours {
  border-color: rgba(147, 197, 253, 0.66);
  background: linear-gradient(135deg, rgba(30, 64, 175, 0.94), rgba(30, 41, 59, 0.96));
  box-shadow: 0 14px 30px rgba(30, 64, 175, 0.2);
}

.campaign-item.custom-campaign.campaign-special span {
  color: #052e16;
  background: #86efac;
}

.campaign-item.custom-campaign.campaign-hours span {
  color: #0f172a;
  background: #bfdbfe;
}

.campaign-item.custom-campaign.campaign-special b,
.campaign-item.custom-campaign.campaign-hours b {
  color: #fff8dc;
}

.availability-badge {
  position: absolute;
  top: 9px;
  right: 9px;
  z-index: 5;
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  padding: 6px 9px;
  color: #3b160c;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 8px;
  background: #ffbc0d;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.22);
  font-size: 11px;
  font-weight: 1000;
  line-height: 1;
}

@media (max-width: 480px) {
  .campaign-item {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .campaign-item span {
    justify-content: flex-start;
    width: fit-content;
  }

  .availability-badge {
    top: 7px;
    right: 7px;
    min-height: 24px;
    padding: 5px 7px;
    font-size: 10px;
  }
}

.availability-badge.locked {
  color: #fff7e6;
  border-color: rgba(255, 255, 255, 0.24);
  background: #b5121b;
}

.service-lock-note {
  margin: 7px 0 0;
  color: #7b1b1f;
  font-size: 11px;
  font-weight: 900;
  line-height: 1.25;
  text-align: center;
}

.add-cart-button:disabled,
.modal-add-cart-button:disabled {
  color: #5a2a16;
  border-color: rgba(215, 25, 32, 0.22);
  background: #ffd979;
  opacity: 1;
  box-shadow: none;
}

.add-cart-button:disabled:hover,
.modal-add-cart-button:disabled:hover {
  color: #5a2a16;
  border-color: rgba(215, 25, 32, 0.22);
  background: #ffd979;
  transform: none;
  box-shadow: none;
}

@media (max-width: 680px) {
  .service-lock-note {
    margin-top: 5px;
    font-size: 9.5px;
  }
}

/* Kompakt isletme kartlari ve sag kolon */
.business-picker {
  margin-bottom: 12px;
}

.business-picker-head {
  margin-bottom: 10px;
}

.business-picker-head h2 {
  font-size: clamp(22px, 2.4vw, 30px);
}

.business-picker-head > span {
  font-size: 13px;
}

.business-cards {
  gap: 8px;
}

.unit-tab.business-card {
  min-height: 142px;
  gap: 8px;
  padding: 12px;
}

.unit-tab.business-card .brand-unit-logo {
  width: 86px;
  height: 46px;
  min-width: 86px;
}

.unit-tab-status {
  min-height: 24px;
  padding: 4px 7px;
  font-size: 10px;
}

.unit-tab.business-card .unit-tab-text {
  gap: 3px;
}

.unit-tab.business-card .unit-tab-name {
  font-size: 20px;
}

.unit-tab.business-card .unit-tab-subtitle {
  font-size: 12px;
}

.unit-tab.business-card .unit-tab-lead {
  display: -webkit-box;
  overflow: hidden;
  font-size: 12px;
  line-height: 1.25;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.business-card-meta {
  display: none;
}

.unit-tab-cta {
  min-height: 34px;
  padding: 7px 10px;
  font-size: 12px;
}

.side-column {
  gap: 10px;
}

.info-card {
  padding: 14px;
}

.info-card h3 {
  gap: 8px;
  margin-bottom: 10px;
  font-size: 18px;
}

.card-icon {
  width: 34px;
  height: 34px;
  flex-basis: 34px;
  font-size: 17px;
}

.order-info-card p,
.instagram-card p,
.notice-card p {
  font-size: 13px;
  line-height: 1.4;
}

.order-rules {
  gap: 6px;
  margin-top: 10px;
}

.order-rules span {
  min-height: 34px;
  padding: 7px 8px;
  border-radius: 8px;
  font-size: 12px;
}

.campaign-list {
  gap: 7px;
}

.campaign-item {
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 8px;
  padding: 8px;
  border-radius: 8px;
}

.campaign-item span {
  min-height: 28px;
  padding: 5px 6px;
  border-radius: 8px;
  font-size: 11px;
}

.instagram-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  column-gap: 10px;
  align-items: center;
}

.instagram-card h3,
.instagram-card p {
  margin: 0;
}

.instagram-card .instagram-note {
  display: none;
}

@media (max-width: 900px) {
  .unit-tab.business-card {
    min-height: 128px;
  }
}

@media (max-width: 680px) {
  .business-cards {
    gap: 7px;
  }

  .unit-tab.business-card {
    min-height: 118px;
    padding: 10px;
  }

  .unit-tab.business-card .brand-unit-logo {
    width: 76px;
    height: 42px;
    min-width: 76px;
  }

  .unit-tab.business-card .unit-tab-name {
    font-size: 18px;
  }

  .unit-tab.business-card .unit-tab-lead {
    display: none;
  }

  .campaign-item {
    grid-template-columns: 52px minmax(0, 1fr);
  }
}

/* Daha sik isletme secimi */
.unit-tab.business-card {
  grid-template-columns: auto minmax(0, 1fr) auto;
  grid-template-areas: "logo text cta";
  align-items: center;
  align-content: center;
  min-height: 112px;
  column-gap: 12px;
}

.business-card-top {
  grid-area: logo;
  display: block;
}

.unit-tab.business-card .unit-tab-text {
  grid-area: text;
}

.unit-tab-status {
  display: none;
}

.unit-tab.business-card .unit-tab-lead {
  -webkit-line-clamp: 1;
}

.unit-tab-cta {
  grid-area: cta;
  justify-self: end;
  align-self: center;
  min-height: 31px;
  padding: 6px 9px;
  white-space: nowrap;
}

@media (max-width: 780px) {
  .unit-tab.business-card {
    grid-template-columns: auto minmax(0, 1fr);
    grid-template-areas:
      "logo text"
      "cta cta";
    min-height: 118px;
  }

  .unit-tab-cta {
    justify-self: stretch;
  }
}

@media (max-width: 520px) {
  .unit-tab.business-card {
    min-height: 94px;
  }

  .unit-tab.business-card .unit-tab-subtitle,
  .unit-tab.business-card .unit-tab-lead,
  .unit-tab-cta {
    display: none;
  }
}

/* Sade yan bilgi kartlari */
.order-info-card p {
  margin-bottom: 8px;
}

.order-info-card .order-rules {
  gap: 5px;
}

.order-info-card .order-rules span {
  min-height: 30px;
  padding: 6px 8px;
  font-size: 11.5px;
}

.notice-card .campaign-list {
  gap: 6px;
  margin-top: 0;
}

.notice-card .campaign-item {
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 7px;
  padding: 7px;
}

.notice-card .campaign-item span {
  min-height: 25px;
  padding: 4px 6px;
  font-size: 10.5px;
}

.notice-card .campaign-item p {
  font-size: 12.5px;
  line-height: 1.28;
  font-weight: 850;
}

/* Dil secici */
.header-actions {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  min-width: 0;
}

.language-switch {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  padding: 3px;
  border: 1px solid rgba(244, 196, 48, 0.34);
  border-radius: 999px;
  background: rgba(255, 250, 242, 0.06);
}

.language-switch button {
  min-width: 34px;
  min-height: 30px;
  padding: 5px 8px;
  color: #fff7e6;
  border: 0;
  border-radius: 999px;
  background: transparent;
  font-size: 12px;
  font-weight: 950;
  line-height: 1;
  cursor: pointer;
}

.language-switch button.active {
  color: #2b1308;
  background: #f4c430;
}

.language-switch button:focus-visible {
  outline: 2px solid #fff7e6;
  outline-offset: 2px;
}

@media (max-width: 560px) {
  .header-actions {
    gap: 5px;
  }

  .language-switch button {
    min-width: 30px;
    min-height: 28px;
    padding: 4px 6px;
    font-size: 11px;
  }
}

/* Urun gorseli olmayan kartlar */
.product-media.product-placeholder {
  position: relative;
  isolation: isolate;
  aspect-ratio: 1.28 / 1;
  min-height: 104px;
  padding: 10px;
  color: #fff7e6;
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 188, 13, 0.35), transparent 28%),
    radial-gradient(circle at 86% 78%, rgba(215, 25, 32, 0.32), transparent 30%),
    linear-gradient(145deg, rgba(55, 28, 12, 0.96), rgba(116, 24, 18, 0.88));
  border-color: rgba(255, 188, 13, 0.34);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.10);
}

.product-media.product-placeholder::before {
  content: "";
  position: absolute;
  inset: 9px;
  z-index: -1;
  border: 1px solid rgba(255, 247, 230, 0.14);
  border-radius: 14px;
}

.product-placeholder-mark {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border: 2px solid rgba(255, 247, 230, 0.32);
  border-radius: 18px;
  color: #351608;
  background: linear-gradient(135deg, #ffcf48, #ff9f1c);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.26);
  font-size: 21px;
  font-weight: 1000;
  letter-spacing: 0;
}

.product-placeholder-label,
.product-placeholder-brand {
  position: absolute;
  z-index: 2;
  max-width: calc(100% - 20px);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-weight: 1000;
  line-height: 1;
}

.product-placeholder-label {
  top: 10px;
  left: 10px;
  min-height: 24px;
  display: inline-flex;
  align-items: center;
  padding: 5px 8px;
  border: 1px solid rgba(255, 247, 230, 0.20);
  border-radius: 999px;
  color: #ffefbd;
  background: rgba(0, 0, 0, 0.24);
  font-size: 10.5px;
}

.product-placeholder-brand {
  right: 11px;
  bottom: 10px;
  color: rgba(255, 247, 230, 0.72);
  font-size: 10px;
  text-transform: uppercase;
}

@media (max-width: 680px) {
  .product-media.product-placeholder {
    min-height: 70px;
    padding: 8px;
    border-radius: 12px;
  }

  .product-media.product-placeholder::before {
    inset: 6px;
    border-radius: 10px;
  }

  .product-placeholder-mark {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    font-size: 14px;
  }

  .product-placeholder-label {
    top: 6px;
    left: 6px;
    min-height: 18px;
    padding: 3px 5px;
    font-size: 8.5px;
  }

  .product-placeholder-brand {
    right: 7px;
    bottom: 6px;
    font-size: 8px;
  }
}

@media (max-width: 430px) {
  .header-brand strong {
    font-size: 16px;
  }

  .header-brand span {
    font-size: 10.5px;
  }

  .products {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 9px;
  }

  .product-card h4 {
    min-height: 32px;
    font-size: 12.5px;
  }

  .product-media {
    min-height: 82px;
  }

  .product-media.product-placeholder {
    min-height: 82px;
  }

  .product-placeholder-mark {
    width: 44px;
    height: 44px;
    font-size: 15px;
  }

  .add-cart-button {
    min-height: 34px;
    padding: 7px 8px;
    font-size: 10.5px;
  }

  .floating-cart {
    left: 10px;
    bottom: 10px;
    min-height: 46px;
    padding: 7px 9px;
  }

  .floating-cart-icon {
    width: 31px;
    height: 31px;
    font-size: 17px;
  }

  .cart-panel {
    padding: 14px;
  }
}

/* Mobil hero ve ust bar duzeltmesi */
.header-inner {
  grid-template-columns: 46px minmax(0, 1fr) auto;
}

@media (max-width: 680px) {
  .header-inner {
    grid-template-columns: 44px minmax(0, 1fr) auto;
    gap: 7px;
  }

  .header-actions > .icon-button {
    display: none;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 16px;
    text-align: center;
  }

  .hero-copy {
    min-width: 0;
  }

  .hero-copy h1 {
    max-width: 100%;
    font-size: clamp(34px, 13vw, 52px);
    line-height: 0.98;
    overflow-wrap: anywhere;
  }

  .hero-description {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    font-size: 14px;
    line-height: 1.55;
  }

  .hero-meta {
    justify-content: center;
  }

  .logo-card {
    width: min(300px, 100%);
    min-height: 130px;
  }

  .business-picker-head {
    display: block;
    text-align: left;
  }

  .business-picker-head > span {
    display: block;
    max-width: none;
    margin-top: 6px;
    text-align: left;
  }

  .container {
    padding-bottom: 76px;
  }
}

@media (max-width: 430px) {
  .header-inner {
    width: calc(100% - 14px);
    min-height: 62px;
  }

  .hero {
    padding: 18px 9px 14px;
  }

  .logo-card {
    width: min(300px, 100%);
    min-height: 126px;
  }

  .logo-card img {
    max-height: 112px;
  }

  .hero-copy h1 {
    max-width: min(330px, 100%);
    margin-left: auto;
    margin-right: auto;
    font-size: clamp(30px, 9.3vw, 38px);
    line-height: 1.04;
  }

  .hero-description {
    max-width: min(340px, 100%);
    font-size: 13px;
  }

  .meta-chip {
    min-height: 30px;
    padding: 6px 9px;
    font-size: 11px;
  }
}

/* Mobil guvenlik katmani */
.floating-cart:not(.has-items) {
  display: none;
}

@media (max-width: 680px) {
  html,
  body {
    max-width: 100%;
    overflow-x: hidden;
  }

  .site-header,
  .hero,
  .container,
  .header-inner,
  .hero-inner,
  .main-grid,
  .panel,
  .business-picker,
  .toolbar,
  .unit-panel.active {
    max-width: 100%;
  }

  .header-inner {
    width: min(calc(100% - 14px), var(--content));
  }

  .hero-inner {
    width: min(calc(100% - 18px), 380px);
    grid-template-columns: minmax(0, 1fr) !important;
    justify-items: center;
    margin-inline: auto;
  }

  .hero-copy {
    width: 100%;
    max-width: 360px;
  }

  .hero-copy h1 {
    max-width: 320px;
    margin-inline: auto;
    font-size: clamp(30px, 8.8vw, 40px) !important;
    line-height: 1.04;
  }

  .brand-kicker,
  .hero-description,
  .hero-meta,
  .meta-chip {
    max-width: 100%;
  }

  .products {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    width: min(100%, 350px);
    max-width: 350px;
    margin-inline: auto;
    gap: 10px;
  }

  .product-card,
  .product-body,
  .product-footer {
    min-width: 0;
  }
}

@media (max-width: 430px) {
  .hero-inner {
    width: min(calc(100% - 18px), 340px);
  }

  .hero-copy {
    max-width: 330px;
  }

  .hero-copy h1 {
    max-width: 300px;
    font-size: clamp(28px, 8.4vw, 34px) !important;
  }

  .products {
    width: min(100%, 340px);
    max-width: 340px;
  }
}

/* Urun karti profesyonel sikilastirma */
.product-card {
  grid-template-rows: auto minmax(0, 1fr) auto auto;
  border-color: rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018)),
    #1c1c1c;
}

.product-card:hover {
  transform: translateY(-1px);
}

.product-media {
  aspect-ratio: 1.32 / 1;
  min-height: 112px;
  border-radius: 10px;
  background:
    radial-gradient(circle at 24% 18%, rgba(244, 196, 48, 0.20), transparent 34%),
    linear-gradient(180deg, #171717, #101010);
}

.product-media img {
  object-fit: contain;
  padding: 8px;
  background: radial-gradient(circle at 50% 48%, rgba(255,255,255,0.08), transparent 58%);
}

.product-media.product-placeholder {
  aspect-ratio: 1.32 / 1;
  min-height: 112px;
  background:
    radial-gradient(circle at 20% 16%, rgba(255, 196, 48, 0.28), transparent 30%),
    radial-gradient(circle at 86% 78%, rgba(200, 16, 30, 0.30), transparent 34%),
    linear-gradient(145deg, #3b1d12, #78191a 58%, #2a1712);
}

.product-body {
  padding: 12px 13px 8px;
}

.product-card h4 {
  min-height: 42px;
  color: #fff8ee;
  font-size: 16px;
  line-height: 1.22;
}

.product-description {
  color: #cfc4b7;
}

.product-footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  padding: 0 13px 12px;
}

.product-footer-left {
  gap: 6px;
}

.product-detail-hint {
  width: max-content;
  min-height: 26px;
  padding: 5px 9px;
  color: #e9dfd1;
  background: rgba(255,255,255,0.055);
  border-color: rgba(255,255,255,0.12);
}

.product-price,
body[data-unit] .product-price {
  min-width: 82px;
  border-radius: 9px;
  padding: 8px 11px;
  color: #fff8ee;
  background: linear-gradient(180deg, #d81724, #b80e18);
  box-shadow: 0 8px 18px rgba(200, 16, 30, 0.20);
}

.product-order-row {
  padding: 0 13px 13px;
}

.add-cart-button {
  min-height: 40px;
  border-radius: 9px;
  background: linear-gradient(180deg, #139553, #0d7d43);
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: 0 8px 16px rgba(13,125,67,0.18);
}

.add-cart-button:hover {
  background: linear-gradient(180deg, #18a960, #0f884a);
}

.availability-badge {
  top: 12px;
  right: 12px;
  min-height: 28px;
  border-radius: 8px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.22);
}

.service-lock-note {
  margin-top: 8px;
  color: #ffd978;
  font-weight: 900;
}

@media (max-width: 680px) {
  .product-card {
    border-radius: 10px;
  }

  .product-media,
  .product-media.product-placeholder {
    min-height: 96px;
    margin: 7px 7px 0;
    width: calc(100% - 14px);
    border-radius: 9px;
  }

  .product-media img {
    padding: 6px;
  }

  .product-body {
    padding: 9px 9px 6px;
  }

  .product-card h4 {
    min-height: 34px;
    font-size: 13px;
    line-height: 1.18;
  }

  .product-footer {
    grid-template-columns: 1fr;
    gap: 7px;
    padding: 0 9px 9px;
  }

  .product-detail-hint {
    width: 100%;
    min-height: 28px;
    justify-content: center;
    font-size: 10px;
  }

  .product-price,
  body[data-unit] .product-price {
    width: 100%;
    min-width: 0;
    text-align: center;
    font-size: 14px;
    padding: 8px 7px;
  }

  .product-order-row {
    padding: 0 9px 10px;
  }

  .add-cart-button {
    min-height: 36px;
    padding: 7px 8px;
    font-size: 11px;
  }

  .availability-badge {
    top: 9px;
    right: 9px;
    min-height: 24px;
    padding: 5px 7px;
    font-size: 9.5px;
  }
}

@media (max-width: 430px) {
  .product-media,
  .product-media.product-placeholder {
    min-height: 92px;
  }

  .product-card h4 {
    font-size: 12.5px;
  }
}

/* Mobilde once iletisim ve duyurular */
@media (max-width: 680px) {
  .container {
    display: flex;
    flex-direction: column;
  }

  .business-picker {
    order: 1;
  }

  .main-grid {
    display: contents;
  }

  .side-column {
    order: 2;
    position: static;
    display: grid;
    gap: 10px;
    margin-top: 12px;
  }

  .toolbar {
    order: 3;
    margin-top: 12px;
  }

  .main-grid > div {
    order: 4;
    min-width: 0;
  }

  .footer {
    order: 5;
  }

  .side-column .contact-card,
  .side-column .notice-card {
    border-color: rgba(244, 196, 48, 0.38);
  }
}

/* Mobil ilk ekran kompakt surum */
@media (max-width: 680px) {
  .site-header {
    min-height: 48px;
  }

  .header-inner {
    padding: 7px 0;
  }

  .hero {
    padding: 18px 10px 14px;
  }

  .hero-inner {
    gap: 10px;
  }

  .logo-card {
    width: min(100%, 210px);
    min-height: 82px;
    padding: 8px;
    box-shadow: 0 12px 28px rgba(0,0,0,0.34);
  }

  .logo-card img {
    max-height: 74px;
  }

  .brand-kicker {
    margin-bottom: 6px;
    padding: 5px 8px;
    font-size: 11px;
  }

  .hero-copy h1 {
    max-width: 300px;
    font-size: clamp(26px, 7.8vw, 34px) !important;
  }

  .hero-description {
    width: 100%;
    max-width: 320px;
    margin-inline: auto;
    margin-top: 7px;
    font-size: 12.5px;
    line-height: 1.45;
    text-align: center;
    overflow-wrap: anywhere;
  }

  .hero-meta {
    gap: 5px;
    margin-top: 8px;
    justify-content: center;
  }

  .meta-chip {
    min-height: 25px;
    padding: 5px 8px;
    font-size: 10.5px;
  }

  .container {
    width: min(100% - 18px, 390px);
    margin-top: 10px;
  }

  .business-picker {
    margin-bottom: 8px;
  }

  .business-picker-head {
    align-items: start;
    gap: 8px;
    margin-bottom: 8px;
  }

  .business-picker-head p {
    font-size: 10px;
  }

  .business-picker-head h2 {
    font-size: 20px;
  }

  .business-picker-head > span {
    max-width: 150px;
    font-size: 11px;
    line-height: 1.25;
  }

  .business-cards {
    gap: 7px;
  }

  .unit-tab.business-card {
    min-height: 126px;
    gap: 6px;
    padding: 9px;
  }

  .unit-tab.business-card .brand-unit-logo {
    width: 68px;
    height: 38px;
    min-width: 68px;
  }

  .unit-tab-status {
    min-height: 21px;
    padding: 3px 6px;
    font-size: 9px;
  }

  .unit-tab.business-card .unit-tab-name {
    font-size: 17px;
  }

  .unit-tab.business-card .unit-tab-subtitle {
    font-size: 10.5px;
  }

  .unit-tab.business-card .unit-tab-lead {
    display: -webkit-box;
    overflow: hidden;
    color: inherit;
    opacity: 0.9;
    font-size: 10.5px;
    line-height: 1.25;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
  }

  .unit-tab-cta {
    display: none;
  }

  .side-column {
    gap: 8px;
    margin-top: 8px;
  }

  .info-card {
    padding: 11px;
    border-radius: 12px;
  }

  .info-card h3 {
    margin-bottom: 8px;
    font-size: 16px;
  }

  .card-icon {
    width: 30px;
    height: 30px;
    flex-basis: 30px;
    font-size: 15px;
  }

  .contact-lines {
    gap: 9px;
  }

  .contact-line {
    grid-template-columns: 32px minmax(0, 1fr);
    gap: 9px;
    font-size: 12.5px;
    line-height: 1.3;
  }

  .contact-line .mini-icon {
    width: 32px;
    height: 32px;
    font-size: 16px;
  }

  .action-row {
    gap: 7px;
    margin-top: 10px;
  }

  .contact-action {
    min-height: 42px;
    padding: 0 8px;
    border-radius: 11px;
    font-size: 11.5px;
  }

  .action-icon {
    min-width: 18px;
    font-size: 18px;
  }

  .campaign-list {
    gap: 7px;
  }

  .campaign-item {
    gap: 8px;
    padding: 8px;
    border-radius: 10px;
  }

  .campaign-item span {
    min-width: 48px;
    min-height: 28px;
    padding: 4px 6px;
    font-size: 10px;
  }

  .campaign-item p {
    font-size: 12px;
    line-height: 1.35;
  }
}
