:root {
  --bg: #f3efe6;
  --bg-alt: #e8f0ea;
  --ink: #14201a;
  --muted: #5b6b62;
  --brand: #0b3d2e;
  --brand-2: #1f6b4f;
  --accent: #e0852f;
  --accent-soft: #f3c48a;
  --card: rgba(255, 252, 246, 0.86);
  --line: rgba(20, 32, 26, 0.12);
  --ok: #1b7a4a;
  --err: #b42318;
  --shadow: 0 18px 50px rgba(11, 61, 46, 0.12);
  --radius: 18px;
  --font: "Manrope", system-ui, sans-serif;
  --display: "Syne", "Manrope", sans-serif;
  --header-h: 64px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background:
    radial-gradient(1200px 600px at 10% -10%, rgba(224, 133, 47, 0.18), transparent 55%),
    radial-gradient(900px 500px at 100% 0%, rgba(31, 107, 79, 0.16), transparent 50%),
    linear-gradient(180deg, #f7f3ea 0%, var(--bg) 40%, #eef4ef 100%);
  min-height: 100vh;
  line-height: 1.5;
}
img { max-width: 100%; display: block; }
a { color: var(--brand-2); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--brand); }
h1, h2, h3 { font-family: var(--display); line-height: 1.15; margin: 0 0 .5rem; }
p { margin: 0 0 1rem; }
.container { width: min(1100px, calc(100% - 2rem)); margin-inline: auto; }
.narrow { width: min(560px, calc(100% - 2rem)); }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); border: 0;
}
.skip-link {
  position: absolute; left: -999px; top: 0; background: #000; color: #fff; padding: .5rem 1rem; z-index: 1000;
}
.skip-link:focus { left: 1rem; top: 1rem; }

.site-header {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(243, 239, 230, 0.82);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  min-height: var(--header-h);
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.brand { display: inline-flex; align-items: center; gap: .6rem; color: inherit; text-decoration: none; }
.brand-mark {
  width: 28px; height: 28px; border-radius: 50%;
  background:
    radial-gradient(circle at 30% 30%, #fff 0 18%, transparent 19%),
    radial-gradient(circle at 70% 60%, var(--accent) 0 16%, transparent 17%),
    linear-gradient(135deg, var(--brand), var(--brand-2));
  box-shadow: 0 8px 18px rgba(11, 61, 46, 0.25);
}
.brand-text { font-family: var(--display); font-weight: 800; letter-spacing: -0.03em; font-size: 1.15rem; }
.brand-text span, .brand-hero span { color: var(--accent); }

.nav-toggle {
  width: 44px; height: 44px; border: 1px solid var(--line); border-radius: 12px;
  background: var(--card); display: grid; place-content: center; gap: 5px; cursor: pointer;
}
.nav-toggle span { display: block; width: 18px; height: 2px; background: var(--ink); }
.site-nav {
  display: none; position: absolute; right: 1rem; top: calc(var(--header-h) + .4rem);
  background: #fffdf8; border: 1px solid var(--line); border-radius: 16px; padding: .8rem;
  box-shadow: var(--shadow); min-width: 200px; flex-direction: column; gap: .4rem;
}
.site-nav.open { display: flex; }
.site-nav a, .linkish {
  color: var(--ink); text-decoration: none; padding: .55rem .7rem; border-radius: 10px; font-weight: 600;
}
.site-nav a:hover, .linkish:hover { background: var(--bg-alt); }
.linkish { background: none; border: 0; font: inherit; cursor: pointer; text-align: left; width: 100%; }
.inline-form { margin: 0; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .4rem;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  color: #fff; border: 0; border-radius: 999px; padding: .85rem 1.25rem;
  font-weight: 700; font-family: inherit; cursor: pointer; text-decoration: none;
  box-shadow: 0 10px 24px rgba(11, 61, 46, 0.22);
}
.btn:hover { filter: brightness(1.05); color: #fff; }
.btn-sm { padding: .55rem .9rem; font-size: .92rem; }
.btn-outline {
  background: transparent; color: var(--brand); border: 1.5px solid rgba(11,61,46,.28); box-shadow: none;
}
.btn-outline:hover { background: rgba(11,61,46,.06); color: var(--brand); }
.btn-danger { background: linear-gradient(135deg, #9f1d1d, #d64545); }

.hero {
  position: relative; overflow: hidden;
  min-height: calc(100svh - var(--header-h));
  display: grid; align-items: end;
  padding: 2.5rem 0 3rem;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(243,239,230,.2), rgba(243,239,230,.92)),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160' viewBox='0 0 160 160'%3E%3Cg fill='none' stroke='%230b3d2e' stroke-opacity='.08'%3E%3Cpath d='M0 80h160M80 0v160'/%3E%3Ccircle cx='80' cy='80' r='28'/%3E%3Ccircle cx='80' cy='80' r='3' fill='%23e0852f' fill-opacity='.35' stroke='none'/%3E%3C/g%3E%3C/svg%3E");
  background-size: cover, 120px 120px;
  animation: drift 18s linear infinite;
}
@keyframes drift {
  from { background-position: center, 0 0; }
  to { background-position: center, 120px 60px; }
}
.hero-inner { position: relative; z-index: 1; max-width: 720px; }
.eyebrow {
  display: inline-block; margin-bottom: .6rem; font-weight: 700; color: var(--brand-2);
  letter-spacing: .04em; text-transform: uppercase; font-size: .78rem;
}
.brand-hero {
  font-size: clamp(2.6rem, 10vw, 4.6rem); letter-spacing: -0.05em; margin-bottom: .6rem;
  animation: rise .7s ease both;
}
.lead { font-size: 1.08rem; color: var(--muted); max-width: 36rem; animation: rise .8s ease .05s both; }
@keyframes rise {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: none; }
}

.search-box {
  position: relative; display: grid; grid-template-columns: 1fr auto; gap: .6rem;
  margin: 1.4rem 0 .8rem; animation: rise .85s ease .1s both;
}
.search-box input[type="search"] {
  width: 100%; border: 1px solid var(--line); background: rgba(255,253,248,.95);
  border-radius: 999px; padding: 1rem 1.15rem; font: inherit; outline: none;
  box-shadow: var(--shadow);
}
.search-box input[type="search"]:focus {
  border-color: rgba(31,107,79,.45); box-shadow: 0 0 0 4px rgba(31,107,79,.12), var(--shadow);
}
.suggest-panel {
  position: absolute; left: 0; right: 0; top: calc(100% + .35rem); z-index: 20;
  background: #fffdf8; border: 1px solid var(--line); border-radius: 16px;
  box-shadow: var(--shadow); overflow: hidden;
}
.suggest-panel a {
  display: block; padding: .85rem 1rem; color: inherit; text-decoration: none; border-bottom: 1px solid var(--line);
}
.suggest-panel a:last-child { border-bottom: 0; }
.suggest-panel a:hover, .suggest-panel a.active { background: var(--bg-alt); }
.suggest-panel small { display: block; color: var(--muted); }
.locate-row {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: .45rem;
  margin-top: .15rem;
}
.locate-btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: #fff;
  border: 1.5px solid rgba(11, 61, 46, 0.22);
  color: var(--brand);
  font: inherit;
  font-weight: 700;
  padding: .7rem 1rem;
  border-radius: 999px;
  cursor: pointer;
  min-height: 44px;
  box-shadow: 0 6px 18px rgba(11, 61, 46, 0.08);
  -webkit-tap-highlight-color: transparent;
}
.locate-btn:hover { background: var(--bg-alt); }
.locate-btn.is-loading { opacity: .75; }
.locate-btn.is-ready {
  border-color: rgba(27, 122, 74, 0.45);
  background: #e8f7ee;
  color: var(--ok);
}
.locate-btn.is-error {
  border-color: rgba(180, 35, 24, 0.35);
  background: #fdecec;
  color: var(--err);
}
.locate-ico {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, #fff 0 22%, transparent 23%),
    radial-gradient(circle at 50% 50%, var(--accent) 0 38%, transparent 39%),
    linear-gradient(135deg, var(--brand), var(--brand-2));
  flex: 0 0 auto;
}
.locate-status {
  margin: 0;
  font-size: .88rem;
  font-weight: 600;
  color: var(--muted);
}
.locate-status.ok { color: var(--ok); }
.locate-status.err { color: var(--err); }
.locate-status.wait { color: var(--brand-2); }
.loc-banner {
  background: #143d30;
  color: #f4fff9;
  padding: .65rem 0;
  position: sticky;
  top: 0;
  z-index: 40;
}
.loc-banner-inner {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  align-items: center;
  justify-content: space-between;
}
.loc-banner p { margin: 0; font-size: .92rem; font-weight: 600; }
.loc-banner .btn { background: #f4fff9; color: #0b3d2e; }

@media (max-width: 639px) {
  .locate-btn { width: 100%; justify-content: center; }
  .locate-row { width: 100%; }
}

.section { padding: 2.5rem 0; }
.section-alt { background: linear-gradient(180deg, rgba(232,240,234,.7), transparent); }
.section-head { margin-bottom: 1.2rem; }
.section-head p, .muted { color: var(--muted); }
.row-between { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between; align-items: end; }

.chip-list { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: .7rem; }
.chip {
  display: inline-flex; align-items: center; gap: .7rem; padding: .7rem 1rem;
  background: var(--card); border: 1px solid var(--line); border-radius: 999px;
  color: inherit; text-decoration: none; font-weight: 600;
  transition: transform .2s ease, box-shadow .2s ease;
}
.chip:hover { transform: translateY(-2px); box-shadow: var(--shadow); color: inherit; }
.chip strong {
  background: rgba(224,133,47,.15); color: #9a4d08; border-radius: 999px; padding: .15rem .55rem; font-size: .85rem;
}

.cat-grid, .pkg-grid {
  display: grid; gap: 1rem; grid-template-columns: 1fr;
}
.cat-card, .pkg-card, .invoice, .rate-box, .info-strip {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.1rem 1.2rem;
}
.cat-card { color: inherit; text-decoration: none; transition: transform .2s ease, box-shadow .2s ease; }
.cat-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); color: inherit; }
.cat-top { display: flex; justify-content: space-between; gap: 1rem; align-items: start; }
.cat-load {
  display: flex;
  justify-content: center;
  padding: 1.25rem 0 .25rem;
  min-height: 2.5rem;
}
.cat-load-status {
  margin: 0;
  color: var(--muted);
  font-size: .92rem;
  font-weight: 600;
}
.cat-load-status.is-done { color: var(--brand); }
.rating, .rating-line { font-weight: 700; color: #9a4d08; }
.found-line { margin-top: .35rem; font-size: .95rem; }
.found-fieldset {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: .9rem 1rem 1rem;
  margin: 0;
}
.found-fieldset legend {
  padding: 0 .35rem;
  font-weight: 700;
  font-size: .95rem;
}
.found-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .6rem;
  margin-top: .35rem;
}
.found-option {
  display: flex;
  align-items: center;
  gap: .5rem;
  padding: .75rem .9rem;
  border: 1px solid var(--line);
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
}
.found-option:has(input:checked) {
  border-color: #1f6b4a;
  background: #f1faf5;
}
.found-option input { width: auto; margin: 0; }
.found-badge {
  display: inline-block;
  margin-left: .35rem;
  padding: .15rem .45rem;
  border-radius: 999px;
  font-size: .75rem;
  font-weight: 700;
}
.found-badge.is-yes { background: #e7f6ee; color: #1f6b4a; }
.found-badge.is-no { background: #fdecea; color: #9b1c1c; }
.cta-band {
  display: flex; flex-direction: column; gap: 1rem; align-items: start;
  background: linear-gradient(135deg, #0b3d2e, #1f6b4f); color: #f7f3ea;
  border-radius: 24px; padding: 1.5rem;
}
.cta-band p { color: rgba(247,243,234,.82); margin: 0; }
.cta-band .btn { background: #fff; color: var(--brand); box-shadow: none; }

.page-head { padding: 1.8rem 0 0; }
.result-list { list-style: none; padding: 0; margin: 0; display: grid; gap: .8rem; }
.result-item {
  display: flex; flex-direction: column; gap: .8rem;
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 1rem 1.1rem;
}
.result-actions { display: flex; flex-wrap: wrap; gap: .5rem; align-items: center; }
.distance {
  font-weight: 800; color: var(--brand); background: rgba(31,107,79,.1);
  border-radius: 999px; padding: .35rem .7rem; font-size: .9rem;
}
.distance-line { margin-top: .4rem; font-size: 1rem; }
.distance-line .distance { margin-left: .25rem; }
.badge {
  display: inline-block; margin-left: .4rem; background: rgba(224,133,47,.18);
  color: #8a4508; border-radius: 999px; padding: .15rem .5rem; font-size: .78rem; font-weight: 700;
}
.badge-ok { background: #e7f6ee; color: #1f6b4a; }
.badge-open { background: #e7f6ee; color: #1f6b4a; }
.badge-closed { background: #fdecea; color: #9b1c1c; }
.badge-found { background: #e8f0fe; color: #1a4b8c; }
.filter-row { margin-top: .75rem; }
.filter-check { font-weight: 600; }
.search-map {
  width: 100%;
  height: 280px;
  min-height: 280px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  margin: 0 0 1.1rem;
  z-index: 1;
  background: #e8eee9;
  overflow: hidden;
}
.search-map .leaflet-container {
  width: 100% !important;
  height: 100% !important;
  font: inherit;
}
.result-item.is-featured { border-color: rgba(224,133,47,.45); box-shadow: 0 0 0 1px rgba(224,133,47,.12); }
.result-main { display: flex; gap: .75rem; align-items: flex-start; flex: 1; }
.result-thumb {
  width: 64px; height: 64px; border-radius: 10px; overflow: hidden;
  flex: 0 0 auto; background: #eee; display: block;
}
.result-thumb img, .thumb-preview, .detail-photo img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.thumb-preview { width: 96px; height: 96px; border-radius: 10px; }
.detail-photo { margin: 1rem 0; border-radius: 14px; overflow: hidden; max-height: 280px; }
.detail-photo img { width: 100%; height: auto; max-height: 280px; object-fit: cover; }
.hours-line { margin-top: .25rem; font-size: .9rem; }
.hours-box {
  border: 1px solid var(--line); border-radius: 14px; padding: .9rem 1rem 1rem; display: grid; gap: .7rem;
}
.hours-box legend { font-weight: 700; padding: 0 .3rem; }
.hours-days { display: flex; flex-wrap: wrap; gap: .45rem .8rem; }
.metrics-grid {
  display: grid; gap: .75rem; grid-template-columns: 1fr; margin: 1rem 0 1.4rem;
}
@media (min-width: 640px) {
  .metrics-grid { grid-template-columns: repeat(3, 1fr); }
  .search-map { height: 380px; min-height: 380px; }
}
.metric-card {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: .9rem 1rem; display: grid; gap: .25rem;
}
.metric-label { color: var(--muted); font-size: .85rem; font-weight: 600; }
.metric-card strong { font-size: 1.45rem; font-family: Syne, Manrope, sans-serif; }
.address-box {
  display: grid;
  gap: .9rem;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255,253,248,.7);
}
.address-hint { margin: 0; font-size: .9rem; }
.address-verify-row {
  display: flex;
  flex-wrap: wrap;
  gap: .7rem;
  align-items: center;
}
.address-verify-status { margin: 0; font-size: .9rem; font-weight: 600; }
.address-verify-status.ok { color: var(--ok); }
.address-verify-status.err { color: var(--err); }
.address-pin-hint {
  margin: .5rem 0 .65rem;
  font-size: .88rem;
  font-weight: 600;
  color: #1f6b4a;
}
.address-pin-map {
  width: 100%;
  height: 260px;
  min-height: 260px;
  border-radius: 14px;
  border: 1px solid var(--line);
  margin: 0 0 1rem;
  background: #e8eee9;
  z-index: 1;
  overflow: hidden;
}
@media (min-width: 720px) {
  .address-pin-map { height: 320px; min-height: 320px; }
}
.address-confirm {
  display: grid;
  gap: .45rem;
  padding: .85rem;
  border-radius: 12px;
  background: #eef8f2;
  border: 1px solid #c6e6d4;
}
.address-formatted { margin: 0; font-weight: 700; }

.stack-form { display: grid; gap: .9rem; }
.stack-form label { display: grid; gap: .35rem; font-weight: 600; }
.stack-form input, .stack-form select, .stack-form textarea {
  width: 100%; border: 1px solid var(--line); border-radius: 12px; padding: .8rem .9rem;
  font: inherit; background: #fffdf8;
}
.grid-2 { display: grid; gap: .8rem; }
.check { display: flex !important; align-items: center; gap: .55rem; font-weight: 600; }
.check input { width: auto; }

.detail h1 { font-size: clamp(1.8rem, 6vw, 2.6rem); }
.detail-desc { color: var(--muted); }
.price { font-size: 1.4rem; font-weight: 800; color: var(--brand); }
.action-row { display: flex; flex-wrap: wrap; gap: .6rem; margin: 1rem 0 1.5rem; }
.review-list { list-style: none; padding: 0; display: grid; gap: .8rem; }
.review-list li { border-top: 1px solid var(--line); padding-top: .8rem; }

.pkg-price { display: grid; gap: .45rem; margin: 1rem 0; }
.pkg-price > div { display: flex; justify-content: space-between; gap: 1rem; }
.pkg-price .total { border-top: 1px dashed var(--line); padding-top: .5rem; font-size: 1.05rem; }
.pkg-card.featured { border-color: rgba(224,133,47,.45); box-shadow: 0 0 0 3px rgba(224,133,47,.12); }
.pkg-meta { padding-left: 1.1rem; color: var(--muted); }
.pkg-select {
  cursor: pointer; position: relative; display: block; color: inherit;
}
.pkg-select input[type="radio"] {
  position: absolute; opacity: 0; pointer-events: none;
}
.pkg-select .pkg-pick {
  position: absolute; top: 1rem; right: 1rem;
  background: rgba(11,61,46,.08); color: var(--brand);
  border-radius: 999px; padding: .25rem .65rem; font-size: .8rem; font-weight: 800;
}
.pkg-select.is-selected,
.pkg-select:has(input:checked) {
  border-color: var(--brand-2);
  box-shadow: 0 0 0 3px rgba(31,107,79,.18);
}
.pkg-select.is-selected .pkg-pick,
.pkg-select:has(input:checked) .pkg-pick {
  background: var(--brand); color: #fff;
}
.renew-check {
  display: flex !important;
  align-items: flex-start;
  gap: .7rem;
  padding: .9rem 1rem;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #f3faf6;
  font-weight: 600;
}
.renew-check input { width: auto; margin-top: .2rem; }
.renew-check span { display: grid; gap: .25rem; }
.renew-check small { font-weight: 500; color: var(--muted); }
.renew-box {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem 1rem;
  align-items: center;
  justify-content: space-between;
  margin: 0 0 1.25rem;
  padding: 1rem 1.1rem;
  border-radius: 14px;
  border: 1px solid rgba(31,107,79,.2);
  background: #fffdf8;
}
.renew-box p { margin: 0; color: var(--muted); font-weight: 600; }

.period-picker {
  display: grid;
  gap: .75rem;
  margin: .5rem 0 1rem;
}
.period-option {
  position: relative;
  display: grid;
  gap: .25rem;
  padding: 1rem 1.1rem;
  border: 2px solid rgba(20, 32, 26, 0.12);
  border-radius: 16px;
  background: #fff;
  cursor: pointer;
}
.period-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.period-badge {
  position: absolute;
  top: .75rem;
  right: .85rem;
  font-size: .72rem;
  font-weight: 800;
  background: #f6d9a8;
  color: #7a3d05;
  border-radius: 999px;
  padding: .2rem .55rem;
}
.period-title {
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.05rem;
}
.period-price {
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.35rem;
  color: var(--brand);
}
.period-sub, .period-break {
  font-size: .85rem;
  color: var(--muted);
  font-weight: 600;
}
.period-option.is-on,
.period-option:has(input:checked) {
  border-color: var(--brand);
  background: #f3faf6;
  box-shadow: 0 0 0 3px rgba(31, 107, 79, 0.12);
}
@media (min-width: 640px) {
  .period-picker { grid-template-columns: 1fr 1fr; }
}
.wide-form { width: min(920px, calc(100% - 2rem)); }
.narrow.wide-form { width: min(920px, calc(100% - 2rem)); }

/* —— İşletme kayıt (responsive) —— */
.register-biz { padding-top: 1.25rem; }
.register-wrap {
  width: min(980px, calc(100% - 1.5rem));
  margin-inline: auto;
}
.register-hero { margin-bottom: 1.25rem; }
.register-hero h1 {
  font-size: clamp(1.6rem, 5vw, 2.2rem);
  margin-bottom: .4rem;
}
.register-hero .lead {
  margin: 0;
  font-size: 1rem;
  color: var(--muted);
  max-width: 36rem;
}
.register-form { display: grid; gap: 1rem; }

.reg-block {
  background: #fffdf8;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1rem;
  box-shadow: 0 8px 28px rgba(11, 61, 46, 0.05);
}
.reg-block-head {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  margin-bottom: 1rem;
  padding-bottom: .85rem;
  border-bottom: 1px solid var(--line);
}
.reg-block-head h2 {
  margin: 0;
  font-size: 1.05rem;
}
.reg-block-head p {
  margin: .2rem 0 0;
  color: var(--muted);
  font-size: .88rem;
}
.step-num {
  flex: 0 0 auto;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  color: #fff;
  font-weight: 800;
  font-size: .85rem;
}

.reg-fields { display: grid; gap: .85rem; }
.reg-fields label {
  display: grid;
  gap: .35rem;
  font-weight: 600;
  font-size: .95rem;
}
.reg-fields input,
.reg-fields select,
.reg-fields textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: .85rem .95rem;
  font: inherit;
  background: #fff;
  min-height: 48px;
}
.reg-fields textarea { min-height: 96px; }
.reg-fields .grid-2 { display: grid; gap: .85rem; }

.reg-submit {
  display: grid;
  gap: .75rem;
  padding: .25rem 0 1rem;
}
.reg-submit p {
  margin: 0;
  color: var(--muted);
  font-size: .92rem;
}
.reg-submit .btn {
  width: 100%;
  min-height: 52px;
  font-size: 1rem;
}

/* Paket kartları — mobilde alt alta, net hiyerarşi */
.plans {
  display: grid;
  gap: .85rem;
}
.plan {
  display: block;
  margin: 0;
  padding: 1rem 1rem 1.05rem;
  border: 2px solid rgba(20, 32, 26, 0.12);
  border-radius: 16px;
  background: #fff;
  cursor: pointer;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
  -webkit-tap-highlight-color: transparent;
}
.plan-radio {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.plan-head {
  display: flex;
  gap: .75rem;
  align-items: flex-start;
}
.plan-dot {
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  margin-top: 2px;
  border: 2px solid rgba(11, 61, 46, 0.35);
  border-radius: 50%;
  position: relative;
}
.plan-dot::after {
  content: "";
  position: absolute;
  inset: 4px;
  border-radius: 50%;
  background: var(--brand);
  transform: scale(0);
  transition: transform .15s ease;
}
.plan-title-wrap { flex: 1; min-width: 0; }
.plan-title-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .45rem;
}
.plan-title {
  font-family: var(--display);
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: -.02em;
  color: var(--ink);
}
.plan-tag {
  font-style: normal;
  font-size: .72rem;
  font-weight: 800;
  color: #7a3d05;
  background: #f6d9a8;
  border-radius: 999px;
  padding: .2rem .55rem;
}
.plan-text {
  margin: .35rem 0 0;
  color: #4d5c54;
  font-size: .92rem;
  line-height: 1.45;
  font-weight: 500;
}
.plan-list {
  list-style: none;
  margin: .85rem 0 0;
  padding: 0;
  display: grid;
  gap: .4rem;
}
.plan-list li {
  position: relative;
  padding-left: 1.15rem;
  color: var(--ink);
  font-size: .92rem;
  font-weight: 600;
}
.plan-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .45rem;
  width: .55rem;
  height: .55rem;
  border-radius: 50%;
  background: var(--brand-2);
}
.plan-foot {
  margin-top: .95rem;
  padding-top: .85rem;
  border-top: 1px solid rgba(20, 32, 26, 0.1);
}
.plan-price-main {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: .4rem .6rem;
}
.plan-price-main b {
  font-family: var(--display);
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--brand);
  letter-spacing: -.03em;
}
.plan-price-main span {
  font-size: .85rem;
  font-weight: 700;
  color: #5b6b62;
}
.plan-price-sub {
  margin-top: .25rem;
  font-size: .82rem;
  color: #5b6b62;
  font-weight: 500;
  line-height: 1.35;
}

.plan:hover { border-color: rgba(31, 107, 79, 0.4); }
.plan.is-on,
.plan:has(.plan-radio:checked) {
  border-color: var(--brand);
  background: #f3faf6;
  box-shadow: 0 0 0 3px rgba(31, 107, 79, 0.14);
}
.plan.is-on .plan-dot,
.plan:has(.plan-radio:checked) .plan-dot {
  border-color: var(--brand);
}
.plan.is-on .plan-dot::after,
.plan:has(.plan-radio:checked) .plan-dot::after {
  transform: scale(1);
}
.plan.is-hot { border-color: rgba(224, 133, 47, 0.55); }
.plan.is-hot.is-on,
.plan.is-hot:has(.plan-radio:checked) {
  border-color: var(--brand);
}

@media (min-width: 640px) {
  .reg-block { padding: 1.25rem 1.35rem; }
  .reg-fields .grid-2 { grid-template-columns: 1fr 1fr; }
  .reg-submit {
    grid-template-columns: 1fr auto;
    align-items: center;
  }
  .reg-submit .btn { width: auto; min-width: 260px; }
}

@media (min-width: 900px) {
  .plans {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    align-items: stretch;
  }
  .plan {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 1.15rem;
  }
  .plan-list { flex: 1; }
  .plan-foot { margin-top: auto; }
  .plan-price-main b { font-size: 1.35rem; }
}

@media (max-width: 639px) {
  .register-wrap { width: calc(100% - 1.25rem); }
  .plan-price-main b { font-size: 1.35rem; }
}

.invoice table { width: 100%; border-collapse: collapse; margin: 1rem 0; }
.invoice td { padding: .65rem 0; border-bottom: 1px solid var(--line); }
.invoice td:last-child { text-align: right; font-weight: 700; }
.total-row td { border-bottom: 0; font-size: 1.1rem; color: var(--brand); }

.toast {
  position: sticky; top: calc(var(--header-h) + .5rem); z-index: 60;
  width: min(920px, calc(100% - 2rem)); margin: .6rem auto 0; padding: .8rem 1rem;
  border-radius: 12px; font-weight: 600; animation: rise .4s ease both;
}
.toast-ok { background: #e8f7ee; color: var(--ok); border: 1px solid rgba(27,122,74,.2); }
.toast-err { background: #fdecec; color: var(--err); border: 1px solid rgba(180,35,24,.2); }

.site-footer {
  margin-top: 2rem; padding: 2rem 0 1.2rem; border-top: 1px solid var(--line);
  background: rgba(11, 61, 46, 0.04);
}
.footer-grid { display: grid; gap: 1.5rem; }
.footer-grid h2 { font-size: 1rem; }
.footer-grid a { display: block; color: var(--muted); text-decoration: none; margin: .25rem 0; }
.footer-copy { margin-top: 1.4rem; color: var(--muted); font-size: .9rem; }
.admin-nav {
  display: flex; flex-wrap: wrap; gap: .45rem; margin-bottom: 1.4rem;
  padding: .45rem; background: var(--card); border: 1px solid var(--line); border-radius: 14px;
}
.admin-nav a {
  text-decoration: none; color: var(--ink); font-weight: 700;
  padding: .55rem .9rem; border-radius: 10px;
}
.admin-nav a:hover { background: var(--bg-alt); color: var(--ink); }
.admin-cat-block { margin: 1.25rem 0 1.75rem; }
.admin-cat-block h3 {
  margin: 0 0 .75rem;
  padding-bottom: .5rem;
  border-bottom: 1px solid var(--line);
  font-size: 1.05rem;
}
.search-box-compact { grid-template-columns: 1fr; }
@media (min-width: 720px) {
  .search-box-compact { grid-template-columns: 1fr auto auto; }
}

@media (min-width: 720px) {
  .nav-toggle { display: none; }
  .site-nav {
    position: static; display: flex; flex-direction: row; align-items: center;
    background: transparent; border: 0; box-shadow: none; padding: 0; min-width: 0; gap: .2rem;
  }
  .linkish { width: auto; }
  .cat-grid, .pkg-grid { grid-template-columns: repeat(2, 1fr); }
  .result-item { flex-direction: row; justify-content: space-between; align-items: center; }
  .grid-2 { grid-template-columns: 1fr 1fr; }
  .cta-band { flex-direction: row; justify-content: space-between; align-items: center; }
  .footer-grid { grid-template-columns: 2fr 1fr; }
  .hero { align-items: center; padding-top: 4rem; }
}

@media (min-width: 980px) {
  .cat-grid { grid-template-columns: repeat(3, 1fr); }
  .pkg-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
}

/* GPS bekleme */
.results-shell { position: relative; min-height: 8rem; }
.gps-wait {
  display: flex;
  justify-content: center;
  padding: 2rem 0 1rem;
}
.gps-wait[hidden] { display: none !important; }
.gps-wait-card {
  text-align: center;
  max-width: 22rem;
  padding: 1.5rem 1.25rem;
  border-radius: 18px;
  background: var(--card);
  border: 1px solid var(--line);
  box-shadow: 0 10px 30px rgba(11, 61, 46, .06);
}
.gps-wait-card strong { display: block; margin: .75rem 0 .35rem; font-size: 1.05rem; }
.gps-wait-card p { margin: 0; color: var(--muted); font-size: .92rem; line-height: 1.45; }
.gps-spinner {
  display: inline-block;
  width: 2rem;
  height: 2rem;
  border: 3px solid rgba(31, 107, 79, .2);
  border-top-color: var(--brand);
  border-radius: 50%;
  animation: gps-spin .8s linear infinite;
}
@keyframes gps-spin { to { transform: rotate(360deg); } }
.results-ready[hidden] { display: none !important; }

/* Modern puanlama */
.rate-panel {
  margin-top: 1.75rem;
  padding: 1.25rem 1.15rem 1.35rem;
  border-radius: 20px;
  background: linear-gradient(165deg, #f7faf8 0%, #fff 45%);
  border: 1px solid var(--line);
}
.rate-panel-head h2 { margin: 0 0 .35rem; font-size: 1.2rem; }
.rate-panel-head p { margin: 0 0 1.1rem; color: var(--muted); font-size: .92rem; }
.rate-form { display: grid; gap: 1.15rem; }
.rate-step-title {
  margin: 0 0 .65rem;
  font-weight: 700;
  font-size: .95rem;
}
.rate-choice {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .65rem;
}
.rate-chip {
  display: flex;
  align-items: center;
  gap: .65rem;
  margin: 0;
  padding: .9rem .85rem;
  border-radius: 14px;
  border: 1.5px solid var(--line);
  background: #fff;
  cursor: pointer;
  transition: border-color .15s, background .15s, transform .12s;
}
.rate-chip input { position: absolute; opacity: 0; pointer-events: none; }
.rate-chip-ico {
  flex: 0 0 auto;
  width: 2rem;
  height: 2rem;
  display: grid;
  place-items: center;
  border-radius: 999px;
  font-weight: 800;
  font-size: .95rem;
  background: #f0f2f1;
  color: #555;
}
.rate-chip-text { display: flex; flex-direction: column; gap: .1rem; min-width: 0; }
.rate-chip-text strong { font-size: .98rem; }
.rate-chip-text em { font-style: normal; font-size: .78rem; color: var(--muted); }
.rate-chip-yes:has(input:checked) {
  border-color: #1f6b4a;
  background: #eef8f2;
}
.rate-chip-yes:has(input:checked) .rate-chip-ico {
  background: #1f6b4a;
  color: #fff;
}
.rate-chip-no:has(input:checked) {
  border-color: #b42318;
  background: #fdf2f1;
}
.rate-chip-no:has(input:checked) .rate-chip-ico {
  background: #b42318;
  color: #fff;
}
.star-picker {
  display: flex;
  gap: .35rem;
  flex-wrap: wrap;
}
.star-btn {
  appearance: none;
  border: 0;
  background: transparent;
  padding: .15rem .2rem;
  font-size: 1.85rem;
  line-height: 1;
  color: #d5d8d6;
  cursor: pointer;
  transition: color .12s, transform .12s;
}
.star-btn.is-on { color: #e08a1e; }
.star-btn:hover { transform: scale(1.08); }
.star-caption {
  margin: .4rem 0 0;
  font-size: .88rem;
  font-weight: 600;
  color: var(--muted);
}
.rate-hint {
  margin: 0;
  padding: .75rem .9rem;
  border-radius: 12px;
  background: #fdf2f1;
  color: #9b1c1c;
  font-size: .88rem;
  font-weight: 600;
}
.rate-comment-label {
  display: grid;
  gap: .4rem;
  font-weight: 600;
  font-size: .92rem;
}
.rate-comment-label textarea {
  font-weight: 500;
  border-radius: 12px;
  min-height: 5rem;
}
.rate-submit { width: 100%; margin-top: .15rem; }
@media (min-width: 720px) {
  .rate-submit { width: auto; justify-self: start; min-width: 14rem; }
}

