/* /on-gorusme — Flutter PreConsultationScreen twin (home.min.css chrome + bu sayfa) */
:root {
  --og-primary: #ff7914;
  --og-canvas: #ffffff;
  --og-ink: #0a0a0a;
  --og-ink-muted: #4a4a4a;
  --og-ink-subtle: #8a8a8a;
  --og-border: #e6e6e6;
  --og-border-soft: #edb896;
  --og-chip-soft: #ffe8d4;
  --og-success: #1f8f4d;
  --og-hero-border: rgba(243, 235, 227, 0.85);
}

html.is-boot body {
  opacity: 1;
}

/* Sabit header boşluğu: in-flow #og-header-spacer (body padding flutter/chrome’da güvenilmez) */
body {
  padding-top: 0 !important;
}

.og-header-spacer {
  display: block;
  width: 100%;
  height: calc(var(--og-header-offset, calc(var(--header, 80px) + var(--topbar, 36px))) + env(safe-area-inset-top, 0px));
  flex-shrink: 0;
  pointer-events: none;
  visibility: hidden;
}
html.site-scrolled .og-header-spacer {
  height: calc(var(--og-header-offset, var(--header, 80px)) + env(safe-area-inset-top, 0px));
}

/* Lora: Google Fonts (HTML head). JetBrains: system mono fallback (home.css ile aynı). */

.og-main {
  position: relative;
  z-index: 1;
  min-height: 0;
  padding-top: 0;
}

.og-wrap {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 56px 40px;
  box-sizing: border-box;
}

@media (max-width: 1023px) {
  .og-wrap { padding: 40px 28px; }
}
@media (max-width: 767px) {
  .og-wrap { padding: 20px 20px; }
}
@media (max-width: 599px) {
  .og-wrap { padding: 20px 16px; }
  /* Flutter: mobil web <600 footer yok */
  .site-footer { display: none !important; }
}
@media (max-width: 379px) {
  .og-wrap { padding: 16px 12px; }
}

.og-grid {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 0;
}

.og-story {
  flex: 1;
  min-width: 0;
  padding-right: 32px;
  padding-top: 8px;
  opacity: 0;
  transform: translateX(-6%);
  transition: opacity 0.5s cubic-bezier(0.33, 1, 0.68, 1),
    transform 0.5s cubic-bezier(0.33, 1, 0.68, 1);
}

.og-form-card {
  flex: 1;
  min-width: 0;
  opacity: 0;
  transform: translateX(6%);
  transition: opacity 0.65s cubic-bezier(0.33, 1, 0.68, 1) 0.2s,
    transform 0.65s cubic-bezier(0.33, 1, 0.68, 1) 0.2s;
  overflow: visible;
}

html.og-ready .og-story,
html.og-ready .og-form-card {
  opacity: 1;
  transform: none;
}

@media (max-width: 767px) {
  .og-grid {
    flex-direction: column;
    gap: 20px;
  }
  .og-story {
    padding-right: 0;
    padding-top: 0;
    order: 1;
    transform: translateY(5%);
  }
  .og-form-card {
    order: 2;
    transform: translateY(8%);
  }
  .og-grid.is-form-first .og-form-card { order: 1; }
  .og-grid.is-form-first .og-story { order: 2; }
}

/* —— Hero —— */
.og-hero {
  position: relative;
  border-radius: 28px;
  background: linear-gradient(135deg, #fffcf8, #fffaf5, #fff8f2);
  border: 1px solid var(--og-hero-border);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.03);
  overflow: hidden;
}
@media (max-width: 767px) {
  .og-hero { border-radius: 20px; }
}

.og-hero-wm {
  position: absolute;
  right: -24px;
  top: 24px;
  /* Flutter: color alpha 0.14 × Opacity 0.22 */
  color: #ff7914;
  opacity: 0.031;
  pointer-events: none;
  z-index: 0;
}
@media (min-width: 960px) {
  .og-hero-wm {
    right: 20px;
    top: 12px;
    /* Flutter: color alpha 0.14 × Opacity 0.5 */
    opacity: 0.07;
  }
  .og-hero-wm svg { width: 100px; height: 100px; }
}
@media (max-width: 959px) {
  .og-hero-wm svg { width: 68px; height: 68px; }
}

.og-hero-copy {
  position: relative;
  z-index: 1;
  padding: 36px 32px 30px;
}
@media (max-width: 767px) {
  .og-hero-copy { padding: 24px 20px 22px; }
}

.og-eyebrow {
  display: inline-block;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(255, 121, 20, 0.08);
  border: 1px solid rgba(255, 121, 20, 0.2);
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 10.5px;
  letter-spacing: 1.4px;
  color: var(--og-primary);
  font-weight: 500;
  position: relative;
  z-index: 1;
}
@media (max-width: 767px) {
  .og-eyebrow { font-size: 9.5px; }
}

.og-title {
  margin: 18px 0 0;
  font-family: Lora, Georgia, serif;
  font-weight: 600;
  font-size: 40px;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--og-ink);
}
.og-title em {
  font-style: italic;
  color: var(--og-primary);
  font-weight: 600;
}
@media (max-width: 1023px) {
  .og-title { font-size: 34px; }
}
@media (max-width: 899px) {
  .og-title { font-size: 30px; }
}
@media (max-width: 767px) {
  .og-title { margin-top: 14px; font-size: 30px; }
}
@media (max-width: 599px) {
  .og-title { font-size: 26px; }
}
@media (max-width: 379px) {
  .og-title { font-size: 22px; }
}

.og-sub {
  margin: 12px 0 0;
  font-family: Poppins, system-ui, sans-serif;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.55;
  color: var(--og-ink-muted);
}
@media (max-width: 767px) {
  .og-sub { margin-top: 10px; font-size: 14px; }
}

.og-chips {
  display: flex;
  flex-wrap: nowrap;
  align-items: stretch;
  gap: 8px;
  margin-top: 18px;
  width: 100%;
}
@media (max-width: 767px) {
  .og-chips { margin-top: 14px; gap: 6px; }
}

.og-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  flex: 1 1 0;
  min-width: 0;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
  font-family: Poppins, system-ui, sans-serif;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.2;
  color: var(--og-ink);
  text-align: center;
  white-space: nowrap;
}
.og-chip svg {
  width: 13px;
  height: 13px;
  color: var(--og-primary);
  flex-shrink: 0;
}
@media (max-width: 767px) {
  .og-chip {
    flex-direction: column;
    gap: 4px;
    padding: 8px 6px;
    font-size: 10.5px;
    border-radius: 14px;
    white-space: normal;
  }
  .og-chip svg {
    width: 15px;
    height: 15px;
  }
}
@media (max-width: 399px) {
  .og-chip {
    padding: 7px 4px;
    font-size: 9.5px;
    gap: 3px;
  }
}

/* —— Form card —— */
.og-form-card {
  background: #fff;
  border-radius: 24px;
  border: 1px solid var(--og-border);
  box-shadow:
    0 10px 28px rgba(0, 0, 0, 0.05),
    0 12px 32px rgba(255, 121, 20, 0.06);
  /* overflow:hidden FORM başlığını kırpıyordu — radius için ayrı clip yok */
  overflow: visible;
}
@media (max-width: 379px) {
  .og-form-card { border-radius: 18px; }
}

.og-form-accent {
  border-left: 4px solid var(--og-primary);
  margin: 32px 32px 32px 36px;
  padding-left: 16px;
  box-sizing: border-box;
}
@media (max-width: 1023px) {
  .og-form-accent { margin: 28px 28px 28px 32px; }
}
@media (max-width: 767px) {
  .og-form-accent { margin: 24px 24px 24px 28px; }
}
@media (max-width: 599px) {
  .og-form-accent { margin: 20px 20px 20px 24px; }
}
@media (max-width: 379px) {
  .og-form-accent { margin: 16px 16px 16px 20px; }
}

.og-form-head {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 44px;
  margin: 0;
  padding: 0;
  position: relative;
  z-index: 1;
}
.og-form-ico {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(255, 121, 20, 0.1);
  border: 1px solid rgba(255, 121, 20, 0.22);
  color: var(--og-primary);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.og-form-ico svg { width: 22px; height: 22px; }
@media (max-width: 379px) {
  .og-form-ico { width: 40px; height: 40px; }
  .og-form-ico svg { width: 20px; height: 20px; }
  .og-form-head { gap: 10px; }
}

.og-form-eyebrow {
  margin: 0;
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 9px;
  letter-spacing: 1.4px;
  color: var(--og-primary);
}
.og-form-title {
  margin: 0;
  font-family: Poppins, system-ui, sans-serif;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.3px;
  color: var(--og-ink);
}
@media (max-width: 767px) {
  .og-form-title { font-size: 21px; }
}
@media (max-width: 599px) {
  .og-form-title { font-size: 20px; }
}
@media (max-width: 379px) {
  .og-form-title { font-size: 18px; }
}

.og-steps {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}
@media (max-width: 379px) {
  .og-steps { gap: 6px; margin-top: 14px; }
}
.og-step {
  flex: 1;
}
.og-step-bar {
  display: block;
  height: 4px;
  border-radius: 2px;
  background: var(--og-border);
}
.og-step.is-active .og-step-bar,
.og-step.is-done .og-step-bar {
  background: var(--og-primary);
}
@media (max-width: 379px) {
  .og-step-bar { height: 3px; }
}
.og-step-label {
  display: block;
  margin-top: 8px;
  font-family: Poppins, system-ui, sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: var(--og-ink-subtle);
}
.og-step.is-active .og-step-label {
  font-weight: 700;
  color: var(--og-ink);
}
@media (max-width: 379px) {
  .og-step-label { margin-top: 6px; font-size: 11px; }
}

.og-step-body {
  margin-top: 24px;
  position: relative;
  overflow: visible;
}
@media (max-width: 379px) {
  .og-step-body { margin-top: 18px; }
}

.og-pane {
  animation: ogPaneIn 380ms cubic-bezier(0.33, 1, 0.68, 1);
}
.og-pane.is-back {
  animation-name: ogPaneInBack;
}
@keyframes ogPaneIn {
  from { opacity: 0; transform: translateX(22%); }
  to { opacity: 1; transform: none; }
}
@keyframes ogPaneInBack {
  from { opacity: 0; transform: translateX(-22%); }
  to { opacity: 1; transform: none; }
}
@media (prefers-reduced-motion: reduce) {
  .og-story,
  .og-form-card,
  .og-pane {
    transition: none !important;
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

.og-step-title {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-family: Poppins, system-ui, sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--og-ink);
  margin-bottom: 16px;
}
@media (max-width: 379px) {
  .og-step-title { margin-bottom: 12px; font-size: 15px; }
  .og-step-num { width: 26px; height: 26px; font-size: 11px; }
}
.og-step-num {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: rgba(255, 121, 20, 0.12);
  color: var(--og-primary);
  display: grid;
  place-items: center;
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 12px;
  font-weight: 700;
}
.og-step-sub {
  margin: 4px 0 0;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.45;
  color: var(--og-ink-muted);
}

.og-field {
  display: block;
  margin-bottom: 16px;
  position: relative;
}
@media (max-width: 379px) {
  .og-field { margin-bottom: 12px; }
}
.og-label {
  display: block;
  margin-bottom: 8px;
  font-family: Poppins, system-ui, sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--og-ink-muted);
}
.og-label--phone {
  font-weight: 600;
  color: #475569;
}

/* Flutter OutlineInputBorder + labelText twin */
.og-float .og-input,
.og-float .og-select {
  height: 56px;
  padding: 18px 16px 10px;
}
.og-float .og-select {
  padding-right: 40px;
}
.og-float-label {
  position: absolute;
  left: 14px;
  top: 28px;
  transform: translateY(-50%);
  padding: 0 2px;
  font-family: Poppins, system-ui, sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: var(--og-ink-muted);
  pointer-events: none;
  transition: top 0.15s ease, font-size 0.15s ease, color 0.15s ease, transform 0.15s ease;
  background: transparent;
  line-height: 1;
  max-width: calc(100% - 48px);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.og-float .og-input:focus + .og-float-label,
.og-float .og-input:not(:placeholder-shown) + .og-float-label,
.og-float .og-select:focus + .og-float-label,
.og-float .og-select:valid + .og-float-label {
  top: 10px;
  transform: none;
  font-size: 11px;
  font-weight: 500;
}
.og-float .og-input:focus + .og-float-label,
.og-float .og-select:focus + .og-float-label {
  color: var(--og-primary);
}

.og-input,
.og-select {
  width: 100%;
  box-sizing: border-box;
  height: 52px;
  padding: 0 16px;
  border-radius: 12px;
  border: 1px solid var(--og-border);
  background: rgba(255, 251, 247, 0.35);
  font-family: Poppins, system-ui, sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--og-ink);
  outline: none;
  transition: border-color 160ms ease-out;
}
.og-select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='%238a8a8a'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 40px;
  cursor: pointer;
}
.og-input:focus,
.og-select:focus {
  border-color: var(--og-primary);
  border-width: 1.5px;
}
.og-phone.is-focused {
  border-color: var(--og-primary);
  border-width: 1.5px;
}
.og-err {
  display: block;
  margin-top: 6px;
  margin-left: 4px;
  font-family: Poppins, system-ui, sans-serif;
  font-size: 12px;
  color: #b91c1c;
  line-height: 1.25;
}
.og-help {
  display: block;
  margin-top: 6px;
  margin-left: 4px;
  font-family: Poppins, system-ui, sans-serif;
  font-size: 12px;
  color: #64748b;
  line-height: 1.25;
}
.og-field.has-error .og-help { display: none; }

/* NzTurkishPhoneInput twin */
.og-phone {
  display: flex;
  align-items: center;
  height: 46px;
  border-radius: 12px;
  border: 1px solid var(--og-border);
  background: var(--og-canvas);
  overflow: hidden;
  transition: border-color 160ms ease-out;
  box-sizing: border-box;
}
.og-phone-ico {
  display: grid;
  place-items: center;
  padding-left: 12px;
  padding-right: 2px;
  color: var(--og-primary);
  flex-shrink: 0;
}
.og-phone-ico svg { width: 20px; height: 20px; }
@media (max-width: 399px) {
  .og-phone-ico svg { width: 18px; height: 18px; }
}
.og-phone-cc {
  margin-left: 6px;
  padding: 4px 8px;
  border-radius: 6px;
  background: rgba(255, 121, 20, 0.1);
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.2px;
  line-height: 1;
  color: var(--og-ink);
  flex-shrink: 0;
}
.og-phone-sep {
  width: 1px;
  height: 18px;
  margin: 0 8px;
  background: rgba(230, 230, 230, 0.8);
  flex-shrink: 0;
}
.og-phone-input {
  flex: 1;
  min-width: 0;
  border: 0;
  background: transparent;
  height: 100%;
  padding: 0 12px 0 0;
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.4px;
  color: var(--og-ink);
  outline: none;
}
.og-phone-input::placeholder {
  color: rgba(74, 74, 74, 0.55);
  font-weight: 500;
  letter-spacing: 0.3px;
  font-size: 14px;
}

/* OnGorusmeKvkkRow twin */
.og-kvkk {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 4px;
  padding: 16px;
  border-radius: 14px;
  background: rgba(255, 121, 20, 0.05);
  border: 1px solid rgba(255, 121, 20, 0.22);
  cursor: pointer;
  user-select: none;
  box-sizing: border-box;
}
@media (max-width: 379px) {
  .og-kvkk { padding: 12px; }
}
.og-kvkk input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.og-kvkk-box {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin-top: 2px;
  border-radius: 4px;
  border: 1.5px solid var(--og-border);
  background: #fff;
  position: relative;
}
.og-kvkk input:checked + .og-kvkk-box {
  background: var(--og-primary);
  border-color: var(--og-primary);
}
.og-kvkk input:checked + .og-kvkk-box::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 1px;
  width: 5px;
  height: 10px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.og-kvkk-text {
  font-family: Poppins, system-ui, sans-serif;
  font-size: 13px;
  color: var(--og-ink-muted);
  line-height: 1.4;
}
.og-kvkk-text a {
  color: var(--og-primary);
  font-weight: 600;
  text-decoration: underline;
}
.og-kvkk-narrow { display: none; }
@media (max-width: 599px) {
  .og-kvkk-wide { display: none; }
  .og-kvkk-narrow { display: inline; }
}

/* Success + days */
.og-success {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 18px;
  border-radius: 16px;
  background: rgba(31, 143, 77, 0.08);
  border: 1px solid rgba(31, 143, 77, 0.22);
  margin-bottom: 16px;
}
@media (max-width: 379px) {
  .og-success { padding: 14px; gap: 10px; }
}
.og-success-ico {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(31, 143, 77, 0.14);
  color: var(--og-success);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
@media (max-width: 379px) {
  .og-success-ico { width: 36px; height: 36px; }
}
.og-success h3 {
  margin: 0;
  font-family: Poppins, system-ui, sans-serif;
  font-size: 18px;
  font-weight: 800;
  color: var(--og-ink);
  line-height: 1.25;
}
.og-success p {
  margin: 6px 0 0;
  font-family: Poppins, system-ui, sans-serif;
  font-size: 14px;
  line-height: 1.45;
  color: var(--og-ink-muted);
}
@media (max-width: 379px) {
  .og-success h3 { font-size: 16px; }
  .og-success p { font-size: 13px; }
}

.og-days {
  display: flex;
  gap: 6px;
  padding: 4px;
  border-radius: 16px;
  background: rgba(255, 251, 247, 0.5);
  border: 1px solid var(--og-border);
}
.og-day {
  flex: 1;
  border: 0;
  background: transparent;
  border-radius: 12px;
  padding: 18px 8px;
  cursor: pointer;
  font-family: Poppins, system-ui, sans-serif;
  text-align: center;
  transition: background 0.15s ease, box-shadow 0.15s ease;
}
.og-day:disabled {
  cursor: not-allowed;
  opacity: 0.7;
}
.og-day.is-selected {
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}
@media (max-width: 379px) {
  .og-day { padding: 14px 6px; }
}
.og-day-title {
  display: block;
  font-size: 16px;
  font-weight: 600;
  color: var(--og-ink);
}
.og-day.is-selected .og-day-title {
  font-weight: 700;
  color: var(--og-primary);
}
.og-day:disabled .og-day-title { color: var(--og-ink-subtle); }
.og-day-date {
  display: block;
  margin-top: 6px;
  font-size: 12px;
  color: var(--og-ink-subtle);
}
.og-day-status {
  display: inline-block;
  margin-top: 6px;
  padding: 3px 8px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  background: rgba(255, 121, 20, 0.1);
  color: var(--og-primary);
}
.og-day-status.is-full {
  background: rgba(230, 230, 230, 0.5);
  color: var(--og-ink-subtle);
}
@media (max-width: 379px) {
  .og-day-title { font-size: 14px; }
  .og-day-date { font-size: 11px; margin-top: 4px; }
  .og-day-status { font-size: 10px; margin-top: 4px; }
}

.og-cap-loading {
  display: flex;
  justify-content: center;
  padding: 24px;
}
.og-spinner,
.og-cta-spin {
  width: 28px;
  height: 28px;
  border: 2.5px solid rgba(255, 121, 20, 0.25);
  border-top-color: var(--og-primary);
  border-radius: 50%;
  animation: ogSpin 0.7s linear infinite;
}
.og-cta-spin {
  width: 20px;
  height: 20px;
  border-color: rgba(255, 255, 255, 0.35);
  border-top-color: #fff;
  margin-right: 8px;
}
@keyframes ogSpin {
  to { transform: rotate(360deg); }
}

.og-footer-actions {
  margin-top: 14px;
}
@media (max-width: 379px) {
  .og-footer-actions { margin-top: 18px; }
}

/* CTA — NzMarketingCtaButton twin */
.og-cta {
  display: block;
  width: 100%;
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
}
.og-cta:disabled {
  cursor: not-allowed;
}
.og-cta-wrap {
  display: block;
  border-radius: 999px;
  background: #aa5718;
  padding: 0 0 4px;
  box-shadow:
    0 5px 12px rgba(120, 60, 20, 0.3),
    0 2px 5px rgba(120, 60, 20, 0.2);
  transition: transform 0.12s ease;
}
.og-cta:disabled .og-cta-wrap {
  background: #d8d8d8;
  box-shadow: none;
  padding-bottom: 0;
}
.og-cta-face {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  padding: 13px 24px;
  background: #ff8c35;
  border: 1.2px solid rgba(255, 255, 255, 0.35);
  color: #fff;
  font-family: Poppins, system-ui, sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.2px;
  line-height: 1.2;
  transform: translateY(-4px);
  transition: transform 0.12s ease, background 0.12s ease;
}
.og-cta:disabled .og-cta-face {
  background: #ececec;
  color: var(--og-ink-subtle);
  border-color: var(--og-border);
  transform: none;
}
.og-cta:disabled .og-cta-arrow {
  color: var(--og-ink-subtle);
}
.og-cta:not(:disabled):hover .og-cta-face {
  background: #ffa04d;
  transform: translateY(-6px);
}
.og-cta:not(:disabled):active .og-cta-wrap {
  transform: translateY(1.5px);
}
.og-cta:not(:disabled):active .og-cta-face {
  background: #d66611;
  transform: translateY(-1px);
}
@media (max-width: 379px) {
  .og-cta-face { padding: 11px 16px; font-size: 14.5px; }
}

@keyframes ogCtaIdle {
  0%, 75% { transform: translateY(-4px); }
  82% { transform: translateY(-1px); }
  90% { transform: translateY(-5px); }
  100% { transform: translateY(-4px); }
}
.og-cta:not(:disabled):not(:hover):not(:active) .og-cta-face {
  animation: ogCtaIdle 3.2s ease-in-out infinite;
}
@media (prefers-reduced-motion: reduce) {
  .og-cta:not(:disabled):not(:hover):not(:active) .og-cta-face {
    animation: none;
  }
}

/* Snack + dialog */
.og-snack {
  position: fixed;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  z-index: 10000;
  max-width: min(92vw, 420px);
  padding: 12px 16px;
  border-radius: 10px;
  background: #b91c1c;
  color: #fff;
  font-family: Poppins, system-ui, sans-serif;
  font-size: 14px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}
.og-dialog {
  position: fixed;
  inset: 0;
  z-index: 10001;
  display: grid;
  place-items: center;
}
.og-dialog[hidden] { display: none !important; }
.og-dialog-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}
.og-dialog-card {
  position: relative;
  width: min(92vw, 400px);
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.2);
}
.og-dialog-card h3 {
  margin: 0;
  font-family: Poppins, system-ui, sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--og-ink);
}
.og-dialog-card p {
  margin: 12px 0 0;
  font-family: Poppins, system-ui, sans-serif;
  font-size: 14px;
  line-height: 1.5;
  color: var(--og-ink-muted);
}
.og-dialog-ok {
  margin-top: 20px;
  width: 100%;
  height: 44px;
  border: 0;
  border-radius: 12px;
  background: var(--og-primary);
  color: #fff;
  font-family: Poppins, system-ui, sans-serif;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
}

/* Fallback if lora font missing — still readable */
@supports not (font-family: Lora) {
  .og-title { font-family: Georgia, "Times New Roman", serif; }
}

/* ——— Form-içi alan seçimi (klasik grid; flow morph yok) ——— */
.og-main {
  background: #fff;
  position: relative;
  isolation: isolate;
  min-height: 60vh;
}
.og-main::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: min(420px, 55vh);
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(70% 80% at 72% 0%, rgba(255, 121, 20, 0.06), transparent 62%),
    radial-gradient(50% 60% at 18% 8%, rgba(255, 232, 212, 0.35), transparent 55%);
}
.og-wrap {
  position: relative;
  z-index: 1;
}

.og-track-block {
  margin: 0 0 16px;
}
.og-track-label,
.og-rail-label {
  margin: 0 0 8px;
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--og-ink-subtle);
}
.og-tracks,
.og-tracks--compact {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}
@media (min-width: 520px) {
  .og-tracks--compact {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }
}

.og-track {
  appearance: none;
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  width: 100%;
  min-height: 72px;
  padding: 14px 14px 14px 12px;
  border-radius: 16px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: #fff;
  color: var(--og-ink);
  cursor: pointer;
  text-align: left;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
  transition:
    border-color 0.2s ease,
    background 0.2s ease,
    transform 0.18s ease,
    box-shadow 0.2s ease;
}
.og-track::before {
  display: none;
}
.og-track-ico {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: Poppins, system-ui, sans-serif;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--og-primary);
  background: rgba(255, 121, 20, 0.1);
  border: 1px solid rgba(255, 121, 20, 0.14);
}
.og-track-copy {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.og-track-top {
  display: contents;
}
.og-track-action {
  display: none;
}
.og-track-check {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  border: 1.5px solid rgba(15, 23, 42, 0.16);
  background: #fff;
  position: relative;
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}
.og-track-check::after {
  content: "";
  position: absolute;
  left: 6.5px;
  top: 3.5px;
  width: 5px;
  height: 9px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg) scale(0);
  opacity: 0;
  transition: transform 0.18s ease, opacity 0.18s ease;
}
.og-track:hover {
  border-color: rgba(255, 121, 20, 0.35);
  background: #fffdfb;
  box-shadow: 0 8px 22px rgba(255, 121, 20, 0.1);
  transform: translateY(-1px);
}
.og-track:hover .og-track-check {
  border-color: rgba(255, 121, 20, 0.45);
}
.og-track:active {
  transform: translateY(0) scale(0.99);
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.06);
}
.og-track:focus-visible {
  outline: 2px solid var(--og-primary);
  outline-offset: 2px;
}
.og-track.is-selected {
  border-color: rgba(255, 121, 20, 0.55);
  background: linear-gradient(135deg, #fff 0%, #fff4eb 100%);
  box-shadow:
    0 0 0 1px rgba(255, 121, 20, 0.12),
    0 10px 24px rgba(255, 121, 20, 0.12);
  animation: og-track-pop 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
.og-track.is-selected .og-track-ico {
  color: #fff;
  background: var(--og-primary);
  border-color: transparent;
  box-shadow: 0 6px 14px rgba(255, 121, 20, 0.28);
}
.og-track.is-selected .og-track-check {
  background: var(--og-primary);
  border-color: var(--og-primary);
  box-shadow: 0 4px 10px rgba(255, 121, 20, 0.28);
}
.og-track.is-selected .og-track-check::after {
  opacity: 1;
  transform: rotate(45deg) scale(1);
}
@keyframes og-track-pop {
  0% { transform: scale(1); }
  40% { transform: scale(1.015); }
  100% { transform: scale(1); }
}
.og-track--featured {
  border-color: rgba(255, 121, 20, 0.22);
  background: linear-gradient(135deg, #fff 0%, #fff8f2 100%);
}
.og-track--featured::after {
  display: none;
}
.og-track-name {
  font-family: Poppins, system-ui, sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.25px;
  color: var(--og-ink);
  line-height: 1.2;
}
.og-track.is-selected .og-track-name {
  color: var(--og-primary);
}
.og-track-hint {
  font-family: Poppins, system-ui, sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: var(--og-ink-subtle);
  line-height: 1.3;
}

@media (min-width: 520px) {
  .og-track {
    flex-direction: column;
    align-items: flex-start;
    min-height: 118px;
    padding: 16px 14px 14px;
    gap: 10px;
  }
  .og-track-ico {
    width: 36px;
    height: 36px;
    border-radius: 11px;
    font-size: 14px;
  }
  .og-track-check {
    position: absolute;
    top: 14px;
    right: 14px;
  }
  .og-track-copy {
    width: 100%;
    padding-right: 4px;
  }
  .og-track-name {
    font-size: 16px;
  }
}

.og-pick-summary {
  margin: 0 0 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--og-chip-soft);
  border: 1px solid rgba(255, 121, 20, 0.18);
  font-family: Poppins, system-ui, sans-serif;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--og-ink-muted);
  animation: og-summary-in 0.45s cubic-bezier(0.22, 1, 0.36, 1) both;
}
@keyframes og-summary-in {
  from { opacity: 0; transform: translateY(8px) scale(0.96); }
  to { opacity: 1; transform: none; }
}
.og-pick-summary:empty { display: none; }
.og-pick-summary strong {
  color: var(--og-primary);
  font-weight: 700;
}

.og-grade-block { margin: 0 0 16px; }
.og-grade-label {
  margin: 0 0 8px;
  font-family: Poppins, system-ui, sans-serif;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--og-ink-muted);
}
.og-grades {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.og-grade {
  flex: 1 1 calc(33.333% - 8px);
  min-width: 96px;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1.5px solid rgba(15, 23, 42, 0.1);
  background: #fff;
  cursor: pointer;
  text-align: left;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
  font-family: Poppins, system-ui, sans-serif;
  -webkit-tap-highlight-color: transparent;
}
.og-grade:hover { border-color: rgba(255, 121, 20, 0.45); }
.og-grade:focus-visible {
  outline: 2px solid var(--og-primary);
  outline-offset: 2px;
}
.og-grade.is-selected {
  border-color: var(--og-primary);
  background: linear-gradient(165deg, #fff 0%, var(--og-chip-soft) 140%);
  box-shadow: 0 8px 20px rgba(255, 121, 20, 0.12);
}
.og-grade-title {
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: -0.2px;
  color: var(--og-ink);
  line-height: 1.25;
}
.og-grade-sub {
  font-size: 10.5px;
  font-weight: 500;
  color: var(--og-ink-subtle);
  line-height: 1.3;
}

body:has(.og-grid) .site-footer {
  margin-top: 24px !important;
}

@media (prefers-reduced-motion: reduce) {
  .og-story,
  .og-form-card,
  .og-track,
  .og-pick-summary {
    transition: none !important;
    animation: none !important;
  }
}

/* —— Randevu scheduler (adım 2) —— */
.og-appt { text-align: center; }
.og-appt-hero {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  text-align: left;
  margin-bottom: 10px;
}
.og-appt-hero-ico {
  width: 40px; height: 40px; margin: 0; border-radius: 50%; flex-shrink: 0;
  display: grid; place-items: center; color: var(--og-success);
  background: rgba(31, 143, 77, 0.1); border: 2px solid rgba(31, 143, 77, 0.22);
}
.og-appt-hero-ico svg { width: 22px; height: 22px; }
.og-appt-hero-copy { flex: 1; min-width: 0; }
.og-appt-hero-title {
  margin: 0 0 4px; font-family: Lora, Georgia, serif; font-size: clamp(18px, 3.5vw, 22px);
  font-weight: 600; color: var(--og-ink); line-height: 1.2;
}
.og-appt-hero-sub {
  margin: 0; max-width: none; font-family: Poppins, system-ui, sans-serif;
  font-size: 12px; line-height: 1.45; color: var(--og-ink-muted); text-align: left;
}
.og-appt-timer {
  display: flex; align-items: center; justify-content: center; gap: 6px;
  margin-bottom: 10px; padding: 7px 10px; border-radius: 10px;
  background: #e8f4fd; border: 1px solid #b8dcf5; color: #0c4a6e;
  font-family: Poppins, system-ui, sans-serif; font-size: 12px;
}
.og-appt-nearest {
  display: flex; align-items: center; gap: 10px; width: 100%; margin-bottom: 10px;
  padding: 10px 12px; border-radius: 12px; border: 1px solid rgba(31, 143, 77, 0.4);
  background: linear-gradient(135deg, rgba(31,143,77,.08), rgba(31,143,77,.03));
  cursor: pointer; text-align: left;
}
.og-appt-nearest-copy { flex: 1; display: flex; flex-direction: column; gap: 1px; min-width: 0; }
.og-appt-nearest-label { font-family: Poppins, sans-serif; font-size: 11px; font-weight: 600; color: var(--og-success); }
.og-appt-nearest-copy strong { font-family: Poppins, sans-serif; font-size: 15px; color: var(--og-ink); }
.og-appt-nearest-copy small { font-family: Poppins, sans-serif; font-size: 10px; color: var(--og-ink-subtle); }
.og-appt-nearest-btn {
  padding: 7px 10px; border-radius: 8px; background: var(--og-success); color: #fff;
  font-family: Poppins, sans-serif; font-size: 11px; font-weight: 700; flex-shrink: 0;
}
.og-appt-section-label {
  margin: 0 0 6px; text-align: left; font-family: Poppins, sans-serif;
  font-size: 13px; font-weight: 700; color: var(--og-ink);
}
.og-appt-days { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-bottom: 8px; }
.og-appt-day {
  appearance: none; border: 1px solid var(--og-border); background: #fff; border-radius: 12px;
  padding: 10px 8px; cursor: pointer; text-align: center;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.og-appt-day:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  background: #f8fafc;
}
.og-appt-day.is-selected { border-color: var(--og-primary); border-width: 2px; background: rgba(255,121,20,.06); box-shadow: 0 6px 16px rgba(255,121,20,.08); }
.og-appt-day-title { display: block; font-family: Poppins, sans-serif; font-size: 12px; font-weight: 700; color: var(--og-ink); }
.og-appt-day.is-selected .og-appt-day-title { color: var(--og-primary); }
.og-appt-day-date { display: block; margin-top: 2px; font-family: Poppins, sans-serif; font-size: 10px; color: var(--og-ink-subtle); }
.og-appt-slots-wrap { text-align: left; margin-bottom: 4px; }
.og-appt-slots-label {
  margin: 0 0 6px;
  font-family: Poppins, sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: var(--og-ink-muted);
}
.og-appt-slots {
  /* Uzun liste: kutu içi scroll — form taşmasın, müsait saat aşağı kaydırılarak bulunur */
  max-height: min(300px, 48vh);
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  scrollbar-gutter: stable;
  border: 1px solid var(--og-border);
  border-radius: 12px;
  background: #fff;
}
.og-appt-slots::-webkit-scrollbar { width: 6px; }
.og-appt-slots::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.18);
  border-radius: 999px;
}
.og-appt-slots::-webkit-scrollbar-track { background: transparent; }
.og-appt-slots-empty { margin: 0; padding: 12px; text-align: center; font-family: Poppins, sans-serif; font-size: 12px; color: var(--og-ink-muted); }
.og-appt-slot {
  appearance: none; width: 100%; display: flex; align-items: center; gap: 10px;
  padding: 9px 12px; border: 0; border-bottom: 1px solid rgba(230,230,230,.8);
  background: transparent; cursor: pointer; text-align: left;
}
.og-appt-slot:last-child { border-bottom: 0; }
.og-appt-slot.is-full { background: #fff5f5; cursor: not-allowed; opacity: .92; }
.og-appt-slot.is-full .og-appt-slot-time { color: var(--og-ink-muted); }
.og-appt-slot.is-full .og-appt-slot-radio { border-color: #fecdca; background: #fef3f2; }
.og-appt-slot.is-selected { background: rgba(255,121,20,.06); }
.og-appt-slot-radio {
  width: 18px; height: 18px; border-radius: 50%; border: 2px solid var(--og-ink-subtle); flex-shrink: 0;
}
.og-appt-slot.is-selected .og-appt-slot-radio { border-color: var(--og-primary); box-shadow: inset 0 0 0 4px var(--og-primary); }
.og-appt-slot-time { flex: 1; font-family: Poppins, sans-serif; font-size: 15px; font-weight: 600; color: var(--og-ink); }
.og-appt-slot-badge {
  font-family: Poppins, sans-serif; font-size: 10px; font-weight: 700; letter-spacing: .04em;
  padding: 3px 8px; border-radius: 6px;
}
.og-appt-slot:not(.is-full) .og-appt-slot-badge { color: var(--og-success); background: rgba(31,143,77,.12); border: 1px solid rgba(31,143,77,.28); }
.og-appt-slot.is-full .og-appt-slot-badge { color: #b42318; background: #fef3f2; border: 1px solid #fecdca; }
.og-appt.is-timeout .og-appt-hero {
  text-align: center;
  flex-direction: column;
  align-items: center;
}
.og-appt.is-timeout .og-appt-hero-copy { text-align: center; }
.og-appt.is-timeout .og-appt-hero-title {
  font-size: clamp(20px, 4vw, 24px);
}
.og-appt.is-timeout .og-appt-hero-ico { margin: 0 auto; }
.og-appt-timeout {
  margin-top: 12px;
  padding: 16px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid var(--og-border);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
}
.og-appt-timeout-card {
  padding: 20px 16px;
  border-radius: 14px;
  background: #fff9e7;
  text-align: center;
}
.og-appt-timeout-ico {
  width: 44px; height: 44px; margin: 0 auto 12px; border-radius: 50%;
  display: grid; place-items: center; color: #fff;
  background: linear-gradient(135deg, #ff7914, #ff9a4d);
  box-shadow: 0 6px 16px rgba(255, 121, 20, 0.25);
}
.og-appt-timeout-title {
  margin: 0 0 8px; font-family: Poppins, system-ui, sans-serif;
  font-size: 16px; font-weight: 700; color: var(--og-ink); line-height: 1.35;
}
.og-appt-timeout-text {
  margin: 0; font-family: Poppins, system-ui, sans-serif;
  font-size: 13px; line-height: 1.5; color: var(--og-ink-muted);
}
.og-appt.is-done .og-appt-days,
.og-appt.is-done .og-appt-slots-wrap,
.og-appt.is-done .og-appt-nearest,
.og-appt.is-done .og-appt-timer { display: none; }
