:root {
  --bg: #0b0e1a;
  --bg-2: #12172a;
  --card: #171d34;
  --card-2: #1e2540;
  --border: #2a3350;
  --text: #eef1fb;
  --muted: #98a2c0;
  --primary: #7c5cff;
  --primary-2: #a78bfa;
  --ok: #2fd573;
  --fail: #f75f5f;
  --warn: #f5b759;
  --radius: 14px;
  --shadow: 0 8px 30px rgba(0, 0, 0, .35);
}

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

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--bg);
  background-image: radial-gradient(ellipse at top, #1a2144 0%, var(--bg) 55%);
  color: var(--text);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

a { color: var(--primary-2); text-decoration: none; }
a:hover { text-decoration: underline; }

.container { width: min(1160px, 94%); margin: 0 auto; }
.main-content { flex: 1; padding: 28px 0 48px; }
.inline { display: inline; }

/* ---------- Header ---------- */
.site-header {
  border-bottom: 1px solid var(--border);
  background: rgba(11, 14, 26, .72);
  backdrop-filter: blur(8px);
  position: sticky;
  top: 0; z-index: 20;
}
.header-inner { display: flex; align-items: center; gap: 28px; height: 64px; }
.brand {
  font-weight: 800; font-size: 1.35rem; letter-spacing: .3px;
  background: linear-gradient(120deg, #ffd75e, #ff7eb3, #8f7bff);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
  text-shadow: none; position: relative; display: inline-flex; align-items: center; gap: 2px;
}
.brand span {
  background: linear-gradient(120deg, #2bffc6, #4d9fff);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.brand::after {
  content: ''; position: absolute; left: 0; bottom: -4px; height: 3px; width: 100%;
  background: linear-gradient(90deg, #ffd75e, #ff7eb3, #8f7bff, #2bffc6);
  border-radius: 99px; opacity: .85;
}
.nav { display: flex; gap: 20px; }
.nav a { color: var(--muted); font-weight: 500; font-size: .95rem; }
.nav a:hover { color: var(--text); text-decoration: none; }
.header-actions { display: flex; align-items: center; gap: 12px; margin-left: auto; }
.cart-link { position: relative; color: var(--text); font-weight: 600; }
.badge {
  background: var(--primary); color: #fff;
  border-radius: 99px; font-size: .7rem; font-weight: 700;
  padding: 1px 7px; margin-left: 2px;
}
.user-chip { color: var(--muted); font-size: .9rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid transparent; border-radius: 10px;
  font: inherit; font-weight: 600; cursor: pointer;
  padding: 9px 16px; transition: .15s ease;
  text-decoration: none;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--primary); color: #fff; box-shadow: 0 4px 18px rgba(124, 92, 255, .35); }
.btn-primary:hover { background: #6b4bf0; text-decoration: none; }
.btn-outline { background: transparent; border-color: var(--border); color: var(--text); }
.btn-outline:hover { border-color: var(--primary); color: var(--primary-2); text-decoration: none; }
.btn-ghost { background: transparent; color: var(--muted); }
.btn-ghost:hover { color: var(--text); background: var(--card-2); text-decoration: none; }
.btn-danger, .danger { color: var(--fail); }
.btn-sm { padding: 6px 12px; font-size: .85rem; border-radius: 8px; }
.btn-lg { padding: 13px 24px; font-size: 1rem; }
.btn-block { width: 100%; }

/* ---------- Hero ---------- */
.hero {
  border: 1px solid var(--border);
  border-radius: 20px;
  background: linear-gradient(120deg, #211c4d, #141a34);
  padding: 56px 40px;
  margin-top: 8px;
  text-align: center;
}
.hero h1 { font-size: 2.3rem; line-height: 1.25; max-width: 720px; margin: 0 auto; }
.hero h1 span { color: var(--primary-2); }
.hero p { color: var(--muted); max-width: 560px; margin: 18px auto 26px; font-size: 1.05rem; line-height: 1.7; }
.hero-cta { display: flex; gap: 14px; justify-content: center; }

/* Cafcaflı hero başlık */
.hero-title {
  display: inline-flex; flex-direction: column; align-items: center; gap: 6px;
  font-size: 3rem; line-height: 1.05; font-weight: 900; letter-spacing: .5px;
  transform: scale(1);
  animation: heroGrow .5s ease;
}
.hero-title .brand-word {
  background: linear-gradient(120deg, #ffd75e 0%, #ff9d4d 30%, #ff5f8f 60%, #c47bff 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent; font-size: 1.35em;
  filter: drop-shadow(0 4px 18px rgba(255,120,150,.35));
}
.hero-title .brand-word.community {
  font-size: .78em; letter-spacing: 4px; text-transform: uppercase;
  background: linear-gradient(120deg, #2bffc6, #4d9fff, #8f7bff);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
  filter: drop-shadow(0 4px 16px rgba(77,159,255,.35));
}
.hero-tagline {
  font-size: 1.15rem; color: var(--text); margin: 14px auto 4px; font-weight: 500;
}
.hero-tagline em {
  font-style: normal; color: var(--primary-2); font-weight: 800;
}
@keyframes heroGrow {
  from { transform: scale(.94); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

/* ---------- Sections / grids ---------- */
.section { margin-top: 42px; }
.section-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; }
.section-head h2 { font-size: 1.35rem; }
.page-head { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; margin-bottom: 26px; }
.page-head h1 { font-size: 1.6rem; }
.muted { color: var(--muted); }
.small { font-size: .85rem; }
.center { text-align: center; }

.category-grid { display: flex; flex-wrap: wrap; gap: 12px; }
.category-chip {
  display: flex; flex-direction: column; gap: 2px;
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 14px 20px; min-width: 160px;
  color: var(--text); transition: .15s;
}
.category-chip:hover { border-color: var(--primary); transform: translateY(-2px); text-decoration: none; }
.category-chip span { color: var(--muted); font-size: .8rem; }

.product-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 18px; }
.product-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden;
  display: flex; flex-direction: column;
  box-shadow: var(--shadow);
  transition: .15s ease;
}
.product-card:hover { transform: translateY(-3px); border-color: var(--primary); }
.product-card-head {
  height: 74px; display: flex; align-items: center; justify-content: center;
  font-weight: 800; letter-spacing: 1px; color: #14182e;
  background: linear-gradient(120deg, #ffe29a, #ffa99f);
}
.product-cat { background: rgba(0,0,0,.22); color: #fff; padding: 5px 12px; border-radius: 99px; font-size: .8rem; letter-spacing: .5px; }
.product-card-body { padding: 16px 18px 12px; flex: 1; }
.product-name { font-size: 1rem; margin-bottom: 6px; }
.product-name a { color: var(--text); }
.product-name a:hover { color: var(--primary-2); text-decoration: none; }
.product-desc { color: var(--muted); font-size: .85rem; line-height: 1.5; margin-bottom: 12px; }
.product-price-row { display: flex; align-items: baseline; gap: 10px; }
.price { font-weight: 800; font-size: 1.15rem; color: var(--primary-2); }
.price-old { color: var(--muted); text-decoration: line-through; font-size: .85rem; }
.product-card-foot { display: flex; gap: 8px; padding: 0 18px 16px; }

/* ---------- Layout ---------- */
.layout { display: grid; grid-template-columns: 220px 1fr; gap: 24px; align-items: start; }
.sidebar { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 16px; position: sticky; top: 84px; }
.sidebar h3 { font-size: .85rem; text-transform: uppercase; letter-spacing: 1px; color: var(--muted); margin-bottom: 12px; }
.sidebar a { display: block; padding: 8px 10px; border-radius: 8px; color: var(--muted); font-size: .92rem; }
.sidebar a:hover { background: var(--card-2); color: var(--text); text-decoration: none; }
.sidebar a.active { background: rgba(124,92,255,.15); color: var(--primary-2); }
.search-form { display: flex; gap: 8px; }
.search-form input { padding: 9px 12px; border-radius: 10px; border: 1px solid var(--border); background: var(--card); color: var(--text); min-width: 240px; }

/* ---------- Product page ---------- */
.product-page { display: grid; grid-template-columns: 320px 1fr; gap: 34px; align-items: start; }
.product-cover {
  position: relative; overflow: hidden;
  height: 320px; border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; font-weight: 800; text-transform: uppercase; letter-spacing: 2px;
  background: linear-gradient(130deg, #ffd083, #ff9d9d, #c47bff);
  border: 1px solid var(--border);
}
.crumbs { margin-bottom: 12px; font-size: .85rem; color: var(--muted); }
.crumbs a { color: var(--muted); }
.product-title { font-size: 1.8rem; margin-bottom: 10px; }
.product-price-big { margin: 14px 0; }
.product-price-big .price { font-size: 1.6rem; }
.product-buy-row { display: flex; gap: 12px; margin: 8px 0 16px; }
.qty-input { padding: 9px 12px; width: 80px; border-radius: 10px; border: 1px solid var(--border); background: var(--card); color: var(--text); }
.qty-input.inline { width: 64px; }
.feature-list { list-style: none; margin-top: 10px; }
.feature-list li { padding: 6px 0; color: var(--muted); display: flex; gap: 8px; }
.feature-list li:before { content: '✓'; color: var(--ok); font-weight: 800; }

/* ---------- Panels / forms ---------- */
.panel {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 22px; box-shadow: var(--shadow);
}
.panel h2 { font-size: 1.1rem; margin-bottom: 14px; }
.form-panel { max-width: 720px; }
.field { margin-bottom: 14px; }
.field label { display: block; font-size: .88rem; font-weight: 600; margin-bottom: 6px; }
.field input, .field select, .field textarea {
  width: 100%; padding: 10px 12px; border-radius: 10px;
  border: 1px solid var(--border); background: var(--bg-2); color: var(--text);
  font: inherit;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: 2px solid var(--primary); border-color: transparent; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.checkbox { display: flex; align-items: center; gap: 8px; font-size: .92rem; margin: 10px 0; }
.checkbox input { width: auto; }

/* ---------- Auth ---------- */
.auth-page { display: flex; justify-content: center; }
.auth-card { width: min(420px, 100%); background: var(--card); border: 1px solid var(--border); border-radius: 18px; padding: 32px; box-shadow: var(--shadow); }
.auth-card h1 { margin-bottom: 18px; font-size: 1.4rem; }

/* ---------- Cart ---------- */
.cart-wrap { display: grid; grid-template-columns: 1fr 300px; gap: 22px; align-items: start; }
.cart-items { display: flex; flex-direction: column; gap: 12px; }
.cart-item {
  display: grid; grid-template-columns: 84px 1fr auto auto; gap: 14px; align-items: center;
  background: var(--card); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 14px;
}
.cart-thumb { height: 56px; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: .75rem; font-weight: 700; background: linear-gradient(120deg, #ffe29a, #ffa99f); color: #14182e; text-align: center; }
.cart-info { min-width: 0; }
.cart-name { color: var(--text); font-weight: 600; display: block; margin-bottom: 4px; }
.cart-line-total { font-weight: 700; }
.cart-summary { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 20px; position: sticky; top: 84px; }
.cart-summary > div, .summary-line { display: flex; justify-content: space-between; padding: 8px 0; }
.cart-summary hr, .summary-line, hr rule { border: none; border-top: 1px solid var(--border); }
.cart-total, .summary-total { display: flex; justify-content: space-between; align-items: center; padding: 14px 0 16px; font-size: 1.15rem; }

/* ---------- Checkout ---------- */
.checkout-layout { display: grid; grid-template-columns: 1fr 330px; gap: 22px; align-items: start; }
.checkout-main { display: flex; flex-direction: column; gap: 20px; }
.checkout-summary { position: sticky; top: 84px; }
.coupon-row { display: flex; gap: 8px; }
.coupon-row input { flex: 1; padding: 10px 12px; border-radius: 10px; border: 1px solid var(--border); background: var(--bg-2); color: var(--text); text-transform: uppercase; }
.coupon-row input:focus { outline: 2px solid var(--primary); }

/* ---------- Payment ---------- */
.sim-box { background: var(--card); border: 1px solid var(--border); border-radius: 18px; padding: 28px; max-width: 720px; margin: 0 auto; display: flex; flex-direction: column; gap: 22px; }
.sim-order { text-align: center; }
.sim-label { color: var(--muted); font-size: .8rem; text-transform: uppercase; letter-spacing: 1px; margin-top: 10px; }
.sim-value { font-weight: 700; }
.sim-value.big { font-size: 1.8rem; color: var(--primary-2); }
.sim-card {
  border: 1px dashed var(--border); border-radius: 14px;
  padding: 16px; font-family: monospace; color: #fff;
  background: linear-gradient(120deg, #2b235e, #161c36);
  display: flex; flex-direction: column; gap: 10px;
}
.sim-card-top, .sim-card-bottom { display: flex; justify-content: space-between; font-size: .85rem; color: var(--muted); }
.sim-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

.iyzico-frame-wrap { background: #fff; border-radius: 16px; padding: 12px; box-shadow: var(--shadow); }
.iyzico-frame { width: 100%; height: 480px; border-radius: 12px; }

/* ---------- Results ---------- */
.result-page { max-width: 720px; margin: 0 auto; text-align: center; display: flex; flex-direction: column; gap: 16px; }
.result-page .panel { text-align: left; }
.result-icon { width: 74px; height: 74px; border-radius: 50%; margin: 0 auto; display: flex; align-items: center; justify-content: center; font-size: 2rem; font-weight: 800; }
.result-icon.ok { background: rgba(47,213,115,.15); color: var(--ok); border: 2px solid var(--ok); }
.result-icon.fail { background: rgba(247,95,95,.15); color: var(--fail); border: 2px solid var(--fail); }
.result-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.key-code { background: var(--bg-2); border: 1px solid var(--border); border-radius: 8px; padding: 5px 9px; font-family: monospace; font-size: .9rem; color: var(--ok); user-select: all; }

/* ---------- Tables ---------- */
.table { width: 100%; border-collapse: collapse; font-size: .92rem; }
.table th { text-align: left; color: var(--muted); font-size: .78rem; text-transform: uppercase; letter-spacing: 1px; padding: 10px 12px; border-bottom: 1px solid var(--border); }
.table td { padding: 11px 12px; border-bottom: 1px solid var(--border); vertical-align: middle; }

/* ---------- Pills / alerts ---------- */
.pill {
  display: inline-block; padding: 3px 10px; border-radius: 99px;
  font-size: .75rem; font-weight: 700; text-transform: capitalize;
  background: var(--card-2); color: var(--muted);
}
.pill.paid, .pill.ok, .pill.available { background: rgba(47,213,115,.15); color: var(--ok); }
.pill.failed, .pill.fail, .pill.cancelled, .pill.used { background: rgba(247,95,95,.15); color: var(--fail); }
.pill.pending { background: rgba(245,183,89,.15); color: var(--warn); }
.pill a { color: inherit; }
.alert { border-radius: 12px; padding: 13px 16px; margin-bottom: 16px; font-size: .92rem; }
.alert-success { background: rgba(47,213,115,.12); border: 1px solid rgba(47,213,115,.4); color: var(--ok); }
.alert-error { background: rgba(247,95,95,.12); border: 1px solid rgba(247,95,95,.4); color: var(--fail); }

/* ---------- Admin ---------- */
.admin-nav { display: flex; gap: 8px; flex-wrap: wrap; }
.admin-nav a { color: var(--muted); padding: 8px 14px; border: 1px solid var(--border); border-radius: 9px; font-size: .88rem; }
.admin-nav a:hover { text-decoration: none; border-color: var(--primary); color: var(--primary-2); }
.admin-nav a.active { background: rgba(124,92,255,.15); border-color: var(--primary); color: #fff; }
.stat-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 14px; margin-bottom: 22px; }
.stat-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 16px 18px; box-shadow: var(--shadow); }
.stat-card span { display: block; color: var(--muted); font-size: .78rem; text-transform: uppercase; letter-spacing: .5px; margin-bottom: 6px; }
.stat-card strong { font-size: 1.4rem; }
.toolbar { display: flex; gap: 10px; margin-bottom: 16px; flex-wrap: wrap; }
.status-tabs { display: flex; gap: 8px; margin-bottom: 16px; flex-wrap: wrap; }
.status-tabs .btn.active { background: var(--card-2); color: #fff; border-color: var(--primary); }

/* ---------- Account ---------- */
.dashboard-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 16px; margin-bottom: 22px; }
.dash-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; color: var(--text); position: relative; overflow: hidden; transition: .15s; }
.dash-card:hover { transform: translateY(-3px); border-color: var(--primary); text-decoration: none; }
.dash-card span { font-size: 1.6rem; }
.dash-card h3 { margin: 10px 0 4px; font-size: 1.05rem; }
.dash-card p { color: var(--muted); font-size: .85rem; }
.profile-rows { display: flex; flex-direction: column; gap: 10px; }
.profile-rows > div { display: flex; justify-content: space-between; }
.order-list { display: flex; flex-direction: column; gap: 12px; }
.order-card { display: grid; grid-template-columns: 1fr auto auto auto; gap: 16px; align-items: center; background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 16px 18px; }
.order-no a { color: var(--text); font-weight: 700; }
.order-total { font-weight: 800; font-size: 1.05rem; }
.order-actions { display: flex; gap: 8px; }
.meta-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 14px; }
.meta-grid > div { display: flex; flex-direction: column; gap: 4px; }
.order-meta { margin-bottom: 20px; }

/* ---------- Misc ---------- */
.empty-state { text-align: center; padding: 60px 20px; background: var(--card); border: 1px dashed var(--border); border-radius: var(--radius); }
.empty-state p { margin-bottom: 14px; color: var(--muted); font-size: 1.05rem; }
.error-page { text-align: center; padding: 60px 0; }
.error-code { font-size: 4.5rem; font-weight: 800; color: var(--primary); opacity: .7; }
.error-page h1 { margin: 8px 0 10px; }
.perks { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 18px; }
.perk { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 22px; }
.perk span { font-size: 1.7rem; }
.perk h3 { margin: 10px 0 4px; font-size: 1rem; }
.perk p { color: var(--muted); font-size: .88rem; }
.containercopyright { text-align: center; color: var(--muted); font-size: .82rem; padding: 14px 0; border-top: 1px solid var(--border); margin-top: 28px; }

/* ---------- Footer ---------- */
.site-footer { border-top: 1px solid var(--border); margin-top: auto; background: rgba(11,14,26,.6); }
.footer-inner { display: flex; justify-content: space-between; align-items: center; gap: 20px; padding: 26px 0; flex-wrap: wrap; }
.footer-links { display: flex; gap: 18px; }
.footer-links a { color: var(--muted); font-size: .9rem; }
.footer-pay { color: var(--muted); font-size: .82rem; border: 1px solid var(--border); padding: 6px 12px; border-radius: 8px; }

/* ---------- Çok yakında & sosyal giriş & staff ---------- */
.coming-soon {
  display: inline-block; font-weight: 700; font-size: .95rem;
  color: var(--warn); letter-spacing: .5px;
  background: rgba(245,183,89,.12); border: 1px solid rgba(245,183,89,.4);
  padding: 5px 12px; border-radius: 99px;
}
.coming-soon-lg { font-size: 1.1rem; }
.coming-soon-box {
  background: rgba(245,183,89,.08); border: 1px dashed rgba(245,183,89,.45);
  border-radius: 12px; padding: 16px; text-align: center;
}
.coming-soon-box p { color: var(--muted); margin-top: 8px; font-size: .88rem; }
.cart-soon { padding: 24px 16px; }

.social-row { display: flex; flex-direction: column; gap: 10px; margin-bottom: 4px; }
.btn-social {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 11px; border-radius: 10px; font-weight: 600; font-size: .92rem;
  border: 1px solid var(--border); color: var(--text); background: var(--bg-2);
  transition: .15s;
}
.btn-social:hover { border-color: var(--primary); color: var(--primary-2); text-decoration: none; }
.btn-social.google { border-color: rgba(66,133,244,.5); }
.btn-social.google:hover { background: rgba(66,133,244,.12); }
.btn-social.discord { border-color: rgba(88,101,242,.5); }
.btn-social.discord:hover { background: rgba(88,101,242,.12); }
.divider { display: flex; align-items: center; gap: 12px; color: var(--muted); font-size: .8rem; margin: 16px 0; }
.divider::before, .divider::after { content: ''; flex: 1; height: 1px; background: var(--border); }
.staff-login-hint { margin-top: 10px; padding-top: 10px; border-top: 1px solid var(--border); }
.staff-card { border-top: 3px solid var(--primary); }
.staff-badge {
  width: fit-content; margin: 0 auto 12px; background: var(--primary);
  color: #fff; font-weight: 800; font-size: .75rem; letter-spacing: 2px;
  padding: 5px 16px; border-radius: 99px;
}
.inline-form { display: flex; gap: 6px; margin-top: 6px; }
.inline-form input { width: 140px; padding: 7px 9px; border-radius: 8px; border: 1px solid var(--border); background: var(--bg-2); color: var(--text); }
.inline-details summary { cursor: pointer; list-style: none; }

/* ---------- Ürün görselleri ---------- */
.product-card-head { position: relative; overflow: hidden; height: 74px; }
.product-card-head.has-img { height: 150px; }
.card-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.product-card-head .product-cat { position: relative; z-index: 1; }
.thumb { width: 40px; height: 40px; object-fit: cover; border-radius: 8px; vertical-align: middle; margin-right: 8px; }
.img-preview { margin-top: 8px; }
.img-preview img { max-width: 160px; max-height: 160px; border-radius: 10px; display: block; margin-bottom: 6px; }
.product-cover.cover-has { height: 260px; }
.cover-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }

/* ---------- Responsive ---------- */
@media (max-width: 860px) {
  .product-page, .checkout-layout, .cart-wrap, .layout { grid-template-columns: 1fr; }
  .product-cover { height: 200px; }
  .order-card { grid-template-columns: 1fr auto; }
  .header-inner { flex-wrap: wrap; height: auto; padding: 12px 0; gap: 12px; }
  .nav { order: 3; width: 100%; }
  .form-row { grid-template-columns: 1fr; }
}