/* ===== Палитра и базовые токены ===== */
:root{
  --brand:#ff3714;
  --brand-dark:#e02b09;
  --brand-soft:#ffe9e4;
  --brand-2:#ff6047;
  --text:#000;
  --text-2:#6b6b6b;
  --bg:#fafafa;
  --card:#fff;
  --line:#ececec;
  --radius:18px;
  --radius-sm:12px;
  --shadow:0 4px 20px rgba(0,0,0,.06);
  --shadow-lg:0 12px 40px rgba(0,0,0,.18);
  --green:#28a745;
}
*{box-sizing:border-box}
html,body{margin:0;padding:0;overflow-x:clip}
body{
  font-family:'Inter',-apple-system,BlinkMacSystemFont,'Segoe UI',Roboto,'Helvetica Neue',sans-serif;
  background:var(--bg);
  color:var(--text);
  -webkit-font-smoothing:antialiased;
  font-feature-settings:'ss01','cv11';
}
a{color:inherit;text-decoration:none}
button{font-family:inherit;cursor:pointer;border:0;background:none}
img{display:block;max-width:100%}

/* ===== Шапка ===== */
.header{
  position:sticky;top:0;z-index:50;background:#fff;
}
.header-inner{
  max-width:1280px;margin:0 auto;padding:14px 24px;
  display:flex;align-items:center;gap:24px;
}
.logo{display:flex;align-items:center;gap:10px;font-weight:800;font-size:22px}
.logo-mark{
  width:40px;height:40px;border-radius:50%;
  background:linear-gradient(135deg,#ff8a3d,#ff5e62);
  display:grid;place-items:center;color:#fff;font-size:22px;
}
.logo-img{height:44px;width:auto;display:block}
.logo-text{letter-spacing:-.5px}
.logo-text small{display:block;font-size:11px;font-weight:500;color:var(--text-2);letter-spacing:0}

.city{
  display:flex;align-items:center;gap:6px;
  padding:8px 14px;border-radius:999px;background:#f1f1f1;font-weight:600;font-size:14px;
}

.mode-toggle{
  display:flex;background:#f1f1f1;border-radius:999px;padding:4px;
}
.mode-toggle button{
  padding:8px 18px;border-radius:999px;font-weight:600;font-size:14px;color:var(--text-2);
  transition:.15s;
}
.mode-toggle button.active{background:#fff;color:var(--text);box-shadow:0 2px 6px rgba(0,0,0,.08)}

.header-info{margin-left:auto;text-align:right;font-size:13px;line-height:1.4;margin-right:8px}
.header-info b{font-size:15px}
.header-info span{color:var(--text-2)}

.cart-btn{
  background:var(--brand);color:#fff;border-radius:999px;
  padding:10px 18px;font-weight:700;display:flex;align-items:center;gap:10px;font-size:15px;
  transition:.15s;margin-left:auto;
}
.cart-btn:hover{background:var(--brand-dark)}
.cart-btn .pill{
  background:rgba(255,255,255,.25);padding:2px 8px;border-radius:999px;font-size:13px;
}

.seo-intro{
  max-width:1280px;margin:22px auto 0;padding:0 24px;
}
.seo-intro > div{
  background:#fff;border:1px solid var(--line);border-radius:var(--radius);
  padding:22px 24px;box-shadow:var(--shadow);
}
.seo-intro h1{font-size:28px;line-height:1.12;margin:0 0 8px;letter-spacing:-.3px}
.seo-intro p{font-size:15px;line-height:1.55;color:var(--text-2);margin:0;max-width:920px}

/* ===== Промо-блок ===== */
.promos{
  max-width:1280px;margin:24px auto 0;padding:0 24px;
  display:grid;grid-template-columns:repeat(3,1fr);gap:16px;
}
.promo{
  border-radius:var(--radius);padding:24px;color:#fff;min-height:140px;
  display:flex;flex-direction:column;justify-content:flex-end;
  position:relative;overflow:hidden;cursor:pointer;
  transition:transform .2s;
}
.promo:hover{transform:translateY(-2px)}
.promo-img{
  position:absolute;right:0;top:0;bottom:0;width:52%;
  background-size:cover;background-position:center;
  opacity:.78;filter:saturate(1.04);
}
.promo-img::after{
  content:"";position:absolute;inset:0;
  background:linear-gradient(90deg,rgba(0,0,0,.78),rgba(0,0,0,.12));
}
.promo h3,.promo p{position:relative;z-index:1}
.promo-img ~ h3,.promo-img ~ p{max-width:58%}
.promo h3{margin:0 0 6px;font-size:19px;font-weight:800;letter-spacing:0;line-height:1.12}
.promo-title-line{display:block}
.promo p{margin:0;font-size:13px;opacity:.9}

/* ===== Категории (sticky) ===== */
.cat-nav{
  position:sticky;top:69px;z-index:40;background:#fafafa;
  border-bottom:1px solid var(--line);margin-top:28px;
}
.cat-nav-inner{
  max-width:1280px;margin:0 auto;padding:14px 24px;
  display:flex;gap:8px;overflow-x:auto;scrollbar-width:none;
}
.cat-nav-inner::-webkit-scrollbar{display:none}
.cat-tab{
  padding:10px 16px;border-radius:999px;font-weight:600;font-size:14px;
  background:#fff;border:1px solid var(--line);white-space:nowrap;color:var(--text);
  display:flex;align-items:center;gap:6px;transition:.15s;
}
.cat-tab:hover{border-color:var(--brand)}
.cat-tab.active{background:var(--brand);color:#fff;border-color:var(--brand)}

/* ===== Сетка категорий ===== */
.catalog{max-width:1280px;margin:0 auto;padding:24px}
.cat-section{margin-bottom:48px;scroll-margin-top:160px}
.cat-title{font-size:32px;font-weight:800;margin:0 0 20px;letter-spacing:-.5px}
.grid{
  display:grid;grid-template-columns:repeat(auto-fill,minmax(260px,1fr));gap:20px;
}

/* ===== Карточка товара ===== */
.card{
  background:var(--card);border-radius:var(--radius);overflow:hidden;
  display:flex;flex-direction:column;cursor:pointer;
  transition:transform .15s, box-shadow .15s;
  box-shadow:var(--shadow);
}
.card:hover{transform:translateY(-3px);box-shadow:var(--shadow-lg)}
.card-img{
  aspect-ratio:1/1;background:#f5f5f5;
  background-size:cover;background-position:center;
  position:relative;
}
.card-body{padding:14px 16px 18px;display:flex;flex-direction:column;flex:1;gap:8px}
.card-name{font-weight:700;font-size:16px;line-height:1.25;margin:0}
.card-desc{font-size:13px;color:var(--text-2);line-height:1.4;margin:0;flex:1}
.card-weight{font-size:12px;color:var(--text-2)}
.card-foot{display:flex;align-items:center;justify-content:space-between;margin-top:6px;gap:10px}
.card-price{font-weight:800;font-size:18px}
.card-add{
  background:var(--brand-soft);color:var(--brand);
  border-radius:999px;padding:9px 18px;font-weight:700;font-size:14px;
  transition:.15s;
}
.card-add:hover{background:var(--brand);color:#fff}

/* ===== Модалка товара ===== */
.modal-backdrop{
  position:fixed;inset:0;background:rgba(0,0,0,.5);z-index:100;
  display:none;align-items:center;justify-content:center;padding:20px;
  opacity:0;transition:opacity .2s;
}
.modal-backdrop.open{display:flex;opacity:1}
.modal{
  background:#fff;border-radius:24px;max-width:1100px;width:100%;
  height:640px;max-height:92vh;overflow:hidden;
  display:grid;grid-template-columns:640px 1fr;
  box-shadow:var(--shadow-lg);
  transform:translateY(20px);transition:transform .25s;
  position:relative;
}
.modal-backdrop.open .modal{transform:translateY(0)}
.modal-close{
  position:absolute;top:18px;right:18px;width:36px;height:36px;border-radius:50%;
  background:rgba(0,0,0,.5);color:#fff;font-size:18px;display:grid;place-items:center;z-index:2;
}
.modal-img{
  background-color:#f7f7f7;
  background-size:contain;background-repeat:no-repeat;background-position:center;
  width:100%;height:100%;position:relative;
}
.modal-body{padding:32px;overflow-y:auto;display:flex;flex-direction:column;gap:18px}
.modal-name{font-size:26px;font-weight:800;margin:0;letter-spacing:-.5px}
.modal-meta{font-size:13px;color:var(--text-2)}
.modal-desc{font-size:14px;color:#444;line-height:1.5;margin:0}

.mod-group{border-top:1px solid var(--line);padding-top:16px}
.mod-group h4{margin:0 0 10px;font-size:15px;font-weight:700;display:flex;justify-content:space-between;align-items:center}
.mod-group h4 .req{font-size:11px;color:var(--brand);font-weight:600;text-transform:uppercase}

.opts{display:flex;flex-direction:column;gap:8px}
.opt{
  display:flex;align-items:center;gap:12px;padding:10px 14px;
  border:1px solid var(--line);border-radius:14px;cursor:pointer;transition:.15s;
}
.opt:hover{border-color:#bbb}
.opt input{accent-color:var(--brand);width:18px;height:18px}
.opt .opt-name{flex:1;font-size:14px;font-weight:500}
.opt .opt-price{font-size:14px;color:var(--text-2);font-weight:600}
.opt.selected{border-color:var(--brand);background:#fff8f3}

.opts-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:8px}

.modal-foot{
  padding:20px 32px;border-top:1px solid var(--line);
  display:flex;align-items:center;gap:14px;background:#fff;
  position:sticky;bottom:-32px;margin:24px -32px -32px;
}
.qty{display:flex;align-items:center;gap:8px;background:#f1f1f1;border-radius:999px;padding:4px}
.qty button{width:32px;height:32px;border-radius:50%;background:#fff;color:var(--brand);font-size:18px;font-weight:600;display:grid;place-items:center;-webkit-tap-highlight-color:rgba(255,55,20,.14)}
.qty span{min-width:24px;text-align:center;font-weight:700}
.add-to-cart{
  flex:1;background:var(--brand);color:#fff;padding:14px 22px;border-radius:14px;
  font-weight:700;font-size:16px;display:flex;justify-content:space-between;align-items:center;
  transition:.15s;
}
.add-to-cart:hover{background:var(--brand-dark)}

/* ===== Корзина-сайдбар ===== */
.cart-side{
  position:fixed;top:0;right:0;bottom:0;width:420px;max-width:100%;background:#fff;
  z-index:90;box-shadow:-10px 0 40px rgba(0,0,0,.12);
  transform:translateX(100%);transition:transform .3s;
  display:flex;flex-direction:column;
}
.cart-side.open{transform:translateX(0)}
.cart-head{
  padding:20px 24px;border-bottom:1px solid var(--line);
  display:flex;align-items:center;justify-content:space-between;
}
.cart-head h3{margin:0;font-size:20px;font-weight:800}
.cart-close{font-size:22px;color:var(--text-2)}
.cart-items{flex:1;overflow-y:auto;padding:12px 24px}
.cart-empty{text-align:center;padding:60px 20px;color:var(--text-2)}
.cart-empty .em{font-size:54px;margin-bottom:10px}
.cart-item{display:flex;gap:12px;padding:14px 8px;border-bottom:1px solid var(--line);border-radius:8px;transition:background .15s}
.cart-item.clickable{cursor:pointer}
.cart-item.clickable:hover{background:#fafafa}
.cart-item.cart-gift{border:2px solid var(--brand);background:#fff8f3;margin:8px 0;padding:12px 8px}
.cart-item-img{width:64px;height:64px;border-radius:10px;background:#f3f3f3;background-size:cover;background-position:center;display:grid;place-items:center;font-size:32px;flex-shrink:0}
.cart-item-info{flex:1;min-width:0}
.cart-item-name{font-size:14px;font-weight:600;margin:0 0 2px;line-height:1.3}
.cart-gift-badge{display:inline-flex;margin-left:8px;padding:3px 7px;border-radius:999px;background:var(--brand);color:#fff;font-size:11px;font-weight:800;vertical-align:middle}
.cart-item-mods{font-size:12px;color:var(--text-2);margin:2px 0 0}
.cart-item-foot{display:flex;justify-content:space-between;align-items:center;margin-top:6px}
.cart-item-price{font-weight:700;font-size:14px}
.cart-gift-note{font-size:12px;color:var(--brand);font-weight:700}
.cart-qty{display:flex;align-items:center;gap:6px;background:#f1f1f1;border-radius:999px;padding:2px}
.cart-qty button{width:24px;height:24px;border-radius:50%;background:#fff;color:var(--brand);font-size:14px;font-weight:600;display:grid;place-items:center;-webkit-tap-highlight-color:rgba(255,55,20,.14)}
.cart-qty span{min-width:20px;text-align:center;font-weight:700;font-size:13px}
.week-gift-banner{border:1px solid var(--brand);background:#fff8f3;border-radius:12px;padding:12px 14px;margin:4px 0 12px;color:var(--text);display:flex;flex-direction:column;gap:4px}
.week-gift-banner b{font-size:14px}
.week-gift-banner span{font-size:12px;color:var(--text-2);line-height:1.35}
.order-time-notice{
  border:1px solid #f0b48e;background:#fff7f1;color:var(--text);
  border-radius:12px;padding:11px 12px;margin:12px 0 0;display:flex;flex-direction:column;gap:3px;
}
.order-time-notice.closed{border-color:#ddd;background:#f3f3f3}
.order-time-notice b{font-size:13px}
.order-time-notice span{font-size:12px;color:var(--text-2);line-height:1.35}
.order-time-notice.shake{animation:notice-shake .24s ease}
@keyframes notice-shake{
  0%,100%{transform:translateX(0)}
  30%{transform:translateX(-4px)}
  70%{transform:translateX(4px)}
}

.cart-foot{padding:20px 24px;border-top:1px solid var(--line);background:#fafafa}
.cart-row{display:flex;justify-content:space-between;font-size:14px;margin-bottom:8px}
.cart-row.total{font-size:18px;font-weight:800;margin-top:10px;padding-top:10px;border-top:1px dashed var(--line)}
.checkout-btn{
  width:100%;margin-top:14px;background:var(--brand);color:#fff;
  padding:16px;border-radius:14px;font-weight:700;font-size:16px;
}
.checkout-btn:hover{background:var(--brand-dark)}
.checkout-btn:disabled,.checkout-btn.disabled{background:#cfcfcf;color:#fff;cursor:not-allowed;box-shadow:none}
.checkout-btn.disabled:hover{background:#cfcfcf}

.dim{
  position:fixed;inset:0;background:rgba(0,0,0,.4);z-index:80;
  opacity:0;pointer-events:none;transition:opacity .2s;
}
.dim.open{opacity:1;pointer-events:auto}

/* ===== Чекаут ===== */
.checkout-page{max-width:1100px;margin:0 auto;padding:32px 24px}
.checkout-grid{display:grid;grid-template-columns:1.5fr 1fr;gap:32px;align-items:start;min-width:0}
.checkout-grid > *{min-width:0}
.checkout-section{background:#fff;border-radius:var(--radius);padding:24px;box-shadow:var(--shadow);margin-bottom:20px}
.checkout-section h2{margin:0 0 18px;font-size:20px;font-weight:800}
.field{margin-bottom:14px}
.field label{display:block;font-size:13px;color:var(--text-2);margin-bottom:6px;font-weight:500}
.field input,.field textarea,.field select{
  width:100%;padding:13px 14px;border:1px solid var(--line);border-radius:12px;
  font-size:15px;font-family:inherit;background:#fff;
}
.field input:focus,.field textarea:focus{outline:none;border-color:var(--brand)}
.field.invalid input,.field.invalid textarea,.field.invalid select{
  border-color:var(--brand);background:var(--brand-soft);box-shadow:0 0 0 3px rgba(255,55,20,.12);
}
.pickup-point{font-size:15px;line-height:1.45;color:var(--text);font-weight:600}
.field-error{font-size:12px;color:var(--brand-dark);margin-top:6px;font-weight:600}
.row2{display:grid;grid-template-columns:1fr 1fr;gap:12px}

.choice{display:grid;grid-template-columns:1fr 1fr;gap:10px;margin-bottom:18px}
.choice label{
  border:1px solid var(--line);border-radius:14px;padding:14px;cursor:pointer;
  text-align:center;transition:.15s;
}
.choice input{display:none}
.choice input:checked + span{color:var(--brand)}
.choice label:has(input:checked){border-color:var(--brand);background:#fff8f3}
.choice .ico{font-size:22px;display:block;margin-bottom:4px}
.choice span{font-weight:600;font-size:14px}

.pay-list{display:flex;flex-direction:column;gap:8px}
.pay{
  display:flex;align-items:center;gap:12px;border:1px solid var(--line);
  border-radius:14px;padding:14px;cursor:pointer;
}
.pay input{accent-color:var(--brand)}
.pay-ico{width:36px;height:36px;border-radius:8px;background:#f3f3f3;display:grid;place-items:center;font-size:18px}
.pay-name{flex:1;font-weight:600;font-size:14px}
.pay-sub{font-size:12px;color:var(--text-2)}
.payment-logos{
  margin-top:14px;padding:12px;border:1px solid var(--line);border-radius:12px;background:#fff;
}
.payment-logos img{display:block;max-width:360px;width:100%;height:auto}
.payment-note{font-size:12px;color:var(--text-2);line-height:1.45;margin:10px 0 0}
.legal-payments{margin-top:14px}
.legal-payments img{display:block;max-width:420px;width:100%;height:auto}

.summary{position:sticky;top:24px}
.sum-item{display:flex;justify-content:space-between;gap:10px;font-size:13px;padding:6px 0;border-bottom:1px dashed var(--line)}
.sum-item:last-of-type{border:0}
.sum-item .n{flex:1;color:var(--text-2)}
.cart-gift-summary{border:1px solid var(--brand);background:#fff8f3;border-radius:10px;padding:8px 10px;margin:6px 0}
.sum-tot{display:flex;justify-content:space-between;font-size:20px;font-weight:800;margin-top:14px;padding-top:14px;border-top:2px solid #000}

.btn-primary{
  display:block;width:100%;background:var(--brand);color:#fff;padding:16px;
  border-radius:14px;font-weight:700;font-size:16px;text-align:center;margin-top:16px;
  transition:.15s;
}
.btn-primary:hover{background:var(--brand-dark)}
.btn-primary.disabled{background:#cfcfcf;cursor:not-allowed;box-shadow:none}
.btn-primary.disabled:hover{background:#cfcfcf}

.back-link{display:inline-flex;align-items:center;gap:6px;color:var(--text-2);font-size:14px;margin-bottom:16px}
.promo-row{display:flex;gap:8px}
.promo-row input{flex:1;min-width:0;padding:13px 14px;border:1px solid var(--line);border-radius:12px;font-size:15px;font-family:inherit}
.promo-row input:focus{outline:none;border-color:var(--brand)}
.promo-row button{flex-shrink:0;background:#f1f1f1;padding:0 18px;border-radius:12px;font-weight:600;font-size:14px}
@media (max-width:640px){
  .promo-row{flex-direction:column}
  .promo-row button{padding:13px;width:100%}
}
.back-link:hover{color:var(--brand)}

.result-order{
  border:1px solid var(--line);border-radius:14px;background:#fff;margin:18px 0;padding:16px;
}
.result-order-title{font-size:16px;font-weight:800;margin-bottom:10px}
.result-order-list{display:flex;flex-direction:column;gap:10px;margin-bottom:12px}
.result-order-item,.result-order-row,.result-order-total{
  display:flex;justify-content:space-between;gap:12px;align-items:flex-start;
}
.result-order-item{padding-bottom:10px;border-bottom:1px dashed var(--line)}
.result-order-name{font-size:14px;font-weight:700}
.result-order-name span{color:var(--text-2);font-weight:600}
.result-order-mods{font-size:12px;color:var(--text-2);line-height:1.45;margin-top:3px}
.result-order-item strong,.result-order-row strong{white-space:nowrap}
.result-order-row{font-size:13px;color:var(--text-2);padding:4px 0}
.result-order-row.discount,.result-order-row.discount strong{color:var(--brand)}
.result-order-total{font-size:18px;font-weight:800;margin-top:8px;padding-top:12px;border-top:2px solid #000}

.legal-page{
  max-width:860px;margin:0 auto;padding:32px 24px 56px;
}
.legal-page h1{font-size:34px;line-height:1.12;margin:0 0 14px}
.legal-lead{font-size:17px;line-height:1.55;color:var(--text-2);margin:0 0 26px}
.legal-section{
  border-top:1px solid var(--line);padding:22px 0;
}
.legal-section h2{font-size:20px;margin:0 0 10px}
.legal-section p,.legal-section li{font-size:15px;line-height:1.65;color:var(--text)}
.legal-section p{margin:0 0 10px}
.legal-section ul{margin:0;padding-left:20px}
.legal-section a,.summary a{color:var(--brand);border-bottom:1px solid var(--brand-soft)}
.legal-meta{font-size:13px;color:var(--text-2);margin-top:8px}
@media (max-width:640px){
  .legal-page{padding:24px 16px 44px}
  .legal-page h1{font-size:28px}
}

/* ===== Футер ===== */
.footer{background:#1a1a1a;color:#e0e0e0;margin-top:60px;padding:48px 0 0}
.footer-inner{
  max-width:1280px;margin:0 auto;padding:0 24px;
  display:grid;grid-template-columns:repeat(4,1fr);gap:32px;
}
.foot-title{font-size:14px;font-weight:700;color:#fff;margin-bottom:14px;letter-spacing:.3px;text-transform:uppercase}
.foot-text{font-size:13px;color:#bdbdbd;line-height:1.6;margin:0 0 10px}
.foot-text a{color:#fff;border-bottom:1px solid #555;transition:.15s}
.foot-text a:hover{border-color:var(--brand);color:var(--brand)}
.foot-payments{
  margin-top:14px;padding:10px;border:1px solid #343434;border-radius:12px;background:#fff;
  max-width:260px;
}
.foot-payments img{display:block;width:100%;height:auto}
.foot-bottom{
  max-width:1280px;margin:32px auto 0;padding:18px 24px;border-top:1px solid #2a2a2a;
  font-size:12px;color:#888;
}
.consent-banner{
  position:fixed;left:16px;right:16px;bottom:16px;z-index:200;
  max-width:980px;margin:0 auto;padding:14px 16px;border:1px solid var(--line);
  border-radius:14px;background:#fff;box-shadow:0 12px 34px rgba(0,0,0,.16);
  display:flex;align-items:center;gap:14px;
}
.consent-text{display:flex;flex-direction:column;gap:4px;font-size:13px;line-height:1.45;color:var(--text-2)}
.consent-text strong{font-size:14px;color:var(--text)}
.consent-text a{color:var(--brand);border-bottom:1px solid var(--brand-soft)}
.consent-btn{
  flex-shrink:0;background:var(--brand);color:#fff;border-radius:12px;
  padding:11px 16px;font-weight:700;font-size:14px;
}
.consent-btn:hover{background:var(--brand-dark)}
@media (max-width:760px){
  .footer-inner{grid-template-columns:1fr;gap:24px}
  .consent-banner{align-items:stretch;flex-direction:column;padding:14px;bottom:10px;left:10px;right:10px}
  .consent-btn{width:100%}
}

/* ===== Подгруппа в категории ===== */
.cat-sub-title{
  font-size:22px;font-weight:700;margin:24px 0 14px;letter-spacing:-.3px;color:#333;
}
.cat-sub-title:first-child{margin-top:0}

/* ===== Чипы "Убрать ингредиент" ===== */
.chip-row{display:flex;flex-wrap:wrap;gap:8px}
.chip{
  padding:8px 14px;border-radius:999px;border:2px solid var(--brand);background:#fff;
  font-size:13px;font-weight:600;cursor:pointer;transition:.15s;color:var(--text);
}
.chip:hover{background:var(--brand-soft)}
.chip.off{
  background:#fff;border:2px solid var(--line);color:var(--text-2);text-decoration:line-through;
}
.chip.off:hover{border-color:#bbb;background:#fafafa}

/* ===== Кросс-селл всплывашка ===== */
.cross-backdrop{align-items:flex-end;padding:0}
@media (min-width:640px){ .cross-backdrop{align-items:center;padding:20px} }
.cross-modal{
  background:#fff;border-radius:24px 24px 0 0;width:100%;max-width:560px;
  padding:28px 24px 20px;max-height:88vh;overflow-y:auto;
  transform:translateY(20px);transition:transform .25s;
}
@media (min-width:640px){ .cross-modal{border-radius:24px} }
.cross-backdrop.open .cross-modal{transform:translateY(0)}
.cross-title{font-size:22px;font-weight:800;margin:0 0 6px;letter-spacing:-.3px}
.cross-sub{font-size:13px;color:var(--text-2);margin:0 0 18px}
.cross-list{display:flex;flex-direction:column;gap:10px;margin-bottom:18px}
.cross-item{
  display:flex;align-items:center;gap:12px;padding:12px;
  border:1px solid var(--line);border-radius:14px;background:#fafafa;
}
.cross-ico{
  width:48px;height:48px;border-radius:12px;background:#fff;
  display:grid;place-items:center;font-size:24px;flex-shrink:0;
}
.cross-thumb{
  width:60px;height:60px;border-radius:12px;background:#f5f5f5;
  background-size:cover;background-position:center;flex-shrink:0;
}
.cross-info{flex:1;min-width:0}
.cross-name{font-weight:600;font-size:14px;line-height:1.3}
.cross-desc{font-size:12px;color:var(--text-2);margin-top:2px}
.cross-price{font-weight:700;font-size:14px;color:var(--brand);margin-top:2px}
.cross-qty{display:flex;align-items:center;gap:6px;background:#fff;border-radius:999px;padding:3px;border:1px solid var(--line)}
.cross-qty button{width:28px;height:28px;border-radius:50%;background:var(--brand-soft);color:var(--brand);font-size:16px;font-weight:700;display:grid;place-items:center;-webkit-tap-highlight-color:rgba(255,55,20,.14)}
.cross-qty span{min-width:22px;text-align:center;font-weight:700;font-size:14px}
.cross-foot{display:flex;gap:10px}
.cross-skip{flex:1;padding:14px;border-radius:14px;background:var(--brand-soft);color:var(--brand);font-weight:700;font-size:15px;-webkit-tap-highlight-color:rgba(255,55,20,.14)}
.cross-add{flex:2;padding:14px;border-radius:14px;background:var(--brand);color:#fff;font-weight:700;font-size:15px}
.cross-add:hover{background:var(--brand-dark)}

/* ===== Адаптив ===== */
@media (max-width:960px){
  .promos{grid-template-columns:1fr}
  .modal{
    display:flex;flex-direction:column;
    grid-template-columns:1fr;height:auto;max-height:96vh;
  }
  .modal-img{
    width:100%;height:auto;aspect-ratio:1/1;flex-shrink:0;max-height:42vh;
  }
  .modal-body{flex:1;min-height:0}
  .checkout-grid{grid-template-columns:1fr}
  .summary{position:static}
  .header-info{display:none}
}
@media (max-width:640px){
  .header-inner{gap:10px;padding:10px 12px}
  .city,.mode-toggle{display:none}
  .logo-text{font-size:18px}
  .logo-text small{display:none}
  .logo-img{height:36px}
  .catalog{padding:16px}
  .grid{grid-template-columns:repeat(auto-fill,minmax(160px,1fr));gap:12px}
  .card-img{font-size:50px}
  .cart-side{width:100%}
  .cat-title{font-size:24px}
  .cart-btn{padding:8px 12px;font-size:13px;gap:6px}
  .cart-btn .pill{padding:1px 6px;font-size:12px}
  .modal-backdrop{padding:0;align-items:flex-end}
  .modal{border-radius:20px 20px 0 0;max-height:94vh}
  .modal-body{padding:20px}
  .modal-name{font-size:22px}
  .modal-foot{padding:14px 20px;margin:18px -20px -20px;bottom:-20px;gap:10px}
  .qty button{width:28px;height:28px;font-size:16px}
  .add-to-cart{padding:12px 14px;font-size:14px;gap:8px}
  .add-to-cart span:last-child{white-space:nowrap}
  .opts-grid{grid-template-columns:1fr}
  .opt{padding:10px 12px}
  .opt-name{font-size:13px}
  .chip{font-size:12px;padding:7px 12px}
  .cat-nav{top:56px;margin-top:0}
  .header{box-shadow:0 1px 0 rgba(0,0,0,.04)}
  .checkout-page{padding:20px 14px}
  .checkout-page h1{font-size:24px!important}
  .checkout-section{padding:16px}
  .checkout-section h2{font-size:17px;margin-bottom:14px}
  .choice{gap:8px}
  .choice label{padding:12px 8px}
  .choice span{font-size:13px}
  .field input,.field textarea,.field select{padding:11px 12px;font-size:14px}
  .row2{gap:8px}
}
