/* RandevuGO - Mobile-first design system */
@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,500;12..96,650;12..96,800&family=Manrope:wght@400;500;600;700;800&display=swap');

:root {
  --bg: #f3f6f4;
  --bg-elevated: #ffffff;
  --bg-soft: #e7eeea;
  --ink: #12201b;
  --ink-soft: #3d4f47;
  --ink-muted: #6b7c74;
  --line: rgba(18, 32, 27, 0.08);
  --line-strong: rgba(18, 32, 27, 0.14);
  --brand: #0c6b5c;
  --brand-dark: #084c42;
  --brand-soft: #d5efe8;
  --accent: #e25b3a;
  --accent-soft: #fce8e2;
  --success: #1f8a5f;
  --success-soft: #dff5ea;
  --warning: #c47d12;
  --warning-soft: #fef3d8;
  --danger: #c43c3c;
  --danger-soft: #fde8e8;
  --info: #2a6f97;
  --info-soft: #e3f0f8;
  --radius: 14px;
  --radius-sm: 10px;
  --radius-lg: 22px;
  --shadow: 0 8px 30px rgba(18, 32, 27, 0.06);
  --shadow-lg: 0 20px 50px rgba(18, 32, 27, 0.1);
  --nav-h: 56px;
  --landing-nav-h: 88px;
  --bottom-nav-h: 64px;
  --font: 'Manrope', system-ui, sans-serif;
  --display: 'Bricolage Grotesque', 'Manrope', sans-serif;
  --container: 1120px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font);
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--bg);
  min-height: 100dvh;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; }
ul, ol { list-style: none; }

.container {
  width: min(100% - 1.5rem, var(--container));
  margin-inline: auto;
}

/* Typography */
.display {
  font-family: var(--display);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
}
h1, h2, h3, h4 { font-family: var(--display); letter-spacing: -0.02em; line-height: 1.2; }
h1 { font-size: clamp(1.75rem, 5vw, 3.25rem); }
h2 { font-size: clamp(1.4rem, 3.5vw, 2.1rem); }
h3 { font-size: 1.15rem; }
.lead { color: var(--ink-soft); font-size: 0.98rem; max-width: 36rem; }
.muted { color: var(--ink-muted); font-size: 0.9rem; }
.tiny { font-size: 0.78rem; color: var(--ink-muted); }

/* Buttons - compact on mobile */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.65rem 1.1rem;
  border-radius: 999px;
  border: 1.5px solid transparent;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: transform 0.2s var(--ease), background 0.2s, color 0.2s, box-shadow 0.2s;
  white-space: nowrap;
  text-align: center;
}
.btn:active { transform: scale(0.97); }
.btn-primary {
  background: var(--brand);
  color: #fff;
  box-shadow: 0 6px 18px rgba(12, 107, 92, 0.25);
}
.btn-primary:hover { background: var(--brand-dark); }
.btn-accent { background: var(--accent); color: #fff; }
.btn-ghost {
  background: transparent;
  border-color: var(--line-strong);
  color: var(--ink);
}
.btn-ghost:hover { background: var(--bg-soft); }
.btn-soft { background: var(--brand-soft); color: var(--brand-dark); }
.btn-danger { background: var(--danger-soft); color: var(--danger); }
.btn-sm { padding: 0.4rem 0.8rem; font-size: 0.8rem; }
.btn-block { width: 100%; }
.btn-icon {
  width: 40px; height: 40px; padding: 0;
  border-radius: 12px;
  background: var(--bg-elevated);
  border: 1px solid var(--line);
}

/* Forms - minimal mobile */
.form-group { margin-bottom: 0.9rem; }
.form-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--ink-soft);
  margin-bottom: 0.35rem;
}
.form-control {
  width: 100%;
  padding: 0.7rem 0.9rem;
  border: 1.5px solid var(--line-strong);
  border-radius: var(--radius-sm);
  background: var(--bg-elevated);
  transition: border-color 0.2s, box-shadow 0.2s;
  appearance: none;
}
.form-control:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(12, 107, 92, 0.15);
}
textarea.form-control { min-height: 100px; resize: vertical; }
.form-row {
  display: grid;
  gap: 0.75rem;
}
@media (min-width: 640px) {
  .form-row-2 { grid-template-columns: 1fr 1fr; }
}

/* Badges */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
}
.badge-success { background: var(--success-soft); color: var(--success); }
.badge-warning { background: var(--warning-soft); color: var(--warning); }
.badge-danger { background: var(--danger-soft); color: var(--danger); }
.badge-info { background: var(--info-soft); color: var(--info); }
.badge-muted { background: var(--bg-soft); color: var(--ink-muted); }

/* Alerts */
.alert {
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  margin-bottom: 1rem;
  font-size: 0.9rem;
  animation: slideDown 0.35s var(--ease);
}
.alert-success { background: var(--success-soft); color: var(--success); }
.alert-error { background: var(--danger-soft); color: var(--danger); }
.alert-info { background: var(--info-soft); color: var(--info); }

/* Popup toast + confirm */
.app-toast-host {
  position: fixed;
  z-index: 2000;
  top: max(0.85rem, env(safe-area-inset-top));
  right: max(0.85rem, env(safe-area-inset-right));
  left: max(0.85rem, env(safe-area-inset-left));
  display: grid;
  gap: 0.55rem;
  pointer-events: none;
  max-width: 420px;
  margin-left: auto;
}
.app-toast {
  pointer-events: auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.65rem;
  padding: 0.85rem 0.9rem;
  border-radius: 16px;
  background: #12201b;
  color: #fff;
  box-shadow: 0 18px 40px rgba(5, 30, 26, 0.28);
  opacity: 0;
  transform: translateY(-10px) scale(0.98);
  transition: opacity 0.22s ease, transform 0.22s ease;
}
.app-toast.is-in { opacity: 1; transform: none; }
.app-toast.is-out { opacity: 0; transform: translateY(-8px) scale(0.98); }
.app-toast-success { background: linear-gradient(145deg, #0c6b5c, #14967f); }
.app-toast-error { background: linear-gradient(145deg, #b42318, #d92d20); }
.app-toast-ico {
  width: 28px;
  height: 28px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,0.18);
  font-weight: 850;
}
.app-toast-msg { font-size: 0.88rem; font-weight: 650; line-height: 1.35; }
.app-toast-close {
  width: 28px;
  height: 28px;
  border: 0;
  border-radius: 9px;
  background: rgba(255,255,255,0.14);
  color: #fff;
  font-size: 1.1rem;
  cursor: pointer;
}
body.confirm-open { overflow: hidden; }
.app-confirm[hidden] { display: none !important; }
.app-confirm {
  position: fixed;
  inset: 0;
  z-index: 2100;
  display: grid;
  place-items: center;
  padding: 1rem;
}
.app-confirm-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 22, 18, 0.55);
  backdrop-filter: blur(6px);
}
.app-confirm-dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 380px);
  padding: 1.25rem 1.2rem 1.1rem;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 24px 60px rgba(5, 30, 26, 0.28);
  text-align: center;
  animation: bookIn 0.22s ease;
}
.app-confirm-icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 0.75rem;
  border-radius: 16px;
  display: grid;
  place-items: center;
  font-size: 1.2rem;
  font-weight: 850;
  background: #fdecec;
  color: #b42318;
}
.app-confirm-icon.is-warn {
  background: #fff4e5;
  color: #b54708;
}
.app-confirm-icon.is-danger {
  background: #fdecec;
  color: #b42318;
}
.app-confirm-title {
  margin: 0 0 0.35rem;
  font-size: 1.05rem;
  color: #1c2c26;
}
.app-confirm-text {
  margin: 0 0 1rem;
  color: #5f7169;
  font-size: 0.88rem;
  line-height: 1.45;
}
.app-confirm-reason { margin: 0 0 1rem; text-align: left; }
.app-confirm-reason .form-label {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.78rem;
  font-weight: 700;
  color: #3a4a43;
}
.app-confirm-reason .form-control {
  min-height: 84px;
  resize: vertical;
}
.app-confirm-reason .form-control.is-invalid {
  border-color: #d46a4a;
  box-shadow: 0 0 0 2px rgba(212, 106, 74, 0.12);
}
.app-confirm-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
}
.app-confirm-actions .btn { min-height: 42px; border-radius: 12px; }

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.reveal { animation: fadeUp 0.6s var(--ease) both; }
.reveal-delay-1 { animation-delay: 0.1s; }
.reveal-delay-2 { animation-delay: 0.2s; }
.reveal-delay-3 { animation-delay: 0.3s; }

/* ========== SITE NAV ========== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--landing-nav-h);
  background: rgba(246, 244, 241, 0.85);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.site-nav {
  height: var(--landing-nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.site-header .brand.has-logo .platform-logo-img.is-full {
  height: 78px;
  max-width: min(400px, 62vw);
}
.site-header .brand.has-logo {
  gap: 0.65rem;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.2rem;
  letter-spacing: -0.03em;
}
.brand-mark {
  width: 32px; height: 32px;
  border-radius: 9px;
  background: linear-gradient(135deg, var(--brand), #14967f);
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 0.85rem;
  box-shadow: 0 4px 12px rgba(12, 107, 92, 0.3);
}
.platform-logo-img {
  display: block;
  flex-shrink: 0;
  object-fit: contain;
}
.platform-logo-img.is-mark {
  width: 32px;
  height: 32px;
  border-radius: 9px;
  background: #fff;
}
.platform-logo-img.is-full {
  width: auto;
  height: 52px;
  max-width: min(280px, 68vw);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}
.brand.has-logo,
.business-site-platform.has-logo {
  gap: 0.65rem;
}
.business-site-platform.has-logo .business-site-brand-copy {
  min-width: 0;
}
.business-site-platform.has-logo .platform-logo-img.is-full {
  height: 58px;
  max-width: min(300px, 64vw);
}
.business-site-footer-platform.has-logo .platform-logo-img.is-full {
  height: 78px;
  max-width: min(360px, 78vw);
}
.auth-card .brand.has-logo .platform-logo-img.is-full,
.auth-page .brand.has-logo .platform-logo-img.is-full {
  height: 72px;
  max-width: min(320px, 82vw);
}
.panel-sidebar .brand.has-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 0.65rem 0.55rem 0.9rem;
  background: #f4f8f6;
  border-radius: 16px;
  border-bottom: none;
  box-shadow: none;
}
.panel-sidebar .brand.has-logo .platform-logo-img.is-full,
.panel-sidebar .brand.has-logo .brand-mark.platform-logo-img {
  width: auto;
  height: 84px;
  max-width: 96%;
  background: transparent !important;
  box-shadow: none !important;
  border-radius: 0;
  border: 0;
  padding: 0;
}
@media (max-width: 640px) {
  .platform-logo-img.is-full {
    height: 44px;
    max-width: min(240px, 62vw);
  }
  .business-site-platform.has-logo .platform-logo-img.is-full {
    height: 50px;
    max-width: min(240px, 58vw);
  }
  .business-site-footer-platform.has-logo .platform-logo-img.is-full {
    height: 68px;
    max-width: min(300px, 82vw);
  }
}
.nav-links {
  display: none;
  align-items: center;
  gap: 0.15rem;
}
.nav-links a {
  padding: 0.4rem 0.7rem;
  border-radius: 8px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--ink-soft);
}
.nav-links a:hover { background: var(--bg-soft); color: var(--ink); }
.nav-actions { display: flex; align-items: center; gap: 0.4rem; }
.nav-toggle {
  display: grid;
  place-items: center;
  width: 40px; height: 40px;
  border: none;
  background: var(--bg-soft);
  border-radius: 10px;
  cursor: pointer;
}
.mobile-menu {
  display: none;
  position: fixed;
  inset: var(--landing-nav-h) 0 0 0;
  background: var(--bg);
  z-index: 99;
  padding: 1.25rem;
  overflow-y: auto;
}
.mobile-menu.open { display: block; animation: fadeUp 0.25s var(--ease); }
.mobile-menu a {
  display: block;
  padding: 0.85rem 0.5rem;
  border-bottom: 1px solid var(--line);
  font-weight: 500;
}
@media (min-width: 900px) {
  .nav-links { display: flex; }
  .nav-toggle { display: none; }
}

/* ========== HERO ========== */
.hero {
  position: relative;
  min-height: calc(100dvh - var(--landing-nav-h));
  display: flex;
  align-items: flex-end;
  padding: 2rem 0 3rem;
  overflow: hidden;
  background:
    radial-gradient(ellipse 80% 60% at 80% 20%, rgba(12, 107, 92, 0.18), transparent),
    radial-gradient(ellipse 60% 50% at 10% 80%, rgba(226, 91, 58, 0.12), transparent),
    linear-gradient(165deg, #e8f2ef 0%, var(--bg) 45%, #f0ebe4 100%);
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(12,107,92,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(12,107,92,0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, black, transparent);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 1;
  width: min(100% - 1.5rem, var(--container));
  margin-inline: auto;
  padding-bottom: 1rem;
}
.hero-brand {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(2.6rem, 12vw, 5.5rem);
  letter-spacing: -0.04em;
  line-height: 0.95;
  color: var(--brand-dark);
  margin-bottom: 1rem;
}
.hero-brand span { color: var(--accent); }
.hero h1 {
  font-size: clamp(1.15rem, 3.2vw, 1.65rem);
  font-weight: 600;
  font-family: var(--font);
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 0.6rem;
  max-width: 20ch;
}
.hero .lead { margin-bottom: 1.5rem; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.hero-visual {
  display: none;
}
@media (min-width: 900px) {
  .hero {
    align-items: center;
    padding: 0;
  }
  .hero-inner {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3rem;
    align-items: center;
    min-height: calc(100dvh - var(--landing-nav-h));
    padding: 2rem 0;
  }
  .hero-visual {
    display: block;
    position: relative;
    height: 420px;
  }
  .hero-card {
    position: absolute;
    background: var(--bg-elevated);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    padding: 1.1rem;
    border: 1px solid var(--line);
    animation: float 5s ease-in-out infinite;
  }
  .hero-card-main {
    inset: 10% 8% 20% 5%;
    background: linear-gradient(145deg, #0c6b5c, #14967f);
    color: #fff;
    padding: 1.5rem;
  }
  .hero-card-float {
    right: 0; bottom: 8%;
    width: 200px;
    animation-delay: 1s;
  }
}

/* Sections */
.section { padding: 3.5rem 0; }
.section-sm { padding: 2.5rem 0; }
.section-head {
  margin-bottom: 1.75rem;
  max-width: 36rem;
}
.section-head .eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--brand);
  margin-bottom: 0.4rem;
}

/* Feature / sector grids - no card chrome unless needed */
.feature-grid {
  display: grid;
  gap: 1.25rem;
}
@media (min-width: 640px) {
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 960px) {
  .feature-grid-3 { grid-template-columns: repeat(3, 1fr); }
}
.feature-item {
  padding: 0.25rem 0 1rem;
  border-bottom: 1px solid var(--line);
}
.feature-icon {
  width: 40px; height: 40px;
  border-radius: 12px;
  background: var(--brand-soft);
  color: var(--brand);
  display: grid;
  place-items: center;
  margin-bottom: 0.75rem;
  font-size: 1.1rem;
}
.feature-item h3 { margin-bottom: 0.35rem; }

.sector-scroll {
  display: flex;
  gap: 0.6rem;
  overflow-x: auto;
  padding-bottom: 0.5rem;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.sector-scroll::-webkit-scrollbar { display: none; }
.sector-chip {
  flex: 0 0 auto;
  scroll-snap-align: start;
  padding: 0.7rem 1rem;
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  transition: border-color 0.2s, background 0.2s;
}
.sector-chip:hover { border-color: var(--brand); background: var(--brand-soft); }

/* Steps */
.steps {
  display: grid;
  gap: 1.25rem;
  counter-reset: step;
}
@media (min-width: 768px) {
  .steps { grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
}
.step { counter-increment: step; }
.step::before {
  content: counter(step, decimal-leading-zero);
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--brand);
  display: block;
  margin-bottom: 0.5rem;
  opacity: 0.7;
}
.step h3 { margin-bottom: 0.3rem; font-size: 1rem; }

/* Pricing */
.pricing-grid {
  display: grid;
  gap: 1rem;
}
@media (min-width: 768px) {
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .pricing-grid { grid-template-columns: repeat(4, 1fr); }
}
.price-card {
  background: var(--bg-elevated);
  border: 1.5px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: transform 0.25s var(--ease), box-shadow 0.25s;
}
.price-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.price-card.popular {
  border-color: var(--brand);
  background: linear-gradient(180deg, var(--brand-soft), var(--bg-elevated) 40%);
  position: relative;
}
.price-card .price {
  font-family: var(--display);
  font-size: 1.75rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}
.price-card ul { display: grid; gap: 0.4rem; flex: 1; }
.price-card li {
  font-size: 0.85rem;
  color: var(--ink-soft);
  padding-left: 1.1rem;
  position: relative;
}
.price-card li::before {
  content: '?';
  position: absolute;
  left: 0;
  color: var(--brand);
  font-weight: 700;
}

/* FAQ */
.faq-list { display: grid; gap: 0.5rem; max-width: 720px; }
.faq-item {
  background: var(--bg-elevated);
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  overflow: hidden;
}
.faq-item summary {
  padding: 0.9rem 1rem;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-size: 0.95rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; color: var(--brand); font-size: 1.2rem; }
.faq-item[open] summary::after { content: '?'; }
.faq-item p {
  padding: 0 1rem 1rem;
  color: var(--ink-soft);
  font-size: 0.9rem;
}

/* CTA band */
.cta-band {
  margin: 2rem 0 0;
  padding: 2.5rem 1.5rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--brand-dark), var(--brand) 60%, #14967f);
  color: #fff;
  text-align: center;
}
.cta-band h2 { color: #fff; margin-bottom: 0.5rem; }
.cta-band p { opacity: 0.9; margin-bottom: 1.25rem; }
.cta-band .btn-primary {
  background: #fff;
  color: var(--brand-dark);
  box-shadow: none;
}

/* Footer */
.site-footer {
  padding: 2.5rem 0 5.5rem;
  border-top: 1px solid var(--line);
  margin-top: 2rem;
}
.footer-grid {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 640px) {
  .footer-grid { grid-template-columns: 2fr 1fr 1fr; }
}
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.2rem;
  margin-bottom: 0.55rem;
  color: inherit;
  text-decoration: none;
}
.footer-brand:hover {
  color: inherit;
  text-decoration: none;
}
.footer-brand.has-logo .platform-logo-img.is-full {
  height: 64px;
  max-width: min(300px, 72vw);
}
.footer-links { display: grid; gap: 0.4rem; }
.footer-links a { color: var(--ink-soft); font-size: 0.88rem; }
.footer-links a:hover { color: var(--brand); }
.footer-bottom {
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  font-size: 0.8rem;
  color: var(--ink-muted);
}

/* ========== AUTH ========== */
.auth-page {
  min-height: calc(100dvh - var(--landing-nav-h));
  display: grid;
  align-items: center;
  padding: 1.5rem 0 3rem;
  background:
    radial-gradient(ellipse at top right, rgba(12,107,92,0.1), transparent 50%),
    var(--bg);
}
.auth-card {
  width: min(100%, 420px);
  margin: 0 auto;
  background: var(--bg-elevated);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.auth-card.is-wide {
  width: min(100%, 520px);
}
.auth-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.35rem;
  background: var(--bg-soft);
  padding: 0.3rem;
  border-radius: 12px;
  margin-bottom: 1.25rem;
}
.auth-tabs a, .auth-tabs button {
  padding: 0.55rem;
  border-radius: 10px;
  text-align: center;
  font-size: 0.85rem;
  font-weight: 650;
  border: none;
  background: transparent;
  cursor: pointer;
  color: var(--ink-muted);
  text-decoration: none;
}
.auth-tabs .active {
  background: var(--bg-elevated);
  color: var(--ink);
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.auth-title {
  margin: 0 0 0.25rem;
  font-family: var(--display);
  font-size: 1.45rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}
.auth-sub {
  margin: 0 0 1rem;
  color: var(--ink-muted);
  font-size: 0.9rem;
}
.role-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-bottom: 1rem;
}
.role-pill {
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  border: 1.5px solid var(--line-strong);
  font-size: 0.78rem;
  font-weight: 600;
  background: transparent;
  cursor: pointer;
}
.role-pill.active {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
}

/* Landing uyumlu auth */
body.landing-auth {
  background: var(--bg);
}
body.landing-auth.is-randevu-app {
  background: var(--bg);
  min-height: 100dvh;
}
.site-header.is-auth.is-app {
  background: var(--bg);
  box-shadow: none;
}
.brand.is-auth-brand.is-static {
  pointer-events: none;
  cursor: default;
  text-decoration: none;
  color: inherit;
}
.auth-shell.is-app .auth-shell-inner {
  grid-template-columns: 1fr;
  min-height: calc(100dvh - 120px);
  align-items: center;
  justify-items: center;
}
.auth-shell.is-app .auth-card.is-app-only {
  width: min(100%, 440px);
  justify-self: center;
  margin: 0 auto;
}
.site-header.is-auth {
  height: 72px;
  min-height: 72px;
  max-height: 72px;
  overflow: visible;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 1px 0 rgba(18, 32, 27, 0.06);
  position: sticky;
  top: 0;
  z-index: 40;
}
.site-nav.is-auth {
  height: 72px;
  min-height: 72px;
  max-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  flex-wrap: nowrap;
  padding-block: 0;
  overflow: visible;
}
.brand.is-auth-brand {
  font-size: 1.2rem;
  flex-shrink: 0;
}
.brand.is-auth-brand.has-logo {
  height: 72px;
  overflow: visible;
  align-items: center;
}
.brand.is-auth-brand.has-logo .platform-logo-img.is-full {
  height: 80px;
  max-height: 80px;
  width: auto;
  max-width: min(340px, 48vw);
  object-fit: contain;
}
.nav-actions.is-auth {
  margin-left: auto;
  gap: 0.45rem;
  align-items: center;
  flex-wrap: nowrap;
}
.site-back-btn.is-trailing {
  margin-left: 0.15rem;
}
body.landing-auth .site-footer.is-discover {
  margin-top: 1.5rem;
}
.auth-shell {
  position: relative;
  padding: 1.5rem 0 2.5rem;
  overflow: hidden;
  background:
    radial-gradient(ellipse 70% 60% at 0% 0%, rgba(12, 107, 92, 0.12), transparent 55%),
    radial-gradient(ellipse 50% 50% at 100% 20%, rgba(226, 91, 58, 0.06), transparent 50%),
    linear-gradient(180deg, #eef4f1 0%, var(--bg) 55%);
}
.auth-shell-inner {
  display: grid;
  gap: 1.5rem;
  align-items: center;
}
@media (min-width: 900px) {
  .auth-shell-inner {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 2.5rem;
    min-height: calc(100dvh - 180px);
  }
}
.auth-aside {
  max-width: 34rem;
}
.auth-eyebrow {
  margin: 0 0 0.55rem;
  color: var(--brand);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.auth-heading {
  margin: 0 0 0.7rem;
  font-family: var(--display);
  font-size: clamp(1.7rem, 3.4vw, 2.35rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.12;
  color: var(--ink);
}
.auth-lead {
  margin: 0;
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.55;
  max-width: 32rem;
}
.auth-points {
  margin: 1.25rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.55rem;
}
.auth-points li {
  position: relative;
  padding-left: 1.15rem;
  color: var(--ink-soft);
  font-size: 0.92rem;
  font-weight: 600;
}
.auth-points li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--brand);
}
.auth-shell .auth-card {
  width: min(100%, 440px);
  margin: 0;
  justify-self: end;
  border-radius: 22px;
  padding: 1.35rem 1.35rem 1.2rem;
  box-shadow: 0 18px 40px rgba(18, 32, 27, 0.08);
}
.auth-shell .auth-card.is-wide {
  width: min(100%, 520px);
}
.auth-role-switch {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.35rem;
  margin-bottom: 1rem;
  padding: 0.3rem;
  border-radius: 12px;
  background: var(--bg-soft);
}
.auth-role-btn {
  display: grid;
  place-items: center;
  min-height: 38px;
  padding: 0.35rem 0.4rem;
  border-radius: 9px;
  color: var(--ink-muted);
  font-size: 0.8rem;
  font-weight: 700;
  text-decoration: none;
  text-align: center;
}
.auth-role-btn.is-active {
  background: #fff;
  color: var(--ink);
  box-shadow: 0 2px 8px rgba(18, 32, 27, 0.06);
}
.auth-hint {
  margin: -0.35rem 0 0.9rem;
  color: var(--ink-muted);
  font-size: 0.78rem;
  line-height: 1.4;
}
.auth-form .form-group { margin-bottom: 0.85rem; }
.auth-form .btn-block { margin-top: 0.35rem; min-height: 46px; border-radius: 12px; }
.auth-foot {
  margin: 1rem 0 0;
  text-align: center;
  color: var(--ink-muted);
  font-size: 0.85rem;
}
.auth-foot a {
  color: var(--brand);
  font-weight: 700;
  text-decoration: none;
}
.auth-foot a:hover { text-decoration: underline; }
.auth-back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 1.1rem;
  color: var(--brand-dark);
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
}
.auth-back-link svg { transform: rotate(180deg); }

/* İşletme pitch */
.biz-pitch {
  padding-bottom: 1rem;
  background:
    radial-gradient(ellipse 65% 50% at 100% 0%, rgba(12, 107, 92, 0.1), transparent 55%),
    linear-gradient(180deg, #eef4f1 0%, var(--bg) 35%);
}
.biz-pitch-hero {
  display: grid;
  gap: 1.5rem;
  padding: 1.75rem 0 1rem;
  align-items: center;
}
@media (min-width: 900px) {
  .biz-pitch-hero {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 2.5rem;
    padding-top: 2.25rem;
    padding-bottom: 1.5rem;
  }
}
.biz-pitch-hero h1 {
  margin: 0 0 0.75rem;
  font-family: var(--display);
  font-size: clamp(1.85rem, 4vw, 2.7rem);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 1.08;
  color: var(--ink);
}
.biz-pitch-lead {
  margin: 0;
  color: var(--ink-soft);
  font-size: 1.02rem;
  line-height: 1.55;
  max-width: 36rem;
}
.biz-pitch-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1.25rem;
}
.biz-pitch-tabs {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-top: 1.25rem;
  font-size: 0.88rem;
  font-weight: 700;
}
.biz-pitch-tabs a {
  color: var(--ink-muted);
  text-decoration: none;
}
.biz-pitch-tabs a:hover { color: var(--brand); }
.biz-pitch-tabs .is-on {
  color: var(--brand-dark);
  position: relative;
}
.biz-pitch-tabs .is-on::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.3rem;
  height: 2px;
  background: var(--brand);
  border-radius: 2px;
}
.biz-pitch-hero-panel {
  position: relative;
  border-radius: 24px;
  padding: 1.25rem;
  color: #fff;
  background:
    linear-gradient(145deg, #0c6b5c 0%, #0a5649 55%, #084c42 100%);
  box-shadow: 0 24px 50px rgba(8, 76, 66, 0.28);
  min-height: 260px;
}
.biz-pitch-stat span {
  display: block;
  opacity: 0.75;
  font-size: 0.8rem;
  margin-bottom: 0.25rem;
}
.biz-pitch-stat strong {
  display: block;
  font-family: var(--display);
  font-size: 1.8rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
}
.biz-pitch-row {
  background: rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  padding: 0.7rem 0.85rem;
  font-size: 0.88rem;
  margin-bottom: 0.5rem;
}
.biz-pitch-row.is-soft {
  background: rgba(255, 255, 255, 0.2);
}
.biz-pitch-badge {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.45rem 0.7rem;
  border-radius: 999px;
  background: #fff;
  color: var(--brand-dark);
  font-size: 0.78rem;
  font-weight: 750;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
}
.biz-pitch-section {
  padding: 1.75rem 0 0.5rem;
}
.biz-pitch-head {
  max-width: 40rem;
  margin-bottom: 1.25rem;
}
.biz-pitch-head h2 {
  margin: 0 0 0.45rem;
  font-family: var(--display);
  font-size: clamp(1.35rem, 2.5vw, 1.85rem);
  font-weight: 800;
  letter-spacing: -0.03em;
}
.biz-pitch-head p {
  margin: 0;
  color: var(--ink-muted);
  line-height: 1.5;
}
.biz-pitch-features {
  display: grid;
  gap: 0.85rem;
}
@media (min-width: 720px) {
  .biz-pitch-features {
    grid-template-columns: repeat(2, 1fr);
  }
}
.biz-pitch-feature {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(18, 32, 27, 0.07);
  border-radius: 18px;
  padding: 1rem 1.05rem;
}
.biz-pitch-num {
  display: block;
  color: var(--brand);
  font-family: var(--display);
  font-weight: 800;
  font-size: 0.95rem;
  margin-bottom: 0.4rem;
  opacity: 0.8;
}
.biz-pitch-feature h3 {
  margin: 0 0 0.3rem;
  font-size: 1rem;
  letter-spacing: -0.02em;
}
.biz-pitch-feature p {
  margin: 0;
  color: var(--ink-muted);
  font-size: 0.9rem;
  line-height: 1.45;
}
.biz-pitch-pricing {
  display: grid;
  gap: 1rem;
}
@media (min-width: 768px) {
  .biz-pitch-pricing {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1100px) {
  .biz-pitch-pricing {
    grid-template-columns: repeat(4, 1fr);
  }
}
.biz-price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  background: #fff;
  border: 1.5px solid rgba(18, 32, 27, 0.08);
  border-radius: 20px;
  padding: 1.2rem;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.biz-price-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(18, 32, 27, 0.08);
}
.biz-price-card.is-popular {
  border-color: rgba(12, 107, 92, 0.45);
  background: linear-gradient(180deg, var(--brand-soft), #fff 42%);
}
.biz-price-badge {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  background: var(--brand);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 750;
}
.biz-price-card h3 {
  margin: 0;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
}
.biz-price-amount {
  font-family: var(--display);
  font-size: 1.7rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--ink);
}
.biz-price-meta {
  margin: 0;
  color: var(--ink-muted);
  font-size: 0.8rem;
  line-height: 1.4;
}
.biz-price-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.35rem;
  flex: 1;
}
.biz-price-card li {
  position: relative;
  padding-left: 1.05rem;
  color: var(--ink-soft);
  font-size: 0.85rem;
}
.biz-price-card li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background: var(--brand);
}
.biz-pitch-bottom {
  margin: 1.75rem 0 0.5rem;
  padding: 1.25rem 1.35rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(18, 32, 27, 0.07);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.85rem 1.25rem;
}
.biz-pitch-bottom p {
  margin: 0;
  color: var(--ink-soft);
  font-weight: 650;
  font-size: 0.98rem;
}
@media (max-width: 720px) {
  .auth-shell .auth-card,
  .auth-shell .auth-card.is-wide {
    justify-self: stretch;
    width: 100%;
  }
  .auth-role-switch {
    grid-template-columns: 1fr;
  }
  /* Mobil uygulama: Üye / Firma / Personel yan yana */
  body.is-randevu-app .auth-role-switch,
  .auth-shell.is-app .auth-role-switch {
    grid-template-columns: repeat(3, 1fr);
  }
  body.is-randevu-app .auth-role-btn,
  .auth-shell.is-app .auth-role-btn {
    font-size: 0.75rem;
    padding: 0.35rem 0.25rem;
    min-height: 36px;
  }
  .site-header.is-auth,
  .site-nav.is-auth {
    height: 64px;
    min-height: 64px;
    max-height: 64px;
  }
  .brand.is-auth-brand.has-logo {
    height: 64px;
  }
  .brand.is-auth-brand.has-logo .platform-logo-img.is-full {
    height: 64px;
    max-height: 64px;
    max-width: min(280px, 52vw);
  }
}

/* ========== PANEL SHELL ========== */
.panel-body {
  padding-bottom: calc(var(--bottom-nav-h) + 1rem);
  min-height: 100dvh;
  background:
    radial-gradient(ellipse 70% 40% at 100% 0%, rgba(12, 107, 92, 0.07), transparent 55%),
    linear-gradient(180deg, #eef3f0 0%, var(--bg) 40%);
}
@media (min-width: 960px) {
  .panel-body {
    display: grid;
    grid-template-columns: 260px 1fr;
    padding-bottom: 0;
  }
}
.panel-sidebar {
  display: none;
  background:
    linear-gradient(165deg, #0a3d35 0%, #0c6b5c 48%, #0a5248 100%);
  color: #e8ebe9;
  padding: 1.35rem 0.9rem 1rem;
  min-height: 100dvh;
  position: sticky;
  top: 0;
  box-shadow: inset -1px 0 0 rgba(255,255,255,0.06);
}
@media (min-width: 960px) {
  .panel-sidebar { display: flex; flex-direction: column; gap: 0.2rem; }
}
.panel-sidebar .brand {
  color: #fff;
  margin-bottom: 1.75rem;
  padding: 0.35rem 0.55rem 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  font-size: 1.15rem;
}
.panel-sidebar .brand-mark {
  background: rgba(255,255,255,0.18);
  box-shadow: none;
}
.side-nav-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  padding: 0.85rem 0.75rem 0.35rem;
}
.side-link {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.7rem 0.8rem;
  border-radius: 12px;
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255,255,255,0.72);
  transition: background 0.18s var(--ease), color 0.18s, transform 0.18s;
}
.side-link:hover {
  background: rgba(255,255,255,0.1);
  color: #fff;
}
.side-link.active {
  background: #fff;
  color: var(--brand-dark);
  box-shadow: 0 6px 18px rgba(0,0,0,0.12);
}
.side-link .nav-ico {
  width: 28px; height: 28px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,0.1);
  font-size: 0.75rem;
  flex-shrink: 0;
}
.side-link.active .nav-ico {
  background: var(--brand-soft);
  color: var(--brand-dark);
}
.panel-user {
  margin-top: auto;
  padding: 0.85rem 0.55rem 0.25rem;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.panel-user .name {
  font-size: 0.85rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.15rem;
}
.panel-main { min-width: 0; }
.panel-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.9rem 1.1rem;
  background: rgba(255,255,255,0.78);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 40;
}
.panel-topbar h1 {
  font-size: 1.2rem;
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: -0.03em;
}
.panel-content { padding: 1.1rem; }
@media (min-width: 960px) {
  .panel-content { padding: 1.6rem 1.75rem 2rem; }
}

/* Bottom nav - mobile */
.bottom-nav {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  height: var(--bottom-nav-h);
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(14px);
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  z-index: 90;
  padding-bottom: env(safe-area-inset-bottom);
  box-shadow: 0 -8px 24px rgba(18,32,27,0.04);
}
@media (min-width: 960px) {
  .bottom-nav { display: none; }
}
.bottom-nav a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.2rem;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: var(--ink-muted);
}
.bottom-nav a.active { color: var(--brand); }
.bottom-nav .nav-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: currentColor;
  opacity: 0.35;
}
.bottom-nav a.active .nav-dot { opacity: 1; width: 18px; border-radius: 99px; height: 5px; }

/* Stats */
.stat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  margin-bottom: 1.35rem;
}
@media (min-width: 768px) {
  .stat-grid-4 { grid-template-columns: repeat(4, 1fr); }
}
.stat-card {
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1rem 1.05rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(18,32,27,0.03);
  color: inherit;
  text-decoration: none;
  display: block;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
a.stat-card {
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}
a.stat-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(18,32,27,0.08);
  color: inherit;
  text-decoration: none;
}
a.stat-card:active {
  transform: scale(0.98);
}
.stat-card::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--brand), #14967f);
  border-radius: 0 2px 2px 0;
}
.stat-card .stat-label {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--ink-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.35rem;
}
.stat-card .stat-value {
  font-family: var(--display);
  font-size: 1.55rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--ink);
}

.list-card {
  box-shadow: 0 4px 18px rgba(18,32,27,0.03);
  border-radius: 16px;
  transition: transform 0.2s var(--ease), box-shadow 0.2s;
}
.list-card:hover {
  box-shadow: 0 8px 24px rgba(18,32,27,0.06);
}
.surface {
  border-radius: 16px;
  box-shadow: 0 4px 18px rgba(18,32,27,0.03);
}
.tabs a, .tabs button {
  font-family: var(--font);
  font-weight: 700;
}

/* Tables - card-like on mobile */
.table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
}
.data-table th {
  text-align: left;
  padding: 0.65rem 0.75rem;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--ink-muted);
  border-bottom: 1px solid var(--line);
  white-space: nowrap;
}
.data-table td {
  padding: 0.75rem;
  border-bottom: 1px solid var(--line);
  vertical-align: middle;
}
.data-table tr:hover td { background: rgba(12,107,92,0.03); }

.list-cards { display: grid; gap: 0.65rem; }
.list-card {
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0.9rem;
}
.list-card-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 0.4rem;
}
.list-card-title { font-weight: 700; font-size: 0.95rem; }
.list-card-meta { font-size: 0.8rem; color: var(--ink-muted); display: grid; gap: 0.15rem; }
.list-card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--line);
}

/* Business / search cards */
.biz-grid {
  display: grid;
  gap: 0.85rem;
}
@media (min-width: 640px) {
  .biz-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 960px) {
  .biz-grid { grid-template-columns: repeat(3, 1fr); }
}
.biz-card {
  background: var(--bg-elevated);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  transition: transform 0.2s var(--ease), box-shadow 0.2s;
}
.biz-card:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.biz-cover {
  height: 100px;
  background: linear-gradient(135deg, var(--brand), #14967f 50%, #2a9d8f);
  position: relative;
}
@media (min-width: 560px) {
  .biz-cover { height: 110px; }
}
.biz-logo {
  width: 40px;
  height: 40px;
  border-radius: 11px;
  background: #fff;
  border: 2px solid #fff;
  position: absolute;
  bottom: -16px;
  left: 0.75rem;
  display: grid;
  place-items: center;
  font-weight: 800;
  color: var(--brand);
  font-size: 0.82rem;
  box-shadow: var(--shadow);
  overflow: hidden;
}
@media (min-width: 560px) {
  .biz-logo {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    bottom: -20px;
    left: 0.9rem;
    font-size: 0.9rem;
  }
}
.biz-logo img { width: 100%; height: 100%; object-fit: cover; }
.biz-logo .biz-logo-mark {
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: inherit;
  box-shadow: none;
}
.biz-body { padding: 1.35rem 0.75rem 0.8rem; }
@media (min-width: 560px) {
  .biz-body { padding: 1.6rem 0.9rem 0.9rem; }
}
.biz-body h3 { font-size: 0.92rem; margin-bottom: 0.2rem; line-height: 1.25; }
@media (min-width: 560px) {
  .biz-body h3 { font-size: 1rem; }
}
.biz-rating { font-size: 0.8rem; color: var(--warning); font-weight: 600; display: inline-flex; flex-wrap: wrap; align-items: center; gap: 0.35rem; }
.star-row { letter-spacing: 0.05em; }
.star-row .is-on { color: var(--warning); }
.star-row .is-off { color: #d5dde0; }
.star-row .is-half {
  background: linear-gradient(90deg, var(--warning) 50%, #d5dde0 50%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.biz-reviews { margin: 1.25rem 0 1rem; }
.biz-reviews-head h3 { margin: 0; }
.biz-reviews-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.65rem;
  flex-wrap: wrap;
  margin-bottom: 0.75rem;
}
.biz-reviews-title-row h3 { margin: 0; }
.biz-review-filter-trigger { flex-shrink: 0; }
.biz-reviews-summary {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem 1.25rem;
  align-items: center;
  padding: 0.95rem 1rem;
  border-radius: 16px;
  background: linear-gradient(135deg, #fff8ea 0%, #f4fbf8 100%);
  border: 1px solid #ebe3d2;
  margin-bottom: 0.9rem;
}
.biz-reviews-score { text-align: center; min-width: 5.5rem; }
.biz-reviews-avg {
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: #1d2a26;
  line-height: 1;
}
.biz-reviews-bars { display: grid; gap: 0.28rem; }
.biz-reviews-bar-row {
  display: grid;
  grid-template-columns: 1.6rem 1fr 1.4rem;
  gap: 0.45rem;
  align-items: center;
  font-size: 0.75rem;
  color: #5a6b63;
}
.biz-reviews-bar-row em { font-style: normal; text-align: right; }
.biz-reviews-bar {
  height: 0.45rem;
  border-radius: 999px;
  background: #e5ece8;
  overflow: hidden;
}
.biz-reviews-bar i {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, #e0a800, #c47d12);
  border-radius: inherit;
}
.biz-review-list { display: grid; gap: 0.7rem; }
.biz-review-card {
  padding: 0.9rem 1rem;
  border-radius: 16px;
  border: 1px solid #e6eeea;
  background: #fff;
}
.biz-review-top {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
}
.biz-review-avatar {
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #e8f5f0;
  color: #0c6b5c;
  font-weight: 800;
  flex: 0 0 auto;
  overflow: hidden;
}
.biz-review-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.biz-review-who { min-width: 0; flex: 1; }
.biz-review-who strong { display: block; font-size: 0.95rem; }
.biz-review-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 0.5rem;
  margin-top: 0.2rem;
  font-size: 0.78rem;
  color: #6b7c74;
}
.biz-review-service {
  margin: 0.55rem 0 0;
  font-size: 0.78rem;
  font-weight: 600;
  color: #4d6a60;
}
.biz-review-context {
  display: grid;
  gap: 0.45rem;
  margin-top: 0.65rem;
  padding: 0.65rem 0.75rem;
  border-radius: 12px;
  background: #f6faf8;
  border: 1px solid #e6eeea;
}
.biz-review-context-row {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  min-width: 0;
}
.biz-review-context-label {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  flex: 0 0 5.5rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #6b7c74;
}
.biz-review-context-value {
  min-width: 0;
  font-size: 0.82rem;
  font-weight: 600;
  color: #2f4039;
}
.biz-review-staff.person-name-inline {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}
.biz-review-staff .person-avatar {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  display: inline-grid;
  place-items: center;
  background: #e8f5f0;
  color: #0c6b5c;
  font-size: 0.62rem;
  font-weight: 800;
}
.biz-review-staff .person-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.biz-review-staff .person-name-text {
  font-weight: 600;
}
.biz-review-foot {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.65rem;
  margin-top: 0.85rem;
  padding-top: 0.65rem;
  border-top: 1px solid #e6eeea;
}
.biz-review-range { color: #6b7c74; }
.biz-review-comment {
  margin: 0.55rem 0 0;
  font-size: 0.92rem;
  line-height: 1.5;
  color: #2c3a35;
}
.biz-review-card .review-reply {
  margin-top: 0.7rem;
  background: #eef8f4;
  border-radius: 12px;
  padding: 0.65rem 0.75rem;
}
.biz-review-card .review-reply strong {
  font-size: 0.72rem;
  color: #0c6b5c;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.biz-review-card .review-reply p {
  margin: 0.25rem 0 0;
  font-size: 0.88rem;
  color: #3d4f47;
}
.biz-reviews-empty { padding: 1rem 0.5rem; }
@media (max-width: 640px) {
  .biz-reviews-summary { grid-template-columns: 1fr; }
  .biz-reviews-score { text-align: left; display: flex; flex-wrap: wrap; align-items: center; gap: 0.45rem 0.75rem; }
  .biz-reviews-avg { font-size: 1.7rem; }
}

/* Filters */
.filter-bar {
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
  padding-bottom: 0.5rem;
  margin-bottom: 1rem;
  scrollbar-width: none;
}
.filter-bar::-webkit-scrollbar { display: none; }
.filter-bar .form-control {
  min-width: 130px;
  flex: 0 0 auto;
  padding: 0.55rem 0.75rem;
  font-size: 0.85rem;
}

/* Tabs */
.tabs {
  display: flex;
  gap: 0.25rem;
  overflow-x: auto;
  margin-bottom: 1rem;
  border-bottom: 1px solid var(--line);
  scrollbar-width: none;
}
.tabs a, .tabs button {
  flex: 0 0 auto;
  padding: 0.65rem 0.85rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink-muted);
  border: none;
  background: none;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  cursor: pointer;
}
.tabs .active { color: var(--brand); border-bottom-color: var(--brand); }

/* Booking wizard */
.wizard-steps {
  display: flex;
  gap: 0.35rem;
  margin-bottom: 1.25rem;
  overflow-x: auto;
}
.wizard-step {
  flex: 1;
  min-width: 60px;
  text-align: center;
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--ink-muted);
}
.wizard-step .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--bg-soft);
  margin: 0 auto 0.3rem;
}
.wizard-step.done .dot, .wizard-step.active .dot { background: var(--brand); }
.wizard-step.active { color: var(--brand); }

.slot-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.45rem;
}
@media (min-width: 480px) {
  .slot-grid { grid-template-columns: repeat(4, 1fr); }
}
.slot-btn {
  padding: 0.65rem 0.4rem;
  border: 1.5px solid var(--line-strong);
  border-radius: var(--radius-sm);
  background: var(--bg-elevated);
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  text-align: center;
}
.slot-btn:hover:not(:disabled) { border-color: var(--brand); }
.slot-btn.selected {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
}
.slot-btn:disabled { opacity: 0.35; cursor: not-allowed; }

/* Business profile */
.profile-cover {
  height: 200px;
  background: linear-gradient(135deg, var(--brand-dark), var(--brand) 50%, #1a9b82);
  position: relative;
}
@media (min-width: 768px) {
  .profile-cover { height: 280px; }
}
.profile-cover::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(246,244,241,0.55));
}
.profile-header {
  display: flex;
  gap: 0.9rem;
  align-items: flex-end;
  margin-top: -36px;
  margin-bottom: 1.25rem;
  position: relative;
}
.profile-logo {
  width: 72px; height: 72px;
  border-radius: 16px;
  background: #fff;
  border: 3px solid #fff;
  box-shadow: var(--shadow);
  display: grid;
  place-items: center;
  font-weight: 800;
  color: var(--brand);
  font-size: 1.2rem;
  flex-shrink: 0;
  overflow: hidden;
}
.profile-logo img { width: 100%; height: 100%; object-fit: cover; }
.sticky-book {
  position: fixed;
  bottom: calc(var(--bottom-nav-h) + 0.75rem);
  left: 0.75rem; right: 0.75rem;
  z-index: 80;
}
@media (min-width: 960px) {
  .sticky-book {
    position: static;
    margin-top: 1rem;
  }
  .panel-body:has(.bottom-nav) .sticky-book,
  body:not(.panel-body) .sticky-book {
    bottom: 1rem;
  }
}
body:not(.has-bottom-nav) .sticky-book { bottom: 1rem; }

/* QR */
.qr-box {
  text-align: center;
  padding: 1.5rem;
  background: var(--bg-elevated);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
}
.qr-box img, .qr-box canvas { margin: 0 auto 1rem; max-width: 200px; }
.qr-code-text {
  font-family: ui-monospace, monospace;
  font-size: 0.75rem;
  word-break: break-all;
  color: var(--ink-muted);
}

/* Empty / empty state */
.empty {
  text-align: center;
  padding: 2.5rem 1rem;
  color: var(--ink-muted);
}
.empty-icon {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  opacity: 0.5;
}

/* Pagination */
.pagination {
  display: flex;
  gap: 0.3rem;
  justify-content: center;
  margin-top: 1.25rem;
  flex-wrap: wrap;
}
.page-link {
  width: 36px; height: 36px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  background: var(--bg-elevated);
  border: 1px solid var(--line);
}
.page-link.active {
  background: var(--brand);
  color: #fff;
  border-color: var(--brand);
}

/* Utilities */
.flex { display: flex; }
.flex-between { display: flex; justify-content: space-between; align-items: center; }
.flex-wrap { flex-wrap: wrap; }
.gap-1 { gap: 0.5rem; }
.gap-2 { gap: 0.75rem; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.text-center { text-align: center; }
.hidden { display: none !important; }
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); border: 0;
}

.surface {
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1rem;
}

/* Contact / how section atmosphere */
.band-alt {
  background:
    linear-gradient(180deg, transparent, rgba(12,107,92,0.04)),
    var(--bg);
}

@media (max-width: 639px) {
  .hide-mobile { display: none !important; }
  .data-table thead { display: none; }
  .data-table, .data-table tbody, .data-table tr, .data-table td {
    display: block;
    width: 100%;
  }
  .data-table tr {
    background: var(--bg-elevated);
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    margin-bottom: 0.65rem;
    padding: 0.5rem 0;
  }
  .data-table td {
    border: none;
    padding: 0.35rem 0.85rem;
    display: flex;
    justify-content: space-between;
    gap: 0.75rem;
  }
  .data-table td::before {
    content: attr(data-label);
    font-weight: 600;
    font-size: 0.75rem;
    color: var(--ink-muted);
    flex-shrink: 0;
  }
}

/* ========== DISCOVER SEARCH ========== */
.discover-page {
  --discover-gap: 0.9rem;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  padding-bottom: calc(var(--bottom-nav-h, 64px) + 1rem);
  display: grid;
  gap: var(--discover-gap);
}

/* Ad hero slider — app-hero-card'dan bağımsız */
.discover-ad-slider {
  position: relative;
  border-radius: 26px;
  overflow: hidden;
  width: 100%;
  align-self: start;
  min-width: 0;
  flex-shrink: 0;
  z-index: 1;
}
.discover-ad-track {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 4 / 1;
  min-height: 140px;
  background: #0c6b5c;
}
.discover-ad-slide {
  position: absolute;
  inset: 0;
  display: none !important;
  margin: 0 !important;
  padding: 0 !important;
  border-radius: 26px;
  overflow: hidden;
  box-sizing: border-box;
  color: #fff;
}
.discover-ad-slider .discover-ad-slide.is-active {
  display: block !important;
}
.discover-ad-media {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  max-width: none !important;
  object-fit: cover;
  object-position: center center;
  display: block;
  pointer-events: none;
  z-index: 0;
  margin: 0;
  border: 0;
}
.discover-ad-copy {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.2rem 1.15rem 1.25rem;
  box-sizing: border-box;
  background: linear-gradient(115deg, rgba(6,46,40,.88) 0%, rgba(12,107,92,.5) 50%, rgba(6,46,40,.2) 100%);
}
.discover-ad-ico {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: rgba(255,255,255,.18);
  display: grid;
  place-items: center;
  margin-bottom: 0.55rem;
  color: #fff;
}
.discover-ad-ico svg { width: 22px; height: 22px; }
.discover-ad-kicker {
  font-size: 0.8rem;
  font-weight: 650;
  color: rgba(255,255,255,.75);
}
.discover-ad-title {
  margin: 0.25rem 0 0.75rem;
  font-family: var(--display);
  font-size: clamp(1.2rem, 4vw, 1.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.25;
  color: #fff;
}
.discover-ad-btn {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  padding: 0.45rem 0.9rem;
  border-radius: 12px;
  background: #fff;
  color: #084c42;
  font-weight: 750;
  font-size: 0.86rem;
  text-decoration: none;
}
@keyframes discoverAdIn {
  from { opacity: 0.35; transform: translateX(10px); }
  to { opacity: 1; transform: none; }
}
.discover-ad-slide.is-active {
  animation: discoverAdIn 0.4s var(--ease);
}
.discover-ad-nav {
  position: absolute;
  top: 50%;
  z-index: 3;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 12px;
  background: rgba(255,255,255,0.92);
  color: var(--brand-dark);
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}
.discover-ad-prev { left: 0.65rem; }
.discover-ad-next { right: 0.65rem; }
.discover-ad-dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.7rem;
  z-index: 3;
  display: flex;
  justify-content: center;
  gap: 0.35rem;
  pointer-events: none;
}
.discover-ad-dot {
  pointer-events: auto;
  width: 7px;
  height: 7px;
  border: none;
  border-radius: 999px;
  background: rgba(255,255,255,0.45);
  cursor: pointer;
  padding: 0;
}
.discover-ad-dot.is-on {
  width: 18px;
  background: #fff;
}
.discover-ad-hit {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: block;
  text-indent: -9999px;
  overflow: hidden;
}

.discover-desk {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: var(--discover-gap, 0.9rem);
}
.discover-row {
  display: flex;
  flex-direction: column;
  gap: var(--discover-gap, 0.9rem);
  align-items: stretch;
}
.discover-main {
  display: grid;
  gap: var(--discover-gap, 0.9rem);
  min-width: 0;
}
.discover-list {
  width: 100%;
  min-width: 0;
}

.discover-topbar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.55rem;
  align-items: stretch;
  position: sticky;
  top: 0.35rem;
  z-index: 30;
}
.discover-searchbar {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  min-width: 0;
  padding: 0.28rem 0.3rem 0.28rem 0.75rem;
  border-radius: 16px;
  border: 1px solid rgba(18, 32, 27, 0.1);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 10px 28px rgba(18, 32, 27, 0.08);
  backdrop-filter: blur(12px);
}
.discover-searchbar-ico {
  display: inline-flex;
  color: var(--brand);
  flex-shrink: 0;
}
.discover-searchbar input[type=search] {
  flex: 1;
  min-width: 0;
  border: none;
  background: transparent;
  padding: 0.55rem 0.2rem;
  font-weight: 600;
  font-size: 0.9rem;
}
.discover-searchbar input:focus { outline: none; }
.discover-locate {
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 11px;
  background: var(--bg-soft);
  color: var(--brand-dark);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
}
.discover-search-btn {
  flex-shrink: 0;
  border-radius: 12px !important;
  padding-inline: 0.9rem !important;
}
.discover-filter-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0 0.9rem;
  border-radius: 16px;
  border: 1px solid rgba(18, 32, 27, 0.1);
  background: #fff;
  box-shadow: 0 10px 28px rgba(18, 32, 27, 0.08);
  font-weight: 800;
  font-size: 0.82rem;
  color: var(--ink);
  cursor: pointer;
  white-space: nowrap;
}
.discover-filter-btn b {
  display: inline-grid;
  place-items: center;
  min-width: 1.2rem;
  height: 1.2rem;
  padding: 0 0.28rem;
  border-radius: 999px;
  background: var(--brand);
  color: #fff;
  font-size: 0.68rem;
}
.discover-filter-btn.has-count,
.discover-filter-btn.is-open {
  border-color: rgba(12, 107, 92, 0.35);
  background: var(--brand-soft);
  color: var(--brand-dark);
}
@media (min-width: 960px) {
  .discover-filter-btn { display: none; }
}

/* Aside = other pages' desk-aside / panel-card */
.discover-aside .panel-card {
  background: #fff;
  border-radius: 18px;
  border: 1px solid rgba(18, 32, 27, 0.07);
  box-shadow: 0 8px 24px rgba(18, 32, 27, 0.035);
  overflow: hidden;
}
.discover-aside-body {
  display: grid;
  gap: 0.85rem;
  padding: 0 1rem 1rem;
}
.discover-filter-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.55rem;
}
.discover-field {
  display: grid;
  gap: 0.25rem;
  min-width: 0;
}
.discover-field > span {
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-muted);
}
.discover-field .form-control {
  width: 100%;
  min-width: 0;
  padding: 0.55rem 0.6rem;
  border-radius: 11px;
  font-weight: 600;
  font-size: 0.84rem;
}
.discover-toggles {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}
.discover-toggle {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 0.42rem 0.7rem;
  border-radius: 999px;
  border: 1.5px solid var(--line-strong);
  background: var(--bg);
  font-size: 0.75rem;
  font-weight: 700;
  cursor: pointer;
}
.discover-toggle span {
  display: inline-flex;
  align-items: center;
  gap: 0.28rem;
}
.discover-toggle input {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
  margin: 0;
  pointer-events: none;
}
.discover-toggle.is-on,
.discover-toggle:has(input:checked) {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
}

@media (max-width: 959px) {
  .discover-aside {
    display: none;
    margin-top: 0;
  }
  .discover-aside.is-open {
    display: block;
  }
}
@media (min-width: 960px) {
  .discover-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 360px);
    gap: var(--discover-gap, 0.9rem) 1.25rem;
    align-items: start;
  }
  .discover-row > .discover-main {
    min-width: 0;
  }
  .discover-row > .discover-aside {
    position: sticky;
    top: 5rem;
    margin-top: 0 !important;
    display: block;
    align-self: start;
  }
  .discover-list {
    width: 100%;
  }
}

.discover-cats.panel-card,
.discover-list.panel-card {
  padding: 0;
  overflow: hidden;
}

.discover-cats {
  min-width: 0;
}
.discover-cats .panel-card-head,
.discover-list .panel-card-head,
.discover-aside .panel-card-head {
  margin: 0;
  padding: 0.85rem 1rem 0.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.65rem;
  flex-wrap: nowrap;
  border-bottom: 1px solid #eef2ef;
}
.discover-cats .panel-card-head h3,
.discover-list .panel-card-head h3,
.discover-aside .panel-card-head h3 {
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  line-height: 1.2;
  min-width: 0;
}
.discover-cats .panel-card-head h3 svg,
.discover-list .panel-card-head h3 svg,
.discover-aside .panel-card-head h3 svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  display: block;
}
.discover-aside .panel-card-head .btn {
  flex-shrink: 0;
  margin: 0;
  min-height: 34px;
  padding: 0.35rem 0.75rem;
  border-radius: 11px;
  line-height: 1.2;
}
.discover-cats-scroll {
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x proximity;
  scrollbar-width: none;
  padding: 0 0 0.95rem;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 4%, #000 92%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 4%, #000 92%, transparent 100%);
}
.discover-cats-scroll::-webkit-scrollbar { display: none; }
.discover-cats-grid {
  display: flex;
  gap: 0.55rem;
  width: max-content;
  padding: 0.1rem 1rem;
}
.discover-cat {
  display: grid;
  gap: 0.35rem;
  justify-items: center;
  text-align: center;
  width: 70px;
  min-width: 70px;
  flex-shrink: 0;
  scroll-snap-align: start;
}
@media (min-width: 960px) {
  .discover-cats-scroll {
    --cat-size: 72px;
    --cat-gap: 0.55rem;
    --cat-label: 1.35rem;
    --cat-stack: 0.35rem;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: none;
    scrollbar-width: thin;
    max-height: calc(
      (3 * (var(--cat-size) + var(--cat-stack) + var(--cat-label)))
      + (2 * var(--cat-gap))
      + 0.35rem
    );
    padding: 0.15rem 0.35rem 0.85rem 0;
    -webkit-mask-image: none;
    mask-image: none;
  }
  .discover-cats-scroll::-webkit-scrollbar {
    display: block;
    width: 6px;
  }
  .discover-cats-scroll::-webkit-scrollbar-thumb {
    background: rgba(18, 32, 27, 0.18);
    border-radius: 999px;
  }
  .discover-cats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(84px, 1fr));
    gap: var(--cat-gap, 0.55rem);
    width: auto;
    padding: 0.1rem 0.75rem 0 1rem;
  }
  .discover-cat {
    width: auto;
    min-width: 0;
  }
  .discover-cat-img {
    width: var(--cat-size, 72px);
    height: var(--cat-size, 72px);
    max-width: var(--cat-size, 72px);
  }
}
.discover-cat-img {
  position: relative;
  width: 62px;
  height: 62px;
  border-radius: 16px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  box-shadow: 0 8px 20px rgba(18, 32, 27, 0.1);
  border: 2px solid transparent;
  display: grid;
  place-items: center;
  transition: transform 0.2s var(--ease), border-color 0.15s, box-shadow 0.2s;
}
@media (min-width: 960px) {
  .discover-cat-img {
    width: var(--cat-size, 72px);
    height: var(--cat-size, 72px);
    max-width: var(--cat-size, 72px);
    aspect-ratio: 1;
  }
}
.discover-cat-all {
  background: linear-gradient(145deg, #0c6b5c, #084c42);
  color: #fff;
}
.discover-cat-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(165deg, rgba(8,40,34,0.1), rgba(8,40,34,0.55));
}
.discover-cat-ico {
  position: relative;
  z-index: 1;
  color: #fff;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.35));
}
.discover-cat-name {
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--ink-soft);
  line-height: 1.2;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.discover-cat:hover .discover-cat-img { transform: translateY(-2px); }
.discover-cat.is-on .discover-cat-img {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(12, 107, 92, 0.2), 0 10px 22px rgba(18, 32, 27, 0.12);
}
.discover-cat.is-on .discover-cat-name { color: var(--brand-dark); }

.discover-list-head {
  gap: 0.65rem;
}
.discover-list-tools {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.discover-list-head .tiny {
  margin-left: 0;
  font-weight: 700;
  color: var(--ink-muted);
  white-space: nowrap;
}
.discover-sort {
  display: inline-flex;
  min-width: 0;
}
.discover-sort .form-control {
  width: auto;
  min-width: 11.5rem;
  max-width: min(100%, 16rem);
  padding: 0.4rem 0.7rem;
  border-radius: 11px;
  font-size: 0.8rem;
  font-weight: 700;
  background: #f4f8f6;
  border-color: rgba(18, 32, 27, 0.1);
}
.discover-list-body {
  padding: 0 1rem 1rem;
}
.discover-list.is-loading {
  position: relative;
  pointer-events: none;
}
.discover-list.is-loading::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(1px);
}
.discover-list.is-loading .discover-list-body {
  opacity: 0.45;
}

.discover-results {
  display: grid;
  gap: 0.75rem;
  grid-template-columns: 1fr;
  align-items: stretch;
}
@media (min-width: 560px) {
  /* Kart genişliği sabit kalır — landing / panel / favoriler aynı ölçü */
  .discover-results {
    grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  }
}

.discover-card {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto 1fr;
  min-height: 0;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: 0 8px 22px rgba(18, 32, 27, 0.05);
  transition: transform 0.2s var(--ease), box-shadow 0.2s;
}
.discover-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 34px rgba(18, 32, 27, 0.1);
}
.discover-card-media {
  position: relative;
  display: block;
  width: 100%;
  height: 108px;
  min-height: 108px;
  max-height: 108px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media (min-width: 560px) {
  .discover-card-media {
    height: 132px;
    min-height: 132px;
    max-height: 132px;
  }
}
.discover-card-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.45));
}
.discover-card-logo-mark {
  position: absolute;
  left: 0.5rem;
  bottom: 0.5rem;
  z-index: 2;
  width: 36px !important;
  height: 36px !important;
  border-radius: 10px !important;
  font-size: 0.74rem !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.16);
  border: 2px solid #fff;
}
@media (min-width: 560px) {
  .discover-card-logo-mark {
    left: 0.55rem;
    bottom: 0.55rem;
    width: 40px !important;
    height: 40px !important;
    border-radius: 11px !important;
    font-size: 0.8rem !important;
  }
}
.discover-card-title-row {
  display: flex;
  align-items: flex-start;
  gap: 0.45rem;
  min-width: 0;
}
.discover-card-title-row h3 {
  margin: 0;
  min-width: 0;
}
.discover-card-logo-inline {
  display: none;
}
.biz-logo-mark {
  display: inline-grid;
  place-items: center;
  overflow: hidden;
  flex-shrink: 0;
  background: #fff;
  border: 1px solid rgba(18, 32, 27, 0.08);
}
.biz-logo-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.biz-logo-mark.is-fallback {
  background: linear-gradient(135deg, #eef8f4, #d5efe8);
  color: #0c6b5c;
  font-weight: 800;
}
.biz-logo-sm { width: 34px; height: 34px; border-radius: 10px; font-size: 0.78rem; }
.biz-logo-md { width: 42px; height: 42px; border-radius: 12px; font-size: 0.86rem; }
.biz-logo-lg { width: 48px; height: 48px; border-radius: 14px; font-size: 0.92rem; }
.person-avatar.biz-logo-mark { border-radius: 50%; }
.discover-live {
  position: absolute;
  top: 0.5rem;
  left: 0.5rem;
  z-index: 1;
  font-size: 0.62rem;
  font-weight: 800;
  padding: 0.22rem 0.45rem;
  border-radius: 999px;
  color: #fff;
  background: #1f8a5f;
}
.discover-card-score {
  position: absolute;
  top: 0.45rem;
  right: 0.45rem;
  bottom: auto;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
  padding: 0.18rem 0.42rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.96);
  color: var(--warning);
  font-size: 0.68rem;
  font-weight: 800;
  max-width: calc(100% - 5.5rem);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.discover-card-media:has(.discover-live) .discover-card-score {
  top: 0.45rem;
}
.discover-card-score small {
  font-size: 0.68em;
  font-weight: 700;
  opacity: 0.75;
  margin-left: 0.1rem;
}
.discover-card-score.is-empty {
  color: var(--ink-muted);
  font-weight: 800;
  letter-spacing: 0.02em;
}
.discover-card-body {
  display: flex;
  flex-direction: column;
  padding: 0.62rem 0.7rem 0.72rem;
  min-width: 0;
  gap: 0.1rem;
}
@media (min-width: 560px) {
  .discover-card-body {
    padding: 0.7rem 0.75rem 0.8rem;
  }
}
.discover-card-info {
  display: block;
  min-width: 0;
  color: inherit;
}
.discover-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.35rem;
  margin-bottom: 0.15rem;
  min-width: 0;
}
.discover-card-kicker {
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 0;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.discover-deal {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  margin-left: auto;
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  padding: 0.16rem 0.42rem;
  border-radius: 999px;
  color: #b54708;
  background: #fff4e5;
  border: 1px solid rgba(181, 71, 8, 0.18);
}
.discover-card-body h3,
.discover-card-title-row h3 {
  font-size: 0.9rem;
  margin-bottom: 0.15rem;
  letter-spacing: -0.02em;
  line-height: 1.28;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  white-space: normal;
}
@media (min-width: 560px) {
  .discover-card-body h3,
  .discover-card-title-row h3 {
    font-size: 0.95rem;
    -webkit-line-clamp: 1;
    white-space: nowrap;
    display: block;
  }
}
.discover-card-loc,
.discover-card-dist {
  font-size: 0.74rem;
  color: var(--ink-muted);
  line-height: 1.3;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.discover-card-actions {
  margin-top: auto;
  padding-top: 0.55rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.35rem;
}
.discover-ico-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 36px;
  border-radius: 11px;
  border: 1px solid var(--line-strong);
  background: var(--bg);
  color: var(--ink-soft);
  transition: background 0.15s, color 0.15s, border-color 0.15s, transform 0.15s;
}
.discover-ico-btn:hover {
  transform: translateY(-1px);
  border-color: rgba(12, 107, 92, 0.35);
  color: var(--brand-dark);
  background: var(--brand-soft);
}
.discover-ico-btn.is-wa {
  color: #148b62;
  background: #effaf5;
  border-color: #cfeadf;
}
.discover-ico-btn.is-wa:hover {
  background: #e0f5eb;
  color: #0f6f4d;
}
.discover-ico-btn.is-book {
  color: #fff;
  background: var(--brand);
  border-color: var(--brand);
}
.discover-ico-btn.is-book:hover {
  background: var(--brand-dark);
  border-color: var(--brand-dark);
  color: #fff;
}
.discover-ico-btn.is-disabled {
  opacity: 0.38;
  pointer-events: none;
}
.discover-card-cta {
  margin-top: auto;
  padding-top: 0.45rem;
  font-size: 0.76rem;
  font-weight: 800;
  color: var(--brand);
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

.discover-empty {
  text-align: center;
  padding: 2.2rem 1rem;
  border-radius: 18px;
  background: #fff;
  border: 1px solid var(--line);
}
.discover-empty-ico {
  display: inline-grid;
  place-items: center;
  width: 56px;
  height: 56px;
  margin-bottom: 0.7rem;
  border-radius: 16px;
  background: var(--bg-soft);
  color: var(--brand);
}
.discover-empty h3 { margin-bottom: 0.3rem; }

.panel-content:has(.discover-page),
.app-content:has(.discover-ad-slider),
.panel-content:has(.discover-ad-slider),
.app-content:has(.discover-page) {
  --discover-gap: 0.9rem;
  padding-top: var(--discover-gap) !important;
}
.discover-page:has(.discover-ad-slider) {
  gap: var(--discover-gap, 0.9rem);
}
body.landing-discover .discover-page {
  margin-top: 0 !important;
}
@media (max-width: 420px) {
  .discover-filter-btn span { display: none; }
  .discover-search-btn { padding-inline: 0.7rem !important; }
  body.landing-discover .discover-search-card .discover-filter-btn {
    min-width: 48px;
    padding: 0 0.75rem;
  }
}
/* Firma profili (panel i?inde) */
.firm-panel { padding-bottom: 4.5rem; }
.firm-cover {
  height: 160px;
  border-radius: 18px;
  background-size: cover;
  background-position: center;
  position: relative;
  margin: -0.25rem 0 0;
  overflow: hidden;
}
@media (min-width: 768px) { .firm-cover { height: 220px; } }
.firm-cover::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.25), transparent 40%, rgba(0,0,0,0.35));
}
.firm-back {
  position: absolute;
  z-index: 2;
  top: 0.75rem; left: 0.75rem;
  background: rgba(255,255,255,0.92);
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
}
.firm-head {
  display: flex;
  gap: 0.85rem;
  align-items: flex-end;
  margin-top: -28px;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}
.firm-book {
  position: fixed;
  left: 0.75rem; right: 0.75rem;
  bottom: calc(var(--bottom-nav-h) + 0.65rem);
  z-index: 85;
}
@media (min-width: 960px) {
  .firm-book {
    position: sticky;
    bottom: 1rem;
    left: auto; right: auto;
    margin-top: 1rem;
  }
}

/* Yeni firma profil vitrini */
.business-profile-page {
  width: 100%;
  padding: 0 0 5.5rem;
}
.business-showcase {
  width: 100%;
  max-width: none;
  margin: 0;
  padding-bottom: 5.5rem;
}
.business-showcase.is-public {
  --profile-pad: clamp(0.85rem, 2.2vw, 1.75rem);
  --profile-max: 1360px;
  --site-header-h: 90px;
}
.business-showcase.is-panel {
  --profile-pad: 0;
  --profile-max: none;
}
.business-hero {
  min-height: clamp(220px, 28vw, 340px);
  position: relative;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  border-radius: 0;
  background-size: cover;
  background-position: center;
}
.business-showcase.is-panel .business-hero {
  border-radius: 22px;
  box-shadow: 0 18px 46px rgba(18, 32, 27, 0.12);
}
.business-showcase.is-public .business-hero {
  box-shadow: none;
}
.business-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 29, 25, 0.08) 15%, rgba(8, 29, 25, 0.82) 100%),
    linear-gradient(90deg, rgba(8, 29, 25, 0.35), transparent 65%);
}
.business-hero-content {
  position: relative;
  z-index: 1;
  width: min(100% - (var(--profile-pad) * 2), var(--profile-max));
  margin-inline: auto;
  display: flex;
  align-items: flex-end;
  gap: 1rem;
  padding: 1.5rem 0;
  color: #fff;
}
.business-showcase.is-panel .business-hero-content {
  width: 100%;
  margin: 0;
  padding: 1.35rem;
}
.business-hero-logo {
  width: 82px;
  height: 82px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 21px;
  border: 4px solid rgba(255,255,255,0.92);
  background: #fff;
  box-shadow: 0 10px 30px rgba(0,0,0,0.24);
  color: var(--brand);
  font-size: 1.8rem;
  font-weight: 850;
}
.business-hero-logo img,
.business-hero-logo .business-hero-logo-mark {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #fff;
}
.business-hero-logo .business-hero-logo-mark {
  border: 0;
  border-radius: inherit;
  display: grid;
}
.business-hero-copy {
  min-width: 0;
  padding-bottom: 0.15rem;
}
.business-hero-copy h1 {
  margin: 0.3rem 0 0.35rem;
  color: #fff;
  font-size: clamp(1.5rem, 4vw, 2.35rem);
  line-height: 1.1;
  letter-spacing: -0.04em;
}
.business-hero-kicker,
.business-hero-rating {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4rem 0.75rem;
}
.business-hero-kicker {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.82);
}
.business-hero-kicker span {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}
.business-hero-rating {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.8);
}
.business-hero-rating .star-row .is-on { color: #ffd66b; }
.business-hero-rating .star-row .is-off { color: rgba(255,255,255,0.35); }
.business-hero-rating .star-row .is-half {
  background: linear-gradient(90deg, #ffd66b 50%, rgba(255,255,255,0.35) 50%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.business-hero-rating strong { color: #fff; }

.business-showcase-body {
  width: min(100% - (var(--profile-pad) * 2), var(--profile-max));
  margin: 0.9rem auto 0;
}
.business-showcase.is-panel .business-showcase-body {
  width: 100%;
  margin-top: 0.75rem;
}

.business-profile-actions {
  display: flex;
  flex-wrap: nowrap;
  align-items: stretch;
  gap: 0.45rem;
  margin: 0 0 0.75rem;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.business-profile-actions::-webkit-scrollbar { display: none; }
.business-profile-actions form { display: contents; }
.business-action {
  flex: 1 1 0;
  min-width: 0;
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.55rem 0.55rem;
  border: 1px solid #e2ebe6;
  border-radius: 14px;
  background: #fff;
  color: #2c443b;
  box-shadow: 0 5px 16px rgba(18,32,27,0.045);
  font: inherit;
  font-size: 0.74rem;
  font-weight: 750;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
}
.business-action svg {
  flex-shrink: 0;
}
.business-action span {
  overflow: hidden;
  text-overflow: ellipsis;
}
.business-action:hover {
  border-color: #b8d9cf;
  background: #f5fbf8;
  color: var(--brand);
  text-decoration: none;
}
.business-action.is-book {
  flex: 1.35 1 0;
  color: #fff;
  background: linear-gradient(135deg, var(--brand), #14967f);
  border-color: transparent;
  box-shadow: 0 8px 18px rgba(12, 107, 92, 0.22);
}
.business-action.is-book:hover {
  color: #fff;
  background: linear-gradient(135deg, #0a5a4d, #118a75);
  border-color: transparent;
}
.business-action.is-whatsapp {
  color: #148b62;
  background: #effaf5;
}
.business-action.is-favorite {
  color: #d04c4c;
  background: #fff3f1;
  border-color: #f3d8d4;
}

.business-profile-facts {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.6rem;
  margin-bottom: 0.75rem;
}
.business-profile-facts > div {
  min-width: 0;
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-areas: "icon label" "icon value";
  align-items: center;
  column-gap: 0.6rem;
  padding: 0.75rem;
  border: 1px solid #e8efeb;
  border-radius: 16px;
  background: #f8fbf9;
}
.business-profile-facts .fact-icon {
  grid-area: icon;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 11px;
  background: #dff2eb;
  color: var(--brand);
}
.business-profile-facts small {
  grid-area: label;
  color: #7d8d85;
  font-size: 0.62rem;
  font-weight: 700;
}
.business-profile-facts strong {
  grid-area: value;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: #1f302a;
  font-size: 0.78rem;
}
.business-profile-status-fact .business-status-value {
  display: flex;
  flex-direction: column;
  gap: 0.08rem;
  min-width: 0;
  overflow: hidden;
  white-space: normal;
  text-overflow: clip;
  line-height: 1.25;
  color: #1f302a;
  font-size: 0.78rem;
}
.business-profile-status-fact .business-status-day {
  display: block;
  white-space: nowrap;
  font-weight: 800;
}
.business-profile-status-fact .business-status-time {
  display: block;
  font-weight: 700;
}

.business-profile-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0.8rem;
}
.business-profile-main,
.business-profile-side {
  min-width: 0;
  display: grid;
  align-content: start;
  gap: 0.8rem;
}
.business-profile-section,
.business-showcase .biz-reviews {
  margin: 0 0 0.8rem;
  padding: 1rem;
  border: 1px solid #e8efeb;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 8px 25px rgba(18,32,27,0.045);
}
.business-section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.7rem;
  margin-bottom: 0.8rem;
}
.business-section-head > div {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 0.55rem;
}
.business-section-head h2,
.business-showcase .biz-reviews-head h3 {
  margin: 0;
  color: #172822;
  font-size: 1rem;
  letter-spacing: -0.025em;
}
.business-section-head > span {
  flex-shrink: 0;
  color: #7d8d85;
  font-size: 0.7rem;
  font-weight: 650;
}
.business-section-icon {
  width: 32px;
  height: 32px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: #dff2eb;
  color: var(--brand);
}
.business-section-icon.tone-blue { background: #e3f0f8; color: #2a6f97; }
.business-section-icon.tone-coral { background: #fce8e2; color: #d95739; }
.business-section-icon.tone-gold { background: #fef3d8; color: #a26a10; }
.business-about p {
  margin: 0;
  color: #52655d;
  font-size: 0.9rem;
  line-height: 1.65;
}
.business-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.8rem;
}
.business-socials a {
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  background: #f1f6f3;
  color: #52655d;
  font-size: 0.72rem;
  font-weight: 700;
}

.business-offers {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 0.6rem;
}
.business-offer-card {
  display: grid;
  gap: 0.35rem;
  padding: 0.9rem;
  border: 1px solid #f0dfbb;
  border-radius: 15px;
  background: linear-gradient(135deg, #fff8e9, #fffdf8);
}
.business-offer-card.is-coupon {
  border-color: #cfe8df;
  background: linear-gradient(135deg, #eef9f5, #fbfffd);
}
.business-offer-card .offer-badge {
  width: max-content;
  padding: 0.2rem 0.45rem;
  border-radius: 999px;
  background: rgba(196,125,18,0.12);
  color: #9a6410;
  font-size: 0.6rem;
  font-weight: 850;
  text-transform: uppercase;
}
.business-offer-card strong { color: #263a32; font-size: 0.9rem; }
.business-offer-card p,
.business-offer-card small { margin: 0; color: #687a72; font-size: 0.72rem; }
.business-offer-card .coupon-code {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  letter-spacing: 0.06em;
}

.business-service-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 0.7rem;
}
.business-service-card {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  min-width: 0;
  padding: 0.85rem;
  border: 1px solid #ebf0ed;
  border-radius: 16px;
  background: #fafcfb;
  box-shadow: 0 6px 16px rgba(18, 32, 27, 0.03);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}
.business-service-card:hover {
  transform: translateY(-2px);
  border-color: #d7ebe3;
  box-shadow: 0 10px 22px rgba(18, 32, 27, 0.06);
}
.service-symbol {
  width: 100%;
  aspect-ratio: 1.35 / 1;
  display: grid;
  place-items: center;
  border-radius: 13px;
  background: linear-gradient(145deg, #e4f3ee, #f3faf7);
  color: var(--brand);
  overflow: hidden;
}
.service-symbol.has-photo {
  background: #edf2ef;
}
.service-symbol img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.service-copy {
  flex: 1;
  min-width: 0;
  display: grid;
  gap: 0.25rem;
}
.service-copy strong {
  display: block;
  color: #263a32;
  font-size: 0.9rem;
  line-height: 1.3;
  letter-spacing: -0.01em;
}
.service-copy p {
  margin: 0;
  color: #74847d;
  font-size: 0.72rem;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.service-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-top: auto;
  padding-top: 0.55rem;
  border-top: 1px solid #eef3f0;
}
.service-meta small {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  color: #7c8d85;
  font-size: 0.68rem;
}
.service-price {
  color: var(--brand);
  font-size: 0.9rem;
  font-weight: 850;
  white-space: nowrap;
}

.business-staff-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 0.65rem;
}
.business-staff-card {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  min-width: 0;
  padding: 0.8rem;
  border: 1px solid #ebf0ed;
  border-radius: 15px;
  background: #fafcfb;
}
.business-staff-card.is-owner {
  border-color: rgba(12,107,92,0.22);
  background: linear-gradient(180deg, #f3faf7, #fafcfb);
}
.business-staff-top {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  min-width: 0;
}
.business-staff-avatar {
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 13px;
  background: linear-gradient(145deg, #0c6b5c, #14967f);
  color: #fff;
  font-weight: 850;
}
.business-staff-avatar img { width: 100%; height: 100%; object-fit: cover; }
.business-staff-info { min-width: 0; }
.business-staff-info strong {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.3rem;
  color: #263a32;
  font-size: 0.84rem;
}
.business-staff-info span {
  display: block;
  margin-top: 0.15rem;
  color: #7c8d85;
  font-size: 0.7rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.staff-owner-tag {
  font-style: normal;
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  padding: 0.12rem 0.4rem;
  border-radius: 999px;
  background: #0c6b5c;
  color: #fff;
}
.business-staff-services {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem;
  padding-top: 0.55rem;
  border-top: 1px solid #eef3f0;
}
.business-staff-services span {
  font-size: 0.66rem;
  font-weight: 700;
  padding: 0.22rem 0.5rem;
  border-radius: 999px;
  background: #eef3f0;
  color: #3d4f47;
}

.business-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.45rem;
}
.business-gallery a,
.business-gallery-item {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 13px;
  background: #edf2ef;
  border: 0;
  padding: 0;
  cursor: zoom-in;
  display: block;
  width: 100%;
}
.business-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.25s ease;
  pointer-events: none;
}
.business-gallery a:hover img,
.business-gallery-item:hover img { transform: scale(1.04); }

/* Avatar zoom */
.person-avatar,
.app-avatar,
.profile-photo-preview,
.admin-profile-avatar,
.admin-user-avatar,
.manage-avatar {
  cursor: zoom-in;
}
body.avatar-zoom-open { overflow: hidden; }
#avatar-zoom-host:empty,
#avatar-zoom-host[hidden] { display: none; }
.avz-shell {
  position: fixed;
  inset: 0;
  z-index: 1400;
  display: grid;
  place-items: center;
  padding: 1rem;
}
.avz-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 18, 15, 0.72);
  backdrop-filter: blur(6px);
}
.avz-dialog {
  position: relative;
  z-index: 1;
  animation: avzIn 0.2s ease;
}
@keyframes avzIn {
  from { opacity: 0; transform: scale(0.86); }
  to { opacity: 1; transform: none; }
}
.avz-close {
  position: absolute;
  top: -0.55rem;
  right: -0.55rem;
  z-index: 2;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 50%;
  background: rgba(255,255,255,0.16);
  color: #fff;
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
}
.avz-close:hover { background: rgba(255,255,255,0.28); }
.avz-frame {
  width: min(72vw, 220px);
  height: min(72vw, 220px);
  border-radius: 28px;
  overflow: hidden;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, #0c6b5c, #14967f);
  box-shadow: 0 24px 60px rgba(0,0,0,0.35);
  color: #fff;
  font-family: var(--display, Georgia, serif);
  font-size: clamp(3rem, 12vw, 5rem);
  font-weight: 800;
}
.avz-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.avz-frame.gold { background: linear-gradient(145deg, #98600b, #e4aa38); }
.avz-frame.coral { background: linear-gradient(145deg, #9b3d3d, #e07a7a); }

/* Gallery lightbox */
body.gallery-lightbox-open { overflow: hidden; }
.glb-shell {
  position: fixed;
  inset: 0;
  z-index: 1300;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.glb-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 18, 15, 0.82);
  backdrop-filter: blur(8px);
}
.glb-dialog {
  position: relative;
  z-index: 1;
  width: min(920px, 100%);
  max-height: calc(100dvh - 2rem);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  animation: glbIn 0.22s ease;
}
@keyframes glbIn {
  from { opacity: 0; transform: translateY(10px) scale(0.98); }
  to { opacity: 1; transform: none; }
}
.glb-close {
  position: absolute;
  top: -0.15rem;
  right: 0;
  z-index: 2;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 50%;
  background: rgba(255,255,255,0.14);
  color: #fff;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
}
.glb-close:hover { background: rgba(255,255,255,0.24); }
.glb-stage {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.45rem;
}
.glb-main {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 240px;
  max-height: min(68dvh, 620px);
  padding: 0.35rem;
  border-radius: 22px;
  background: rgba(255,255,255,0.06);
  box-shadow: 0 24px 60px rgba(0,0,0,0.35);
  overflow: hidden;
}
.glb-image {
  max-width: 100%;
  max-height: min(66dvh, 600px);
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 14px;
}
.glb-counter {
  position: absolute;
  left: 50%;
  bottom: 0.7rem;
  transform: translateX(-50%);
  padding: 0.28rem 0.7rem;
  border-radius: 999px;
  background: rgba(10, 22, 18, 0.72);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.glb-nav {
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: rgba(255,255,255,0.14);
  color: #fff;
  font-size: 1.7rem;
  line-height: 1;
  cursor: pointer;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.glb-nav:hover { background: rgba(255,255,255,0.26); }
.glb-nav:empty {
  visibility: hidden;
  pointer-events: none;
}
.glb-thumbs {
  display: flex;
  gap: 0.45rem;
  overflow-x: auto;
  padding: 0.2rem 0.1rem 0.35rem;
  scrollbar-width: thin;
  scroll-snap-type: x proximity;
}
.glb-thumb {
  flex: 0 0 auto;
  width: 64px;
  height: 48px;
  padding: 0;
  border: 2px solid transparent;
  border-radius: 10px;
  overflow: hidden;
  background: rgba(255,255,255,0.1);
  cursor: pointer;
  scroll-snap-align: center;
  opacity: 0.72;
  transition: 0.15s ease;
}
.glb-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.glb-thumb.is-active {
  opacity: 1;
  border-color: #31b28f;
  box-shadow: 0 0 0 2px rgba(49,178,143,0.35);
}
.glb-thumb:hover { opacity: 1; }
@media (max-width: 640px) {
  .glb-shell { padding: 0.65rem; }
  .glb-stage {
    grid-template-columns: 1fr;
    gap: 0.55rem;
  }
  .glb-nav {
    position: absolute;
    top: 42%;
    z-index: 3;
  }
  .glb-prev { left: 0.55rem; }
  .glb-next { right: 0.55rem; }
  .glb-main {
    max-height: min(58dvh, 520px);
  }
  .glb-image {
    max-height: min(56dvh, 500px);
  }
  .glb-thumb {
    width: 56px;
    height: 42px;
  }
}

.business-hours { display: grid; gap: 0.15rem; }
.business-hours > div {
  display: flex;
  justify-content: space-between;
  gap: 0.7rem;
  padding: 0.5rem 0.55rem;
  border-radius: 10px;
  color: #65776f;
  font-size: 0.76rem;
}
.business-hours > div.is-today { background: #eaf7f2; color: #174f42; }
.business-hours strong { color: #354941; font-size: 0.74rem; }
.business-hours strong.is-closed { color: #c3584a; }
.business-branch-list { display: grid; gap: 0.55rem; }
.business-branch-list article {
  display: flex;
  gap: 0.6rem;
  padding: 0.7rem;
  border-radius: 13px;
  background: #f8fbf9;
}
.business-branch-list article > span {
  width: 31px;
  height: 31px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 9px;
  background: #e3f0f8;
  color: #2a6f97;
}
.business-branch-list strong,
.business-branch-list p,
.business-branch-list a { display: block; }
.business-branch-list strong { color: #263a32; font-size: 0.8rem; }
.business-branch-list p { margin: 0.15rem 0; color: #7b8b84; font-size: 0.68rem; line-height: 1.4; }
.business-branch-list a { color: var(--brand); font-size: 0.68rem; font-weight: 700; }
.business-location strong { display: block; color: #263a32; font-size: 0.82rem; }
.business-location p { margin: 0.35rem 0 0.75rem; color: #71827a; font-size: 0.76rem; line-height: 1.5; }
.business-profile-empty { color: #7b8b84; font-size: 0.8rem; text-align: center; padding: 1rem; }

/* ?ube kart? (logo + aksiyonlar) */
.business-branch-card {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  padding: 0.85rem 0.9rem;
  border-radius: 14px;
  background: #f8fbf9;
  border: 1px solid rgba(18,32,27,0.06);
}
.business-branch-logo {
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  border-radius: 14px;
  background: #e3f0f8;
  color: #2a6f97;
  display: grid;
  place-items: center;
  overflow: hidden;
}
.business-branch-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.business-branch-copy { flex: 1; min-width: 0; }
.business-branch-copy strong {
  display: block;
  color: #263a32;
  font-size: 0.82rem;
}
.business-branch-copy p {
  margin: 0.25rem 0 0;
  color: #7b8b84;
  font-size: 0.7rem;
  line-height: 1.4;
}
.business-branch-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  justify-content: flex-end;
  align-items: center;
  min-width: 0;
}
.business-branch-actions .btn {
  padding: 0.35rem 0.6rem;
  font-size: 0.68rem;
  border-radius: 12px;
}

.business-showcase .biz-reviews-head { margin-bottom: 0.8rem; }
.business-showcase .biz-reviews-summary { margin-bottom: 0.7rem; }
.business-showcase .biz-review-card { box-shadow: none; }
.business-book-bar {
  position: fixed;
  z-index: 90;
  left: max(0.75rem, env(safe-area-inset-left));
  right: max(0.75rem, env(safe-area-inset-right));
  bottom: max(0.75rem, env(safe-area-inset-bottom));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  width: auto;
  max-width: none;
  margin: 0;
  padding: 0.65rem 0.7rem 0.65rem 0.9rem;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 18px;
  background: rgba(10, 42, 36, 0.96);
  box-shadow: 0 15px 42px rgba(5,30,26,0.32);
  backdrop-filter: blur(18px);
}
.business-showcase.is-panel .business-book-bar {
  bottom: calc(var(--bottom-nav-h) + 0.45rem);
}
.business-showcase.is-public .business-book-bar {
  width: min(100% - 1.5rem, 1360px);
  left: 50%;
  right: auto;
  transform: translateX(-50%);
}
.business-book-bar > div { display: grid; min-width: 0; }
.business-book-bar small { color: rgba(255,255,255,0.6); font-size: 0.62rem; }
.business-book-bar strong { color: #fff; font-size: 0.78rem; }
.business-book-bar .btn { flex-shrink: 0; border-radius: 13px; }
.business-book-bar { display: none; }

/* Kapak altındaki eski tam genişlik bar kaldırıldı */
.business-top-book-bar { display: none; }

@media (min-width: 900px) {
  .business-profile-layout {
    grid-template-columns: minmax(0, 1.7fr) minmax(300px, 0.85fr);
    gap: 1rem;
    align-items: start;
  }
  .business-profile-side {
    position: sticky;
    top: 5.5rem;
  }
  .business-book-bar {
    position: sticky;
    left: auto;
    right: auto;
    bottom: 1rem !important;
    max-width: none;
    width: 100%;
    margin-top: 0.8rem;
    transform: none;
  }
  .business-showcase.is-public .business-book-bar {
    width: 100%;
    left: auto;
    transform: none;
  }
}
@media (max-width: 899px) {
  .business-profile-main,
  .business-profile-side {
    display: contents;
  }
  .business-profile-services { order: 10; }
  .business-profile-staff { order: 20; }
  .business-profile-gallery-section { order: 30; }
  .business-profile-hours { order: 40; }
  .business-profile-location { order: 50; }
  .business-profile-branches { order: 60; }
  .business-showcase .biz-reviews { order: 70; }
}
@media (max-width: 719px) {
  .business-profile-page { padding: 0 0 5rem; }
  .business-showcase.is-public {
    --profile-pad: 0.75rem;
    --site-header-h: 78px;
  }
  .business-showcase.is-panel {
    margin: -0.25rem 0 0;
  }
  .business-hero {
    min-height: 188px;
  }
  .business-showcase.is-panel .business-hero { border-radius: 18px; }
  .business-hero-content {
    padding: 0.9rem 0;
    gap: 0.65rem;
    align-items: flex-end;
  }
  .business-showcase.is-panel .business-hero-content { padding: 0.9rem; }
  .business-hero-logo {
    width: 56px;
    height: 56px;
    border-radius: 15px;
    border-width: 2px;
    flex-shrink: 0;
  }
  .business-hero-copy {
    min-width: 0;
    padding-bottom: 0.05rem;
  }
  .business-hero-copy h1 {
    font-size: 1.2rem;
    line-height: 1.15;
    margin: 0.2rem 0 0.28rem;
  }
  .business-hero-kicker { font-size: 0.68rem; }
  .business-hero-rating { gap: 0.3rem 0.5rem; font-size: 0.7rem; }
  .business-profile-actions {
    gap: 0.35rem;
  }
  .business-action {
    min-height: 44px;
    padding: 0.45rem 0.35rem;
    font-size: 0.68rem;
    gap: 0.25rem;
    border-radius: 12px;
  }
  .business-action svg {
    width: 15px;
    height: 15px;
  }
  .business-profile-facts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .business-profile-facts > div { padding: 0.6rem; }
  .business-profile-section,
  .business-showcase .biz-reviews { padding: 0.8rem; border-radius: 16px; }
  .business-service-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.55rem;
  }
  .business-service-card { padding: 0.7rem; border-radius: 14px; }
  .service-symbol { aspect-ratio: 1.2 / 1; border-radius: 11px; }
  .service-copy strong { font-size: 0.82rem; }
  .service-price { font-size: 0.8rem; }
  .business-gallery { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .business-book-bar > div { display: none; }
  .business-book-bar .btn { width: 100%; justify-content: center; }
}

/* ?? Randevu alma wizard (popup) ?? */
.book-shell {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: grid;
  place-items: center;
  padding: max(0.75rem, env(safe-area-inset-top)) 0.75rem max(0.75rem, env(safe-area-inset-bottom));
}
.book-shell.is-page {
  /* panel i?inde de tam ekran overlay */
}
.book-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 22, 18, 0.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.book-dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 520px);
  max-height: min(92vh, 760px);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 24px;
  background: linear-gradient(180deg, #f7fbf9 0%, #ffffff 40%);
  box-shadow: 0 28px 80px rgba(5, 30, 26, 0.35);
  border: 1px solid rgba(255,255,255,0.55);
  animation: bookIn 0.28s ease;
}
@keyframes bookIn {
  from { opacity: 0; transform: translateY(18px) scale(0.98); }
  to { opacity: 1; transform: none; }
}
.book-dialog-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 1rem 1rem 0.75rem;
  border-bottom: 1px solid rgba(18,32,27,0.06);
}
.book-biz {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  min-width: 0;
}
.book-biz-logo {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: linear-gradient(145deg, #0c6b5c, #14967f);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 800;
  overflow: hidden;
  flex-shrink: 0;
}
.book-biz-logo img { width: 100%; height: 100%; object-fit: cover; }
.book-biz strong {
  display: block;
  font-size: 0.95rem;
  letter-spacing: -0.02em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.book-biz-sub {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.55rem;
  font-size: 0.7rem;
  color: #6f8078;
  margin-top: 0.1rem;
}
.book-close {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: #eef3f0;
  color: #3d4f47;
  font-size: 1.4rem;
  line-height: 1;
  flex-shrink: 0;
  text-decoration: none;
}
.book-close:hover { background: #e2ebe6; color: #12201b; }

.book-progress {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.25rem;
  margin: 0.75rem 1rem 0;
  padding: 0.55rem 0.35rem 0.7rem;
  background: #fff;
  border-radius: 16px;
  border: 1px solid rgba(18,32,27,0.06);
  box-shadow: 0 6px 18px rgba(18,32,27,0.04);
}
.book-progress-bar {
  position: absolute;
  left: 12%;
  right: 12%;
  bottom: 0.45rem;
  height: 3px;
  border-radius: 99px;
  background: #e7efea;
  overflow: hidden;
  pointer-events: none;
}
.book-progress-bar i {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, #0c6b5c, #1aa888);
  border-radius: inherit;
  transition: width 0.25s ease;
}
.book-progress-item {
  text-align: center;
  color: #8a958e;
  font-size: 0.6rem;
  font-weight: 700;
  position: relative;
  z-index: 1;
}
.book-progress-dot {
  width: 28px;
  height: 28px;
  margin: 0 auto 0.28rem;
  border-radius: 50%;
  background: #e8efe9;
  color: #5f7169;
  display: grid;
  place-items: center;
}
.book-progress-item.active .book-progress-dot,
.book-progress-item.done .book-progress-dot {
  background: #0c6b5c;
  color: #fff;
  box-shadow: 0 6px 14px rgba(12,107,92,0.28);
}
.book-progress-item.active { color: #0c6b5c; }
.book-progress-label { display: block; }
@media (max-width: 420px) {
  .book-progress-label { font-size: 0.52rem; }
}

.book-dialog-body {
  flex: 1;
  overflow: auto;
  padding: 0.95rem 1rem 1.15rem;
  -webkit-overflow-scrolling: touch;
}
.book-summary-mini {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-bottom: 0.85rem;
}
.book-summary-mini span {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  background: #eef7f3;
  color: #1d5c50;
  padding: 0.32rem 0.6rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
}
.book-title {
  margin: 0 0 0.9rem;
  font-size: 1.12rem;
  letter-spacing: -0.02em;
  color: #1c2c26;
}
.book-step-note {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin: -0.25rem 0 0.85rem;
  color: #6b7c74;
  font-size: 0.82rem;
  font-weight: 650;
}
.book-branch-select { margin-bottom: 0.85rem; }
.book-options { display: grid; gap: 0.55rem; }
.book-option {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: #fff;
  border-radius: 16px;
  padding: 0.85rem 0.9rem;
  border: 1px solid rgba(18,32,27,0.07);
  box-shadow: 0 6px 16px rgba(18,32,27,0.035);
  text-decoration: none;
  color: inherit;
  transition: transform 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
}
.book-option:hover {
  border-color: #b9dfd4;
  box-shadow: 0 10px 22px rgba(12,107,92,0.08);
  transform: translateY(-1px);
}
.book-option:active { transform: scale(0.985); }
.book-option-service { align-items: stretch; }
.book-option-media {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(145deg, #e4f3ee, #f3faf7);
  color: #0c6b5c;
  display: grid;
  place-items: center;
  overflow: hidden;
  flex-shrink: 0;
}
.book-option-media img { width: 100%; height: 100%; object-fit: cover; }
.book-option-copy { flex: 1; min-width: 0; }
.book-option-title { font-weight: 750; margin-bottom: 0.12rem; color: #243830; }
.book-option-desc { margin-bottom: 0.2rem; color: #71827a; }
.book-option-price {
  margin-left: auto;
  align-self: center;
  font-weight: 850;
  color: #0c6b5c;
  white-space: nowrap;
  font-size: 0.95rem;
}
.book-avatar {
  width: 42px;
  height: 42px;
  border-radius: 13px;
  background: linear-gradient(145deg, #0c6b5c, #14967f);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 800;
  overflow: hidden;
  flex-shrink: 0;
}
.book-avatar img { width: 100%; height: 100%; object-fit: cover; }
.book-avatar.is-any { background: linear-gradient(145deg, #c47d12, #e0a84a); }
.book-chevron { color: #0c6b5c; font-weight: 800; }

.book-calendar { display: grid; gap: 0.85rem; margin-bottom: 0.9rem; }
.book-cal-week { display: grid; gap: 0.45rem; }
.book-cal-label {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #6f8078;
  padding-left: 0.15rem;
}
.book-days {
  display: flex;
  gap: 0.45rem;
  overflow-x: auto;
  padding: 0.15rem 0.1rem 0.45rem;
  scrollbar-width: none;
}
.book-days::-webkit-scrollbar { display: none; }
.book-day {
  flex: 0 0 auto;
  width: 68px;
  display: grid;
  gap: 0.12rem;
  justify-items: center;
  background: #fff;
  border-radius: 18px;
  padding: 0.7rem 0.35rem 0.65rem;
  text-align: center;
  border: 1.5px solid rgba(18,32,27,0.08);
  box-shadow: 0 6px 16px rgba(18,32,27,0.04);
  text-decoration: none;
  color: inherit;
  transition: transform 0.15s ease, border-color 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
}
.book-day:hover {
  transform: translateY(-2px);
  border-color: #b9dfd4;
  box-shadow: 0 10px 20px rgba(12,107,92,0.08);
}
.book-day-dow {
  font-size: 0.62rem;
  font-weight: 700;
  color: #7a847c;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.book-day-num {
  font-size: 1.25rem;
  line-height: 1;
  font-weight: 850;
  color: #1c2c26;
  letter-spacing: -0.03em;
}
.book-day-month {
  font-size: 0.62rem;
  font-weight: 700;
  color: #6f8078;
}
.book-day.active {
  border-color: #0c6b5c;
  background: linear-gradient(165deg, #0c6b5c, #14967f);
  color: #fff;
  box-shadow: 0 12px 24px rgba(12,107,92,0.28);
}
.book-day.active .book-day-dow,
.book-day.active .book-day-month { color: rgba(255,255,255,0.78); }
.book-day.active .book-day-num { color: #fff; }

.book-date-pick {
  background: #fff;
  border: 1px solid rgba(18,32,27,0.07);
  border-radius: 18px;
  padding: 0.9rem;
  margin-bottom: 0.5rem;
  box-shadow: 0 6px 16px rgba(18,32,27,0.035);
}
.book-date-pick-head {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 0.7rem;
  color: #0c6b5c;
}
.book-date-pick-head strong {
  display: block;
  color: #243830;
  font-size: 0.88rem;
}
.book-date-pick-head small {
  display: block;
  color: #6f8078;
  font-size: 0.72rem;
  margin-top: 0.1rem;
}
.book-date-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.5rem;
  align-items: center;
}

.book-time-hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.85rem 0.95rem;
  margin-bottom: 0.85rem;
  border-radius: 16px;
  background: linear-gradient(135deg, #eef9f5, #fbfffd);
  border: 1px solid rgba(12,107,92,0.12);
}
.book-time-hero small {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  color: #6f8078;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.book-time-hero strong {
  display: block;
  margin-top: 0.15rem;
  color: #1c2c26;
  font-size: 0.95rem;
}
.book-time-count {
  flex-shrink: 0;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  background: #0c6b5c;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
}
.book-empty-slots {
  padding: 1.25rem 1rem;
  border-radius: 16px;
  background: #fff;
  border: 1px dashed rgba(18,32,27,0.12);
}
.book-slot-groups { display: grid; gap: 0.9rem; }
.book-slot-group-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 0.45rem;
  padding: 0 0.1rem;
}
.book-slot-group-head strong {
  font-size: 0.82rem;
  color: #243830;
}
.book-slot-group-head span {
  font-size: 0.68rem;
  color: #7a847c;
  font-weight: 650;
}
.book-slots {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.45rem;
}
@media (min-width: 420px) {
  .book-slots { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}
.book-slot {
  display: grid;
  gap: 0.15rem;
  justify-items: center;
  padding: 0.7rem 0.35rem 0.6rem;
  text-align: center;
  border-radius: 14px;
  background: #fff;
  font-weight: 750;
  border: 1.5px solid rgba(18,32,27,0.08);
  box-shadow: 0 4px 12px rgba(18,32,27,0.04);
  text-decoration: none;
  color: inherit;
  transition: transform 0.15s ease, border-color 0.15s ease, background 0.15s ease;
}
.book-slot span { font-size: 0.95rem; color: #1c2c26; }
.book-slot small {
  font-size: 0.6rem;
  font-weight: 750;
  color: #0c6b5c;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
a.book-slot:hover, a.book-slot:active {
  border-color: #0c6b5c;
  background: linear-gradient(165deg, #0c6b5c, #14967f);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 10px 20px rgba(12,107,92,0.22);
}
a.book-slot:hover span,
a.book-slot:hover small,
a.book-slot:active span,
a.book-slot:active small { color: #fff; }
.book-slot.is-busy,
.book-slot:disabled {
  opacity: 1;
  background: #f3f5f4;
  border-color: transparent;
  box-shadow: none;
  cursor: not-allowed;
}
.book-slot.is-busy span,
.book-slot:disabled span { color: #9aa59e; text-decoration: line-through; }
.book-slot.is-busy small,
.book-slot:disabled small { color: #b0bbb5; }

.book-confirm {
  background: #fff;
  border-radius: 18px;
  border: 1px solid rgba(18,32,27,0.07);
  padding: 0.95rem;
  margin-bottom: 0.85rem;
  box-shadow: 0 8px 20px rgba(18,32,27,0.04);
}
.book-confirm-hero {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
}
.book-confirm-media {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: #e4f3ee;
  color: #0c6b5c;
  display: grid;
  place-items: center;
  overflow: hidden;
}
.book-confirm-media img { width: 100%; height: 100%; object-fit: cover; }
.book-confirm-rows { display: grid; gap: 0.45rem; }
.book-confirm-rows > div {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  align-items: center;
  font-size: 0.86rem;
}
.book-confirm-rows span {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  color: #6f8078;
}
.book-confirm-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 0.85rem;
  padding-top: 0.75rem;
  border-top: 1px dashed rgba(18,32,27,0.12);
}
.book-price { font-size: 1.2rem; color: #0c6b5c; }
.book-coupons {
  background: #fff;
  border-radius: 18px;
  padding: 0.95rem;
  margin-bottom: 0.85rem;
  border: 1px solid rgba(18,32,27,0.07);
}
.book-coupons-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.65rem;
}
.book-coupon-list { display: grid; gap: 0.45rem; }
.book-coupon {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  text-align: left;
  padding: 0.75rem 0.85rem;
  border-radius: 14px;
  border: 1.5px dashed #c47d12;
  background: #fffbf3;
  cursor: pointer;
  font: inherit;
}
.book-coupon.selected {
  background: #0c6b5c;
  border-style: solid;
  border-color: #0c6b5c;
  color: #fff;
}
.book-coupon-code {
  font-family: ui-monospace, monospace;
  font-weight: 800;
  letter-spacing: 0.04em;
}
.book-coupon-off { font-size: 0.8rem; font-weight: 700; opacity: 0.9; }
.book-coupon-input {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.45rem;
}
.book-submit { margin-top: 0.35rem; border-radius: 14px; min-height: 48px; }
.book-back { margin-top: 0.85rem; }

body.book-modal-open {
  overflow: hidden;
}
body.book-modal-open .app-content > *:not(#book-modal-host),
body.book-modal-open .bottom-nav,
body.book-modal-open .panel-topbar {
  /* keep page under modal */
}
#book-modal-host:empty { display: none; }
#book-modal-host:not(:empty) {
  position: fixed;
  inset: 0;
  z-index: 1300;
}

/* Sayfa olarak a??ld???nda panel i?eri?ini sadele?tir */
.app-content:has(> .book-shell.is-page) {
  padding: 0 !important;
  max-width: none !important;
}
.panel-body:has(.book-shell.is-page) .panel-topbar,
.panel-body:has(.book-shell.is-page) .bottom-nav,
.panel-body:has(.book-shell.is-page) .desk-aside {
  display: none !important;
}

/* İşletme web sayfası düzeni */
.business-site-body {
  background: #f3f7f5;
  color: var(--ink);
}
.business-site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(18, 32, 27, 0.08);
}
.business-site-header-inner {
  width: min(100% - 1.5rem, var(--profile-max, 1360px));
  margin: 0 auto;
  padding: 0.95rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}
.business-site-brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  min-width: 0;
  color: inherit;
  text-decoration: none;
}
.business-site-brand:hover { text-decoration: none; color: inherit; }
.business-site-platform .brand-mark {
  flex-shrink: 0;
}
.business-site-brand-copy {
  display: flex;
  flex-direction: column;
  gap: 0.08rem;
  min-width: 0;
}
.business-site-brand-copy strong,
.business-site-platform-name {
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.business-site-platform-name span {
  color: var(--accent, #14967f);
}
.business-site-brand-copy small {
  font-size: 0.68rem;
  color: var(--ink-muted);
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.business-site-header-actions {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  flex-shrink: 0;
}
.business-site-main {
  min-height: calc(100dvh - 120px);
}
.business-site-footer {
  margin-top: 2rem;
  padding: 1.5rem 0 max(1.25rem, env(safe-area-inset-bottom));
  overflow: hidden;
  background:
    radial-gradient(circle at 95% 0%, rgba(20, 150, 127, 0.12), transparent 35%),
    linear-gradient(155deg, #f7fbf9 0%, #eef6f2 100%);
  border-top: 1px solid rgba(12, 107, 92, 0.1);
}
.business-site-footer-inner {
  width: min(100% - 1.5rem, var(--profile-max, 1360px));
  margin: 0 auto;
  display: grid;
  gap: 0.9rem;
}
.business-site-footer-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem;
  border: 1px solid rgba(12, 107, 92, 0.1);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 10px 30px rgba(18, 32, 27, 0.05);
}
.business-site-footer-identity {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
}
.business-site-footer-logo {
  width: 52px;
  height: 52px;
  flex: 0 0 52px;
  overflow: hidden;
  border: 2px solid #fff;
  border-radius: 15px;
  box-shadow: 0 5px 16px rgba(18, 32, 27, 0.1);
}
.business-site-footer-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.business-site-footer-identity > div { min-width: 0; }
.business-site-footer-identity strong {
  display: block;
  color: #183229;
  font-size: 1rem;
  letter-spacing: -0.02em;
}
.business-site-footer-identity > div > span {
  display: block;
  margin-top: 0.08rem;
  color: var(--ink-muted);
  font-size: 0.74rem;
  font-weight: 600;
}
.business-site-footer-identity p {
  display: flex;
  align-items: flex-start;
  gap: 0.3rem;
  margin: 0.35rem 0 0;
  color: #667970;
  font-size: 0.76rem;
}
.business-site-footer-identity p svg {
  flex: 0 0 auto;
  margin-top: 0.1rem;
}
.business-site-footer-actions {
  flex: 0 0 auto;
}
.business-site-footer-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.55rem;
}
.business-site-footer-link {
  display: grid;
  grid-template-columns: 32px minmax(0, 1fr);
  grid-template-areas: "icon label" "icon value";
  align-items: center;
  gap: 0 0.5rem;
  min-width: 0;
  padding: 0.65rem 0.75rem;
  border: 1px solid rgba(12, 107, 92, 0.09);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.68);
  color: #29463c;
  text-decoration: none;
}
.business-site-footer-link:hover {
  border-color: rgba(12, 107, 92, 0.22);
  background: #fff;
  color: var(--brand);
  text-decoration: none;
}
.business-site-footer-link > span {
  grid-area: icon;
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: #e2f3ed;
  color: var(--brand);
}
.business-site-footer-link.is-whatsapp > span {
  background: #e7f8ef;
  color: #148b62;
}
.business-site-footer-link small {
  grid-area: label;
  color: #7a8b83;
  font-size: 0.62rem;
  font-weight: 700;
}
.business-site-footer-link strong {
  grid-area: value;
  min-width: 0;
  overflow: hidden;
  font-size: 0.76rem;
  font-weight: 750;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.business-site-footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding-top: 0.2rem;
}
.business-site-footer-platform {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: inherit;
  text-decoration: none;
}
.business-site-footer-platform.has-logo {
  align-items: center;
}
.business-site-footer-platform:hover {
  color: inherit;
  text-decoration: none;
}
.business-site-footer-platform .brand-mark {
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  border-radius: 9px;
}
.business-site-footer-platform.has-logo .brand-mark.platform-logo-img {
  width: auto;
  height: 78px;
  max-width: min(360px, 78vw);
  flex: 0 0 auto;
  border-radius: 0;
}
.business-site-footer-platform > span:last-child {
  display: flex;
  flex-direction: column;
}
.business-site-footer-platform strong {
  color: #254238;
  font-size: 0.78rem;
}
.business-site-footer-platform small,
.business-site-footer-bottom p {
  margin: 0;
  color: #74877e;
  font-size: 0.66rem;
}
.business-showcase.is-public {
  --profile-pad: clamp(0.75rem, 2vw, 1.25rem);
}
.business-public-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 0.75rem;
}
@media (max-width: 640px) {
  .business-site-hide-mobile { display: none !important; }
  .business-site-header-inner { width: min(100% - 1rem, var(--profile-max, 1360px)); }
  .business-site-footer {
    margin-top: 1.25rem;
    padding-top: 1rem;
  }
  .business-site-footer-inner {
    width: min(100% - 1rem, var(--profile-max, 1360px));
  }
  .business-site-footer-card {
    align-items: flex-start;
    padding: 0.85rem;
  }
  .business-site-footer-actions .btn {
    padding-inline: 0.65rem;
    font-size: 0.72rem;
  }
  .business-site-footer-logo {
    width: 44px;
    height: 44px;
    flex-basis: 44px;
    border-radius: 13px;
  }
  .business-site-footer-identity p { display: none; }
  .business-site-footer-links { grid-template-columns: 1fr; }
  .business-site-footer-bottom { align-items: flex-end; }
  .business-site-footer-platform small { display: none; }
}

/* Değerlendirme filtresi (public site) */
.dash-status-trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.32rem;
  padding: 0.38rem 0.62rem;
  border: 1px solid #e3ebe6;
  border-radius: 999px;
  background: #f7faf8;
  color: #4f6259;
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
}
.dash-status-trigger.is-active {
  background: #e8f5f1;
  border-color: #b9dfd4;
  color: #0a5a4d;
}
body.dash-status-modal-open { overflow: hidden; }
.dash-status-shell {
  position: fixed;
  inset: 0;
  z-index: 1240;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.dash-status-shell[hidden] { display: none !important; }
.dash-status-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 33, 26, 0.45);
}
.dash-status-dialog {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 400px;
  background: #fff;
  border-radius: 18px 18px 0 0;
  overflow: hidden;
}
@media (min-width: 560px) {
  .dash-status-shell { align-items: center; padding: 1rem; }
  .dash-status-dialog { border-radius: 18px; }
}
.dash-status-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 1rem;
  border-bottom: 1px solid #eef2ef;
}
.dash-status-head h3 { margin: 0; font-size: 0.95rem; font-weight: 800; }
.dash-status-close {
  width: 32px;
  height: 32px;
  border: none;
  border-radius: 50%;
  background: #f1f5f2;
  font-size: 1.25rem;
  cursor: pointer;
}
.dash-status-body {
  display: grid;
  gap: 0.35rem;
  padding: 0.65rem 0.75rem 0.85rem;
  max-height: min(52vh, 360px);
  overflow-y: auto;
}
.dash-status-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.72rem 0.85rem;
  border-radius: 12px;
  text-decoration: none;
  color: #24332c;
  font-size: 0.86rem;
  font-weight: 600;
  background: #f8faf9;
}
.dash-status-option.is-on {
  background: #e8f5f1;
  color: #0a5a4d;
  font-weight: 800;
}
.dash-status-check { font-weight: 800; color: #0c6b5c; }

/* ========== LANDING DISCOVER ========== */
body.landing-discover {
  background: var(--bg);
  overflow-x: clip;
}
body.landing-discover .discover-page {
  --discover-gap: 0.9rem;
  width: min(100% - 1rem, var(--container));
  margin: 0 auto;
  padding: var(--discover-gap) 0 2rem;
  min-width: 0;
  gap: var(--discover-gap);
}

/* Misafir işletme profili — panel tarzı, web sitesi değil */
body.landing-profile {
  background: var(--bg);
}
.site-header.is-profile {
  height: 64px;
  min-height: 64px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 1px 0 rgba(18, 32, 27, 0.06);
  position: sticky;
  top: 0;
  z-index: 40;
}
.site-nav.is-profile {
  height: 64px;
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  flex-wrap: nowrap;
  padding-block: 0;
}
.site-profile-left {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  min-width: 0;
  flex: 1;
}
.site-back-btn {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  background: rgba(18, 32, 27, 0.05);
  flex-shrink: 0;
  text-decoration: none;
}
.site-back-btn:active {
  transform: scale(0.96);
}
.site-profile-title {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.25;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.nav-actions.is-profile {
  margin-left: auto;
  gap: 0.45rem;
  flex-shrink: 0;
}
.landing-profile-main {
  padding: 1rem 0 2rem;
}
@media (max-width: 720px) {
  .site-header.is-profile,
  .site-nav.is-profile {
    height: 58px;
    min-height: 58px;
  }
  .site-profile-title {
    font-size: 0.98rem;
  }
  .landing-profile-main {
    padding-top: 0.75rem;
  }
}
.site-header.is-discover {
  height: 64px;
  min-height: 64px;
  max-height: 64px;
  overflow: visible;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 1px 0 rgba(18, 32, 27, 0.06);
}
.site-header.is-discover .site-nav.is-discover {
  height: 64px;
  min-height: 64px;
  max-height: 64px;
  gap: 0.65rem;
  flex-wrap: nowrap;
  padding-block: 0;
  align-items: center;
  overflow: visible;
  justify-content: flex-start;
}
.site-header.is-discover .brand {
  min-width: 0;
  flex: 0 1 auto;
}
.site-header.is-discover .brand.has-logo {
  height: 64px;
  overflow: visible;
  align-items: center;
  flex-shrink: 1;
}
.site-header.is-discover .brand.has-logo .platform-logo-img.is-full {
  height: 56px;
  max-height: 56px;
  width: auto;
  max-width: min(280px, 36vw);
  object-fit: contain;
}
.nav-actions.is-discover {
  margin-left: auto;
  gap: 0.4rem;
  flex-wrap: nowrap;
  justify-content: flex-end;
  flex-shrink: 0;
}
.site-search-wrap {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  min-width: 0;
  flex: 1 1 auto;
  width: auto;
  max-width: 420px;
  margin-left: 0;
}
.site-search-wrap .discover-searchbar.is-compact {
  flex: 1;
  min-width: 0;
  padding: 0.12rem 0.2rem 0.12rem 0.55rem;
  border-radius: 12px;
  box-shadow: 0 4px 14px rgba(18, 32, 27, 0.06);
}
.site-search-wrap .discover-searchbar.is-compact input[type=search] {
  padding: 0.4rem 0.15rem;
  font-size: 0.8rem;
  font-weight: 600;
}
.site-search-wrap .discover-locate {
  width: 30px;
  height: 30px;
  border-radius: 9px;
}
.site-search-wrap .discover-search-btn {
  flex-shrink: 0;
  height: 30px;
  padding: 0 0.7rem !important;
  border-radius: 9px !important;
  font-size: 0.75rem;
  font-weight: 750;
}
.site-search-wrap .discover-filter-btn.is-compact {
  width: 36px;
  height: 36px;
  padding: 0;
  border-radius: 11px;
}
.site-search-wrap .discover-filter-btn.is-compact span,
.site-search-wrap .discover-filter-btn.is-compact b {
  display: none;
}
@media (max-width: 959px) {
  .site-header.is-discover {
    height: 64px;
    min-height: 64px;
    max-height: 64px;
  }
  .site-header.is-discover .site-nav.is-discover {
    height: 64px;
    min-height: 64px;
    max-height: 64px;
    gap: 0.5rem;
    padding-inline: 0;
  }
  .site-header.is-discover .brand.has-logo {
    height: 56px;
    max-height: 56px;
  }
  .site-header.is-discover .brand.has-logo .platform-logo-img.is-full {
    height: 56px;
    max-height: 56px;
    max-width: min(220px, 48vw);
  }
  .site-header.is-discover .brand:not(.has-logo) {
    font-size: 1.08rem;
  }
  .site-header.is-discover .brand:not(.has-logo) .brand-mark {
    width: 36px;
    height: 36px;
    border-radius: 10px;
  }
  .nav-actions.is-discover {
    margin-left: auto;
    gap: 0.35rem;
  }
  .nav-actions.is-discover > .btn {
    padding: 0.38rem 0.72rem !important;
    font-size: 0.76rem;
    min-height: 34px;
    line-height: 1;
    border-radius: 10px !important;
    white-space: nowrap;
  }
}
@media (max-width: 420px) {
  .site-header.is-discover .brand.has-logo .platform-logo-img.is-full {
    max-width: min(160px, 42vw);
  }
  .nav-actions.is-discover > .btn {
    padding: 0.34rem 0.55rem !important;
    font-size: 0.72rem;
    min-height: 32px;
  }
}

/* Hero card (landing loads app.css only) */
.app-hero-card {
  background: linear-gradient(145deg, #062e28 0%, #0c6b5c 48%, #16a085 100%);
  background-size: cover;
  background-position: center;
  color: #fff;
  border-radius: 26px;
  padding: 1.35rem 1.25rem 1.4rem;
  margin-bottom: 0;
  position: relative;
  overflow: hidden;
  box-shadow: 0 18px 44px rgba(12, 107, 92, 0.28);
}
.app-hero-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 90% 10%, rgba(255, 255, 255, 0.16), transparent 35%),
    radial-gradient(circle at 0% 100%, rgba(226, 91, 58, 0.2), transparent 40%);
  pointer-events: none;
}
.app-hero-card > * { position: relative; z-index: 1; }
.app-hero-card .tiny { color: rgba(255, 255, 255, 0.72); font-weight: 650; }
.app-hero-card h2 {
  color: #fff;
  font-family: var(--display);
  font-size: clamp(1.25rem, 4vw, 1.55rem);
  font-weight: 800;
  margin: 0.3rem 0 0.9rem;
  letter-spacing: -0.03em;
  line-height: 1.25;
}
.app-hero-card .btn {
  background: #fff;
  color: #084c42;
  box-shadow: none;
  font-weight: 750;
}
.app-hero-card .hero-icon {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.18);
  display: grid;
  place-items: center;
  margin-bottom: 0.65rem;
  color: #fff;
}
.app-hero-card .hero-icon svg { width: 22px; height: 22px; }
.app-hero-card.has-ad-image {
  padding: 0 !important;
}
.app-hero-card.has-ad-image:not(.discover-ad-slide) {
  background: transparent;
}
.app-hero-card.has-ad-image::before {
  display: none;
}
body.landing-discover .discover-ad-slider {
  margin: 0;
  width: 100%;
}
body.landing-discover .discover-ad-track {
  aspect-ratio: 4 / 1;
  min-height: 140px;
  width: 100%;
}
@media (max-width: 959px) {
  body.landing-discover .discover-ad-track {
    min-height: 120px;
  }
  body.landing-discover .discover-ad-slider,
  body.landing-discover .discover-ad-slide {
    border-radius: 18px;
  }
}

body.landing-discover .discover-page.is-guest {
  padding-bottom: 1.5rem;
}
body.landing-discover .site-footer.is-discover,
body.landing-profile .site-footer.is-discover,
body.landing-auth .site-footer.is-discover {
  margin-top: 1.75rem;
  padding: 0 0 2.25rem;
  border-top: none;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 70% 90% at 0% 100%, rgba(12, 107, 92, 0.14), transparent 58%),
    radial-gradient(ellipse 55% 70% at 100% 0%, rgba(226, 91, 58, 0.07), transparent 50%),
    linear-gradient(180deg, rgba(243, 246, 244, 0) 0%, #e8efeb 42%, #e2ebe6 100%);
}
body.landing-discover .site-footer.is-discover::before,
body.landing-profile .site-footer.is-discover::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.35;
  background-image:
    linear-gradient(rgba(18, 32, 27, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(18, 32, 27, 0.03) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: linear-gradient(180deg, transparent, #000 35%, #000 100%);
}
.landing-footer {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 1.35rem;
  padding-top: 1.85rem;
}
.landing-footer-stage {
  display: grid;
  gap: 0.85rem;
  justify-items: start;
}
.landing-footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--ink);
  text-decoration: none;
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.55rem;
  letter-spacing: -0.04em;
  line-height: 1;
  transition: transform 0.28s var(--ease);
}
.landing-footer-brand:hover {
  color: var(--ink);
  text-decoration: none;
  transform: translateY(-1px);
}
.landing-footer-brand .brand-mark {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  font-size: 1.05rem;
}
.landing-footer-brand.has-logo .platform-logo-img.is-full {
  height: 88px;
  max-height: 88px;
  max-width: min(420px, 88vw);
  width: auto;
}
.landing-footer-copy {
  display: grid;
  gap: 0.28rem;
  max-width: 34rem;
}
.landing-footer-tag {
  margin: 0;
  color: var(--ink);
  font-family: var(--display);
  font-size: clamp(1.15rem, 2.4vw, 1.45rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.2;
}
.landing-footer-lead {
  margin: 0;
  color: var(--ink-muted);
  font-size: 0.95rem;
  font-weight: 550;
  line-height: 1.45;
}
.landing-footer-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.15rem 0.15rem;
  padding-top: 0.15rem;
}
.landing-footer-nav a {
  position: relative;
  color: var(--ink-soft);
  font-size: 0.94rem;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: -0.015em;
  padding: 0.35rem 0.7rem 0.35rem 0;
  margin-right: 0.55rem;
  transition: color 0.2s var(--ease);
}
.landing-footer-nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0.15rem;
  width: 0;
  height: 2px;
  border-radius: 2px;
  background: var(--brand);
  transition: width 0.25s var(--ease);
}
.landing-footer-nav a:hover {
  color: var(--brand-dark);
  text-decoration: none;
}
.landing-footer-nav a:hover::after {
  width: calc(100% - 0.7rem);
}
.landing-footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.4rem 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(18, 32, 27, 0.08);
  color: var(--ink-muted);
  font-size: 0.8rem;
  font-weight: 550;
}
@media (max-width: 640px) {
  body.landing-discover .site-footer.is-discover,
  body.landing-profile .site-footer.is-discover {
    padding-bottom: 1.75rem;
  }
  .landing-footer {
    gap: 1.1rem;
    padding-top: 1.4rem;
  }
  .landing-footer-brand.has-logo .platform-logo-img.is-full {
    height: 72px;
    max-height: 72px;
    max-width: min(320px, 86vw);
  }
  .landing-footer-brand .brand-mark {
    width: 42px;
    height: 42px;
  }
  .landing-footer-nav a {
    margin-right: 0.35rem;
    padding-right: 0.45rem;
  }
  .landing-footer-bottom {
    flex-direction: column;
    gap: 0.2rem;
  }
}

/* Landing mobil uygulamalar */
.landing-apps {
  margin: 1.75rem 0 0.5rem;
  padding: 0 0 0.25rem;
}
.landing-apps-inner {
  display: grid;
  gap: 1.15rem;
  padding: 1.35rem 1.2rem;
  border-radius: 24px;
  background:
    radial-gradient(circle at 12% 20%, rgba(47, 168, 136, 0.14), transparent 42%),
    radial-gradient(circle at 88% 10%, rgba(18, 84, 72, 0.1), transparent 36%),
    linear-gradient(160deg, #0f3d34 0%, #176355 55%, #1a7a68 100%);
  color: #eef8f4;
  box-shadow: 0 16px 40px rgba(12, 48, 40, 0.22);
}
.landing-apps-copy h2 {
  margin: 0.15rem 0 0.4rem;
  font-family: var(--display);
  font-size: clamp(1.35rem, 2.6vw, 1.85rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #fff;
}
.landing-apps-copy p {
  margin: 0;
  max-width: 36rem;
  color: rgba(238, 248, 244, 0.78);
  line-height: 1.5;
}
.landing-apps-eyebrow {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(213, 239, 232, 0.75);
}
.landing-apps-list {
  display: grid;
  gap: 0.75rem;
  grid-template-columns: 1fr;
}
.landing-apps-list.is-duo {
  grid-template-columns: 1fr 1fr;
}
.landing-apps-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.75rem;
  padding: 1.15rem 1rem 1rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: inherit;
  text-decoration: none;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
  min-width: 0;
}
.landing-apps-card:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.28);
}
.landing-apps-icon {
  width: 88px;
  height: 88px;
  border-radius: 22px;
  overflow: hidden;
  background: #fff;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
}
.landing-apps-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.landing-apps-icon-fallback {
  font-weight: 800;
  font-size: 2rem;
  color: #0f3d34;
}
.landing-apps-meta {
  display: grid;
  gap: 0.15rem;
  min-width: 0;
}
.landing-apps-meta strong {
  font-size: 1rem;
  color: #fff;
  line-height: 1.25;
}
.landing-apps-meta span {
  color: rgba(238, 248, 244, 0.62);
  font-size: 0.78rem;
  line-height: 1.3;
}
.landing-apps-badge {
  display: block;
  width: 100%;
  max-width: 168px;
  height: 50px;
  margin-top: 0.15rem;
  object-fit: contain;
  object-position: center;
}
@media (min-width: 720px) {
  .landing-apps-inner {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
    align-items: center;
    padding: 1.6rem 1.5rem;
  }
  .landing-apps-list {
    gap: 0.85rem;
  }
  .landing-apps-icon {
    width: 96px;
    height: 96px;
    border-radius: 24px;
  }
  .landing-apps-badge {
    max-width: 180px;
    height: 54px;
  }
}
@media (max-width: 560px) {
  .landing-apps-inner {
    padding: 1.15rem 1rem;
  }
  .landing-apps-list.is-duo {
    grid-template-columns: 1fr 1fr;
    gap: 0.6rem;
  }
  .landing-apps-card {
    padding: 0.95rem 0.65rem 0.85rem;
    gap: 0.6rem;
  }
  .landing-apps-icon {
    width: 72px;
    height: 72px;
    border-radius: 18px;
  }
  .landing-apps-icon-fallback {
    font-size: 1.55rem;
  }
  .landing-apps-meta strong {
    font-size: 0.88rem;
  }
  .landing-apps-meta span {
    font-size: 0.7rem;
  }
  .landing-apps-badge {
    max-width: 100%;
    height: 42px;
  }
}

body.landing-discover .panel-card {
  background: #fff;
  border-radius: 22px;
  padding: 1rem;
  box-shadow: 0 8px 24px rgba(18, 32, 27, 0.05);
}
body.landing-discover .discover-cats.panel-card,
body.landing-discover .discover-list.panel-card {
  padding: 0;
}
body.landing-discover .discover-search-card.panel-card {
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 8px 24px rgba(18, 32, 27, 0.05);
}
body.landing-discover .discover-results {
  gap: 0.75rem;
}
@media (min-width: 560px) {
  body.landing-discover .discover-results {
    grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  }
}
body.landing-discover .discover-card-media {
  height: 108px;
  min-height: 108px;
  max-height: 108px;
}
@media (min-width: 560px) {
  body.landing-discover .discover-card-media {
    height: 132px;
    min-height: 132px;
    max-height: 132px;
  }
}
body.landing-discover .panel-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 0.85rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid #eef2ef;
  flex-wrap: wrap;
}
body.landing-discover .panel-card-head h3 {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 750;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  letter-spacing: -0.02em;
  color: #12201b;
}
body.landing-discover .panel-card-head h3 svg {
  color: #0c6b5c;
  flex-shrink: 0;
}
.site-search-wrap.is-desktop-only {
  display: none;
}
@media (min-width: 960px) {
  .site-search-wrap.is-desktop-only {
    display: flex;
  }
}
.discover-search-card {
  display: none;
  align-items: stretch;
  gap: 0.55rem;
  padding: 0.75rem 0.85rem;
  min-width: 0;
  width: 100%;
  box-sizing: border-box;
}
.discover-search-card .discover-searchbar {
  flex: 1;
  min-width: 0;
  margin: 0;
}
.discover-search-card .discover-filter-btn {
  flex-shrink: 0;
  align-self: stretch;
  height: auto;
  min-height: 100%;
  padding: 0 0.95rem;
  border-radius: 16px;
  font-size: 0.84rem;
  gap: 0.4rem;
}
.discover-search-card .discover-filter-btn svg {
  width: 18px;
  height: 18px;
}
@media (max-width: 959px) {
  body.landing-discover .discover-search-card {
    display: flex;
  }
  body.landing-discover .discover-row.is-landing {
    display: flex;
    flex-direction: column;
    gap: var(--discover-gap, 0.9rem);
    min-width: 0;
    width: 100%;
  }
  body.landing-discover .discover-row.is-landing > .discover-search-card {
    order: 1;
  }
  body.landing-discover .discover-row.is-landing > .discover-aside {
    order: 2;
    margin-top: 0;
    min-width: 0;
    width: 100%;
  }
  body.landing-discover .discover-row.is-landing > .discover-main {
    order: 3;
    min-width: 0;
    width: 100%;
  }
  body.landing-discover .discover-desk {
    min-width: 0;
    width: 100%;
  }
  body.landing-discover .landing-apps-inner {
    min-width: 0;
  }
}
@media (min-width: 960px) {
  body.landing-discover .discover-search-card {
    display: none !important;
  }
  body.landing-discover .discover-row.is-landing {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 360px);
    grid-template-areas: "main aside";
    gap: var(--discover-gap, 0.9rem) 1.25rem;
    align-items: stretch;
  }
  body.landing-discover .discover-row.is-landing > .discover-main {
    grid-area: main;
    display: flex;
    flex-direction: column;
    min-height: 0;
    height: 100%;
  }
  body.landing-discover .discover-row.is-landing > .discover-aside {
    grid-area: aside;
    display: flex;
    flex-direction: column;
    min-height: 0;
    height: 100%;
    position: sticky;
    top: calc(64px + var(--discover-gap, 0.9rem));
    margin-top: 0 !important;
  }
  body.landing-discover .discover-row.is-landing > .discover-search-card {
    display: none;
  }
  body.landing-discover .discover-cats.panel-card,
  body.landing-discover .discover-aside > .panel-card {
    flex: 1;
    min-height: 0;
    height: 100%;
    display: flex;
    flex-direction: column;
    margin: 0;
  }
  body.landing-discover .discover-cats .panel-card-head,
  body.landing-discover .discover-aside .panel-card-head {
    flex-shrink: 0;
  }
  body.landing-discover .discover-cats-scroll {
    flex: 1 1 auto;
    min-height: 0;
    max-height: none;
    overflow-x: hidden;
    overflow-y: auto;
  }
  body.landing-discover .discover-aside-body {
    flex: 1 1 auto;
    min-height: 0;
  }
  body.landing-discover .discover-list {
    width: 100%;
  }
}
