:root {
  --bg: #030a1c;
  --bg-soft: #0b1734;
  --panel: rgba(7, 17, 40, 0.95);
  --panel-border: rgba(93, 129, 208, 0.18);
  --text: #eef3ff;
  --muted: #91a3c7;
  --accent: #4b8cff;
  --accent-2: #78a9ff;
  --success: #4fe2a7;
  --danger: #ff7e8a;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, Segoe UI, Arial, sans-serif;
  background: radial-gradient(circle at top, #102558 0%, var(--bg) 42%, #020611 100%);
  color: var(--text);
}
a { color: inherit; }
svg { width: 20px; height: 20px; fill: currentColor; }

.page {
  width: min(1200px, calc(100% - 40px));
  margin: 0 auto;
  padding: 36px 0 60px;
}
.page-profile { padding-bottom: 80px; }

.card {
  background: var(--panel);
  border: 1px solid var(--panel-border);
  border-radius: 28px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.28);
}

.hero { padding: 36px; }
.hero-top,
.section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.hero-top { margin-bottom: 28px; }
.eyebrow {
  letter-spacing: 0.14em;
  color: var(--muted);
  text-transform: uppercase;
  font-size: 14px;
}
.hero h1,
.profile-title {
  font-size: clamp(38px, 6vw, 64px);
  line-height: 1;
  margin: 0 0 18px;
}
.hero p,
.profile-subtitle {
  margin: 0;
  max-width: 880px;
  color: var(--muted);
  font-size: 21px;
  line-height: 1.5;
}

.hero-icon-actions,
.footer-socials {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.icon-pill,
.social-icon,
.ghost-btn,
.primary-btn,
.buy-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  border: 1px solid var(--panel-border);
}
.icon-pill {
  gap: 10px;
  padding: 0 18px 0 10px;
  background: rgba(255, 255, 255, 0.04);
}
.icon-circle {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.08);
}
.social-icon {
  width: 50px;
  height: 50px;
  background: rgba(255,255,255,0.05);
}
.ghost-btn, .primary-btn, .buy-btn {
  padding: 0 22px;
  cursor: pointer;
}
.ghost-btn {
  color: var(--text);
  background: rgba(255,255,255,0.04);
}
.ghost-btn--full { width: 100%; }
.primary-btn, .buy-btn {
  color: #fff;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
}
button { font: inherit; }

.catalog-section,
.profile-block { margin-top: 42px; }
.section-head { margin-bottom: 24px; }
.section-head h2 { margin: 0; font-size: clamp(28px, 3vw, 42px); }
.section-head--profile { margin-bottom: 16px; }
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.product-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.product-image-wrap {
  aspect-ratio: 1 / 1;
  background: rgba(255,255,255,0.04);
  border-bottom: 1px solid var(--panel-border);
}
.product-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.product-image--empty {
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  background: rgba(255,255,255,0.03);
}
.product-body {
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}
.product-body h3 { margin: 0; font-size: 20px; }
.flavor, .stock, .muted {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.5;
}
.price {
  font-size: 24px;
  font-weight: 800;
  color: var(--accent-2);
}
.buy-btn { margin-top: auto; }
.placeholder,
.status-card {
  padding: 18px 20px;
  border-radius: 20px;
  color: var(--muted);
  text-align: center;
  border: 1px dashed var(--panel-border);
  background: rgba(255,255,255,0.03);
}
.status-card { text-align: left; }
.status-card--success { border-style: solid; color: #dffcf1; background: rgba(79, 226, 167, 0.09); }
.status-card--error { border-style: solid; color: #ffe2e6; background: rgba(255, 126, 138, 0.09); }
.status-card--info { border-style: solid; color: #e6efff; background: rgba(75, 140, 255, 0.08); }
.is-hidden { display: none !important; }

.site-footer {
  border-top: 1px solid rgba(255,255,255,0.08);
  background: rgba(2, 6, 17, 0.72);
  backdrop-filter: blur(12px);
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 24px;
  padding-bottom: 24px;
}
.footer-brand { font-size: 20px; font-weight: 800; margin-bottom: 8px; }
.footer-text { color: var(--muted); max-width: 720px; line-height: 1.6; }

.profile-shell { padding: 32px; }
.profile-topbar { align-items: flex-start; }
.auth-stack {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(320px, .7fr);
  gap: 20px;
  margin-top: 28px;
}
.auth-card,
.profile-card,
.order-card {
  background: linear-gradient(180deg, rgba(16, 33, 74, 0.52), rgba(10, 20, 48, 0.9));
  border: 1px solid var(--panel-border);
  border-radius: 24px;
  padding: 24px;
}
.auth-card h2,
.profile-card h3 { margin: 0 0 12px; }
.auth-card p { margin: 0 0 18px; color: var(--muted); line-height: 1.6; }
.auth-card--wide { min-height: 100%; }
.auth-step {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  color: var(--accent-2);
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 14px;
}
.auth-form {
  display: flex;
  gap: 14px;
  align-items: stretch;
}
.auth-form--code { margin-bottom: 14px; }
.input {
  width: 100%;
  min-height: 54px;
  border-radius: 18px;
  border: 1px solid rgba(133, 164, 235, 0.22);
  background: rgba(255,255,255,0.05);
  color: var(--text);
  padding: 0 18px;
  font-size: 17px;
  outline: none;
}
.input:focus {
  border-color: rgba(120, 169, 255, 0.7);
  box-shadow: 0 0 0 4px rgba(75, 140, 255, 0.12);
}
.input-code {
  text-align: center;
  letter-spacing: 0.28em;
  font-size: 22px;
  font-weight: 800;
}
.profile-content { margin-top: 32px; }
.profile-card--header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 22px;
}
.profile-avatar {
  width: 74px;
  height: 74px;
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(75, 140, 255, 0.35), rgba(120, 169, 255, 0.15));
  font-size: 34px;
  font-weight: 800;
}
.profile-username { color: var(--muted); margin-top: 6px; }
.profile-badge {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(79, 226, 167, 0.12);
  color: var(--success);
  font-weight: 700;
}
.profile-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}
.profile-lines {
  display: grid;
  gap: 10px;
  color: var(--text);
  line-height: 1.6;
}
.profile-lines--compact { margin-bottom: 18px; }
.orders-list {
  display: grid;
  gap: 16px;
}
.order-card summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  list-style: none;
  cursor: pointer;
}
.order-card summary::-webkit-details-marker { display: none; }
.order-title { font-size: 20px; font-weight: 800; margin-bottom: 6px; }
.order-summary-right {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.order-status {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  color: var(--text);
  font-size: 14px;
  font-weight: 700;
}
.order-status--новый { background: rgba(75, 140, 255, 0.15); color: #a8c8ff; }
.order-status--доставлен, .order-status--выдан { background: rgba(79, 226, 167, 0.15); color: #9bf0ca; }
.order-status--готовится, .order-status--принят { background: rgba(255, 193, 92, 0.12); color: #ffd58b; }
.order-details {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.order-items { display: grid; gap: 10px; }
.order-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255,255,255,0.04);
}
.order-item-meta { color: var(--muted); white-space: nowrap; }

@media (max-width: 940px) {
  .auth-stack,
  .profile-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .page { width: min(100% - 24px, 1200px); padding-top: 20px; }
  .hero,
  .profile-shell { padding: 22px; }
  .hero-top,
  .profile-topbar,
  .footer-inner,
  .profile-card--header,
  .order-card summary {
    flex-direction: column;
    align-items: flex-start;
  }
  .hero p,
  .profile-subtitle { font-size: 17px; }
  .auth-form { flex-direction: column; }
  .profile-badge { margin-left: 0; }
  .products-grid { grid-template-columns: 1fr; }
  .order-item {
    flex-direction: column;
    align-items: flex-start;
  }
  .footer-socials { width: 100%; }
}

.no-scroll {
  overflow: hidden;
}

.icon-circle--cart {
  background: radial-gradient(circle at 30% 30%, rgba(120, 169, 255, 0.55), rgba(75, 140, 255, 0.18));
}

.cart-pill {
  position: relative;
  padding-right: 14px;
}

.cart-pill small {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
}

.count-badge {
  min-width: 28px;
  height: 28px;
  padding: 0 8px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #87b3ff, #4b8cff);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(75, 140, 255, 0.28);
}

.product-meta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.product-tag {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--accent-2);
  font-size: 13px;
  font-weight: 700;
}

.stock--ok {
  color: #a8c8ff;
}

.cart-drawer {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 100;
}

.cart-drawer__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2, 6, 17, 0.68);
  backdrop-filter: blur(12px);
  opacity: 0;
  transition: opacity .24s ease;
}

.cart-drawer__panel {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: min(560px, 100%);
  border-radius: 32px 0 0 32px;
  padding: 24px;
  overflow: auto;
  transform: translateX(100%);
  transition: transform .28s ease;
}

.cart-drawer--open {
  pointer-events: auto;
}

.cart-drawer--open .cart-drawer__backdrop {
  opacity: 1;
}

.cart-drawer--open .cart-drawer__panel {
  transform: translateX(0);
}

.cart-drawer__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.cart-drawer__head h2 {
  margin: 6px 0 0;
  font-size: clamp(28px, 5vw, 40px);
}

.cart-items {
  display: grid;
  gap: 16px;
}

.cart-item {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr);
  gap: 16px;
  padding: 14px;
}

.cart-item--error {
  border-color: rgba(255, 126, 138, 0.4);
}

.cart-item-image .product-image-wrap,
.cart-item-image .product-image--empty {
  border-radius: 20px;
  overflow: hidden;
}

.cart-item-body {
  display: grid;
  gap: 12px;
}

.cart-item-top,
.cart-item-bottom,
.cart-summary-line,
.delivery-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.cart-item-top h3 {
  margin: 0 0 6px;
  font-size: 20px;
}

.icon-ghost {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  border: 1px solid var(--panel-border);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.qty-stepper {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.qty-btn {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 0;
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
  font-size: 24px;
  cursor: pointer;
}

.cart-item-meta {
  text-align: right;
}

.cart-footer,
.checkout-section {
  margin-top: 18px;
  padding: 18px;
}

.checkout-form {
  display: grid;
  gap: 14px;
}

.delivery-chip {
  flex: 1;
  min-height: 50px;
  border-radius: 999px;
  border: 1px solid var(--panel-border);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  font-weight: 700;
  cursor: pointer;
}

.delivery-chip--active {
  background: linear-gradient(135deg, rgba(75, 140, 255, 0.2), rgba(120, 169, 255, 0.12));
  border-color: rgba(120, 169, 255, 0.58);
  color: #fff;
}

.input-area {
  min-height: 118px;
  padding-top: 16px;
  padding-bottom: 16px;
  resize: vertical;
}

.primary-btn--full {
  width: 100%;
}

.checkout-note {
  font-size: 14px;
}

.site-toast {
  position: fixed;
  left: 50%;
  bottom: 26px;
  transform: translateX(-50%) translateY(24px);
  min-width: min(520px, calc(100% - 24px));
  max-width: min(520px, calc(100% - 24px));
  padding: 16px 18px;
  border-radius: 20px;
  color: #fff;
  background: rgba(7, 17, 40, 0.92);
  border: 1px solid var(--panel-border);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.32);
  opacity: 0;
  pointer-events: none;
  transition: transform .22s ease, opacity .22s ease;
  z-index: 120;
}

.site-toast--show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.site-toast--success {
  background: rgba(19, 49, 44, 0.96);
  border-color: rgba(79, 226, 167, 0.34);
}

.site-toast--error {
  background: rgba(57, 20, 31, 0.96);
  border-color: rgba(255, 126, 138, 0.34);
}

@media (max-width: 980px) {
  .hero-icon-actions {
    width: 100%;
    justify-content: stretch;
  }

  .hero-icon-actions > * {
    flex: 1 1 0;
  }

  .icon-pill {
    justify-content: flex-start;
  }
}

@media (max-width: 760px) {
  body {
    min-height: 100dvh;
  }

  .hero-top {
    gap: 14px;
  }

  .icon-pill {
    min-height: 54px;
    padding-right: 12px;
  }

  .cart-drawer__panel {
    width: 100%;
    border-radius: 28px 28px 0 0;
    inset: auto 0 0 0;
    height: min(90dvh, 100%);
    transform: translateY(100%);
  }

  .cart-drawer--open .cart-drawer__panel {
    transform: translateY(0);
  }

  .cart-item {
    grid-template-columns: 1fr;
  }

  .cart-item-meta {
    text-align: left;
  }

  .cart-item-bottom,
  .cart-summary-line,
  .delivery-row {
    flex-direction: column;
    align-items: stretch;
  }

  .delivery-chip {
    width: 100%;
  }

  .site-toast {
    bottom: calc(16px + env(safe-area-inset-bottom));
  }
}

.cart-pill-title,
.cart-pill-subtitle,
.cart-pill small,
.cart-pill span { color: #fff; }
.cart-drawer.is-hidden { display:none; }
.input--locked { opacity: .8; cursor: not-allowed; }
.select-input { appearance: none; }
.field-label { margin: 8px 0 10px; color: var(--muted); font-size: 14px; }
.basket-layout { margin-top: 32px; display: grid; grid-template-columns: minmax(0, 1.3fr) minmax(360px, .9fr); gap: 24px; align-items: start; }
.basket-items { display: grid; gap: 18px; }
.basket-item { display: grid; grid-template-columns: 112px minmax(0,1fr) auto; gap: 18px; padding: 18px; align-items: center; }
.basket-item__img img, .basket-item__img .product-image { width: 112px; height: 112px; border-radius: 22px; object-fit: cover; }
.basket-item__body h3 { margin: 0 0 8px; font-size: 30px; }
.basket-item__controls { display: inline-flex; align-items: center; gap: 12px; margin-top: 14px; padding: 8px 14px; border-radius: 999px; background: rgba(255,255,255,.04); }
.qty-btn, .basket-remove { border: 0; background: rgba(255,255,255,.08); color: var(--text); width: 38px; height: 38px; border-radius: 999px; cursor: pointer; font-size: 22px; }
.basket-item__side { display:flex; flex-direction:column; align-items:flex-end; gap:12px; }
.basket-side { display:grid; gap: 18px; position: sticky; top: 18px; }
.basket-summary-card { display:grid; gap: 14px; }
.address-options { display:grid; gap: 10px; }
.address-option { display:flex; gap: 12px; align-items:flex-start; padding: 16px 18px; border-radius: 20px; border: 1px solid var(--panel-border); background: rgba(255,255,255,.03); cursor: pointer; }
.address-option input { margin-top: 4px; }
.basket-address-section { display:grid; gap: 14px; }
.grid-2 { display:grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 12px; }
.preview-card { display:grid; gap: 14px; padding: 18px; border-radius: 24px; border: 1px solid var(--panel-border); background: rgba(255,255,255,.03); }
.preview-card h3 { margin: 0; font-size: 24px; }
.preview-items, .preview-totals { display:grid; gap: 10px; }
.preview-line, .preview-totals > div { display:flex; justify-content:space-between; gap: 16px; }
.preview-total { padding-top: 10px; border-top: 1px solid var(--panel-border); font-size: 20px; }
.order-status-large { display:inline-flex; padding: 10px 16px; border-radius: 999px; background: rgba(255,255,255,.06); margin-bottom: 16px; font-weight: 700; }
.order-page-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
@media (max-width: 980px) {
  .basket-layout, .order-page-grid { grid-template-columns: 1fr; }
  .basket-side { position: static; }
}
@media (max-width: 640px) {
  .basket-item { grid-template-columns: 1fr; }
  .basket-item__img img, .basket-item__img .product-image { width: 100%; height: auto; aspect-ratio: 1 / 1; }
  .basket-item__body h3 { font-size: 24px; }
  .grid-2 { grid-template-columns: 1fr; }
}

.field-label { display:block; margin: 4px 0 8px; color: var(--muted); font-size: 14px; }
.checkout-form { display:grid; gap: 14px; }
.preview-card { display:grid; gap: 14px; padding: 18px; border-radius: 22px; background: rgba(255,255,255,.04); border:1px solid var(--panel-border); }
.preview-card h3 { margin:0; font-size: 22px; }
.preview-totals { display:grid; gap:8px; }
.preview-line, .preview-total { display:flex; align-items:flex-start; justify-content:space-between; gap:12px; }
.preview-total { padding-top: 10px; margin-top: 8px; border-top:1px solid rgba(255,255,255,.08); font-size: 18px; }
.basket-layout { grid-template-columns: minmax(0, 1.05fr) minmax(380px, .95fr); gap: 28px; }
.basket-item__body h3 { font-size: 22px; }
.basket-item__side strong { font-size: 28px; }
.profile-lines.profile-lines--compact { gap:8px; }
.delivery-row { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:12px; }
.input--locked { opacity: .8; cursor: not-allowed; }
@media (max-width: 940px){ .hero { padding:24px; } .hero h1{font-size: clamp(34px, 10vw, 52px);} .hero p{font-size:18px;} .basket-layout{grid-template-columns:1fr;} .delivery-row{grid-template-columns:1fr 1fr;} }

/* Precise Smoke catalog upgrade */
.catalog-head { align-items: flex-end; }
.search-field {
  min-width: min(420px, 100%);
  min-height: 58px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid rgba(133, 164, 235, 0.24);
  background: rgba(255,255,255,0.055);
}
.search-field svg { color: var(--accent-2); flex: 0 0 auto; }
.search-field input {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--text);
  font: inherit;
}
.search-field input::placeholder { color: var(--muted); }
.category-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: -6px 0 24px;
}
.category-chip {
  min-height: 44px;
  border-radius: 999px;
  border: 1px solid var(--panel-border);
  background: rgba(255,255,255,0.045);
  color: var(--text);
  padding: 0 16px;
  cursor: pointer;
  font-weight: 800;
}
.category-chip span { color: var(--accent-2); margin-left: 6px; }
.category-chip.active {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  border-color: transparent;
  color: #fff;
}
.product-title-link { text-decoration: none; }
.product-meta-row, .price-row, .product-card-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.pill-tag, .stock-tag {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  border-radius: 999px;
  padding: 0 10px;
  font-size: 13px;
  color: #dce8ff;
  background: rgba(120,169,255,.11);
  border: 1px solid rgba(120,169,255,.18);
}
.stock-tag { color: var(--success); }
.price-row strong, .product-detail-price {
  color: var(--accent-2);
  font-size: 24px;
  font-weight: 900;
}
.product-card-actions { margin-top: auto; }
.product-more { min-height: 48px; padding-inline: 18px; }
.age-gate, .flavor-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(1, 5, 16, .72);
  backdrop-filter: blur(18px);
}
.age-card {
  width: min(500px, 100%);
  padding: 34px;
  text-align: center;
  background: linear-gradient(180deg, rgba(12, 28, 66, .98), rgba(6, 15, 38, .98));
}
.age-mark {
  width: 88px;
  height: 88px;
  margin: 0 auto 18px;
  display: grid;
  place-items: center;
  border-radius: 28px;
  font-size: 32px;
  font-weight: 950;
  color: #fff;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 18px 42px rgba(75,140,255,.3);
}
.age-card h2 { margin: 0 0 10px; font-size: 34px; }
.age-card p { color: var(--muted); line-height: 1.55; margin: 0 0 22px; }
.age-actions { display: grid; gap: 12px; grid-template-columns: 1fr 1fr; }
.modal-backdrop { position: absolute; inset: 0; }
.flavor-modal-card {
  position: relative;
  width: min(720px, 100%);
  max-height: min(88vh, 860px);
  overflow: auto;
  padding: 24px;
  background: linear-gradient(180deg, rgba(12, 28, 66, .98), rgba(6, 15, 38, .98));
}
.modal-head, .product-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}
.modal-head h2 { margin: 4px 0 0; }
.icon-ghost {
  width: 46px;
  height: 46px;
  border-radius: 16px;
  border: 1px solid var(--panel-border);
  background: rgba(255,255,255,.055);
  color: var(--text);
  cursor: pointer;
  font-size: 28px;
}
.flavor-modal-product {
  display: grid;
  grid-template-columns: 150px minmax(0,1fr);
  gap: 18px;
  align-items: center;
  margin-bottom: 18px;
}
.flavor-modal-product img, .flavor-modal-empty {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border-radius: 24px;
  background: rgba(255,255,255,.04);
  border: 1px solid var(--panel-border);
}
.flavor-modal-empty { display: grid; place-items: center; color: var(--muted); }
.flavor-modal-product h3 { margin: 6px 0 8px; font-size: 28px; }
.flavor-modal-product p { margin: 0; color: var(--muted); line-height: 1.5; }
.flavor-list { display: grid; gap: 10px; }
.flavor-option {
  width: 100%;
  min-height: 70px;
  border-radius: 20px;
  border: 1px solid var(--panel-border);
  background: rgba(255,255,255,.045);
  color: var(--text);
  padding: 14px 16px;
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
  text-align: left;
  cursor: pointer;
}
.flavor-option:hover { border-color: rgba(120,169,255,.55); background: rgba(75,140,255,.13); }
.flavor-option span { display: grid; gap: 4px; }
.flavor-option small { color: var(--muted); }
.flavor-option b { color: var(--accent-2); white-space: nowrap; }
.product-detail {
  display: grid;
  grid-template-columns: minmax(280px, .85fr) minmax(0, 1.15fr);
  gap: 28px;
  padding: 28px;
}
.product-detail-media img, .product-detail-media .product-image--empty {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 26px;
  border: 1px solid var(--panel-border);
}
.product-detail-info h1 { font-size: clamp(40px, 5vw, 68px); line-height: 1; margin: 10px 0 16px; }
.product-description { color: var(--muted); font-size: 19px; line-height: 1.55; }
.product-flavors { margin-top: 22px; }
.site-toast--success { background: rgba(79, 226, 167, .95); color: #03110c; }
.site-toast--error { background: rgba(255, 126, 138, .96); color: #2a0206; }
@media (max-width: 760px) {
  .catalog-head, .product-topbar { align-items: stretch; flex-direction: column; }
  .search-field { min-width: 100%; }
  .product-card-actions { flex-direction: column; align-items: stretch; }
  .product-more, .buy-btn { width: 100%; }
  .age-actions { grid-template-columns: 1fr; }
  .flavor-modal-product, .product-detail { grid-template-columns: 1fr; }
  .flavor-modal-product img, .flavor-modal-empty { width: 100%; height: auto; aspect-ratio: 1/1; }
}

/* === Precise Smoke conversion upgrades === */
.advanced-filters {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin: 14px 0 24px;
}
.filter-chip,
.filter-select {
  min-height: 44px;
  border-radius: 999px;
  border: 1px solid var(--panel-border);
  background: rgba(255,255,255,.045);
  color: var(--text);
  padding: 0 16px;
  font-weight: 800;
}
.filter-chip.active { background: linear-gradient(135deg, var(--accent), var(--accent-2)); border-color: transparent; }
.filter-select-label { display: inline-flex; align-items: center; gap: 8px; color: var(--muted); }
.filter-select { outline: none; cursor: pointer; }
.search-field { position: relative; }
.search-suggest {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 10px);
  z-index: 30;
  display: grid;
  gap: 6px;
  padding: 10px;
  border-radius: 20px;
  border: 1px solid var(--panel-border);
  background: rgba(7, 17, 40, .98);
  box-shadow: 0 18px 44px rgba(0,0,0,.35);
}
.search-suggest button {
  border: 0;
  border-radius: 14px;
  background: rgba(255,255,255,.05);
  color: var(--text);
  padding: 12px 14px;
  text-align: left;
  cursor: pointer;
}
.search-suggest button:hover { background: rgba(75,140,255,.18); }
.trust-row { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; margin: 10px 0 12px; }
.trust-badge {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 11px;
  border-radius: 999px;
  border: 1px solid rgba(120,169,255,.23);
  background: rgba(120,169,255,.09);
  color: #b8ccff;
  font-size: 13px;
  font-weight: 800;
}
.trust-badge--hit { color: #ffd28c; background: rgba(255,161,65,.12); border-color: rgba(255,161,65,.28); }
.trust-badge--popular { color: #8effcf; background: rgba(79,226,167,.11); border-color: rgba(79,226,167,.24); }
.mini-specs,
.spec-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 14px 0;
}
.mini-specs span,
.spec-card {
  border: 1px solid var(--panel-border);
  border-radius: 18px;
  background: rgba(255,255,255,.035);
  padding: 11px 12px;
  display: grid;
  gap: 4px;
}
.mini-specs small,
.spec-card span { color: var(--muted); font-size: 12px; }
.mini-specs b,
.spec-card strong { color: var(--text); font-size: 14px; }
.product-card { overflow: hidden; transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease; }
.product-card:hover { transform: translateY(-4px); border-color: rgba(120,169,255,.4); box-shadow: 0 24px 60px rgba(0,0,0,.32); }
.buy-btn { position: relative; overflow: hidden; }
.buy-btn::after, .primary-btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.22), transparent);
  transform: translateX(-120%);
  transition: transform .42s ease;
}
.buy-btn:hover::after, .primary-btn:hover::after { transform: translateX(120%); }
.flavor-buy-caption { color: var(--accent-2); font-style: normal; font-weight: 900; }
.flavor-option--active { border-color: rgba(79,226,167,.55); background: rgba(79,226,167,.10); }
.product-trust { margin-bottom: 18px; }
.product-buy-panel {
  position: sticky;
  bottom: 18px;
  z-index: 6;
  margin: 18px 0;
  padding: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  border: 1px solid rgba(120,169,255,.28);
  border-radius: 24px;
  background: rgba(8, 20, 48, .88);
  backdrop-filter: blur(14px);
  box-shadow: 0 16px 44px rgba(0,0,0,.28);
}
.product-buy-panel span { color: var(--muted); display: block; font-size: 13px; margin-bottom: 4px; }
.product-buy-panel strong { font-size: 22px; color: var(--accent-2); }
.delivery-info {
  display: grid;
  gap: 10px;
  margin: 20px 0;
}
.delivery-info div {
  border: 1px solid var(--panel-border);
  border-radius: 18px;
  background: rgba(255,255,255,.035);
  padding: 13px 14px;
  display: grid;
  gap: 3px;
}
.delivery-info span { color: var(--muted); }
.related-products { margin-top: 24px; }
.section-head--compact h2 { margin: 0 0 12px; }
.related-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; }
.related-card {
  text-decoration: none;
  border: 1px solid var(--panel-border);
  border-radius: 20px;
  background: rgba(255,255,255,.04);
  padding: 14px;
  display: grid;
  gap: 6px;
}
.related-card span, .related-card small { color: var(--muted); }
.related-card:hover { border-color: rgba(120,169,255,.45); background: rgba(75,140,255,.12); }
@media (max-width: 760px) {
  .mini-specs, .spec-grid, .related-grid { grid-template-columns: 1fr; }
  .product-buy-panel { bottom: 10px; flex-direction: column; align-items: stretch; }
  .product-buy-panel .primary-btn { width: 100%; }
}
:root {
  --bg: #030a1c;
  --bg-soft: #0b1734;
  --panel: rgba(7, 17, 40, 0.95);
  --panel-border: rgba(93, 129, 208, 0.18);
  --text: #eef3ff;
  --muted: #91a3c7;
  --accent: #4b8cff;
  --accent-2: #78a9ff;
  --success: #4fe2a7;
  --danger: #ff7e8a;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, Segoe UI, Arial, sans-serif;
  background: radial-gradient(circle at top, #102558 0%, var(--bg) 42%, #020611 100%);
  color: var(--text);
}
a { color: inherit; }
svg { width: 20px; height: 20px; fill: currentColor; }

.page {
  width: min(1200px, calc(100% - 40px));
  margin: 0 auto;
  padding: 36px 0 60px;
}
.page-profile { padding-bottom: 80px; }

.card {
  background: var(--panel);
  border: 1px solid var(--panel-border);
  border-radius: 28px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.28);
}

.hero { padding: 36px; }
.hero-top,
.section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.hero-top { margin-bottom: 28px; }
.eyebrow {
  letter-spacing: 0.14em;
  color: var(--muted);
  text-transform: uppercase;
  font-size: 14px;
}
.hero h1,
.profile-title {
  font-size: clamp(38px, 6vw, 64px);
  line-height: 1;
  margin: 0 0 18px;
}
.hero p,
.profile-subtitle {
  margin: 0;
  max-width: 880px;
  color: var(--muted);
  font-size: 21px;
  line-height: 1.5;
}

.hero-icon-actions,
.footer-socials {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.icon-pill,
.social-icon,
.ghost-btn,
.primary-btn,
.buy-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  border: 1px solid var(--panel-border);
}
.icon-pill {
  gap: 10px;
  padding: 0 18px 0 10px;
  background: rgba(255, 255, 255, 0.04);
}
.icon-circle {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.08);
}
.social-icon {
  width: 50px;
  height: 50px;
  background: rgba(255,255,255,0.05);
}
.ghost-btn, .primary-btn, .buy-btn {
  padding: 0 22px;
  cursor: pointer;
}
.ghost-btn {
  color: var(--text);
  background: rgba(255,255,255,0.04);
}
.ghost-btn--full { width: 100%; }
.primary-btn, .buy-btn {
  color: #fff;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
}
button { font: inherit; }

.catalog-section,
.profile-block { margin-top: 42px; }
.section-head { margin-bottom: 24px; }
.section-head h2 { margin: 0; font-size: clamp(28px, 3vw, 42px); }
.section-head--profile { margin-bottom: 16px; }
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.product-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.product-image-wrap {
  aspect-ratio: 1 / 1;
  background: rgba(255,255,255,0.04);
  border-bottom: 1px solid var(--panel-border);
}
.product-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.product-image--empty {
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  background: rgba(255,255,255,0.03);
}
.product-body {
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}
.product-body h3 { margin: 0; font-size: 20px; }
.flavor, .stock, .muted {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.5;
}
.price {
  font-size: 24px;
  font-weight: 800;
  color: var(--accent-2);
}
.buy-btn { margin-top: auto; }
.placeholder,
.status-card {
  padding: 18px 20px;
  border-radius: 20px;
  color: var(--muted);
  text-align: center;
  border: 1px dashed var(--panel-border);
  background: rgba(255,255,255,0.03);
}
.status-card { text-align: left; }
.status-card--success { border-style: solid; color: #dffcf1; background: rgba(79, 226, 167, 0.09); }
.status-card--error { border-style: solid; color: #ffe2e6; background: rgba(255, 126, 138, 0.09); }
.status-card--info { border-style: solid; color: #e6efff; background: rgba(75, 140, 255, 0.08); }
.is-hidden { display: none !important; }

.site-footer {
  border-top: 1px solid rgba(255,255,255,0.08);
  background: rgba(2, 6, 17, 0.72);
  backdrop-filter: blur(12px);
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 24px;
  padding-bottom: 24px;
}
.footer-brand { font-size: 20px; font-weight: 800; margin-bottom: 8px; }
.footer-text { color: var(--muted); max-width: 720px; line-height: 1.6; }

.profile-shell { padding: 32px; }
.profile-topbar { align-items: flex-start; }
.auth-stack {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(320px, .7fr);
  gap: 20px;
  margin-top: 28px;
}
.auth-card,
.profile-card,
.order-card {
  background: linear-gradient(180deg, rgba(16, 33, 74, 0.52), rgba(10, 20, 48, 0.9));
  border: 1px solid var(--panel-border);
  border-radius: 24px;
  padding: 24px;
}
.auth-card h2,
.profile-card h3 { margin: 0 0 12px; }
.auth-card p { margin: 0 0 18px; color: var(--muted); line-height: 1.6; }
.auth-card--wide { min-height: 100%; }
.auth-step {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  color: var(--accent-2);
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 14px;
}
.auth-form {
  display: flex;
  gap: 14px;
  align-items: stretch;
}
.auth-form--code { margin-bottom: 14px; }
.input {
  width: 100%;
  min-height: 54px;
  border-radius: 18px;
  border: 1px solid rgba(133, 164, 235, 0.22);
  background: rgba(255,255,255,0.05);
  color: var(--text);
  padding: 0 18px;
  font-size: 17px;
  outline: none;
}
.input:focus {
  border-color: rgba(120, 169, 255, 0.7);
  box-shadow: 0 0 0 4px rgba(75, 140, 255, 0.12);
}
.input-code {
  text-align: center;
  letter-spacing: 0.28em;
  font-size: 22px;
  font-weight: 800;
}
.profile-content { margin-top: 32px; }
.profile-card--header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 22px;
}
.profile-avatar {
  width: 74px;
  height: 74px;
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(75, 140, 255, 0.35), rgba(120, 169, 255, 0.15));
  font-size: 34px;
  font-weight: 800;
}
.profile-username { color: var(--muted); margin-top: 6px; }
.profile-badge {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(79, 226, 167, 0.12);
  color: var(--success);
  font-weight: 700;
}
.profile-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}
.profile-lines {
  display: grid;
  gap: 10px;
  color: var(--text);
  line-height: 1.6;
}
.profile-lines--compact { margin-bottom: 18px; }
.orders-list {
  display: grid;
  gap: 16px;
}
.order-card summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  list-style: none;
  cursor: pointer;
}
.order-card summary::-webkit-details-marker { display: none; }
.order-title { font-size: 20px; font-weight: 800; margin-bottom: 6px; }
.order-summary-right {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.order-status {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  color: var(--text);
  font-size: 14px;
  font-weight: 700;
}
.order-status--новый { background: rgba(75, 140, 255, 0.15); color: #a8c8ff; }
.order-status--доставлен, .order-status--выдан { background: rgba(79, 226, 167, 0.15); color: #9bf0ca; }
.order-status--готовится, .order-status--принят { background: rgba(255, 193, 92, 0.12); color: #ffd58b; }
.order-details {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.order-items { display: grid; gap: 10px; }
.order-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255,255,255,0.04);
}
.order-item-meta { color: var(--muted); white-space: nowrap; }

@media (max-width: 940px) {
  .auth-stack,
  .profile-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .page { width: min(100% - 24px, 1200px); padding-top: 20px; }
  .hero,
  .profile-shell { padding: 22px; }
  .hero-top,
  .profile-topbar,
  .footer-inner,
  .profile-card--header,
  .order-card summary {
    flex-direction: column;
    align-items: flex-start;
  }
  .hero p,
  .profile-subtitle { font-size: 17px; }
  .auth-form { flex-direction: column; }
  .profile-badge { margin-left: 0; }
  .products-grid { grid-template-columns: 1fr; }
  .order-item {
    flex-direction: column;
    align-items: flex-start;
  }
  .footer-socials { width: 100%; }
}

.no-scroll {
  overflow: hidden;
}

.icon-circle--cart {
  background: radial-gradient(circle at 30% 30%, rgba(120, 169, 255, 0.55), rgba(75, 140, 255, 0.18));
}

.cart-pill {
  position: relative;
  padding-right: 14px;
}

.cart-pill small {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
}

.count-badge {
  min-width: 28px;
  height: 28px;
  padding: 0 8px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #87b3ff, #4b8cff);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(75, 140, 255, 0.28);
}

.product-meta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.product-tag {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--accent-2);
  font-size: 13px;
  font-weight: 700;
}

.stock--ok {
  color: #a8c8ff;
}

.cart-drawer {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 100;
}

.cart-drawer__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2, 6, 17, 0.68);
  backdrop-filter: blur(12px);
  opacity: 0;
  transition: opacity .24s ease;
}

.cart-drawer__panel {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: min(560px, 100%);
  border-radius: 32px 0 0 32px;
  padding: 24px;
  overflow: auto;
  transform: translateX(100%);
  transition: transform .28s ease;
}

.cart-drawer--open {
  pointer-events: auto;
}

.cart-drawer--open .cart-drawer__backdrop {
  opacity: 1;
}

.cart-drawer--open .cart-drawer__panel {
  transform: translateX(0);
}

.cart-drawer__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.cart-drawer__head h2 {
  margin: 6px 0 0;
  font-size: clamp(28px, 5vw, 40px);
}

.cart-items {
  display: grid;
  gap: 16px;
}

.cart-item {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr);
  gap: 16px;
  padding: 14px;
}

.cart-item--error {
  border-color: rgba(255, 126, 138, 0.4);
}

.cart-item-image .product-image-wrap,
.cart-item-image .product-image--empty {
  border-radius: 20px;
  overflow: hidden;
}

.cart-item-body {
  display: grid;
  gap: 12px;
}

.cart-item-top,
.cart-item-bottom,
.cart-summary-line,
.delivery-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.cart-item-top h3 {
  margin: 0 0 6px;
  font-size: 20px;
}

.icon-ghost {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  border: 1px solid var(--panel-border);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.qty-stepper {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.qty-btn {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 0;
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
  font-size: 24px;
  cursor: pointer;
}

.cart-item-meta {
  text-align: right;
}

.cart-footer,
.checkout-section {
  margin-top: 18px;
  padding: 18px;
}

.checkout-form {
  display: grid;
  gap: 14px;
}

.delivery-chip {
  flex: 1;
  min-height: 50px;
  border-radius: 999px;
  border: 1px solid var(--panel-border);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  font-weight: 700;
  cursor: pointer;
}

.delivery-chip--active {
  background: linear-gradient(135deg, rgba(75, 140, 255, 0.2), rgba(120, 169, 255, 0.12));
  border-color: rgba(120, 169, 255, 0.58);
  color: #fff;
}

.input-area {
  min-height: 118px;
  padding-top: 16px;
  padding-bottom: 16px;
  resize: vertical;
}

.primary-btn--full {
  width: 100%;
}

.checkout-note {
  font-size: 14px;
}

.site-toast {
  position: fixed;
  left: 50%;
  bottom: 26px;
  transform: translateX(-50%) translateY(24px);
  min-width: min(520px, calc(100% - 24px));
  max-width: min(520px, calc(100% - 24px));
  padding: 16px 18px;
  border-radius: 20px;
  color: #fff;
  background: rgba(7, 17, 40, 0.92);
  border: 1px solid var(--panel-border);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.32);
  opacity: 0;
  pointer-events: none;
  transition: transform .22s ease, opacity .22s ease;
  z-index: 120;
}

.site-toast--show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.site-toast--success {
  background: rgba(19, 49, 44, 0.96);
  border-color: rgba(79, 226, 167, 0.34);
}

.site-toast--error {
  background: rgba(57, 20, 31, 0.96);
  border-color: rgba(255, 126, 138, 0.34);
}

@media (max-width: 980px) {
  .hero-icon-actions {
    width: 100%;
    justify-content: stretch;
  }

  .hero-icon-actions > * {
    flex: 1 1 0;
  }

  .icon-pill {
    justify-content: flex-start;
  }
}

@media (max-width: 760px) {
  body {
    min-height: 100dvh;
  }

  .hero-top {
    gap: 14px;
  }

  .icon-pill {
    min-height: 54px;
    padding-right: 12px;
  }

  .cart-drawer__panel {
    width: 100%;
    border-radius: 28px 28px 0 0;
    inset: auto 0 0 0;
    height: min(90dvh, 100%);
    transform: translateY(100%);
  }

  .cart-drawer--open .cart-drawer__panel {
    transform: translateY(0);
  }

  .cart-item {
    grid-template-columns: 1fr;
  }

  .cart-item-meta {
    text-align: left;
  }

  .cart-item-bottom,
  .cart-summary-line,
  .delivery-row {
    flex-direction: column;
    align-items: stretch;
  }

  .delivery-chip {
    width: 100%;
  }

  .site-toast {
    bottom: calc(16px + env(safe-area-inset-bottom));
  }
}

.cart-pill-title,
.cart-pill-subtitle,
.cart-pill small,
.cart-pill span { color: #fff; }
.cart-drawer.is-hidden { display:none; }
.input--locked { opacity: .8; cursor: not-allowed; }
.select-input { appearance: none; }
.field-label { margin: 8px 0 10px; color: var(--muted); font-size: 14px; }
.basket-layout { margin-top: 32px; display: grid; grid-template-columns: minmax(0, 1.3fr) minmax(360px, .9fr); gap: 24px; align-items: start; }
.basket-items { display: grid; gap: 18px; }
.basket-item { display: grid; grid-template-columns: 112px minmax(0,1fr) auto; gap: 18px; padding: 18px; align-items: center; }
.basket-item__img img, .basket-item__img .product-image { width: 112px; height: 112px; border-radius: 22px; object-fit: cover; }
.basket-item__body h3 { margin: 0 0 8px; font-size: 30px; }
.basket-item__controls { display: inline-flex; align-items: center; gap: 12px; margin-top: 14px; padding: 8px 14px; border-radius: 999px; background: rgba(255,255,255,.04); }
.qty-btn, .basket-remove { border: 0; background: rgba(255,255,255,.08); color: var(--text); width: 38px; height: 38px; border-radius: 999px; cursor: pointer; font-size: 22px; }
.basket-item__side { display:flex; flex-direction:column; align-items:flex-end; gap:12px; }
.basket-side { display:grid; gap: 18px; position: sticky; top: 18px; }
.basket-summary-card { display:grid; gap: 14px; }
.address-options { display:grid; gap: 10px; }
.address-option { display:flex; gap: 12px; align-items:flex-start; padding: 16px 18px; border-radius: 20px; border: 1px solid var(--panel-border); background: rgba(255,255,255,.03); cursor: pointer; }
.address-option input { margin-top: 4px; }
.basket-address-section { display:grid; gap: 14px; }
.grid-2 { display:grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 12px; }
.preview-card { display:grid; gap: 14px; padding: 18px; border-radius: 24px; border: 1px solid var(--panel-border); background: rgba(255,255,255,.03); }
.preview-card h3 { margin: 0; font-size: 24px; }
.preview-items, .preview-totals { display:grid; gap: 10px; }
.preview-line, .preview-totals > div { display:flex; justify-content:space-between; gap: 16px; }
.preview-total { padding-top: 10px; border-top: 1px solid var(--panel-border); font-size: 20px; }
.order-status-large { display:inline-flex; padding: 10px 16px; border-radius: 999px; background: rgba(255,255,255,.06); margin-bottom: 16px; font-weight: 700; }
.order-page-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
@media (max-width: 980px) {
  .basket-layout, .order-page-grid { grid-template-columns: 1fr; }
  .basket-side { position: static; }
}
@media (max-width: 640px) {
  .basket-item { grid-template-columns: 1fr; }
  .basket-item__img img, .basket-item__img .product-image { width: 100%; height: auto; aspect-ratio: 1 / 1; }
  .basket-item__body h3 { font-size: 24px; }
  .grid-2 { grid-template-columns: 1fr; }
}

.field-label { display:block; margin: 4px 0 8px; color: var(--muted); font-size: 14px; }
.checkout-form { display:grid; gap: 14px; }
.preview-card { display:grid; gap: 14px; padding: 18px; border-radius: 22px; background: rgba(255,255,255,.04); border:1px solid var(--panel-border); }
.preview-card h3 { margin:0; font-size: 22px; }
.preview-totals { display:grid; gap:8px; }
.preview-line, .preview-total { display:flex; align-items:flex-start; justify-content:space-between; gap:12px; }
.preview-total { padding-top: 10px; margin-top: 8px; border-top:1px solid rgba(255,255,255,.08); font-size: 18px; }
.basket-layout { grid-template-columns: minmax(0, 1.05fr) minmax(380px, .95fr); gap: 28px; }
.basket-item__body h3 { font-size: 22px; }
.basket-item__side strong { font-size: 28px; }
.profile-lines.profile-lines--compact { gap:8px; }
.delivery-row { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:12px; }
.input--locked { opacity: .8; cursor: not-allowed; }
@media (max-width: 940px){ .hero { padding:24px; } .hero h1{font-size: clamp(34px, 10vw, 52px);} .hero p{font-size:18px;} .basket-layout{grid-template-columns:1fr;} .delivery-row{grid-template-columns:1fr 1fr;} }

/* Precise Smoke catalog upgrade */
.catalog-head { align-items: flex-end; }
.search-field {
  min-width: min(420px, 100%);
  min-height: 58px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid rgba(133, 164, 235, 0.24);
  background: rgba(255,255,255,0.055);
}
.search-field svg { color: var(--accent-2); flex: 0 0 auto; }
.search-field input {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--text);
  font: inherit;
}
.search-field input::placeholder { color: var(--muted); }
.category-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: -6px 0 24px;
}
.category-chip {
  min-height: 44px;
  border-radius: 999px;
  border: 1px solid var(--panel-border);
  background: rgba(255,255,255,0.045);
  color: var(--text);
  padding: 0 16px;
  cursor: pointer;
  font-weight: 800;
}
.category-chip span { color: var(--accent-2); margin-left: 6px; }
.category-chip.active {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  border-color: transparent;
  color: #fff;
}
.product-title-link { text-decoration: none; }
.product-meta-row, .price-row, .product-card-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.pill-tag, .stock-tag {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  border-radius: 999px;
  padding: 0 10px;
  font-size: 13px;
  color: #dce8ff;
  background: rgba(120,169,255,.11);
  border: 1px solid rgba(120,169,255,.18);
}
.stock-tag { color: var(--success); }
.price-row strong, .product-detail-price {
  color: var(--accent-2);
  font-size: 24px;
  font-weight: 900;
}
.product-card-actions { margin-top: auto; }
.product-more { min-height: 48px; padding-inline: 18px; }
.age-gate, .flavor-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(1, 5, 16, .72);
  backdrop-filter: blur(18px);
}
.age-card {
  width: min(500px, 100%);
  padding: 34px;
  text-align: center;
  background: linear-gradient(180deg, rgba(12, 28, 66, .98), rgba(6, 15, 38, .98));
}
.age-mark {
  width: 88px;
  height: 88px;
  margin: 0 auto 18px;
  display: grid;
  place-items: center;
  border-radius: 28px;
  font-size: 32px;
  font-weight: 950;
  color: #fff;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 18px 42px rgba(75,140,255,.3);
}
.age-card h2 { margin: 0 0 10px; font-size: 34px; }
.age-card p { color: var(--muted); line-height: 1.55; margin: 0 0 22px; }
.age-actions { display: grid; gap: 12px; grid-template-columns: 1fr 1fr; }
.modal-backdrop { position: absolute; inset: 0; }
.flavor-modal-card {
  position: relative;
  width: min(720px, 100%);
  max-height: min(88vh, 860px);
  overflow: auto;
  padding: 24px;
  background: linear-gradient(180deg, rgba(12, 28, 66, .98), rgba(6, 15, 38, .98));
}
.modal-head, .product-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}
.modal-head h2 { margin: 4px 0 0; }
.icon-ghost {
  width: 46px;
  height: 46px;
  border-radius: 16px;
  border: 1px solid var(--panel-border);
  background: rgba(255,255,255,.055);
  color: var(--text);
  cursor: pointer;
  font-size: 28px;
}
.flavor-modal-product {
  display: grid;
  grid-template-columns: 150px minmax(0,1fr);
  gap: 18px;
  align-items: center;
  margin-bottom: 18px;
}
.flavor-modal-product img, .flavor-modal-empty {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border-radius: 24px;
  background: rgba(255,255,255,.04);
  border: 1px solid var(--panel-border);
}
.flavor-modal-empty { display: grid; place-items: center; color: var(--muted); }
.flavor-modal-product h3 { margin: 6px 0 8px; font-size: 28px; }
.flavor-modal-product p { margin: 0; color: var(--muted); line-height: 1.5; }
.flavor-list { display: grid; gap: 10px; }
.flavor-option {
  width: 100%;
  min-height: 70px;
  border-radius: 20px;
  border: 1px solid var(--panel-border);
  background: rgba(255,255,255,.045);
  color: var(--text);
  padding: 14px 16px;
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
  text-align: left;
  cursor: pointer;
}
.flavor-option:hover { border-color: rgba(120,169,255,.55); background: rgba(75,140,255,.13); }
.flavor-option span { display: grid; gap: 4px; }
.flavor-option small { color: var(--muted); }
.flavor-option b { color: var(--accent-2); white-space: nowrap; }
.product-detail {
  display: grid;
  grid-template-columns: minmax(280px, .85fr) minmax(0, 1.15fr);
  gap: 28px;
  padding: 28px;
}
.product-detail-media img, .product-detail-media .product-image--empty {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 26px;
  border: 1px solid var(--panel-border);
}
.product-detail-info h1 { font-size: clamp(40px, 5vw, 68px); line-height: 1; margin: 10px 0 16px; }
.product-description { color: var(--muted); font-size: 19px; line-height: 1.55; }
.product-flavors { margin-top: 22px; }
.site-toast--success { background: rgba(79, 226, 167, .95); color: #03110c; }
.site-toast--error { background: rgba(255, 126, 138, .96); color: #2a0206; }
@media (max-width: 760px) {
  .catalog-head, .product-topbar { align-items: stretch; flex-direction: column; }
  .search-field { min-width: 100%; }
  .product-card-actions { flex-direction: column; align-items: stretch; }
  .product-more, .buy-btn { width: 100%; }
  .age-actions { grid-template-columns: 1fr; }
  .flavor-modal-product, .product-detail { grid-template-columns: 1fr; }
  .flavor-modal-product img, .flavor-modal-empty { width: 100%; height: auto; aspect-ratio: 1/1; }
}

/* Checkout v2 */
.checkout-page .hero h1 { margin-bottom: 18px; }
.checkout-steps { display:flex; gap:12px; flex-wrap:wrap; margin-top:24px; }
.checkout-step { display:inline-flex; align-items:center; gap:10px; padding:10px 14px; border-radius:999px; border:1px solid var(--panel-border); color:var(--muted); background:rgba(255,255,255,.035); }
.checkout-step span { width:28px; height:28px; display:inline-flex; align-items:center; justify-content:center; border-radius:50%; background:rgba(255,255,255,.08); color:#fff; font-weight:800; }
.checkout-step--active { color:#fff; border-color:rgba(120,169,255,.65); background:rgba(75,140,255,.16); }
.checkout-main { display:grid; gap:18px; }
.checkout-step-panel { display:grid; gap:18px; }
.basket-layout--simple { grid-template-columns:minmax(0,1.08fr) minmax(360px,.92fr); }
.mobile-summary-card { display:none; margin-top:16px; }
.checkout-summary-card { gap:16px; }
.side-preview-mini { display:grid; gap:10px; padding-top:4px; }
.checkout-lead { margin:6px 0 0; }
.checkout-form--clean { gap:18px; }
.delivery-row--cards { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:12px; }
.delivery-row--cards .delivery-chip { min-height:92px; display:grid; align-content:center; justify-items:center; gap:4px; border-radius:24px; }
.delivery-row--cards .delivery-chip span { font-size:26px; }
.delivery-row--cards .delivery-chip small { color:var(--muted); font-weight:600; }
.delivery-row--cards .delivery-chip--active small { color:#cfe0ff; }
.new-address-card { display:grid; gap:12px; padding:16px; border-radius:24px; border:1px solid var(--panel-border); background:rgba(255,255,255,.03); }
.address-option--active { border-color:rgba(120,169,255,.65); background:rgba(75,140,255,.12); }
.promo-row { display:grid; grid-template-columns:minmax(0,1fr) auto; gap:10px; align-items:center; }
.promo-message { margin-top:8px; color:var(--muted); font-size:14px; }
.promo-message--success { color:#8ff2c3; }
.promo-message--error { color:#ff9daa; }
.checkout-hint { padding:14px 0; }
.qty-btn:disabled { opacity:.45; cursor:not-allowed; transform:none; }
.mini-stock { margin-top:8px; font-size:13px; }
.site-toast--visible, .site-toast--show { opacity:1; transform:translateX(-50%) translateY(0); }
.site-toast--info { background:rgba(7,17,40,.96); }

/* Order page v2 */
.order-page { max-width:1240px; }
.order-hero .hero-top { align-items:flex-start; }
.order-status-strip { display:flex; align-items:center; gap:12px; flex-wrap:wrap; margin-top:22px; }
.order-total-pill { display:inline-flex; align-items:center; gap:10px; padding:10px 16px; border-radius:999px; border:1px solid var(--panel-border); background:rgba(255,255,255,.05); }
.order-total-pill span { color:var(--muted); }
.order-page-grid--modern { align-items:stretch; }
.order-info-card, .order-items-card, .order-faq-card { min-height:100%; }
.order-info-list { display:grid; gap:12px; }
.order-info-list > div { display:grid; gap:5px; padding:14px 16px; border-radius:18px; background:rgba(255,255,255,.035); border:1px solid rgba(255,255,255,.06); }
.order-info-list span { color:var(--muted); font-size:14px; }
.order-faq-card { margin-top:24px; }
.order-faq-grid { display:grid; grid-template-columns:repeat(4,minmax(0,1fr)); gap:12px; }
.faq-tile { display:grid; gap:8px; padding:18px; border-radius:22px; border:1px solid var(--panel-border); background:rgba(255,255,255,.035); }
.faq-tile span { color:var(--muted); }

@media (max-width:980px){
  .basket-layout--simple { grid-template-columns:1fr; }
  .checkout-side { position:static; }
  .mobile-summary-card { display:grid; }
  .order-faq-grid { grid-template-columns:repeat(2,minmax(0,1fr)); }
}
@media (max-width:640px){
  .delivery-row--cards, .promo-row, .order-faq-grid { grid-template-columns:1fr; }
  .basket-item__side { align-items:flex-start; }
  .checkout-steps { gap:8px; }
  .checkout-step { flex:1 1 auto; }
}

/* === Checkout v3: polished basket, product and order pages === */
.checkout-page { max-width: 1280px; }
.checkout-hero,
.order-modern-hero {
  padding: clamp(26px, 4vw, 42px);
  background:
    radial-gradient(circle at 92% 0%, rgba(93, 154, 255, .18), transparent 28%),
    linear-gradient(180deg, rgba(11, 27, 67, .96), rgba(5, 15, 38, .98));
}
.checkout-hero h1,
.order-modern-hero h1 { margin: 26px 0 14px; font-size: clamp(44px, 7vw, 76px); line-height: .95; letter-spacing: -.04em; }
.checkout-hero p,
.order-modern-hero p { max-width: 900px; color: var(--muted); font-size: clamp(17px, 2vw, 22px); line-height: 1.5; margin: 0; }
.checkout-progress { margin-top: 26px; display: flex; align-items: center; gap: 12px; max-width: 520px; }
.checkout-step { display: inline-flex; align-items: center; gap: 10px; padding: 10px 14px; border-radius: 999px; border: 1px solid var(--panel-border); color: var(--muted); background: rgba(255,255,255,.035); }
.checkout-step span { width: 28px; height: 28px; display: grid; place-items: center; border-radius: 50%; background: rgba(255,255,255,.06); font-weight: 900; color: var(--text); }
.checkout-step--active { color: var(--text); border-color: rgba(120,169,255,.55); background: rgba(75,140,255,.16); }
.checkout-step--active span { background: linear-gradient(135deg, var(--accent), var(--accent-2)); }
.checkout-line { flex: 1; height: 1px; background: var(--panel-border); }
.checkout-empty { text-align: center; padding: 42px; display: grid; gap: 12px; justify-items: center; }
.empty-emoji { width: 72px; height: 72px; display: grid; place-items: center; border-radius: 24px; background: rgba(120,169,255,.13); font-size: 34px; }
.checkout-shell { margin-top: 28px; }
.checkout-step-panel { display: grid; gap: 20px; }
.checkout-panel-head { display: flex; justify-content: space-between; align-items: flex-start; gap: 18px; }
.checkout-panel-head h2 { margin: 8px 0 6px; font-size: clamp(34px, 5vw, 52px); letter-spacing: -.03em; }
.checkout-panel-head p { margin: 0; }
.checkout-basket-items { display: grid; gap: 16px; }
.checkout-item { grid-template-columns: 112px minmax(0,1fr) auto; padding: 16px; background: linear-gradient(135deg, rgba(16,34,75,.96), rgba(7,18,43,.98)); border-color: rgba(120,169,255,.18); }
.checkout-item-kicker { color: var(--accent-2); font-weight: 800; margin-bottom: 5px; }
.checkout-item .basket-item__body h3 { font-size: clamp(21px, 3vw, 30px); line-height: 1.05; margin: 0 0 10px; }
.checkout-item .basket-item__side strong { font-size: clamp(24px, 3vw, 32px); white-space: nowrap; }
.checkout-item .qty-btn:disabled { opacity: .42; cursor: not-allowed; }
.checkout-bottom-bar { position: sticky; bottom: 18px; z-index: 20; display: flex; justify-content: space-between; align-items: center; gap: 18px; padding: 16px; background: rgba(7,18,43,.88); backdrop-filter: blur(18px); box-shadow: 0 18px 55px rgba(0,0,0,.32); }
.checkout-total-mini { display: flex; gap: 16px; flex-wrap: wrap; color: var(--muted); }
.checkout-total-mini strong { color: var(--text); }
.checkout-continue { min-width: 220px; }
.checkout-grid-v2 { display: grid; grid-template-columns: minmax(0,1fr) minmax(360px,.72fr); gap: 24px; align-items: start; }
.checkout-form-card,
.checkout-preview-card { padding: 22px; display: grid; gap: 18px; background: linear-gradient(180deg, rgba(10,24,56,.96), rgba(5,15,38,.98)); }
.delivery-row--large { grid-template-columns: repeat(2,minmax(0,1fr)); gap: 14px; }
.delivery-row--large .delivery-chip { min-height: 100px; border-radius: 24px; display: grid; place-items: center; gap: 5px; padding: 16px; text-align: center; }
.delivery-chip span { font-size: 26px; }
.delivery-chip strong { font-size: 18px; }
.delivery-chip small { color: var(--muted); font-size: 13px; }
.delivery-chip--active small { color: #dce8ff; }
.promo-card,
.new-address-card { border: 1px solid var(--panel-border); border-radius: 24px; padding: 18px; background: rgba(255,255,255,.035); display: grid; gap: 12px; }
.promo-card p { margin: 4px 0 0; }
.promo-row { display: grid; grid-template-columns: minmax(0,1fr) auto; gap: 10px; }
.promo-message { min-height: 22px; color: var(--muted); font-weight: 700; }
.promo-message--success { color: #8effcf; }
.promo-message--error { color: #ff9aa5; }
.address-options--modern .address-option { align-items: center; }
.address-option span { display: grid; gap: 4px; }
.address-option small { color: var(--muted); line-height: 1.35; }
.address-option--active { border-color: rgba(120,169,255,.6); background: rgba(75,140,255,.12); }
.checkout-hint-card { border: 1px dashed var(--panel-border); border-radius: 22px; padding: 18px; color: var(--muted); background: rgba(255,255,255,.025); }
.preview-card--modern { border-radius: 26px; background: rgba(255,255,255,.035); }
.preview-line small { display: block; color: var(--muted); margin-top: 2px; }
.preview-meta { display: flex; flex-wrap: wrap; gap: 8px; }
.preview-meta span { padding: 7px 10px; border-radius: 999px; background: rgba(120,169,255,.10); color: #cbdcff; font-size: 13px; }
.checkout-side-mini { margin-top: 12px; display: grid; gap: 10px; }
.checkout-submit { min-height: 58px; }
.site-toast--visible,
.site-toast--show { transform: translateY(0); opacity: 1; pointer-events: auto; }

/* Product / catalog visual fixes */
.advanced-filters { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; margin: 14px 0 24px; }
.filter-chip, .filter-select { min-height: 46px; border-radius: 999px; border: 1px solid var(--panel-border); background: rgba(255,255,255,.055); color: var(--text); padding: 0 16px; font-weight: 900; outline: none; }
.filter-chip { cursor: pointer; }
.filter-chip.active { background: linear-gradient(135deg, var(--accent), var(--accent-2)); border-color: transparent; color: #fff; }
.filter-select-label { display: inline-flex; align-items: center; gap: 8px; color: var(--muted); font-weight: 800; }
.filter-select option { color: #0b1632; }
.trust-row { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; margin: 10px 0 12px; }
.trust-badge { display: inline-flex; align-items: center; min-height: 32px; padding: 0 11px; border-radius: 999px; border: 1px solid rgba(120,169,255,.23); background: rgba(120,169,255,.09); color: #b8ccff; font-size: 13px; font-weight: 900; }
.trust-badge--hit { color: #ffd28c; background: rgba(255,161,65,.12); border-color: rgba(255,161,65,.28); }
.trust-badge--popular { color: #8effcf; background: rgba(79,226,167,.11); border-color: rgba(79,226,167,.24); }
.mini-specs, .spec-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 10px; margin: 14px 0; }
.mini-specs span, .spec-card { border: 1px solid var(--panel-border); border-radius: 18px; background: rgba(255,255,255,.035); padding: 11px 12px; display: grid; gap: 4px; }
.mini-specs small, .spec-card span { color: var(--muted); font-size: 12px; }
.mini-specs b, .spec-card strong { color: var(--text); font-size: 14px; }
.product-card { overflow: hidden; transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease; }
.product-card:hover { transform: translateY(-4px); border-color: rgba(120,169,255,.4); box-shadow: 0 24px 60px rgba(0,0,0,.32); }
.product-buy-panel { position: sticky; bottom: 18px; z-index: 6; margin: 18px 0; padding: 14px; display: flex; align-items: center; justify-content: space-between; gap: 14px; border: 1px solid rgba(120,169,255,.28); border-radius: 24px; background: rgba(8,20,48,.88); backdrop-filter: blur(14px); box-shadow: 0 16px 44px rgba(0,0,0,.28); }
.product-buy-panel span { color: var(--muted); display: block; font-size: 13px; margin-bottom: 4px; }
.product-buy-panel strong { font-size: 22px; color: var(--accent-2); }
.delivery-info { display: grid; gap: 10px; margin: 20px 0; }
.delivery-info div { border: 1px solid var(--panel-border); border-radius: 18px; background: rgba(255,255,255,.035); padding: 13px 14px; display: grid; gap: 4px; grid-template-columns: auto 1fr; align-items: start; }
.delivery-info strong { display: inline; margin-left: 6px; }
.delivery-info span { grid-column: 2; color: var(--muted); line-height: 1.45; }
.related-products { margin-top: 24px; }
.section-head--compact h2 { margin: 0 0 12px; font-size: clamp(28px,4vw,46px); }
.related-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 12px; }
.related-card { text-decoration: none; border: 1px solid var(--panel-border); border-radius: 20px; background: rgba(255,255,255,.04); padding: 14px; display: grid; gap: 6px; }
.related-card span, .related-card small { color: var(--muted); }
.related-card:hover { border-color: rgba(120,169,255,.45); background: rgba(75,140,255,.12); }
.flavor-option--active { border-color: rgba(79,226,167,.55); background: rgba(79,226,167,.10); }

/* Order page v3 */
.order-modern-hero { margin-top: 32px; }
.order-hero-main { display: grid; grid-template-columns: auto minmax(0,1fr); gap: 22px; align-items: center; margin-top: 28px; }
.order-status-emoji { width: 86px; height: 86px; display: grid; place-items: center; border-radius: 28px; background: rgba(120,169,255,.13); font-size: 42px; }
.order-status-strip { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; margin-top: 22px; }
.order-total-pill { display: inline-flex; align-items: center; gap: 10px; padding: 10px 16px; border-radius: 999px; border: 1px solid var(--panel-border); background: rgba(255,255,255,.045); }
.order-total-pill span { color: var(--muted); }
.order-modern-grid { display: grid; grid-template-columns: minmax(0,.95fr) minmax(0,1fr); gap: 22px; margin-top: 22px; }
.order-info-card, .order-items-card, .order-faq-card--modern { padding: 22px; }
.order-info-card h2, .order-items-card h2, .order-faq-card--modern h2 { font-size: clamp(32px,4vw,48px); margin: 0; }
.order-info-list { display: grid; gap: 12px; }
.order-info-list > div { padding: 16px; border-radius: 20px; border: 1px solid var(--panel-border); background: rgba(255,255,255,.035); display: grid; gap: 6px; }
.order-info-list span { color: var(--muted); }
.order-info-list strong { line-height: 1.45; }
.order-items--modern .order-item { display: flex; justify-content: space-between; align-items: center; gap: 18px; padding: 16px; border-radius: 20px; background: rgba(255,255,255,.045); }
.order-faq-card--modern { margin-top: 22px; }
.order-faq-grid { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 14px; }
.faq-tile { min-height: 170px; border: 1px solid var(--panel-border); border-radius: 24px; background: rgba(255,255,255,.035); padding: 18px; display: grid; gap: 10px; align-content: start; }
.faq-icon { width: 54px; height: 54px; display: grid; place-items: center; border-radius: 18px; background: rgba(120,169,255,.12); font-size: 28px; }
.faq-tile strong { font-size: 18px; }
.faq-tile small { color: var(--muted); line-height: 1.45; }
.order-error { margin-top: 32px; padding: 42px; text-align: center; display: grid; gap: 14px; justify-items: center; }

@media (max-width: 980px) {
  .checkout-grid-v2, .order-modern-grid { grid-template-columns: 1fr; }
  .checkout-bottom-bar { position: static; }
  .order-faq-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .related-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .checkout-panel-head, .checkout-bottom-bar, .order-hero-main { grid-template-columns: 1fr; display: grid; }
  .delivery-row--large, .promo-row, .mini-specs, .spec-grid, .order-faq-grid { grid-template-columns: 1fr; }
  .checkout-item { grid-template-columns: 1fr; }
  .checkout-item .basket-item__img img, .checkout-item .basket-item__img .product-image { width: 100%; height: auto; aspect-ratio: 1/1; }
  .checkout-continue { width: 100%; min-width: 0; }
  .product-buy-panel { bottom: 10px; flex-direction: column; align-items: stretch; }
  .product-buy-panel .primary-btn { width: 100%; }
}
/* Footer, contacts, reviews, privacy and support */
.ps-footer{background:linear-gradient(180deg,#f6f8fc,#edf2fb);color:#071128;margin-top:40px;border-top:1px solid rgba(7,17,40,.08)}
.ps-footer__top{display:grid;grid-template-columns:1.1fr 1fr 1.2fr;gap:60px;padding-top:42px!important;padding-bottom:38px!important}
.ps-footer__logo{font-size:36px;line-height:.9;font-weight:1000;letter-spacing:-.06em;color:#05070c;border-bottom:1px solid rgba(0,0,0,.45);padding-bottom:14px;margin-bottom:18px;width:max-content}
.ps-footer a{color:inherit;text-decoration:none}.ps-footer__phone{display:inline-block;font-size:23px;font-weight:900;margin-right:8px}.ps-footer__city,.ps-footer__time,.ps-footer__map,.ps-footer__about p{color:#7c8390}.ps-footer__map{display:block;margin-top:14px;font-size:18px;line-height:1.35}.ps-footer h3{font-size:18px;text-transform:uppercase;margin:0 0 18px;color:#030711}.ps-footer__nav{display:grid;align-content:start;gap:12px}.ps-footer__nav a{font-size:18px;color:#858b97}.ps-footer__nav a:hover,.ps-footer__map:hover{color:#0c64ff}.ps-footer__about p{font-size:18px;line-height:1.45;max-width:440px}.ps-footer__socials{display:flex;flex-wrap:wrap;gap:10px;margin-top:18px}.ps-footer__socials a{border:1px solid rgba(0,0,0,.12);border-radius:999px;padding:10px 14px;font-weight:800;background:#fff}.ps-footer__legal{background:#020204;color:#fff;display:grid;grid-template-columns:78px minmax(0,1fr);gap:24px;align-items:center;padding:26px max(20px,calc((100% - 1200px)/2));font-size:14px;line-height:1.45}.age-mark{width:64px;height:64px;border-radius:50%;background:#fff;color:#000;display:grid;place-items:center;font-size:24px;font-weight:1000}.support-fab{position:fixed;right:28px;bottom:28px;width:78px;height:78px;border-radius:50%;border:0;background:linear-gradient(135deg,#4b8cff,#20a7ff);box-shadow:0 18px 40px rgba(25,120,255,.38);font-size:34px;z-index:80;cursor:pointer}.support-modal{position:fixed;inset:0;z-index:90;display:grid;place-items:center;padding:20px}.support-modal__backdrop{position:absolute;inset:0;background:rgba(1,5,16,.72);backdrop-filter:blur(10px)}.support-modal__card{position:relative;width:min(560px,100%);padding:30px}.support-modal__card h2{font-size:42px;margin:8px 0 12px}.support-close{position:absolute;right:18px;top:18px;width:42px;height:42px;border-radius:14px;border:1px solid var(--panel-border);background:rgba(255,255,255,.06);color:#fff;font-size:28px}.support-textarea{width:100%;min-height:130px;margin:18px 0;border:1px solid var(--panel-border);border-radius:22px;background:rgba(255,255,255,.06);color:#fff;padding:16px;font:inherit;resize:vertical}.support-result{margin-top:14px;color:var(--muted);line-height:1.45}.support-result--success{color:#dffcf1}.support-result--error{color:#ffb7c0}.info-page{width:min(1120px,calc(100% - 40px));margin:0 auto;padding:50px 0 70px}.info-hero{padding:38px}.info-hero h1{font-size:clamp(42px,6vw,72px);margin:10px 0 16px;line-height:.95}.info-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(260px,1fr));gap:18px;margin-top:24px}.info-card{padding:24px;border-radius:26px;background:linear-gradient(180deg,rgba(16,33,74,.52),rgba(10,20,48,.9));border:1px solid var(--panel-border)}.info-card h3{margin:0 0 10px;font-size:22px}.info-card p,.info-card a{color:var(--muted);line-height:1.55}.map-card iframe{width:100%;height:360px;border:0;border-radius:26px}.review-form{display:grid;gap:14px}.review-form select,.review-form textarea{width:100%;border:1px solid var(--panel-border);border-radius:18px;background:rgba(255,255,255,.06);color:#fff;padding:14px;font:inherit}.review-form textarea{min-height:120px}.review-list{display:grid;gap:16px;margin-top:20px}.review-card{padding:20px;border-radius:22px;background:rgba(255,255,255,.05);border:1px solid var(--panel-border)}.review-stars{color:#ffd76a;font-size:20px}.privacy-text{font-size:17px;line-height:1.65;color:#cbd7f3}.privacy-text h2{color:#fff;margin-top:28px}@media(max-width:760px){.ps-footer__top{grid-template-columns:1fr;gap:28px}.ps-footer__legal{grid-template-columns:1fr}.support-fab{right:18px;bottom:18px;width:64px;height:64px}.ps-footer__logo{font-size:30px}}

/* Precise Smoke final polish */
.advanced-filters{display:flex;align-items:center;gap:10px;flex-wrap:wrap;margin:18px 0 22px}.filter-chip,.filter-select{border:1px solid var(--panel-border);background:rgba(255,255,255,.06);color:var(--text);border-radius:999px;padding:12px 16px;font-weight:800;box-shadow:none}.filter-chip.active{background:linear-gradient(135deg,#5f9aff,#3a7cff);border-color:rgba(130,180,255,.7);color:#fff}.filter-select-label{display:inline-flex;gap:8px;align-items:center;color:var(--muted);font-weight:700}.filter-select{border-radius:16px;outline:none}.filter-select option{color:#081126;background:#fff}
.product-card .product-body{display:flex;flex-direction:column;gap:14px;min-height:330px}.product-card-actions{margin-top:auto;display:grid;grid-template-columns:1fr 1fr;gap:12px}.product-more,.buy-btn{text-align:center;justify-content:center}.ps-trust-row,.mini-specs{display:flex;flex-wrap:wrap;gap:8px}.ps-trust-pill,.mini-spec{border:1px solid var(--panel-border);border-radius:999px;padding:7px 10px;background:rgba(255,255,255,.045);font-size:13px;color:var(--muted)}
.checkout-page{padding-top:42px}.checkout-hero{padding:38px}.checkout-hero h1{font-size:clamp(44px,7vw,74px);line-height:.95;margin:20px 0 14px}.checkout-shell{margin-top:28px}.checkout-step-panel{display:grid;gap:20px}.checkout-panel-head{display:flex;justify-content:space-between;gap:16px;align-items:flex-end}.checkout-panel-head h2{font-size:clamp(32px,4vw,52px);margin:8px 0 8px}.checkout-progress{display:flex;align-items:center;gap:14px;margin-top:28px}.checkout-step{display:flex;align-items:center;gap:10px;color:var(--muted)}.checkout-step span{display:grid;place-items:center;width:34px;height:34px;border-radius:50%;border:1px solid var(--panel-border);background:rgba(255,255,255,.05);font-weight:900}.checkout-step--active{color:#fff}.checkout-step--active span{background:#5d97ff}.checkout-line{height:1px;flex:1;background:var(--panel-border);max-width:120px}.checkout-bottom-bar{display:flex;justify-content:space-between;align-items:center;gap:16px;padding:18px 22px}.checkout-total-mini{display:flex;gap:18px;flex-wrap:wrap}.checkout-continue{min-width:190px}.checkout-grid-v2{display:grid;grid-template-columns:minmax(0,1.08fr) minmax(340px,.82fr);gap:22px;align-items:start}.checkout-form-card,.checkout-preview-card{padding:22px}.delivery-row--large{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:14px}.delivery-row--large .delivery-chip{height:auto;min-height:112px;border-radius:24px;display:grid;gap:6px;place-items:center;text-align:center}.delivery-row--large .delivery-chip span{font-size:30px}.delivery-row--large .delivery-chip small{color:var(--muted)}.promo-card,.new-address-card{border:1px solid var(--panel-border);border-radius:24px;background:rgba(255,255,255,.035);padding:18px;display:grid;gap:12px}.promo-row{display:grid;grid-template-columns:1fr auto;gap:12px}.promo-message{color:var(--muted);font-size:14px}.promo-message--success{color:#6ff0b4}.promo-message--error{color:#ff9ba7}.checkout-hint-card{border:1px dashed var(--panel-border);border-radius:22px;padding:18px;color:var(--muted)}.checkout-item{display:grid;grid-template-columns:112px minmax(0,1fr) auto;align-items:center;gap:20px;padding:18px}.checkout-item-kicker{color:var(--muted);font-weight:800}.qty-btn:disabled{opacity:.4;cursor:not-allowed}.qty-value{min-width:28px;text-align:center;font-weight:900}.mini-stock{margin-top:8px}.basket-item__side strong{font-size:28px}.profile-panel,.checkout-step-panel .card{overflow:hidden}
.order-modern-hero{padding:42px}.order-hero-main{display:flex;gap:24px;align-items:center}.order-status-emoji{width:86px;height:86px;border-radius:28px;background:rgba(255,255,255,.06);display:grid;place-items:center;font-size:42px;border:1px solid var(--panel-border)}.order-modern-hero h1{font-size:clamp(48px,7vw,82px);line-height:.9;margin:0 0 18px}.order-status-strip{display:flex;gap:12px;align-items:center;flex-wrap:wrap}.order-total-pill{display:inline-flex;gap:10px;align-items:center;border:1px solid var(--panel-border);border-radius:999px;padding:10px 16px;background:rgba(255,255,255,.05)}.order-modern-grid{display:grid;grid-template-columns:minmax(0,.95fr) minmax(0,1fr);gap:22px;margin-top:22px}.order-info-card,.order-items-card,.order-faq-card{padding:24px}.order-info-list{display:grid;gap:12px}.order-info-list>div{display:grid;gap:5px;border:1px solid var(--panel-border);border-radius:18px;background:rgba(255,255,255,.035);padding:14px}.order-info-list span{color:var(--muted)}.order-item{display:flex;justify-content:space-between;gap:16px;align-items:center;border-radius:18px;background:rgba(255,255,255,.045);padding:16px}.order-faq-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(210px,1fr));gap:14px}.faq-tile{border:1px solid var(--panel-border);border-radius:22px;padding:18px;background:rgba(255,255,255,.04);display:grid;gap:8px}.faq-icon{font-size:34px}.faq-tile small{color:var(--muted);line-height:1.45}
@media(max-width:980px){.checkout-grid-v2,.order-modern-grid{grid-template-columns:1fr}.checkout-panel-head{align-items:flex-start;flex-direction:column}.checkout-bottom-bar{align-items:stretch;flex-direction:column}.checkout-continue{width:100%}.delivery-row--large{grid-template-columns:1fr 1fr}.order-hero-main{align-items:flex-start;flex-direction:column}}
@media(max-width:640px){.checkout-item{grid-template-columns:1fr}.basket-item__side{align-items:flex-start}.promo-row,.delivery-row--large{grid-template-columns:1fr}.ps-footer__legal{font-size:12px}.product-card-actions{grid-template-columns:1fr}}

/* === commerce upgrade: reviews and support polish === */
.order-review-card{margin-top:22px;display:grid;gap:16px}.review-stars{display:flex;gap:8px}.review-star{width:48px;height:48px;border-radius:16px;border:1px solid rgba(255,255,255,.14);background:rgba(255,255,255,.06);color:#68789a;font-size:26px;cursor:pointer;transition:.18s}.review-star.active{color:#ffd45d;background:rgba(255,212,93,.13);border-color:rgba(255,212,93,.45);transform:translateY(-1px)}.review-comment{width:100%;border-radius:22px;border:1px solid rgba(255,255,255,.16);background:rgba(4,11,23,.74);color:#eef4ff;padding:16px;font:inherit}.product-reviews{margin-top:28px}.product-review-list{display:grid;gap:12px}.product-review{border:1px solid rgba(255,255,255,.12);background:rgba(255,255,255,.055);border-radius:20px;padding:14px}.product-review strong{color:#fff}.product-rating-pill{display:inline-flex;align-items:center;gap:8px;border:1px solid rgba(255,212,93,.25);background:rgba(255,212,93,.1);color:#ffd45d;border-radius:999px;padding:8px 12px;font-weight:900}.support-quick-actions{display:flex;gap:8px;flex-wrap:wrap;margin:10px 0}.support-quick-actions button{border-radius:999px;border:1px solid rgba(255,255,255,.12);background:rgba(255,255,255,.07);color:#eaf1ff;padding:9px 12px;font-weight:800;cursor:pointer}

/* === commerce upgrade: reviews and support polish === */
.order-review-card{margin-top:22px;display:grid;gap:16px}.review-stars{display:flex;gap:8px}.review-star{width:48px;height:48px;border-radius:16px;border:1px solid rgba(255,255,255,.14);background:rgba(255,255,255,.06);color:#68789a;font-size:26px;cursor:pointer;transition:.18s}.review-star.active{color:#ffd45d;background:rgba(255,212,93,.13);border-color:rgba(255,212,93,.45);transform:translateY(-1px)}.review-comment{width:100%;border-radius:22px;border:1px solid rgba(255,255,255,.16);background:rgba(4,11,23,.74);color:#eef4ff;padding:16px;font:inherit}.product-reviews{margin-top:28px}.product-review-list{display:grid;gap:12px}.product-review{border:1px solid rgba(255,255,255,.12);background:rgba(255,255,255,.055);border-radius:20px;padding:14px}.product-review strong{color:#fff}.product-rating-pill{display:inline-flex;align-items:center;gap:8px;border:1px solid rgba(255,212,93,.25);background:rgba(255,212,93,.1);color:#ffd45d;border-radius:999px;padding:8px 12px;font-weight:900}.support-quick-actions{display:flex;gap:8px;flex-wrap:wrap;margin:10px 0}.support-quick-actions button{border-radius:999px;border:1px solid rgba(255,255,255,.12);background:rgba(255,255,255,.07);color:#eaf1ff;padding:9px 12px;font-weight:800;cursor:pointer}

/* Profile login v2 — clean, light and not overloaded */
.page-profile{min-height:100vh;display:grid;place-items:start center;padding-top:clamp(34px,6vw,74px)}
.profile-shell.card{width:min(1040px,calc(100% - 28px));padding:clamp(26px,4.5vw,54px);border-radius:34px}
.profile-login-head{max-width:760px;margin-bottom:26px}.profile-login-head .eyebrow{margin-bottom:10px}
.profile-title{font-size:clamp(42px,7vw,76px);line-height:.94;letter-spacing:-.055em;margin-bottom:0}.profile-subtitle,.profile-topbar .ghost-btn{display:none!important}
.auth-stack{max-width:680px}.auth-card.auth-card--wide,.auth-card{position:relative;padding:clamp(22px,3vw,30px);border-radius:28px;background:radial-gradient(circle at 0 0,rgba(93,151,255,.18),transparent 38%),rgba(11,23,50,.72);box-shadow:0 22px 70px rgba(0,0,0,.26)}
.auth-card p{display:none}.auth-card h2{margin-bottom:18px;font-size:clamp(25px,3vw,34px);letter-spacing:-.035em}.auth-step{width:max-content;margin-bottom:14px;opacity:.82}
.auth-form{grid-template-columns:minmax(0,1fr) auto;align-items:center;gap:14px}.auth-form .input{min-height:62px;border-radius:20px;font-size:17px}.auth-form .primary-btn{min-height:62px;border-radius:999px;padding-inline:28px;white-space:nowrap}
.mail-bind-help{position:relative;width:max-content;margin-top:16px}.mail-bind-trigger{border:0;padding:0;background:transparent;color:rgba(174,195,237,.58);font:inherit;font-size:14px;font-weight:800;cursor:help;transition:color .18s ease,opacity .18s ease}.mail-bind-trigger:hover,.mail-bind-trigger:focus-visible{color:rgba(214,225,255,.96);outline:none}
.mail-bind-popover{position:absolute;left:0;bottom:calc(100% + 14px);z-index:20;width:min(410px,calc(100vw - 56px));padding:18px 18px 16px;border:1px solid rgba(150,179,239,.24);border-radius:22px;background:rgba(9,18,40,.96);box-shadow:0 24px 70px rgba(0,0,0,.38);color:#f4f7ff;opacity:0;transform:translateY(8px) scale(.98);pointer-events:none;transition:opacity .18s ease,transform .18s ease;backdrop-filter:blur(18px)}
.mail-bind-help:hover .mail-bind-popover,.mail-bind-help:focus-within .mail-bind-popover{opacity:1;transform:translateY(0) scale(1);pointer-events:auto}.mail-bind-popover strong{display:block;margin-bottom:10px;font-size:16px}.mail-bind-popover ol{margin:0;padding-left:20px;color:rgba(219,229,255,.82);line-height:1.55;font-size:14px}.mail-bind-popover::after{content:"";position:absolute;left:28px;bottom:-7px;width:14px;height:14px;transform:rotate(45deg);background:rgba(9,18,40,.96);border-right:1px solid rgba(150,179,239,.24);border-bottom:1px solid rgba(150,179,239,.24)}
@media(max-width:720px){.page-profile{padding-top:18px}.profile-shell.card{width:calc(100% - 18px);padding:22px;border-radius:28px}.auth-form{grid-template-columns:1fr}.auth-form .primary-btn{width:100%}.mail-bind-popover{left:50%;transform:translate(-50%,8px) scale(.98)}.mail-bind-help:hover .mail-bind-popover,.mail-bind-help:focus-within .mail-bind-popover{transform:translate(-50%,0) scale(1)}}

/* === Precise Smoke hotfix v4: dark footer, news icon, Victoria AI V2 === */
.hero h1{max-width:920px}.hero h1 + p:empty{display:none}.hero .eyebrow{white-space:nowrap}.hero-icon-actions{gap:10px}.news-pill{padding:10px!important;min-width:56px}.icon-circle--news{background:linear-gradient(135deg,#ffcf5d,#ff7a45)!important}.icon-circle--news svg{fill:#09122a}.ps-footer{background:#02050d!important;color:#f4f7ff!important;border-top:1px solid rgba(120,160,255,.16)!important}.ps-footer__logo,.ps-footer h3,.ps-footer__phone,.ps-footer__map{color:#fff!important}.ps-footer__city,.ps-footer__time,.ps-footer__about p,.ps-footer__nav a{color:#aebee4!important}.ps-footer__socials a{background:rgba(255,255,255,.06)!important;border-color:rgba(255,255,255,.16)!important;color:#fff!important}.support-fab{display:grid;place-items:center;overflow:hidden}.support-fab-icon{width:48px;height:48px;display:block;position:relative}.support-fab-icon::before{content:"🎧";position:absolute;inset:0;display:grid;place-items:center;font-size:38px;filter:drop-shadow(0 8px 12px rgba(0,0,0,.25))}.support-fab-icon::after{content:"";position:absolute;right:3px;bottom:3px;width:13px;height:13px;border-radius:50%;background:#45e084;border:3px solid #2f8dff}
.support-modal__card{width:min(680px,calc(100vw - 26px));max-height:min(860px,calc(100vh - 34px));display:flex;flex-direction:column;overflow:hidden;background:linear-gradient(180deg,rgba(9,18,40,.96),rgba(5,12,28,.98));border:1px solid rgba(125,166,255,.22);box-shadow:0 34px 90px rgba(0,0,0,.55), inset 0 1px 0 rgba(255,255,255,.08)}.support-thread--chat{height:min(430px,45vh);overflow:auto;border:1px solid rgba(255,255,255,.1);background:radial-gradient(circle at 20% 0%,rgba(84,141,255,.18),transparent 35%),rgba(3,10,24,.58);border-radius:26px;padding:16px;display:flex;flex-direction:column;gap:12px;scroll-behavior:smooth}.support-msg{max-width:86%;border:1px solid rgba(255,255,255,.1);border-radius:22px;padding:12px 14px;line-height:1.45;animation:supportIn .18s ease-out both;white-space:normal}.support-msg__name{font-size:12px;font-weight:900;color:#9fb4db;margin-bottom:5px;letter-spacing:.02em}.support-msg__text{color:#eef4ff}.support-msg--client{align-self:flex-end;background:linear-gradient(135deg,#5b97ff,#2d62d8);border-color:rgba(142,184,255,.48)}.support-msg--client .support-msg__name,.support-msg--client .support-msg__text{color:#fff}.support-msg--bot{align-self:flex-start;background:rgba(255,255,255,.075)}.support-msg--staff{align-self:flex-start;background:linear-gradient(135deg,rgba(255,255,255,.12),rgba(76,128,255,.14));border-color:rgba(125,166,255,.28)}.support-msg--system{align-self:center;max-width:94%;text-align:center;background:rgba(106,133,190,.12);color:#cbd8f6}.support-msg--system .support-msg__name{display:none}.support-compose{display:grid;grid-template-columns:1fr 132px;gap:10px;align-items:end;margin-top:12px}.support-textarea{min-height:78px!important;margin:0!important}.support-quick-actions{display:flex;gap:8px;flex-wrap:wrap;margin:12px 0}.support-quick-actions button{border-radius:999px;border:1px solid rgba(255,255,255,.12);background:rgba(255,255,255,.07);color:#eaf1ff;padding:10px 13px;font-weight:900;cursor:pointer;transition:.18s}.support-quick-actions button:hover{transform:translateY(-1px);border-color:rgba(101,156,255,.55);background:rgba(91,151,255,.16)}#supportCallSpecialist{border:1px solid rgba(255,255,255,.14);background:rgba(255,255,255,.07);color:#fff;border-radius:18px;padding:13px 16px;font-weight:900}.support-typing{display:flex;gap:5px;padding:4px 0}.support-typing span{width:7px;height:7px;border-radius:50%;background:#a9beea;animation:supportDot .9s infinite ease-in-out}.support-typing span:nth-child(2){animation-delay:.12s}.support-typing span:nth-child(3){animation-delay:.24s}@keyframes supportDot{0%,80%,100%{opacity:.35;transform:translateY(0)}40%{opacity:1;transform:translateY(-3px)}}@keyframes supportIn{from{opacity:0;transform:translateY(7px)}to{opacity:1;transform:translateY(0)}}
.news-shell{width:min(1180px,calc(100% - 28px));margin:0 auto;padding:34px 0 70px}.news-top{display:flex;justify-content:space-between;gap:14px;align-items:center;margin-bottom:20px}.news-feed{display:grid;gap:18px;margin:22px 0 56px}.news-post-card{border:1px solid rgba(110,150,255,.22);background:linear-gradient(135deg,rgba(10,24,54,.92),rgba(5,12,28,.96));border-radius:28px;padding:22px;box-shadow:0 20px 70px rgba(0,0,0,.25),inset 0 1px 0 rgba(255,255,255,.04)}.news-post-card h2,.news-post-title{margin:0 0 10px;color:#f4f7ff;font-size:26px}.news-post-meta{color:#94a8d4;font-size:14px;margin-bottom:12px}.news-post-text{color:#dce6ff;line-height:1.68;font-size:17px}.news-post-image{width:100%;max-height:420px;object-fit:cover;border-radius:20px;margin:12px 0}.reaction-row{display:flex;gap:8px;flex-wrap:wrap;margin-top:16px}.reaction-btn{border:1px solid rgba(255,255,255,.12);background:rgba(255,255,255,.06);color:#fff;border-radius:999px;padding:9px 12px;font-weight:900;cursor:pointer}.reaction-btn.active{background:rgba(91,151,255,.22);border-color:rgba(91,151,255,.6)}.reaction-note{margin-top:8px;color:#91a5d0;font-size:13px}.news-empty,.loading{border:1px dashed rgba(120,155,230,.25);background:rgba(255,255,255,.03);border-radius:22px;padding:22px;color:#9fb2df}@media(max-width:700px){.support-modal__card{width:calc(100vw - 18px);max-height:calc(100vh - 18px);border-radius:28px}.support-thread--chat{height:42vh}.support-compose{grid-template-columns:1fr}.support-msg{max-width:94%}.support-quick-actions{overflow:auto;flex-wrap:nowrap;padding-bottom:4px}.support-quick-actions button{white-space:nowrap}.news-top{display:grid}.news-post-card{border-radius:22px;padding:16px}.news-post-card h2,.news-post-title{font-size:22px}.news-post-text{font-size:16px}.hero-icon-actions{flex-wrap:wrap;justify-content:flex-start}}

/* === Precise Smoke News page PRO fix === */
.news-page-body{
  min-height:100vh;
  background:
    radial-gradient(circle at 18% 0%, rgba(72,132,255,.26), transparent 34%),
    radial-gradient(circle at 86% 10%, rgba(57,214,255,.10), transparent 30%),
    linear-gradient(180deg,#030817 0%,#06132d 48%,#020611 100%);
  color:#eef3ff;
}
.news-page-body::before{
  content:"";
  position:fixed;
  inset:0;
  pointer-events:none;
  background:linear-gradient(rgba(255,255,255,.025) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.018) 1px,transparent 1px);
  background-size:42px 42px;
  mask-image:linear-gradient(to bottom,rgba(0,0,0,.75),transparent 72%);
}
.news-layout{min-height:100vh;position:relative;z-index:1}.news-shell{width:min(1160px,calc(100% - 36px));margin:0 auto;padding:34px 0 64px}.news-hero-card{position:relative;overflow:hidden;border:1px solid rgba(120,169,255,.22);border-radius:34px;padding:clamp(28px,5vw,58px);background:linear-gradient(135deg,rgba(13,31,70,.92),rgba(4,11,26,.96));box-shadow:0 28px 90px rgba(0,0,0,.34),inset 0 1px 0 rgba(255,255,255,.06)}.news-hero-card::after{content:"";position:absolute;right:-90px;top:-120px;width:360px;height:360px;border-radius:50%;background:radial-gradient(circle,rgba(87,151,255,.42),transparent 62%);filter:blur(4px)}.news-hero-glow{position:absolute;inset:auto -10% -55% 30%;height:260px;background:radial-gradient(circle,rgba(72,132,255,.22),transparent 62%)}.news-hero-content{position:relative;z-index:2;max-width:820px}.news-kicker{display:inline-flex;align-items:center;gap:8px;margin-bottom:16px;padding:9px 13px;border-radius:999px;border:1px solid rgba(120,169,255,.25);background:rgba(120,169,255,.10);color:#bcd0ff;font-weight:900;letter-spacing:.08em;text-transform:uppercase;font-size:12px}.news-hero-card h1{margin:0;font-size:clamp(34px,6vw,68px);line-height:.98;letter-spacing:-.055em}.news-hero-card p{max-width:680px;margin:18px 0 0;color:#b7c8ed;font-size:clamp(16px,2vw,20px);line-height:1.55}.news-feed{display:grid;gap:18px;margin:24px 0 0}.news-post-card{position:relative;overflow:hidden;border:1px solid rgba(120,169,255,.20);background:linear-gradient(145deg,rgba(8,20,47,.88),rgba(4,10,23,.96));border-radius:30px;padding:clamp(18px,3vw,28px);box-shadow:0 20px 70px rgba(0,0,0,.25),inset 0 1px 0 rgba(255,255,255,.045);transition:transform .18s ease,border-color .18s ease,box-shadow .18s ease}.news-post-card:hover{transform:translateY(-3px);border-color:rgba(120,169,255,.38);box-shadow:0 30px 86px rgba(0,0,0,.32)}.news-post-card--pinned{border-color:rgba(255,207,93,.36);background:linear-gradient(145deg,rgba(17,31,64,.92),rgba(5,12,28,.96))}.news-post-meta{display:flex;flex-wrap:wrap;gap:8px;margin-bottom:14px;color:#a9bcdf;font-size:13px}.news-post-meta span{display:inline-flex;align-items:center;min-height:30px;padding:0 10px;border-radius:999px;background:rgba(255,255,255,.055);border:1px solid rgba(255,255,255,.08)}.news-post-title{margin:0 0 12px;color:#fff;font-size:clamp(24px,3vw,34px);line-height:1.12;letter-spacing:-.025em}.news-post-text{color:#dbe7ff;line-height:1.72;font-size:17px;max-width:980px}.news-post-image{display:block;width:100%;max-height:460px;object-fit:cover;border-radius:24px;margin:16px 0;border:1px solid rgba(255,255,255,.09)}.reaction-row{display:flex;gap:10px;flex-wrap:wrap;margin-top:18px}.reaction-btn{display:inline-flex;align-items:center;gap:7px;min-height:42px;border:1px solid rgba(255,255,255,.12);background:rgba(255,255,255,.07);color:#fff;border-radius:999px;padding:0 14px;font-weight:900;cursor:pointer;transition:.16s ease}.reaction-btn:not(:disabled):hover{transform:translateY(-2px);background:rgba(120,169,255,.15);border-color:rgba(120,169,255,.38)}.reaction-btn.active{background:linear-gradient(135deg,rgba(72,132,255,.36),rgba(120,169,255,.20));border-color:rgba(120,169,255,.72)}.reaction-btn:disabled{cursor:default;opacity:.78}.news-loading{border:1px dashed rgba(120,169,255,.30);background:rgba(255,255,255,.045);border-radius:26px;padding:28px;color:#b9c9ee;text-align:center;font-weight:800}.news-footer{border-top:1px solid rgba(120,169,255,.14);background:rgba(2,6,17,.50);backdrop-filter:blur(12px)}.news-footer-inner{padding:18px 0;display:flex;align-items:center;justify-content:space-between;color:#8fa3cc;font-weight:800}.news-age-modal{display:grid;place-items:center;padding:18px;background:rgba(2,6,17,.72);backdrop-filter:blur(18px)}.news-age-card{width:min(460px,100%);text-align:center;border-radius:32px;background:linear-gradient(145deg,rgba(12,29,67,.98),rgba(4,11,26,.98));border:1px solid rgba(120,169,255,.24);box-shadow:0 30px 100px rgba(0,0,0,.45);padding:32px}.news-age-card h2{font-size:clamp(28px,5vw,40px);line-height:1.04;margin:12px 0}.news-age-card p{color:#b8c9ee;line-height:1.55}.news-age-card .modal-buttons{display:grid;grid-template-columns:1fr 1fr;gap:10px;margin-top:20px}.news-age-card .btn{min-height:48px;border-radius:999px;border:1px solid rgba(255,255,255,.12);font-weight:900;cursor:pointer}.news-age-card .secondary{background:rgba(255,255,255,.06);color:#eef3ff}.age-badge{display:inline-grid;place-items:center;min-width:58px;height:34px;padding:0 12px;border-radius:999px;background:rgba(120,169,255,.14);border:1px solid rgba(120,169,255,.30);color:#d5e1ff;font-weight:1000}
@media(max-width:720px){.news-shell{width:min(100% - 18px,1160px);padding:14px 0 42px}.news-hero-card{border-radius:26px;padding:24px 18px}.news-hero-card h1{font-size:38px}.news-post-card{border-radius:24px;padding:18px}.news-post-meta{gap:6px}.news-post-meta span{font-size:12px;min-height:28px}.news-post-text{font-size:16px}.reaction-row{gap:8px}.reaction-btn{min-height:40px;padding:0 12px}.news-footer-inner{padding:16px 0}.news-age-card{border-radius:26px;padding:24px 18px}.news-age-card .modal-buttons{grid-template-columns:1fr}}

/* Info page */
.info-body {
  min-height: 100vh;
  background:
    radial-gradient(circle at 15% 0%, rgba(75, 140, 255, .35), transparent 34%),
    radial-gradient(circle at 85% 8%, rgba(79, 226, 167, .18), transparent 28%),
    linear-gradient(135deg, #030a1c 0%, #071432 54%, #020611 100%);
}
.info-page {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  padding: max(24px, env(safe-area-inset-top)) 0 52px;
}
.info-glass,
.info-card {
  position: relative;
  overflow: hidden;
  background: linear-gradient(145deg, rgba(16, 33, 72, .88), rgba(8, 18, 42, .82));
  border: 1px solid rgba(120, 169, 255, .22);
  box-shadow: 0 22px 70px rgba(0, 0, 0, .32), inset 0 1px 0 rgba(255, 255, 255, .06);
  backdrop-filter: blur(22px);
}
.info-glass::before,
.info-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  pointer-events: none;
  background: radial-gradient(circle at 18% 0%, rgba(255,255,255,.16), transparent 26%);
}
.info-hero {
  border-radius: 34px;
  padding: 30px;
  display: flex;
  justify-content: space-between;
  gap: 22px;
  align-items: flex-start;
}
.info-brand {
  display: flex;
  gap: 20px;
  align-items: center;
  min-width: 0;
}
.info-logo {
  width: 74px;
  height: 74px;
  flex: 0 0 74px;
  border-radius: 24px;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 22px;
  font-weight: 900;
  letter-spacing: .02em;
  background: linear-gradient(135deg, #2e7cff, #5fd7ff);
  box-shadow: 0 16px 36px rgba(47, 128, 255, .38);
}
.info-kicker {
  color: #91a3c7;
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 8px;
}
.info-hero h1,
.info-section h2,
.info-help h2 { margin: 0; }
.info-hero h1 {
  font-size: clamp(36px, 6vw, 70px);
  line-height: .95;
}
.info-hero p,
.info-section-head p,
.info-help p {
  color: #a9badc;
  font-size: 18px;
  line-height: 1.55;
  margin: 12px 0 0;
  max-width: 760px;
}
.info-back,
.info-help-actions a {
  min-height: 46px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  text-decoration: none;
  color: #eef3ff;
  font-weight: 900;
  border: 1px solid rgba(120, 169, 255, .22);
  background: rgba(255, 255, 255, .06);
  white-space: nowrap;
}
.info-section { margin-top: 30px; }
.info-section-head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: flex-end;
  margin-bottom: 16px;
}
.info-section h2 { font-size: clamp(26px, 4vw, 42px); }
.info-pill {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 13px;
  border-radius: 999px;
  font-weight: 900;
  font-size: 13px;
  margin-bottom: 10px;
  border: 1px solid rgba(255,255,255,.14);
}
.info-pill--vpn { color: #ffd6a0; background: rgba(255, 173, 74, .12); }
.info-pill--free { color: #9ff5d2; background: rgba(79, 226, 167, .12); }
.info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.info-card {
  min-height: 220px;
  border-radius: 30px;
  padding: 22px;
  color: #eef3ff;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}
.info-card:hover {
  transform: translateY(-4px);
  border-color: rgba(95, 215, 255, .52);
  background: linear-gradient(145deg, rgba(24, 48, 100, .92), rgba(8, 18, 42, .86));
}
.info-card--vpn { border-color: rgba(255, 173, 74, .22); }
.info-card-icon {
  width: 58px;
  height: 58px;
  border-radius: 20px;
  display: grid;
  place-items: center;
  font-size: 24px;
  font-weight: 1000;
  background: linear-gradient(135deg, #2e7cff, #5fd7ff);
  box-shadow: 0 14px 30px rgba(47, 128, 255, .28);
}
.info-card-content { position: relative; z-index: 1; flex: 1; }
.info-card h3 {
  margin: 0 0 8px;
  font-size: 22px;
}
.info-card p {
  margin: 0;
  color: #a9badc;
  line-height: 1.45;
}
.info-note {
  margin-top: 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 0 12px;
  border-radius: 999px;
  color: #ffe8c7;
  font-weight: 900;
  background: rgba(255, 173, 74, .12);
  border: 1px solid rgba(255, 173, 74, .22);
}
.info-arrow {
  position: absolute;
  right: 20px;
  bottom: 18px;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, .07);
  color: #fff;
  font-weight: 900;
}
.info-help {
  margin-top: 32px;
  padding: 28px;
  border-radius: 34px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.info-help-icon {
  width: 64px;
  height: 64px;
  flex: 0 0 64px;
  display: grid;
  place-items: center;
  border-radius: 22px;
  font-size: 28px;
  background: linear-gradient(135deg, #4fe2a7, #5fd7ff);
  box-shadow: 0 16px 38px rgba(79, 226, 167, .23);
}
.info-help-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 18px;
}
@media (max-width: 900px) {
  .info-grid { grid-template-columns: 1fr; }
  .info-section-head { align-items: flex-start; flex-direction: column; }
  .info-card { min-height: 0; }
}
@media (max-width: 620px) {
  .info-page { width: min(100% - 20px, 1160px); padding-bottom: 28px; }
  .info-hero { padding: 20px; border-radius: 28px; flex-direction: column; }
  .info-brand { align-items: flex-start; gap: 14px; }
  .info-logo { width: 58px; height: 58px; flex-basis: 58px; border-radius: 19px; font-size: 18px; }
  .info-hero p, .info-section-head p, .info-help p { font-size: 16px; }
  .info-card { border-radius: 26px; padding: 18px; }
  .info-card h3 { font-size: 20px; }
  .info-note { border-radius: 18px; align-items: flex-start; padding: 9px 12px; }
  .info-help { padding: 20px; border-radius: 28px; flex-direction: column; }
  .info-help-actions a, .info-back { width: 100%; }
}
