/* ============================================================================
   ГикСтор — flat dark storefront (Unlock-style)
   Плоско, чисто, без градиентов/глоу/сетки. Центрированная колонка.
   ========================================================================== */

:root{
  /* surfaces */
  --bg:#0d0f14;
  --bg-2:#11141a;
  --surface:#161a21;
  --surface-2:#1b1f28;
  --surface-3:#222731;
  --line:rgba(255,255,255,.08);
  --line-2:rgba(255,255,255,.15);

  /* text */
  --text:#e9ecf1;
  --muted:#99a0ac;
  --muted-2:#6b7280;

  /* accent */
  --brand:#2f6bff;            /* PlayStation-синий, только для иконок */
  --accent:#f5b73d;           /* янтарный CTA / активные элементы */
  --accent-2:#eaa726;
  --accent-ink:#1c1305;
  --ok:#37c172;
  --danger:#ff6b6b;

  --radius:14px;
  --radius-sm:10px;
  --radius-lg:18px;
  --maxw:1080px;
  --content:960px;            /* единая (широкая) ширина колонки контента на ВСЕХ страницах */
  --content-narrow:480px;     /* для форм-карточек, центрируются внутри --content */
  --ease:cubic-bezier(.2,.6,.2,1);
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:"Manrope",-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  background:var(--bg);
  color:var(--text);
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
}
a{color:inherit;text-decoration:none}
img{max-width:100%;display:block}
h1,h2,h3,h4{font-family:inherit;font-weight:700;line-height:1.2;letter-spacing:-.01em;margin:0}
::selection{background:rgba(245,183,61,.28);color:#fff}

.container{max-width:var(--maxw);margin:0 auto;padding:0 24px;width:100%}

a:focus-visible,button:focus-visible,input:focus-visible,summary:focus-visible{
  outline:2px solid var(--accent);outline-offset:2px;border-radius:6px;
}

/* ── Buttons ──────────────────────────────────────────────────────────── */
.btn{
  display:inline-flex;align-items:center;justify-content:center;gap:8px;
  background:var(--accent);color:var(--accent-ink);
  font-weight:700;font-size:15px;font-family:inherit;
  padding:13px 24px;border:0;border-radius:10px;cursor:pointer;white-space:nowrap;
  transition:background .15s var(--ease),transform .08s var(--ease);
}
.btn:hover{background:#ffc451}
.btn:active{transform:translateY(1px)}
.btn-block{display:flex;width:100%}
.btn-ghost{background:var(--surface-2);color:var(--text);border:1px solid var(--line-2)}
.btn-ghost:hover{background:var(--surface-3)}

/* ── Header ───────────────────────────────────────────────────────────── */
.site-header{
  position:sticky;top:0;z-index:50;
  display:flex;align-items:center;justify-content:space-between;
  padding:14px 24px;
  background:rgba(13,15,20,.85);
  backdrop-filter:blur(10px);-webkit-backdrop-filter:blur(10px);
  border-bottom:1px solid var(--line);
}
.site-header .logo{display:flex;align-items:center}
.site-header .logo img{height:34px;width:auto}
.logo-text{font-weight:800;font-size:21px;letter-spacing:-.02em;color:var(--text)}
.site-header nav{display:flex;gap:26px}
.site-header nav a{color:var(--muted);font-weight:600;font-size:15px;transition:color .15s}
.site-header nav a:hover{color:var(--text)}

/* ── Store layout ─────────────────────────────────────────────────────── */
.store{padding:34px 0 70px}
.store-inner{max-width:var(--content);margin:0 auto}

/* шапка-товар */
.ps-head{display:flex;align-items:center;gap:18px;margin-bottom:18px}
.ps-head-icon{
  width:76px;height:76px;border-radius:18px;flex:none;
  display:flex;align-items:center;justify-content:center;
  background:linear-gradient(160deg,#1c4cff,#0a2a9e);
  border:1px solid rgba(255,255,255,.12);
}
.ps-head-icon img{height:38px;width:auto;filter:brightness(0) invert(1)}
.ps-head-title{font-size:clamp(26px,4vw,34px);font-weight:800;margin-bottom:10px}
.ps-badges{display:flex;flex-wrap:wrap;gap:10px}
.badge{
  display:inline-flex;align-items:center;gap:7px;
  font-weight:600;font-size:13px;padding:6px 12px;border-radius:8px;
  border:1px solid transparent;
}
.badge svg{width:15px;height:15px;flex:none}
.badge-ok{background:rgba(55,193,114,.12);color:#5fd793;border-color:rgba(55,193,114,.28)}
.badge-zap{background:rgba(245,183,61,.12);color:var(--accent);border-color:rgba(245,183,61,.30)}

.ps-intro{
  color:var(--muted);font-size:15px;line-height:1.7;margin:0 0 14px;
  padding-bottom:26px;border-bottom:1px solid var(--line);max-width:74ch;
}

/* ── Store blocks ─────────────────────────────────────────────────────── */
.store-block{padding-top:30px}
.block-label{font-size:18px;font-weight:700;margin-bottom:16px}
.region-panel .block-label{margin-top:24px}

/* пилюли регионов */
.region-pills{display:flex;flex-wrap:wrap;gap:10px;margin-bottom:6px}
.region-pill{
  display:inline-flex;align-items:center;gap:9px;
  padding:10px 18px;border-radius:10px;cursor:pointer;
  background:var(--surface);border:1px solid var(--line);
  color:var(--text);font-family:inherit;font-weight:600;font-size:15px;
  transition:border-color .15s,background .15s;
}
.region-pill:hover{background:var(--surface-2)}
.region-pill.active{border-color:var(--accent);background:var(--surface-2)}
.pill-flag{width:22px;height:15px;border-radius:3px;object-fit:cover;display:block;
  box-shadow:0 0 0 1px rgba(255,255,255,.14)}

/* панель региона */
.region-panel{display:none}
.region-panel.active{display:block}
.region-desc{
  color:var(--muted);font-size:14.5px;line-height:1.7;margin:18px 0 4px;
  max-width:72ch;
}

/* сетка номиналов */
.nom-grid{display:grid;grid-template-columns:1fr 1fr;gap:12px}
.nom-card{
  display:flex;align-items:center;gap:14px;
  background:var(--surface);border:1px solid var(--line);border-radius:12px;
  padding:14px 16px;transition:border-color .15s,background .15s;
}
.nom-card:hover{border-color:var(--line-2);background:var(--surface-2)}
.nom-card-icon{
  width:46px;height:46px;border-radius:10px;flex:none;
  display:flex;align-items:center;justify-content:center;
  background:linear-gradient(160deg,#1c4cff,#0a2a9e);
}
.nom-card-icon img{height:20px;width:auto;filter:brightness(0) invert(1)}
.nom-card-body{display:flex;flex-direction:column;min-width:0;flex:1}
.nom-card-title{font-weight:700;font-size:16px;overflow-wrap:anywhere}
.nom-card-sub{color:var(--muted-2);font-size:13px}
.nom-card-right{display:flex;flex-direction:column;align-items:flex-end;gap:2px;flex:none}
.nom-card-price{font-weight:800;font-size:18px;white-space:nowrap}
.nom-card-price span{color:var(--muted);font-weight:600;font-size:14px}
.nom-card-cta{color:var(--accent);font-weight:700;font-size:12.5px;opacity:.85;transition:opacity .15s}
.nom-card:hover .nom-card-cta{opacity:1}
.empty-state{text-align:center;color:var(--muted);padding:46px 0}

/* ── Tabs Инструкция / FAQ ────────────────────────────────────────────── */
.info-tabs{display:flex;gap:26px;border-bottom:1px solid var(--line);margin-bottom:22px}
.info-tab{
  background:none;border:0;cursor:pointer;font-family:inherit;
  color:var(--muted);font-weight:700;font-size:16px;padding:0 0 12px;
  border-bottom:2px solid transparent;margin-bottom:-1px;transition:color .15s;
}
.info-tab:hover{color:var(--text)}
.info-tab.active{color:var(--text);border-bottom-color:var(--accent)}
.info-panel{display:none}
.info-panel.active{display:block}

.instr-title{font-size:15px;font-weight:700;margin:20px 0 10px}
.instr-title:first-child{margin-top:0}
.instr-steps{margin:0;padding-left:20px;color:#cdd2db;line-height:1.8}
.instr-steps li{margin-bottom:6px;overflow-wrap:anywhere}
.instr-steps a,.instr-note a{color:var(--accent);text-decoration:underline;overflow-wrap:anywhere}
.instr-note{color:#cdd2db;font-size:14px;line-height:1.6;margin:8px 0 0;
  padding:12px 14px;background:rgba(245,183,61,.07);border:1px solid rgba(245,183,61,.22);
  border-radius:10px;overflow-wrap:anywhere}
.instr-foot{color:var(--muted-2);font-size:13px;margin-top:22px;padding-top:16px;border-top:1px solid var(--line)}

/* ── FAQ ──────────────────────────────────────────────────────────────── */
.faq-list{display:flex;flex-direction:column;gap:10px}
.faq-list details{background:var(--surface);border:1px solid var(--line);border-radius:var(--radius-sm);overflow:hidden}
.faq-list details[open]{border-color:var(--line-2)}
.faq-list summary{
  list-style:none;cursor:pointer;padding:16px 18px;font-weight:600;font-size:15.5px;
  display:flex;align-items:center;justify-content:space-between;gap:16px;
}
.faq-list summary::-webkit-details-marker{display:none}
.faq-list summary::after{content:"+";font-size:22px;font-weight:400;color:var(--muted);transition:transform .2s var(--ease);line-height:1}
.faq-list details[open] summary::after{transform:rotate(45deg)}
.faq-body{padding:0 18px 18px;color:var(--muted);font-size:14.5px;line-height:1.65}
.faq-body a{color:var(--accent);text-decoration:underline}

/* ── Sections (страница товара/заказа) ────────────────────────────────── */
.section{padding:42px 0}

/* ── Product / checkout page ──────────────────────────────────────────── */
.checkout-wrap{max-width:var(--content);margin:0 auto;display:flex;flex-direction:column;gap:20px}
.breadcrumb,.checkout-wrap nav[aria-label]{font-size:14px;color:var(--muted)}
.checkout-wrap nav[aria-label] a:hover{color:var(--text)}

.product-card{
  grid-column:1/-1;display:grid;grid-template-columns:200px 1fr;gap:24px;
  background:var(--surface);border:1px solid var(--line);border-radius:var(--radius);padding:22px;
}
.product-card-media{aspect-ratio:1/1;border-radius:12px;overflow:hidden;position:relative;
  display:flex;align-items:center;justify-content:center;
  background:linear-gradient(160deg,#1c4cff,#0a2a9e)}
.product-card-media img{width:100%;height:100%;object-fit:cover}
.product-card-media img.ps-logo-big{width:auto;height:54px;object-fit:contain;filter:brightness(0) invert(1)}
.product-card-flag{position:absolute;bottom:10px;right:10px;width:auto;height:26px;
  border-radius:4px;object-fit:cover;box-shadow:0 2px 8px rgba(0,0,0,.45),0 0 0 1px rgba(255,255,255,.25)}
.product-card-info{display:flex;flex-direction:column;gap:12px}
.product-title{font-size:clamp(20px,3vw,26px)}
.product-region{align-self:flex-start;background:var(--surface-2);border:1px solid var(--line-2);
  color:var(--text);font-weight:600;font-size:12px;padding:5px 11px;border-radius:8px}
.product-desc{color:var(--muted);font-size:14.5px;margin:0;overflow-wrap:anywhere;line-height:1.7}
.product-price-row{margin-top:auto;padding-top:6px}
.product-price{font-size:30px;font-weight:800}
.product-price span{font-size:18px;color:var(--muted);font-weight:600}

/* thumb (заглушка карты на странице товара) */
.thumb{position:relative;overflow:hidden;display:block;background:linear-gradient(160deg,#1c4cff,#0a2a9e)}
.thumb img{width:100%;height:100%;object-fit:cover}
.thumb.brand-nintendo{background:linear-gradient(160deg,#e60012,#7a0a12)}
.thumb.brand-xbox{background:linear-gradient(160deg,#107c10,#0a3d12)}
.thumb-content{position:absolute;inset:0;display:flex;flex-direction:column;justify-content:space-between;padding:14px;z-index:2}
.thumb-top{display:flex;align-items:center;justify-content:space-between;gap:8px}
.thumb-platform{display:inline-flex;align-items:center;gap:6px;background:rgba(0,0,0,.32);
  border:1px solid rgba(255,255,255,.2);color:#fff;font-weight:600;font-size:12px;padding:5px 10px;border-radius:8px}
.thumb-platform svg{width:14px;height:14px}
.plat-logo{height:14px;width:auto;display:inline-block;vertical-align:middle;filter:brightness(0) invert(1)}
.thumb-region{background:var(--accent);color:var(--accent-ink);font-weight:700;font-size:11px;
  letter-spacing:.04em;padding:4px 8px;border-radius:6px}
.thumb-stamp{align-self:flex-start;margin-top:auto;border:1.5px dashed rgba(255,255,255,.4);
  border-radius:9px;padding:8px 12px;color:#fff;font-weight:700;font-size:13px;
  letter-spacing:.04em;text-transform:uppercase;line-height:1.2;background:rgba(0,0,0,.16)}

.checkout-form-card{grid-column:1/-1;background:var(--surface);border:1px solid var(--line);
  border-radius:var(--radius);padding:24px}
.checkout-form-card h2{font-size:18px;margin-bottom:18px}
.form-field{margin-bottom:8px}
.form-field label{display:block;font-weight:600;font-size:14px;margin-bottom:8px}
.field{width:100%;padding:13px 15px;font-size:15px;color:var(--text);font-family:inherit;
  background:var(--bg);border:1px solid var(--line-2);border-radius:10px;transition:border-color .15s}
.field::placeholder{color:var(--muted-2)}
.field:focus{outline:none;border-color:var(--accent)}
.field.error{border-color:var(--danger)}
.checkout-note{color:var(--muted);font-size:13px;margin:8px 0 0}
.err{background:rgba(255,107,107,.1);border:1px solid rgba(255,107,107,.4);color:#ffb4b4;
  padding:12px 14px;border-radius:10px;font-size:14px;margin-bottom:18px}
.btn-pay{margin-top:6px;font-size:16px;padding:15px}

/* select под тёмную тему (если используется) */
select.field{appearance:none;-webkit-appearance:none;cursor:pointer;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%2399a0ac' stroke-width='2'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat:no-repeat;background-position:right 14px center;background-size:18px;padding-right:40px}
select.field option{background:var(--surface-2);color:var(--text)}

/* ── Order status ─────────────────────────────────────────────────────── */
.order-status-wrap{max-width:var(--content);margin:0 auto;text-align:center}
#order-root{background:var(--surface);border:1px solid var(--line);border-radius:var(--radius);padding:40px 28px}
#order-root h2{font-size:24px;margin:16px 0 6px}
.status-sub{color:var(--muted);font-size:15px;margin:0}
.status-icon{width:68px;height:68px;border-radius:50%;display:flex;align-items:center;justify-content:center;
  margin:0 auto;font-size:30px;font-weight:800}
.status-icon.success{background:rgba(55,193,114,.14);color:#5fd793;border:1px solid rgba(55,193,114,.4)}
.status-icon.failed{background:rgba(255,107,107,.14);color:#ff9aa8;border:1px solid rgba(255,107,107,.4)}
.status-icon.pending{background:var(--surface-2);border:1px solid var(--line-2)}
.code-box{margin:22px 0 16px;background:var(--bg);border:1px solid var(--line-2);border-radius:12px;padding:20px}
.code-label{font-size:12px;text-transform:uppercase;letter-spacing:.1em;color:var(--accent);margin-bottom:10px;font-weight:700}
.code-value{font-family:"Manrope",monospace;font-size:22px;font-weight:800;letter-spacing:.04em;word-break:break-all;color:#fff}
.btn-copy{background:var(--surface-2);color:var(--text);border:1px solid var(--line-2);font-weight:600}
.btn-copy:hover{background:var(--surface-3)}
.btn-copy.copied{background:rgba(55,193,114,.16);color:#5fd793;border-color:rgba(55,193,114,.4)}
.code-email-note{color:var(--muted);font-size:13.5px;margin-top:16px}
.activate-box{text-align:left;margin-top:22px;padding-top:18px;border-top:1px solid var(--line)}
.activate-box h3{font-size:15px;font-weight:700;margin-bottom:12px;text-align:center}
.activate-box ol{margin:0;padding-left:20px;color:#cdd2db;font-size:14px;line-height:1.7}
.activate-box li{margin-bottom:8px}
.activate-note{color:var(--muted-2);font-size:12.5px;margin-top:12px;text-align:center}
.progress-label{color:var(--muted-2);font-size:13.5px;margin-top:16px}
.spinner{border-radius:50%;border:3px solid rgba(255,255,255,.2);border-top-color:#fff;
  width:30px;height:30px;animation:spin 1s linear infinite;margin:0 auto}
@keyframes spin{to{transform:rotate(360deg)}}
@media (prefers-reduced-motion:reduce){.spinner{animation:none}}

/* ── Help block (крупный, на витрине) ─────────────────────────────────── */
.help-card{
  display:flex;align-items:center;justify-content:space-between;gap:24px;flex-wrap:wrap;
  background:linear-gradient(120deg,var(--surface-2),var(--surface));
  border:1px solid var(--line-2);border-radius:var(--radius-lg);padding:26px 28px;
}
.help-title{font-size:22px;font-weight:800;margin-bottom:6px}
.help-desc{color:var(--muted);font-size:14.5px;margin:0;max-width:56ch;line-height:1.6}
.help-btns{display:flex;gap:12px;flex-wrap:wrap;flex:none}
.help-btns .support-btn{padding:13px 24px;font-size:15px}
@media (max-width:600px){
  .help-card{flex-direction:column;align-items:flex-start;padding:22px}
  .help-btns{width:100%}
  .help-btns .support-btn{flex:1;justify-content:center}
}

/* ── Support box (страница заказа) ────────────────────────────────────── */
.support-box{max-width:520px;margin:22px auto 0;text-align:center;
  background:var(--surface);border:1px solid var(--line);border-radius:var(--radius);padding:22px}
.support-q{font-weight:700;font-size:15.5px;margin:0 0 4px}
.support-note{color:var(--muted);font-size:13.5px;margin:0 0 16px}
.support-btns{display:flex;gap:10px;justify-content:center;flex-wrap:wrap}
.support-btn{display:inline-flex;align-items:center;gap:8px;font-weight:700;font-size:14px;
  padding:11px 20px;border-radius:10px;border:1px solid transparent;transition:filter .15s,transform .08s}
.support-btn svg{width:18px;height:18px}
.support-btn:active{transform:translateY(1px)}
.support-btn.tg{background:#2aabee;color:#fff}
.support-btn.vk{background:#0077ff;color:#fff}
.support-btn:hover{filter:brightness(1.08)}

/* ── Footer CTA: установить приложение + соцсети ──────────────────────── */
.footer-cta{display:flex;flex-direction:column;align-items:center;gap:18px;
  margin-top:40px;padding-top:34px;border-top:1px solid var(--line)}
.install-btn{display:inline-flex;align-items:center;gap:12px;cursor:pointer;
  background:#000;border:1px solid var(--line-2);border-radius:14px;color:#fff;
  font-family:inherit;padding:11px 22px;transition:border-color .15s,transform .08s}
.install-btn:hover{border-color:rgba(255,255,255,.35)}
.install-btn:active{transform:translateY(1px)}
.install-btn .apple-logo{width:28px;height:28px;flex:none;margin-top:-2px}
.install-btn-label{display:flex;flex-direction:column;line-height:1.1;text-align:left;font-weight:800;font-size:18px}
.install-btn-label small{font-weight:400;font-size:11px;color:#a9adb6;letter-spacing:.01em;margin-bottom:1px}

/* ── Модалка установки ────────────────────────────────────────────────── */
.install-modal{position:fixed;inset:0;z-index:100;display:flex;align-items:center;justify-content:center;padding:18px}
.install-modal[hidden]{display:none}
.install-backdrop{position:absolute;inset:0;background:rgba(0,0,0,.66);backdrop-filter:blur(3px)}
.install-dialog{position:relative;width:100%;max-width:420px;background:var(--surface);
  border:1px solid var(--line-2);border-radius:var(--radius-lg);padding:22px;
  box-shadow:0 30px 80px -20px rgba(0,0,0,.8);animation:popin .18s var(--ease)}
@keyframes popin{from{opacity:0;transform:translateY(10px) scale(.98)}to{opacity:1;transform:none}}
.install-head{display:flex;align-items:center;gap:12px;margin-bottom:18px}
.install-head-icon{width:40px;height:40px;border-radius:11px;flex:none;display:flex;align-items:center;justify-content:center;
  background:rgba(245,183,61,.14);border:1px solid rgba(245,183,61,.3);color:var(--accent)}
.install-head-icon svg{width:22px;height:22px}
.install-head h3{font-size:18px;font-weight:800;flex:1}
.install-x{background:none;border:0;color:var(--muted);font-size:26px;line-height:1;cursor:pointer;padding:0 4px}
.install-x:hover{color:var(--text)}
.install-app-row{display:flex;align-items:center;gap:14px;background:var(--bg);border:1px solid var(--line);
  border-radius:12px;padding:14px;margin-bottom:18px}
.install-app-icon{width:46px;height:46px;border-radius:11px;flex:none}
.install-app-name{font-weight:800;font-size:16px}
.install-app-url{color:var(--muted);font-size:13px}
.install-text{color:var(--muted);font-size:14px;line-height:1.6;margin:0 0 16px;text-align:center}
.install-qr{display:block;width:200px;height:200px;margin:0 auto 20px;border-radius:12px;background:#fff;padding:10px}
.install-steps{margin:0 0 20px;padding:0;list-style:none;counter-reset:istep;display:flex;flex-direction:column;gap:12px}
.install-steps li{position:relative;padding-left:40px;color:var(--text);font-size:14.5px;line-height:1.5;counter-increment:istep}
.install-steps li::before{content:counter(istep);position:absolute;left:0;top:-1px;width:26px;height:26px;border-radius:50%;
  display:flex;align-items:center;justify-content:center;font-weight:800;font-size:13px;
  background:rgba(245,183,61,.15);color:var(--accent);border:1px solid rgba(245,183,61,.3)}
.install-ok{margin-top:2px}

/* ── Footer ───────────────────────────────────────────────────────────── */
.site-footer{border-top:1px solid var(--line);background:var(--bg-2);padding:48px 0 26px;margin-top:30px}
.footer-inner{display:grid;grid-template-columns:1.3fr 2fr;gap:38px}
.footer-logo{display:inline-block;margin-bottom:12px}
.footer-logo img{height:40px;width:auto;display:block}
.footer-brand .logo-text{font-size:22px;margin-bottom:12px;display:inline-block}
.footer-brand p{color:var(--muted);font-size:14px;max-width:34ch;margin:0}
.footer-links{display:grid;grid-template-columns:repeat(auto-fit,minmax(160px,1fr));gap:28px}
.footer-col h4{font-size:12px;text-transform:uppercase;letter-spacing:.1em;color:var(--muted-2);margin:0 0 13px}
.footer-col a{display:block;color:var(--muted);font-size:14px;margin-bottom:8px;transition:color .15s}
.footer-col a:hover{color:var(--text)}
.footer-contact{list-style:none;padding:0;margin:0;display:flex;flex-direction:column;gap:8px}
.footer-contact a{color:var(--muted);font-size:14px}
.footer-contact a:hover{color:var(--text)}
.footer-req{color:var(--muted);font-size:13.5px;line-height:1.7;margin:0}
.footer-docs{display:flex;flex-direction:column;gap:7px;margin-top:4px}
.footer-docs a{color:var(--muted);font-size:14px}
.footer-docs a:hover{color:var(--text)}
.pay-marks-img{margin-top:16px;height:30px;width:auto;border-radius:0;opacity:.92}
.footer-bottom{display:flex;flex-direction:column;gap:8px;
  margin-top:36px;padding-top:22px;border-top:1px solid var(--line);
  color:var(--muted-2);font-size:13px}
.footer-disclaimer{color:var(--muted-2);font-size:12.5px;line-height:1.6;max-width:90ch}

/* ── Responsive ───────────────────────────────────────────────────────── */
@media (max-width:760px){
  .checkout-wrap{gap:18px}
  .footer-inner{grid-template-columns:1fr;gap:26px}
  .footer-links{grid-template-columns:1fr 1fr;gap:22px}
  .site-footer{padding-bottom:96px}   /* место под плавающие кнопки */
}
@media (max-width:560px){
  .container{padding:0 16px}
  .site-header{padding:12px 16px}
  .site-header nav{gap:16px}
  .site-header nav a{font-size:14px}
  .nom-grid{grid-template-columns:1fr}
  .store{padding:24px 0 56px}
  .section{padding:24px 0}
  #order-root{padding:32px 18px}
  .footer-links{grid-template-columns:1fr;gap:24px}
  /* Товар: компактный баннер вместо гигантского квадрата */
  .product-card{grid-template-columns:1fr;gap:14px;padding:14px;max-width:none}
  .product-card-media{aspect-ratio:16/10}
  .product-card-media img.ps-logo-big{height:44px}
}
