:root {
  --orange: #ff6b35;
  --blue: #2563eb;
  --ink: #1e2430;
  --muted: #6b7280;
  --line: #e5e7eb;
  --bg: #f6f7f9;
  --card: #ffffff;
  --ok-bg: #fff1ea;
  --radius: 16px;
  --shadow: 0 1px 2px rgba(30, 36, 48, .06), 0 8px 24px rgba(30, 36, 48, .07);
}

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

html, body { height: 100%; }

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

.wrap { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

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

.topbar {
  background: var(--card);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 50;
}

.topbar-in {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 60px;
  flex-wrap: wrap;
  padding-top: 8px;
  padding-bottom: 8px;
}

.logo {
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -.4px;
  color: var(--ink);
}
.logo span { color: var(--orange); }
.logo:hover { text-decoration: none; }

.topnav { display: flex; gap: 6px; flex-wrap: wrap; }

.topnav a {
  padding: 8px 14px;
  border-radius: 10px;
  color: var(--muted);
  font-weight: 600;
  font-size: 14px;
}
.topnav a:hover { background: var(--bg); color: var(--ink); text-decoration: none; }
.topnav a.active { background: var(--blue); color: #fff; }

.page-title { margin: 28px 0 6px; font-size: clamp(24px, 4vw, 34px); letter-spacing: -.5px; }
.page-sub { color: var(--muted); margin-bottom: 24px; }

.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 20px;
  margin-bottom: 20px;
}

.order-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}

.order-id { font-weight: 800; font-size: 18px; }
.order-meta { color: var(--muted); font-size: 13px; }

.badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
}
.badge.blue { background: #eaf1fe; color: var(--blue); }
.badge.orange { background: var(--ok-bg); color: var(--orange); }
.badge.gray { background: #eef0f3; color: var(--muted); }
.badge.red { background: #fdecec; color: #d92d20; }

.order-grid { display: grid; grid-template-columns: 1fr; gap: 20px; }

.sumlines { border-top: 1px dashed var(--line); margin-top: 14px; padding-top: 12px; }
.sumline {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 14px;
  padding: 3px 0;
}
.sumline .name { color: var(--ink); }
.sumline.delivery .name::before { content: '🚚 '; }
.sumline.total { font-weight: 800; font-size: 16px; border-top: 1px solid var(--line); margin-top: 8px; padding-top: 10px; }
.sumline.total .val { color: var(--orange); }

.tracker { margin: 6px 0 2px; }

.tracker-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2px;
}

.t-step { display: flex; flex-direction: column; align-items: center; gap: 6px; min-width: 44px; }

.t-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  background: #eef0f3;
  color: #9aa1ad;
  border: 2px solid transparent;
  transition: all .25s ease;
  flex: none;
}

.t-label { font-size: 11px; color: var(--muted); text-align: center; line-height: 1.2; max-width: 72px; }

.t-step.done .t-icon { background: var(--orange); color: #fff; box-shadow: 0 4px 10px rgba(255, 107, 53, .35); }
.t-step.done .t-label { color: var(--orange); font-weight: 700; }

.t-step.current .t-icon {
  background: var(--blue);
  color: #fff;
  animation: pulse 1.8s infinite;
}
.t-step.current .t-label { color: var(--blue); font-weight: 800; }

.t-step.cancelled .t-icon { background: #d92d20; color: #fff; }
.t-step.cancelled .t-label { color: #d92d20; font-weight: 700; }

@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(37, 99, 235, .45); }
  70%  { box-shadow: 0 0 0 14px rgba(37, 99, 235, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 99, 235, 0); }
}

.t-arrow {
  flex: 1;
  height: 3px;
  border-radius: 3px;
  background: var(--line);
  margin-top: 19px;
  min-width: 8px;
  position: relative;
}
.t-arrow.passed { background: var(--orange); }

.t-current-info {
  margin-top: 14px;
  background: #eaf1fe;
  border-radius: 12px;
  padding: 10px 14px;
  font-size: 13.5px;
  display: flex;
  gap: 14px;
  align-items: baseline;
  flex-wrap: wrap;
}
.t-current-info .t-date { color: var(--blue); font-weight: 700; white-space: nowrap; }
.t-current-info.cancelled { background: #fdecec; color: #b42318; }

.tracker.compact .t-current-info { margin-top: 10px; }

.actions { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 16px; }

.btn {
  appearance: none;
  border: none;
  cursor: pointer;
  font: inherit;
  font-weight: 700;
  font-size: 14px;
  padding: 10px 18px;
  border-radius: 12px;
  background: var(--blue);
  color: #fff;
  transition: transform .06s ease, opacity .15s ease;
}
.btn:hover { opacity: .92; }
.btn:active { transform: scale(.98); }

.btn.orange { background: var(--orange); }
.btn.ghost { background: transparent; color: var(--blue); border: 1.5px solid var(--blue); }
.btn.danger-ghost { background: transparent; color: #d92d20; border: 1.5px solid #f4b6b1; }
.btn.small { padding: 7px 13px; font-size: 13px; border-radius: 10px; }
.btn:disabled { opacity: .45; cursor: not-allowed; }

.hint {
  margin-top: 14px;
  font-size: 13.5px;
  color: #8a5300;
  background: #fff7e8;
  border: 1px solid #ffe3ad;
  border-radius: 12px;
  padding: 10px 14px;
}
.hint b { color: #8a5300; }

.track-box {
  display: none;
  margin-top: 12px;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
  background: var(--bg);
  border: 1px dashed var(--line);
  border-radius: 12px;
  padding: 12px;
}
.track-box.open { display: flex; }
.track-box input {
  font: inherit;
  padding: 9px 12px;
  border-radius: 10px;
  border: 1.5px solid var(--line);
  min-width: 220px;
  flex: 1;
}
.track-box input:focus { outline: none; border-color: var(--blue); }
.track-error { color: #d92d20; font-size: 13px; width: 100%; display: none; }
.track-error.show { display: block; }

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 10px;
  margin-top: 14px;
}

.stat-chip {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 10px 12px;
}
.stat-chip .num { font-size: 22px; font-weight: 800; }
.stat-chip .cap { font-size: 12px; color: var(--muted); }
.stat-chip.hl .num { color: var(--orange); }
.stat-chip.blue .num { color: var(--blue); }

.stat-bar { height: 6px; border-radius: 6px; background: var(--line); overflow: hidden; margin-top: 6px; }
.stat-bar i { display: block; height: 100%; background: var(--blue); }

.legend { display: flex; gap: 18px; flex-wrap: wrap; margin-top: 16px; font-size: 13px; color: var(--muted); }
.legend i {
  display: inline-block;
  width: 14px; height: 14px;
  border-radius: 50%;
  vertical-align: -2px;
  margin-right: 6px;
}
.legend .l-done i { background: var(--orange); }
.legend .l-cur i { background: var(--blue); }
.legend .l-fut i { background: #eef0f3; border: 1px solid var(--line); }

.hero {
  padding: 56px 0 40px;
  background:
    radial-gradient(600px 300px at 85% -10%, rgba(255, 107, 53, .14), transparent),
    radial-gradient(600px 300px at 10% 110%, rgba(37, 99, 235, .10), transparent);
}

.hero h1 { font-size: clamp(28px, 5vw, 46px); letter-spacing: -1px; line-height: 1.15; max-width: 720px; }
.hero h1 em { font-style: normal; color: var(--orange); }
.hero p.sub { margin: 14px 0 24px; color: var(--muted); font-size: 17px; max-width: 640px; }

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 7px 14px;
  font-size: 13.5px;
  font-weight: 700;
  margin-bottom: 18px;
}
.pill .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--orange); }

.section-title { font-size: clamp(20px, 3vw, 26px); letter-spacing: -.4px; margin: 34px 0 6px; }
.section-sub { color: var(--muted); margin-bottom: 18px; }

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  margin: 20px 0 40px;
}
.feature { padding: 18px; }
.feature .big { font-size: 26px; font-weight: 800; color: var(--blue); }
.feature .big.o { color: var(--orange); }
.feature p { color: var(--muted); font-size: 14px; margin-top: 4px; }

footer {
  border-top: 1px solid var(--line);
  margin-top: 40px;
  padding: 22px 0 34px;
  color: var(--muted);
  font-size: 13.5px;
}
.foot-in { display: flex; justify-content: space-between; gap: 14px; flex-wrap: wrap; align-items: center; }

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(30, 36, 48, .45);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100;
  padding: 16px;
}
.modal {
  background: var(--card);
  border-radius: var(--radius);
  max-width: 520px;
  width: 100%;
  padding: 24px;
  box-shadow: 0 24px 64px rgba(30, 36, 48, .25);
  max-height: 90vh;
  overflow: auto;
}
.modal h3 { font-size: 19px; margin-bottom: 10px; }
.modal .refund-big {
  font-size: 32px;
  font-weight: 800;
  color: var(--orange);
  margin: 10px 0;
}
.modal p { color: var(--muted); font-size: 14.5px; }
.modal .actions { justify-content: flex-end; }

.qr-wrap { display: flex; gap: 18px; align-items: flex-start; flex-wrap: wrap; }
.qr-svg { width: 168px; height: 168px; border: 1px solid var(--line); border-radius: 12px; padding: 8px; background: #fff; flex: none; }
.qr-facts { font-size: 14px; }
.qr-facts div { padding: 4px 0; border-bottom: 1px dashed var(--line); }
.qr-facts b { color: var(--ink); }

.stars { display: flex; gap: 4px; font-size: 30px; cursor: pointer; user-select: none; margin: 8px 0 12px; }
.stars span { color: #d7dbe2; transition: color .15s; }
.stars span.on { color: var(--orange); }
.review-text {
  width: 100%;
  min-height: 90px;
  font: inherit;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1.5px solid var(--line);
  resize: vertical;
}
.review-text:focus { outline: none; border-color: var(--blue); }

#toast {
  position: fixed;
  left: 50%;
  bottom: 26px;
  transform: translateX(-50%) translateY(20px);
  background: var(--ink);
  color: #fff;
  padding: 11px 20px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  opacity: 0;
  pointer-events: none;
  transition: all .25s ease;
  z-index: 200;
  max-width: 90vw;
}
#toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

.empty { color: var(--muted); text-align: center; padding: 40px 0; }

@media (max-width: 768px) {
  .t-icon { width: 34px; height: 34px; font-size: 15px; }
  .t-arrow { margin-top: 16px; }
  .t-label { font-size: 10px; max-width: 58px; }
  .hero { padding: 36px 0 28px; }
  .order-grid { gap: 14px; }
}

@media (max-width: 480px) {
  .wrap { padding: 0 14px; }
  .t-icon { width: 30px; height: 30px; font-size: 13px; }
  .t-arrow { margin-top: 14px; min-width: 5px; }
  .t-label { font-size: 9px; max-width: 52px; }
  .tracker-row { gap: 1px; }
  .card { padding: 15px; border-radius: 14px; }
  .btn { width: 100%; }
  .actions .btn { width: auto; flex: 1 1 auto; }
  .track-box input { min-width: 0; width: 100%; }
  .topnav a { padding: 7px 10px; font-size: 13px; }
}

@media (min-width: 1440px) {
  .wrap { max-width: 1280px; }
}

.kicker {
  display: inline-block;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--blue);
  background: #eaf1fe;
  border-radius: 999px;
  padding: 6px 14px;
  margin-bottom: 16px;
}

.trust-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  align-items: center;
  margin-top: 26px;
  padding: 14px 18px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow);
  font-size: 14px;
  font-weight: 600;
  max-width: fit-content;
}
.trust-bar i { color: var(--orange); font-style: normal; }

.family-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  margin-bottom: 40px;
}
.f-card { text-align: left; margin-bottom: 0; }
.f-ava {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--ok-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 12px;
}
.f-card h3 { font-size: 19px; }
.f-role { color: var(--blue); font-weight: 700; font-size: 13.5px; margin: 2px 0 8px; }
.f-card p { color: var(--muted); font-size: 14.5px; }

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 16px;
  margin-bottom: 40px;
}
.shop-card { margin-bottom: 0; display: flex; flex-direction: column; gap: 8px; }
.shop-card.dashed {
  border-style: dashed;
  box-shadow: none;
  justify-content: center;
  align-items: flex-start;
  opacity: .85;
}
.shop-top { display: flex; justify-content: space-between; align-items: center; gap: 10px; flex-wrap: wrap; }
.shop-top h3 { font-size: 18px; }
.shop-meta { color: var(--muted); font-size: 14px; }
.shop-stats { font-weight: 700; font-size: 14px; }
.shop-card .btn { margin-top: auto; align-self: flex-start; }

.rules-list { display: grid; gap: 10px; margin-bottom: 40px; }
.rule {
  background: var(--card);
  border: 1px solid var(--line);
  border-left: 4px solid var(--orange);
  border-radius: 12px;
  padding: 13px 16px;
  font-size: 15px;
  box-shadow: var(--shadow);
}

.form-card { max-width: 760px; }
.form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
  margin-bottom: 14px;
}
.field { display: flex; flex-direction: column; gap: 6px; }
.field span { font-size: 13px; font-weight: 700; color: var(--muted); }
.field input, .field select {
  font: inherit;
  padding: 11px 13px;
  border-radius: 12px;
  border: 1.5px solid var(--line);
  background: #fff;
  width: 100%;
}
.field input:focus, .field select:focus { outline: none; border-color: var(--blue); }
.consent {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 13.5px;
  color: var(--muted);
  margin-bottom: 6px;
}
.consent input { margin-top: 3px; accent-color: var(--blue); }
.form-error { color: #d92d20; font-size: 13.5px; min-height: 20px; font-weight: 600; }
.form-success { text-align: center; padding: 24px 8px; }
.form-success .fs-icon { font-size: 44px; margin-bottom: 8px; }
.form-success h3 { font-size: 20px; color: var(--ink); }
.form-success p { color: var(--muted); margin-top: 4px; }

.foot-slogan { font-weight: 800; font-size: 15px; color: var(--ink); }
.foot-legal { font-size: 13px; margin-top: 2px; }
.foot-links { display: flex; gap: 16px; flex-wrap: wrap; }

@media (max-width: 480px) {
  .trust-bar { max-width: none; }
  .actions .btn { flex: 1 1 100%; }
}

.demo-badge {
  position: fixed;
  top: 70px;
  right: 14px;
  z-index: 90;
  background: #fff7e8;
  color: #8a5300;
  border: 1px solid #ffe3ad;
  border-radius: 999px;
  padding: 5px 12px;
  font-size: 12px;
  font-weight: 800;
}

.tbl-wrap { overflow-x: auto; }
table.tbl { width: 100%; border-collapse: collapse; font-size: 14px; }
.tbl th {
  text-align: left;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--muted);
  padding: 10px 12px;
  border-bottom: 2px solid var(--line);
  white-space: nowrap;
}
.tbl td { padding: 12px; border-bottom: 1px solid var(--line); vertical-align: top; }
.tbl tbody tr { cursor: pointer; transition: background .12s ease; }
.tbl tbody tr:hover { background: #f0f4ff; }
.tbl .oid { font-weight: 800; color: var(--blue); white-space: nowrap; }
.tbl .sub { display: block; color: var(--muted); font-size: 12px; margin-top: 2px; }
.tbl td.num, .tbl th.num { text-align: right; white-space: nowrap; }

.chips { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 16px; align-items: center; }
.chip {
  border: 1.5px solid var(--line);
  background: var(--card);
  border-radius: 999px;
  padding: 7px 14px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  color: var(--muted);
}
.chip:hover { border-color: var(--blue); color: var(--blue); }
.chip.on { background: var(--blue); border-color: var(--blue); color: #fff; }
.search-input {
  font: inherit;
  padding: 9px 13px;
  border-radius: 999px;
  border: 1.5px solid var(--line);
  min-width: 220px;
}
.search-input:focus { outline: none; border-color: var(--blue); }

.radio-cards { display: grid; gap: 10px; margin-top: 12px; }
.radio-card {
  display: flex;
  gap: 12px;
  align-items: center;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  padding: 12px 14px;
  cursor: pointer;
  transition: border-color .15s ease, background .15s ease;
}
.radio-card:hover { border-color: var(--blue); }
.radio-card.on { border-color: var(--blue); background: #eaf1fe; }
.radio-card input { accent-color: var(--blue); width: 18px; height: 18px; flex: none; }
.rc-name { font-weight: 800; }
.rc-meta { color: var(--muted); font-size: 13px; }
.rc-price { margin-left: auto; font-weight: 800; color: var(--orange); white-space: nowrap; }

.cart-list { display: grid; gap: 10px; margin: 12px 0; }
.cart-item {
  display: flex;
  gap: 12px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 10px 14px;
  flex-wrap: wrap;
}
.cart-item .ci-name { font-weight: 600; flex: 1 1 240px; }
.cart-item .ci-frag { font-size: 12px; color: #8a5300; background: #fff7e8; border-radius: 999px; padding: 3px 10px; font-weight: 700; }
.ci-qty { display: flex; align-items: center; gap: 8px; }
.ci-qty button {
  width: 28px; height: 28px;
  border-radius: 8px;
  border: 1.5px solid var(--line);
  background: #fff;
  font-weight: 800;
  cursor: pointer;
}
.ci-price { font-weight: 800; min-width: 90px; text-align: right; }
.ci-del { background: none; border: none; color: #d92d20; font-size: 18px; cursor: pointer; }

.info-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 14px; margin: 16px 0; }
.info-card { background: var(--bg); border: 1px solid var(--line); border-radius: 12px; padding: 14px 16px; }
.info-card h4 { font-size: 12px; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); margin-bottom: 8px; }
.info-card div { padding: 3px 0; font-size: 14.5px; }
.info-card b { font-weight: 700; }

.frag-note {
  background: #fff7e8;
  border: 1px solid #ffe3ad;
  border-left: 4px solid var(--orange);
  border-radius: 12px;
  padding: 12px 16px;
  font-size: 14px;
  margin: 14px 0;
}

/* ================= APPLY-10: витрины селлеров, поиск, ЛК ================= */

/* ——— поиск в hero + пилюли категорий ——— */
.hero-search {
  display: flex; gap: 10px; max-width: 640px; margin: 22px auto 0;
}
.hero-search .search-input { flex: 1; border-radius: 14px; padding: 14px 18px; font-size: 16px; }
.pills { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin-top: 14px; }
.pill {
  border: 1px solid var(--line); background: var(--card); color: var(--ink);
  border-radius: 999px; padding: 7px 14px; font-size: 13.5px; cursor: pointer;
  transition: all .15s ease;
}
.pill:hover { border-color: var(--orange); color: var(--orange); }
.pill.on { background: var(--orange); border-color: var(--orange); color: #fff; }

/* ——— карточка товара ——— */
.product-card { padding: 0; overflow: hidden; display: flex; flex-direction: column; }
.pc-photo { width: 100%; height: 170px; object-fit: cover; display: block; background: #eef1f4; }
.pc-body { padding: 14px 16px 16px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.pc-cat { align-self: flex-start; }
.pc-title { margin: 0; font-size: 16.5px; line-height: 1.3; }
.pc-desc { margin: 0; color: var(--muted); font-size: 13.5px; line-height: 1.45; }
.pc-foot { display: flex; align-items: center; justify-content: space-between; margin-top: auto; padding-top: 6px; }
.pc-price { font-size: 18px; }

/* ——— страница результатов поиска ——— */
.result-row {
  display: grid; grid-template-columns: 84px 1fr auto; gap: 14px; align-items: center;
  background: var(--card); border: 1px solid var(--line); border-radius: 14px;
  padding: 12px 16px; cursor: pointer; transition: border-color .15s ease;
}
.result-row:hover { border-color: var(--orange); }
.result-row + .result-row { margin-top: 10px; }
.rr-photo { width: 84px; height: 64px; object-fit: cover; border-radius: 10px; background: #eef1f4; }
.rr-title { font-weight: 700; font-size: 15px; }
.rr-meta { color: var(--muted); font-size: 13px; margin-top: 2px; }
.rr-meta b { color: var(--ink); }
.rr-price { text-align: right; }
.rr-price b { font-size: 17px; white-space: nowrap; }
.rr-price .sub { display: block; color: var(--muted); font-size: 12px; margin-top: 2px; }

/* ——— витрина цеха ——— */
.shop-hero {
  background: linear-gradient(120deg, #16233a, #24365c);
  color: #fff; padding: 34px 0 30px;
}
.shop-hero .wrap { display: flex; gap: 20px; align-items: center; }
.shop-logo {
  width: 84px; height: 84px; border-radius: 20px; object-fit: cover;
  border: 2px solid rgba(255,255,255,.25); background: #fff2;
}
.shop-hero h1 { margin: 0 0 6px; font-size: 28px; }
.shop-hero .sh-sub { opacity: .85; font-size: 15px; max-width: 720px; }
.shop-hero .sh-stats { display: flex; gap: 14px; margin-top: 10px; font-size: 14px; flex-wrap: wrap; }
.shop-hero .stars { color: #ffc24b; letter-spacing: 2px; }
.sh-badge { background: rgba(255,255,255,.14); border-radius: 999px; padding: 4px 12px; }

.about-grid { display: grid; grid-template-columns: 1.6fr 1fr; gap: 18px; }
@media (max-width: 800px) { .about-grid { grid-template-columns: 1fr; } }
.cert-list { list-style: none; margin: 8px 0 0; padding: 0; }
.cert-list li { padding: 7px 0; border-bottom: 1px dashed var(--line); font-size: 14px; }
.cert-list li:last-child { border-bottom: none; }
.cert-list a { color: var(--blue); text-decoration: none; }
.review-card { border-top: 3px solid var(--orange); }
.review-head { display: flex; justify-content: space-between; align-items: baseline; gap: 10px; }
.review-author { font-weight: 700; }
.review-date { color: var(--muted); font-size: 12.5px; }
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 16px; }
.contact-line { display: flex; gap: 10px; padding: 6px 0; font-size: 14.5px; align-items: baseline; }
.contact-line i { font-style: normal; width: 22px; text-align: center; }
.shop-footer {
  border-top: 1px solid var(--line); background: var(--card);
  padding: 18px 0; margin-top: 40px;
}
.shop-footer .foot-in { display: flex; justify-content: space-between; gap: 14px; flex-wrap: wrap; font-size: 13.5px; color: var(--muted); }
.shop-footer a { color: var(--blue); text-decoration: none; }

/* ——— ЛК селлера ——— */
.tabs { display: flex; gap: 6px; flex-wrap: wrap; margin: 18px 0; }
.tab {
  border: 1px solid var(--line); background: var(--card); border-radius: 999px;
  padding: 9px 18px; font-size: 14px; cursor: pointer; color: var(--ink);
}
.tab.on { background: var(--ink); border-color: var(--ink); color: #fff; }
.tabpane[hidden] { display: none; }
.login-box { max-width: 420px; margin: 60px auto; }
.stat-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 12px; margin: 14px 0; }
.stat-card { background: var(--card); border: 1px solid var(--line); border-radius: 14px; padding: 14px 16px; }
.stat-card .sc-val { font-size: 22px; font-weight: 800; }
.stat-card .sc-cap { color: var(--muted); font-size: 12.5px; margin-top: 2px; }
.form-inline { display: flex; gap: 10px; align-items: end; flex-wrap: wrap; }
.frag-block {
  border: 1px dashed var(--orange); background: #fff7e8; border-radius: 12px;
  padding: 12px 14px; margin: 10px 0;
}
.frag-block[hidden] { display: none; }
.vasya-tip {
  background: #eef4ff; border-left: 4px solid var(--blue); border-radius: 12px;
  padding: 10px 14px; font-size: 14px; margin: 8px 0;
}
.pending-card { border-left: 4px solid var(--orange); }
.moder-actions { display: flex; gap: 8px; margin-top: 10px; }