/* ══════════════════════════════════════════════════════════════════
   SNG Sigarety — Deep Navy + Gold design system
   Fonts: Cormorant Garamond (headings) + Inter (body)
   ══════════════════════════════════════════════════════════════════ */

:root {
  --bg: #0b1727;
  --surface: #152338;
  --surface-muted: #1d3050;
  --surface-raised: #2a4a7f;
  --text: #e8edf5;
  --text-soft: #8a9ab8;
  --text-muted: #7a8aaa;
  --border: rgba(201, 160, 66, 0.22);
  --border-solid: #253551;
  --primary: #1e3a5f;
  --primary-2: #2a5080;
  --accent: #c9a042;
  --accent-light: #f5d67a;
  --accent-deep: #a37d2b;
  --gold-glow: rgba(201, 160, 66, 0.15);
  --shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
  --shadow-card: 0 4px 20px rgba(0, 0, 0, 0.28);
  --radius: 8px;
  --radius-lg: 12px;
}

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  line-height: 1.15;
  font-weight: 600;
}

h2 { font-size: clamp(24px, 3vw, 36px); }

p { color: var(--text-soft); }

.container { width: min(1240px, calc(100% - 32px)); margin: 0 auto; }
.section { padding: 32px 0 56px; }
.section--catalog-toolbar { padding-bottom: 10px; }
.section--muted {
  background: linear-gradient(180deg, rgba(21, 35, 56, 0.9), rgba(11, 23, 39, 0.6));
}

.eyebrow {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  font-family: 'Inter', sans-serif;
}

/* ── Buttons ──────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
  min-height: 48px;
  font-size: 14px;
  letter-spacing: .05em;
  position: relative;
  overflow: hidden;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

/* Primary — gold gradient + glow shadow */
.btn-primary {
  background: linear-gradient(135deg, #d4aa4a 0%, #c9a042 55%, #b8902e 100%);
  color: #0b1727;
  border-color: #c9a042;
  box-shadow: 0 4px 16px rgba(201, 160, 66, 0.30), inset 0 1px 0 rgba(255,255,255,.12);
}
.btn-primary:hover {
  background: linear-gradient(135deg, #e0be5e 0%, #d4aa4a 55%, #c9a042 100%);
  border-color: var(--accent-light);
  box-shadow: 0 6px 24px rgba(201, 160, 66, 0.48), inset 0 1px 0 rgba(255,255,255,.16);
}
/* Shimmer sweep on hover */
.btn-primary::after {
  content: '';
  position: absolute;
  top: 0; left: -100%; width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.18), transparent);
  transform: skewX(-20deg);
  transition: left .45s ease;
}
.btn-primary:hover::after { left: 160%; }

/* Outline — gold border, strong hover */
.btn-outline {
  border-color: rgba(201, 160, 66, 0.55);
  background: transparent;
  color: var(--accent);
}
.btn-outline:hover {
  border-color: var(--accent);
  background: rgba(201, 160, 66, 0.10);
  color: var(--accent-light);
  box-shadow: 0 4px 16px rgba(201, 160, 66, 0.16);
}
.btn-block { width: 100%; }
.btn-lg { padding: 14px 24px; font-size: 15px; }
.btn-sm { min-height: 36px; padding: 8px 14px; font-size: 13px; }
.btn-badge { margin-left: 10px; font-size: 12px; padding: 4px 8px; border-radius: 999px; background: rgba(255,255,255,.14); }

/* ── Header / Navbar ──────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(20px);
  background: rgba(11, 23, 39, 0.96);
  border-bottom: 1px solid var(--border);
}
.navbar-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  min-height: 64px;
}
.nav-brand { display: flex; flex-direction: column; gap: 1px; }
.nav-brand a {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 24px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: -.01em;
}
.nav-subtitle { font-size: 10px; color: var(--text-muted); letter-spacing: .06em; text-transform: uppercase; }

.nav-actions { display: flex; align-items: center; gap: 10px; margin-left: auto; }
.nav-panel { display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.nav-links, .header-cta { display: flex; align-items: center; gap: 10px; }
.nav-links a, .nav-dropdown__trigger {
  padding: 8px 12px;
  border-radius: var(--radius);
  color: var(--text-soft);
  font-weight: 500;
  cursor: pointer;
  font-size: 14px;
  transition: .15s;
}
.nav-links a.is-active, .nav-links a:hover,
.nav-dropdown__trigger.is-active, .nav-dropdown__trigger:hover {
  background: var(--surface-muted);
  color: var(--accent);
}
.nav-dropdown { position: relative; }
.nav-dropdown__caret { font-size: 10px; display: inline-block; transition: transform .15s; }
.nav-dropdown:hover .nav-dropdown__caret,
.nav-dropdown.is-open .nav-dropdown__caret { transform: rotate(180deg); }
.nav-dropdown__menu {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  min-width: 190px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 6px;
  z-index: 200;
}
.nav-dropdown:hover .nav-dropdown__menu,
.nav-dropdown.is-open .nav-dropdown__menu { display: flex; flex-direction: column; }
.nav-dropdown__menu a {
  display: block;
  padding: 9px 12px;
  border-radius: var(--radius);
  color: var(--text);
  font-weight: 500;
  font-size: 13px;
  white-space: nowrap;
}
.nav-dropdown__menu a:hover { background: var(--surface-muted); color: var(--accent); }

.cart-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 8px 12px;
  border-radius: var(--radius);
  color: var(--text-soft);
  font-weight: 600;
  background: transparent;
  border: 1px solid transparent;
  transition: .15s;
}
.cart-link:hover { background: var(--surface-muted); color: var(--accent); }
.cart-link.is-active { background: var(--surface-muted); color: var(--accent); }
.cart-link--mobile { display: none; }
.cart-link__icon { font-size: 18px; line-height: 1; }
.cart-link__label { line-height: 1; }
.cart-link__count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 22px;
  height: 22px;
  padding: 0 6px;
  border-radius: 999px;
  background: var(--accent);
  color: #0b1727;
  font-size: 11px;
  font-weight: 700;
}
.nav-toggle {
  display: none;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text);
  border-radius: var(--radius);
  width: 44px;
  height: 44px;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  position: relative;
  transition: border-color .2s ease;
}
.nav-toggle:hover { border-color: var(--accent); }
.nav-toggle__bar {
  display: block;
  width: 20px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: transform .28s ease, opacity .2s ease, width .2s ease;
  transform-origin: center;
  pointer-events: none;
}
.nav-toggle.is-open .nav-toggle__bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle.is-open .nav-toggle__bar:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.nav-toggle.is-open .nav-toggle__bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ── Slider / Hero ────────────────────────────────────────────────── */
.hero-slider-section {
  position: relative;
  overflow: hidden;
}
.swiper-hero {
  width: 100%;
  height: 560px;
}
@media (max-width: 768px) {
  .swiper-hero { height: auto; min-height: 480px; }
}

/* Per-slide background gradients — each slide unique */
.hero-slide {
  position: relative;
  display: flex;
  align-items: center;
  padding: 60px 0;
  overflow: hidden;
  background: linear-gradient(145deg, #0b1727 0%, #1a3a5f 55%, #0c1d30 100%);
}
.hero-slide--2 { background: linear-gradient(145deg, #0b1727 0%, #0e2d35 55%, #0b1727 100%); }
.hero-slide--3 { background: linear-gradient(145deg, #0b1727 0%, #22173a 55%, #0b1727 100%); }
.hero-slide--4 { background: linear-gradient(145deg, #0c1620 0%, #1a2d40 55%, #0b1727 100%); }
.hero-slide--5 { background: linear-gradient(145deg, #0b1727 0%, #162a1c 55%, #0b1727 100%); }

/* Background decoration layer */
.hero-slide__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

/* Subtle gold grid lines — atmosphere texture */
.hero-slide__bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,160,66,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,160,66,.04) 1px, transparent 1px);
  background-size: 72px 72px;
}

/* Glowing radial circles — more visible now */
.hero-slide__bg-circle {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, var(--accent) 0%, transparent 65%);
  opacity: .14;
}

/* Diagonal gold rule across the slide */
.hero-slide__bg-line {
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  width: 1px;
  background: linear-gradient(180deg, transparent 0%, rgba(201,160,66,.18) 30%, rgba(201,160,66,.25) 50%, rgba(201,160,66,.18) 70%, transparent 100%);
  display: none; /* shown only in split layout */
}

/* ── Split layout (text left + stat right) ── */
.hero-slide__split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: center;
  width: 100%;
}
.hero-slide__split .hero-slide__bg-line { display: block; }

.hero-slide__content {
  position: relative;
  z-index: 2;
  max-width: 680px;
}

/* Big decorative stat on the right */
.hero-slide__stat {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  padding-left: 48px;
}
.hero-slide__stat-number {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(90px, 13vw, 180px);
  font-weight: 700;
  line-height: .85;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(201, 160, 66, 0.38);
  letter-spacing: -.04em;
  user-select: none;
  text-align: right;
}
.hero-slide__stat-sublabel {
  margin-top: 14px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-align: right;
  max-width: 200px;
}
.hero-slide__stat-accent {
  display: block;
  width: 48px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent));
  margin: 10px 0 0 auto;
}

/* ── Slide content entry animation ── */
@keyframes heroTextIn {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes heroStatIn {
  from { opacity: 0; transform: translateX(28px) scale(.96); }
  to   { opacity: 1; transform: translateX(0) scale(1); }
}
.swiper-slide-active .hero-slide__eyebrow  { animation: heroTextIn .5s .05s ease both; }
.swiper-slide-active .hero-slide__title    { animation: heroTextIn .55s .12s ease both; }
.swiper-slide-active .hero-slide__desc     { animation: heroTextIn .5s .22s ease both; }
.swiper-slide-active .hero-slide__actions  { animation: heroTextIn .5s .32s ease both; }
.swiper-slide-active .hero-slide__stat     { animation: heroStatIn .65s .15s ease both; }
.swiper-slide-active .hero-slide__contacts { animation: heroTextIn .5s .18s ease both; }
.swiper-slide-active .hero-benefit-grid    { animation: heroTextIn .5s .22s ease both; }

/* Eyebrow, title, desc, actions start hidden so animation is visible */
.hero-slide__eyebrow,
.hero-slide__title,
.hero-slide__desc,
.hero-slide__actions,
.hero-slide__stat,
.hero-slide__contacts,
.hero-benefit-grid { opacity: 0; }
.swiper-slide-active .hero-slide__eyebrow,
.swiper-slide-active .hero-slide__title,
.swiper-slide-active .hero-slide__desc,
.swiper-slide-active .hero-slide__actions,
.swiper-slide-active .hero-slide__stat,
.swiper-slide-active .hero-slide__contacts,
.swiper-slide-active .hero-benefit-grid { opacity: 1; }

/* ── Slide text elements ── */
.hero-slide__eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero-slide__eyebrow::before {
  content: '';
  display: inline-block;
  width: 28px; height: 1px;
  background: var(--accent);
  flex-shrink: 0;
}
.hero-slide__title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 600;
  color: var(--text);
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -.01em;
}
.hero-slide__title em,
.hero-slide__title .text-accent {
  font-style: normal;
  color: var(--accent);
}
.hero-slide__desc {
  font-size: 17px;
  color: var(--text-soft);
  margin-bottom: 28px;
  max-width: 560px;
  line-height: 1.65;
}
.hero-slide__actions { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-slide__contacts { display: grid; gap: 10px; }

.hero-contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(21,35,56,.7);
  transition: border-color .2s, background .2s;
  backdrop-filter: blur(8px);
}
.hero-contact-item:hover { border-color: var(--accent); background: rgba(30,50,84,.8); }
.hero-contact-item__label { font-size: 11px; text-transform: uppercase; letter-spacing: .08em; color: var(--text-muted); font-weight: 600; margin-bottom: 2px; }
.hero-contact-item__value { font-size: 15px; font-weight: 600; color: var(--text); }
.hero-contact-item__icon { font-size: 22px; }

/* Swiper overrides */
.swiper-pagination-bullet {
  background: rgba(201,160,66,.35);
  opacity: 1;
  width: 8px; height: 8px;
}
.swiper-pagination-bullet-active {
  background: var(--accent);
  width: 28px;
  border-radius: 4px;
}
.swiper-button-next, .swiper-button-prev {
  color: var(--accent);
  --swiper-navigation-size: 20px;
  width: 40px; height: 40px;
  background: rgba(11,23,39,.6);
  border: 1px solid rgba(201,160,66,.25);
  border-radius: var(--radius);
  backdrop-filter: blur(8px);
  transition: border-color .2s, background .2s;
}
.swiper-button-next:hover, .swiper-button-prev:hover {
  border-color: var(--accent);
  background: rgba(201,160,66,.12);
}
.swiper-button-next::after, .swiper-button-prev::after { font-size: 16px; font-weight: 700; }

/* Responsive: hide stat on mobile */
@media (max-width: 900px) {
  .hero-slide__split { grid-template-columns: 1fr; }
  .hero-slide__stat  { display: none; }
  .hero-slide__bg-line { display: none; }
}

/* Old .hero kept minimal for any remaining references */
.hero { padding: 48px 0 34px; }
.hero-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: 24px; align-items: stretch; }
.hero h1 { font-size: clamp(32px, 5vw, 56px); margin-bottom: 18px; color: var(--text); }
.hero p { max-width: 680px; font-size: 17px; margin-bottom: 22px; }
.hero-actions, .modal-actions, .hero-contact-cards { display: flex; gap: 12px; flex-wrap: wrap; }
.modal-actions { justify-content: center; }
.product-actions-row { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-benefit-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 12px; margin-top: 18px; }
.benefit-item {
  background: var(--surface-muted);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px;
  font-weight: 600;
  font-size: 14px;
}
.hero-panel { padding: 28px; }
.trust-panel { display: grid; gap: 14px; }
.trust-badge {
  display: inline-flex;
  width: fit-content;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--gold-glow);
  color: var(--accent);
  font-weight: 700;
  border: 1px solid var(--border);
}
.trust-quote {
  padding: 14px;
  border-radius: var(--radius);
  background: var(--surface-muted);
  border: 1px solid var(--border);
  color: var(--text-soft);
  font-style: italic;
}
.proof-links { display: grid; gap: 10px; }

/* ── Shared surface cards ─────────────────────────────────────────── */
.hero-panel, .details-card, .filters-card, .product-card, .article-card,
.contact-card, .product-gallery-card, .product-main-card {
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border-solid);
}

/* Product & article cards: smooth lift on hover */
.product-card, .article-card {
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
  position: relative;
  overflow: hidden;
}
/* Gold hairline accent at top, reveals on hover */
.product-card::before, .article-card::before {
  content: '';
  position: absolute;
  top: 0; left: 10%; right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0;
  transition: opacity .25s ease, left .25s ease, right .25s ease;
  z-index: 3;
}
.product-card:hover::before, .article-card:hover::before {
  opacity: 1;
  left: 0; right: 0;
}

.hero-panel:hover, .product-card:hover, .article-card:hover, .sigarety-card:hover {
  border-color: rgba(201, 160, 66, 0.45);
}
.product-card:hover, .article-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(0,0,0,.35), 0 4px 16px rgba(201,160,66,.10);
}
.sigarety-card {
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.sigarety-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0,0,0,.3), 0 2px 10px rgba(201,160,66,.08);
}

/* ── Page hero ────────────────────────────────────────────────────── */
.page-hero { padding: 28px 0 10px; }
.page-hero--compact h1 {
  font-size: clamp(36px, 5vw, 54px);
  color: var(--text);
  margin-bottom: 10px;
}

/* ── Section head ─────────────────────────────────────────────────── */
.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 22px;
}
.section-link { color: var(--accent); font-weight: 600; transition: .15s; }
.section-link:hover { color: var(--accent-light); }
.section-subtitle { font-size: 17px; font-weight: 600; margin: 0 0 16px; color: var(--text); }

/* ── Product / Article grids ──────────────────────────────────────── */
.products-grid, .articles-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.catalog-products-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }

/* ── Product card ─────────────────────────────────────────────────── */
.product-card__image-wrap { display: block; overflow: hidden; }
.product-image {
  width: 100%;
  height: auto;
  display: block;
  background: var(--surface-muted);
  border-bottom: 1px solid var(--border-solid);
  border-radius: var(--radius) var(--radius) 0 0;
  transition: transform .25s ease;
}
.product-card:hover .product-image { transform: scale(1.03); }
.product-placeholder {
  width: 100%;
  aspect-ratio: 4 / 5;
  display: grid;
  place-items: center;
  background: var(--surface-muted);
  border-bottom: 1px solid var(--border-solid);
  border-radius: var(--radius) var(--radius) 0 0;
  font-size: 20px;
  font-weight: 700;
  color: var(--text-soft);
}
.product-content, .article-content { padding: 14px 16px; }
.product-content { display: flex; flex-direction: column; }
.product-content--catalog { min-height: 0; }
.product-title { font-size: 18px; margin-bottom: 10px; color: var(--text); }
.product-title a:hover, .article-title a:hover { color: var(--accent); }
.product-meta-line, .chips-row, .article-meta, .breadcrumbs { display: flex; gap: 8px; flex-wrap: wrap; }
.product-meta-line { color: var(--text-muted); font-size: 13px; margin-bottom: 10px; }

/* ── Chips ────────────────────────────────────────────────────────── */
.chip {
  display: inline-flex;
  align-items: center;
  padding: 5px 10px;
  border-radius: 6px;
  background: var(--surface-muted);
  color: var(--text-soft);
  font-size: 13px;
  font-weight: 600;
  border: 1px solid var(--border-solid);
}
.chips-row--compact .chip { padding: 3px 8px; font-size: 11px; }
.chip--accent { background: var(--gold-glow); color: var(--accent); border-color: var(--border); }
.chip--country { background: rgba(30,58,95,.4); color: #6fa3d8; border-color: rgba(30,58,95,.6); }
.chip--format { background: var(--surface-muted); color: var(--text-soft); }
.chip--strength { background: rgba(201,160,66,.1); color: var(--accent); border-color: var(--border); }
.chip--active { background: var(--accent); color: #0b1727; border-color: var(--accent); }

/* ── Prices ───────────────────────────────────────────────────────── */
.product-description { font-size: 14px; margin: 10px 0; color: var(--text-soft); }
.catalog-mini-specs { display: flex; flex-wrap: wrap; gap: 8px 14px; font-size: 13px; color: var(--text-muted); margin: 8px 0 6px; }
.catalog-mini-specs span {
  padding: 5px 10px;
  background: var(--surface-muted);
  border: 1px solid var(--border-solid);
  border-radius: 6px;
}
.product-prices { display: grid; gap: 14px; margin: 14px 0; }
.product-prices.compact { grid-template-columns: repeat(2, minmax(0, 1fr)); align-items: end; }
.price-label { display: block; font-size: 11px; text-transform: uppercase; letter-spacing: .08em; color: var(--text-muted); font-family: 'Inter', sans-serif; }
.price-value { font-size: 22px; font-weight: 700; color: var(--accent); font-family: 'Inter', sans-serif; }
.price-value--large { font-size: 32px; }
/* Pack = primary price, Box = secondary */
.product-prices.compact > div:first-child .price-value { font-size: 26px; font-weight: 800; }
.product-prices.compact > div:last-child .price-value { font-size: 13px; font-weight: 600; color: var(--text-muted); }
.product-prices.compact > div:last-child .price-label { font-size: 10px; }
.price-detail, .form-note { color: var(--text-soft); font-size: 13px; }

/* ── Health warning ───────────────────────────────────────────────── */
.warning-minzdrav {
  margin-top: 14px;
  padding: 12px 14px;
  border-radius: var(--radius);
  border: 1px solid rgba(180,130,40,.3);
  background: rgba(201,160,66,.06);
  color: #c9a042;
  font-size: 13px;
}
.warning-minzdrav--thin {
  margin-top: 0;
  border-radius: 0;
  background: transparent;
  border: 0;
  border-top: 1px solid var(--border-solid);
  color: var(--text-muted);
  font-size: 11px;
  padding: 10px 0 0;
}
.warning-minzdrav--footer { margin-top: 24px; text-align: center; }

/* ── Catalog layout ───────────────────────────────────────────────── */
.catalog-layout, .product-layout, .product-details-layout, .cart-layout, .article-layout {
  display: grid;
  gap: 24px;
}
.catalog-topline { margin-bottom: 18px; color: var(--text-soft); }
.catalog-topline--actions { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.catalog-inline-actions { display: flex; align-items: center; gap: 12px; }
.inline-sort-form { display: inline-flex; align-items: center; gap: 8px; }
.inline-sort-form select {
  min-height: 36px;
  padding: 8px 12px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text);
}
.catalog-sort-label { font-size: 13px; color: var(--text-soft); font-weight: 600; }
.filters-card, .details-card, .product-main-card { padding: 22px; }
.soft-card { margin: 18px 0 0; background: var(--surface-muted); }
.filters-title { font-size: clamp(18px, 2vw, 24px); margin-bottom: 18px; color: var(--text); }
.filter-group { display: grid; gap: 8px; margin-bottom: 16px; }
.filter-group input, .filter-group select,
.form-group input, .form-group textarea,
.quantity-row input, .cart-item-quantity input {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface-muted);
  color: var(--text);
  font: inherit;
  font-size: 15px;
}
.filter-group input:focus, .filter-group select:focus,
.form-group input:focus, .form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
}

/* ── Catalog filter bar ───────────────────────────────────────────── */
.catalog-filter-bar {
  background: var(--surface);
  border-bottom: 1px solid var(--border-solid);
  padding: 12px 20px;
  display: flex;
  align-items: flex-end;
  gap: 8px;
}
.catalog-filter-bar__field { flex: 1; min-width: 0; display: grid; gap: 6px; }
.catalog-filter-bar__field--search { flex: 1.6; }
.catalog-filter-bar__field label { font-size: 12px; color: var(--text-soft); font-weight: 500; }
.catalog-filter-bar__field input, .catalog-filter-bar__field select {
  width: 100%;
  height: 36px;
  min-height: 36px;
  padding: 6px 10px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface-muted);
  color: var(--text);
  font: inherit;
  font-size: 14px;
}
.catalog-filter-bar__field select.active-filter { border-color: var(--accent); background: var(--gold-glow); }
.catalog-filter-bar__actions { display: flex; align-items: flex-end; gap: 8px; margin-left: auto; }
.product-card--catalog .product-title { font-size: 16px; }

/* ── Empty / stock / badges ───────────────────────────────────────── */
.empty-state {
  padding: 28px;
  background: var(--surface);
  border-radius: var(--radius);
  color: var(--text-soft);
  border: 1px dashed var(--border);
  display: grid;
  gap: 10px;
}
.stock-badge {
  display: inline-flex;
  width: fit-content;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(201, 160, 66, 0.12);
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 10px;
  border: 1px solid var(--border);
}
.product-actions-row--bottom { margin-top: auto; padding-top: 12px; align-items: stretch; }
.product-actions-row .btn { flex: 0 0 auto; }
.catalog-card-actions { display: flex; gap: 10px; align-items: stretch; }
.btn-catalog-action { flex: 1 1 0; min-width: 0; min-height: 44px; font-size: 14px; font-weight: 600; }
.mobile-filter-btn { display: none; }
.catalog-results-summary { font-weight: 700; color: var(--text); }

/* ── View toggle ──────────────────────────────────────────────────── */
.view-toggle {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface);
}
.view-toggle__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  color: var(--text-soft);
  font-size: 16px;
}
.view-toggle__btn.is-active { background: var(--surface-muted); color: var(--accent); }
.catalog-view { display: none; }
.catalog-view.is-active { display: block; }

/* ── Catalog list (table) ─────────────────────────────────────────── */
.catalog-list-table-wrap {
  border: 1px solid var(--border-solid);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--surface);
}
.catalog-list-table { width: 100%; border-collapse: collapse; min-width: 980px; }
.catalog-list-table thead { background: var(--surface-muted); }
.catalog-list-table th, .catalog-list-table td {
  padding: 10px 12px;
  text-align: left;
  border-bottom: 1px solid var(--border-solid);
  vertical-align: middle;
  font-size: 12px;
  color: var(--text-soft);
}
.catalog-list-table th { color: var(--text); }
.catalog-list-table tbody tr:hover td { background: var(--surface-muted); }
.catalog-row-thumb { width: 28px; height: 28px; border-radius: 4px; object-fit: contain; background: var(--surface-muted); }
.catalog-row-thumb--placeholder {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--surface-muted);
  color: var(--text-soft);
  font-size: 9px;
  font-weight: 700;
}
.catalog-row-name {
  display: block;
  max-width: 220px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 12px;
  font-weight: 700;
  color: var(--accent);
}
.catalog-row-subtitle, .catalog-row-meta { font-size: 11px; color: var(--text-muted); }
.catalog-row-price { font-size: 13px; font-weight: 700; color: var(--accent); }
.chip--table { font-size: 10px; padding: 2px 6px; border-radius: 4px; }
.chip--strength-light { background: rgba(201,160,66,.1); color: var(--accent); }
.chip--strength-medium { background: rgba(201,160,66,.18); color: var(--accent-light); }
.chip--strength-ultra { background: var(--surface-muted); color: var(--text-soft); }
.chip--strength-rich { background: rgba(220,38,38,.12); color: #e87070; }

/* ── Stock indicator ──────────────────────────────────────────────── */
.stock-indicator { display: inline-flex; align-items: center; gap: 4px; font-size: 11px; font-weight: 700; }
.stock-indicator::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: currentColor; }
.stock-indicator--in { color: #5bc78a; }
.stock-indicator--out { color: var(--text-muted); }
.catalog-row-actions { display: flex; justify-content: flex-end; gap: 4px; }
.btn-table-action { min-height: 32px; padding: 4px 10px; font-size: 11px; border-radius: var(--radius); }

/* ── Catalog list mobile ──────────────────────────────────────────── */
.catalog-list-mobile {
  display: none;
  list-style: none;
  background: var(--surface);
  border: 1px solid var(--border-solid);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.catalog-mobile-row {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 12px;
  border-bottom: 1px solid var(--border-solid);
}
.catalog-mobile-row:last-child { border-bottom: 0; }
.catalog-mobile-row__thumb, .catalog-mobile-row__thumb--placeholder {
  width: 32px; height: 32px; border-radius: 4px;
  object-fit: contain; background: var(--surface-muted);
}
.catalog-mobile-row__thumb--placeholder {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--text-soft);
  font-size: 10px;
  font-weight: 700;
}
.catalog-mobile-row__info { flex: 1; min-width: 0; }
.catalog-mobile-row__title {
  display: block; font-size: 12px; font-weight: 700; color: var(--text);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.catalog-mobile-row__meta { display: flex; flex-wrap: wrap; gap: 4px; margin-top: 4px; }
.catalog-mobile-row__nicotine { font-size: 10px; color: var(--text-muted); align-self: center; }
.catalog-mobile-row__actions { display: flex; flex-direction: column; align-items: flex-end; gap: 4px; }
.catalog-mobile-row__price { font-size: 12px; font-weight: 700; color: var(--accent); }
.catalog-mobile-row__box-price { font-size: 10px; color: var(--text-muted); }
.btn-mobile-cart { min-height: 36px; padding: 8px 10px; font-size: 11px; }

/* ── Pagination ───────────────────────────────────────────────────── */
.catalog-pagination { display: flex; justify-content: center; margin-top: 28px; }
.catalog-pagination__desktop { display: flex; align-items: center; gap: 14px; }
.catalog-pagination__summary { color: var(--text-soft); font-size: 13px; }
.catalog-pagination__controls { display: flex; gap: 6px; }
.catalog-pagination__link {
  min-width: 36px; height: 36px;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--text-soft);
  font-weight: 600;
  transition: .15s;
}
.catalog-pagination__link:hover { border-color: var(--accent); color: var(--accent); }
.catalog-pagination__link.is-active { background: var(--accent); color: #0b1727; border-color: var(--accent); }
.catalog-pagination__mobile { display: none; width: 100%; align-items: center; justify-content: space-between; gap: 12px; }

/* ── Drawer / Filters ─────────────────────────────────────────────── */
.drawer-backdrop { display: none; position: fixed; inset: 0; background: rgba(0,0,0,.5); z-index: 89; }
.drawer-backdrop.is-visible { display: block; }
.drawer-actions { display: grid; gap: 10px; margin-top: 18px; }
.drawer-actions--mobile { display: none; }
.drawer-actions__buttons { display: grid; gap: 10px; }
.drawer-close-btn {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text);
  font-size: 18px;
  cursor: pointer;
}
body.drawer-open { overflow: hidden; }
.cart-count-bump { animation: cartCountBump .25s ease; }
@keyframes cartCountBump { 0% { transform: scale(1); } 50% { transform: scale(1.14); } 100% { transform: scale(1); } }

/* ── Breadcrumbs ──────────────────────────────────────────────────── */
.breadcrumbs { color: var(--text-muted); font-size: 13px; }
.breadcrumbs a:hover { color: var(--accent); }
.section--breadcrumb { padding: 10px 0 2px; }

/* ── Product page ─────────────────────────────────────────────────── */
.section--product { padding-top: 8px; }
.product-layout { grid-template-columns: 1fr 1.1fr; align-items: start; }
.product-gallery-card { padding: 0; overflow: hidden; }
.gallery-link {
  display: block;
  padding: 12px 18px;
  color: var(--accent);
  font-weight: 600;
  font-size: 14px;
  border-top: 1px solid var(--border-solid);
}
.product-main-image {
  width: 100%;
  height: auto;
  display: block;
}
.product-placeholder--large { aspect-ratio: 4 / 5; min-height: 0; }
.product-page-title { font-size: clamp(28px, 4vw, 44px); color: var(--text); margin-bottom: 14px; }
.product-lead { margin-bottom: 18px; font-size: 16px; color: var(--text-soft); }
.product-pricing-box {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px; margin: 20px 0; padding: 18px;
  border-radius: var(--radius-lg);
  background: var(--surface-muted);
  border: 1px solid var(--border);
}
.proof-row { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 18px; }
.proof-badge {
  display: inline-flex; padding: 8px 12px; border-radius: var(--radius);
  background: var(--surface-muted); border: 1px solid var(--border);
  font-weight: 600; color: var(--text-soft);
}
.chips-row--wide { margin-bottom: 18px; }
.product-order-box {
  margin-top: 18px; padding: 18px; border-radius: var(--radius-lg);
  background: var(--surface-muted); border: 1px solid var(--border);
}
.quantity-row { display: grid; grid-template-columns: 140px 1fr; gap: 12px; margin: 10px 0 8px; }
.live-total {
  margin-top: 10px; padding: 12px 14px; border-radius: var(--radius);
  background: var(--surface); border: 1px solid var(--border);
}

/* ── Product details / attributes ────────────────────────────────── */
.product-details-layout, .article-layout { grid-template-columns: 1.5fr .8fr; align-items: start; }
.attributes-grid { display: grid; gap: 10px; }
.attributes-grid--details { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.attribute-item {
  display: flex;
  justify-content: space-between;
  gap: 16px; padding: 12px 0;
  border-bottom: 1px solid var(--border-solid);
}
.attribute-item .label { color: var(--text-muted); font-size: 13px; }
.attribute-item .value { text-align: right; font-weight: 600; color: var(--text); }

/* ── SEO card ─────────────────────────────────────────────────────── */
.seo-card p + p { margin-top: 14px; }
.seo-card--collapsed details summary { cursor: pointer; font-weight: 700; color: var(--accent); }
.seo-card-body { margin-top: 14px; }

/* ── Articles ─────────────────────────────────────────────────────── */
.article-card--large .article-content { padding: 22px; }
.article-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 22px; margin: 12px 0; color: var(--text);
}
.article-excerpt { font-size: 14px; margin-bottom: 16px; color: var(--text-soft); }
.article-body { display: grid; gap: 16px; }
.article-body ul, .article-body ol { padding-left: 22px; color: var(--text-soft); }
.article-body h2 { color: var(--text); margin-top: 10px; }
.article-meta { color: var(--text-muted); font-size: 13px; }
.article-meta--strong { font-size: 14px; font-weight: 600; }
.article-detail-card h1 {
  font-size: clamp(28px, 4vw, 42px); margin: 10px 0 16px; color: var(--text);
}
.fixed-card { height: 100%; }
.articles-filter-row { display: flex; gap: 10px; margin-bottom: 18px; }

/* ── Cart ─────────────────────────────────────────────────────────── */
.cart-layout { grid-template-columns: 1fr 420px; align-items: start; }
.cart-items { display: grid; gap: 16px; }
.cart-item { padding: 18px 0; border-bottom: 1px solid var(--border-solid); }
.cart-item-title { font-size: 17px; font-weight: 700; color: var(--text); }
.cart-item-meta { color: var(--text-soft); font-size: 14px; margin: 6px 0 12px; }
.cart-item-quantity { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; margin-bottom: 12px; }
.cart-item-price { font-size: 18px; font-weight: 700; margin-bottom: 12px; color: var(--accent); }
.cart-summary { margin-top: 20px; display: grid; gap: 12px; }
.summary-row { display: flex; justify-content: space-between; gap: 16px; color: var(--text-soft); }
.summary-row--total { color: var(--accent); font-size: 19px; font-weight: 700; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; margin-bottom: 8px; font-weight: 600; color: var(--text); }

/* ── Footer ───────────────────────────────────────────────────────── */
.site-footer {
  margin-top: 32px;
  padding: 48px 0 28px;
  background: #060f1c;
  border-top: 1px solid var(--border);
}
.footer-grid { display: grid; grid-template-columns: 1.1fr 1fr .9fr; gap: 28px; }
.footer-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 14px;
  color: var(--accent);
}
.footer-links { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 8px 14px; }
.footer-links a { font-size: 13px; color: var(--text-muted); transition: .15s; }
.footer-links a:hover { color: var(--accent); }
.footer-link-cta {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--text-soft);
  font-size: 14px;
  transition: .15s;
}
.footer-link-cta:hover { color: var(--accent); }
.footer-copy, .footer-text { color: var(--text-muted); font-size: 13px; }
.footer-text a:hover { color: var(--accent); }

/* ── Modal ────────────────────────────────────────────────────────── */
.modal {
  display: none;
  position: fixed;
  inset: 0;
  align-items: center;
  justify-content: center;
  background: rgba(5, 10, 20, 0.85);
  z-index: 200;
  padding: 16px;
}
.modal-content {
  max-width: 420px;
  width: 100%;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  text-align: center;
  box-shadow: var(--shadow);
}
.modal-content h2 { margin-bottom: 16px; color: var(--text); }
.btn-text-link {
  background: none; border: none; cursor: pointer;
  color: var(--text-muted); font-size: 13px; font-family: inherit;
  padding: 4px 8px; transition: color .15s;
  text-decoration: underline; text-underline-offset: 3px;
}
.btn-text-link:hover { color: var(--text-soft); }
.modal-content p + p { margin-top: 10px; }

/* ── Toast / notification ─────────────────────────────────────────── */
.toast-container { position: fixed; right: 16px; bottom: 16px; z-index: 300; display: grid; gap: 10px; }
.toast {
  min-width: 260px; max-width: 360px;
  background: var(--surface);
  border: 1px solid var(--border-solid);
  border-left: 3px solid var(--accent);
  color: var(--text);
  padding: 14px 16px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: grid; gap: 10px;
}

/* ── Floating buy bar ─────────────────────────────────────────────── */
.floating-buy-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 120;
  transform: translateY(120%); transition: transform .25s ease;
}
.floating-buy-bar.is-visible { transform: translateY(0); }
.floating-buy-bar__inner {
  width: min(1240px, calc(100% - 24px));
  margin: 0 auto 12px;
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  border-radius: var(--radius-lg);
  padding: 12px 16px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
}
.floating-buy-bar__inner span { display: block; color: var(--text-soft); font-size: 13px; }

/* ── Section divider ──────────────────────────────────────────────── */
.section-divider-label { padding: 0; margin: 8px 0 0; }
.section-divider-label .container { display: flex; align-items: center; gap: 12px; }
.section-divider-label .container::before,
.section-divider-label .container::after { content: ''; flex: 1; height: 1px; background: var(--border); }
.section-divider-label span {
  font-size: 11px; font-weight: 600; text-transform: uppercase;
  letter-spacing: .08em; color: var(--text-muted); white-space: nowrap;
}

/* ── Sigarety hierarchy pages ─────────────────────────────────────── */
.sigarety-grid { display: grid; gap: 16px; }
.sigarety-grid--countries { grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); }
.sigarety-grid--brands { grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); }
.sigarety-card {
  display: flex; flex-direction: column; gap: 8px;
  padding: 20px;
  border: 1px solid var(--border-solid);
  border-radius: var(--radius);
  background: var(--surface);
  color: inherit;
  text-decoration: none;
  transition: border-color .15s, box-shadow .15s;
}
.sigarety-card:hover { border-color: var(--accent); box-shadow: 0 4px 20px rgba(0,0,0,.25); }
.sigarety-card__brand-initial {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--gold-glow);
  color: var(--accent);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 16px;
  margin-bottom: 4px;
}
.sigarety-card__title { font-weight: 600; font-size: 16px; color: var(--text); }
.sigarety-card__meta { display: flex; flex-wrap: wrap; gap: 6px; font-size: 12px; color: var(--text-muted); }
.sigarety-card__meta span::after { content: ' ·'; }
.sigarety-card__meta span:last-child::after { content: ''; }
.sigarety-card__arrow { margin-top: auto; font-size: 16px; color: var(--accent); font-weight: 600; }

/* ── Programmatic SEO pages (format, krepost, brends) ────────────── */
.seo-index-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 14px; }
.seo-index-card {
  padding: 18px 18px 18px 22px;
  border: 1px solid var(--border-solid);
  border-left: 3px solid var(--accent);
  border-radius: var(--radius);
  background: var(--surface);
  transition: background .18s, transform .2s;
  text-decoration: none;
  display: block;
}
.seo-index-card:hover { background: var(--surface-muted); transform: translateY(-2px); }
.seo-index-card__icon { font-size: 22px; display: block; margin-bottom: 8px; line-height: 1; }
.seo-index-card__count { font-size: 28px; font-weight: 800; color: var(--accent); margin-bottom: 3px; font-family: 'Inter', sans-serif; line-height: 1; }
.seo-index-card__title { font-size: 15px; font-weight: 600; color: var(--text); margin-bottom: 3px; }
.seo-index-card__meta { font-size: 12px; color: var(--text-muted); }

/* ── Contact cards ────────────────────────────────────────────────── */
.contact-card { padding: 24px; }
.contacts-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 18px; }
.contact-item { display: flex; align-items: flex-start; gap: 14px; padding: 16px; border: 1px solid var(--border-solid); border-radius: var(--radius); background: var(--surface); transition: .15s; }
.contact-item:hover { border-color: var(--accent); }
.contact-item__icon { font-size: 24px; margin-top: 2px; }
.contact-item__label { font-size: 11px; text-transform: uppercase; letter-spacing: .06em; color: var(--text-muted); margin-bottom: 4px; }
.contact-item__value { font-size: 16px; font-weight: 600; color: var(--text); }
.contact-item__value a { color: var(--accent); }
.contact-item__value a:hover { color: var(--accent-light); }

/* ── Contact blocks (contacts page) ──────────────────────────────── */
.contact-block {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 22px;
  background: var(--surface);
  border: 1px solid var(--border-solid);
  border-radius: var(--radius-lg);
  transition: border-color .15s;
}
.contact-block:hover { border-color: var(--accent); }
.contact-block__icon { font-size: 28px; line-height: 1; flex-shrink: 0; margin-top: 2px; }
.contact-block__body { display: flex; flex-direction: column; gap: 6px; min-width: 0; }
.contact-block__label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--text-muted);
  font-weight: 600;
}
.contact-block__value {
  font-size: 17px;
  font-weight: 700;
  color: var(--accent);
  text-decoration: none;
  word-break: break-word;
}
.contact-block__value:hover { color: var(--accent-light); }
.contact-block p { color: var(--text-soft); font-size: 14px; margin: 0; }

/* ── Scroll reveal ────────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .5s ease, transform .5s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Responsive ───────────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .products-grid, .articles-grid, .catalog-products-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .hero-grid, .product-layout, .product-details-layout, .cart-layout, .article-layout, .footer-grid { grid-template-columns: 1fr; }
  .catalog-filter-bar { flex-wrap: wrap; }
  .catalog-filter-bar__actions { width: 100%; justify-content: flex-end; }
}
@media (max-width: 768px) {
  .navbar-inner { grid-template-columns: 1fr auto; }
  .nav-toggle { display: inline-flex; align-items: center; justify-content: center; }
  .nav-actions { gap: 8px; }
  .cart-link--desktop { display: none; }
  .cart-link--mobile { display: inline-flex; min-height: 44px; padding: 10px 12px; border-radius: var(--radius); }
  .cart-link--mobile .cart-link__label { display: none; }
  .cart-link__count { min-width: 24px; height: 24px; font-size: 12px; padding: 0 6px; }
  .nav-panel {
    display: none;
    position: absolute;
    top: 66px; left: 12px; right: 12px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    padding: 16px;
    flex-direction: column;
    align-items: stretch;
  }
  .nav-dropdown__menu { position: static; box-shadow: none; border: none; border-radius: 0; padding: 0 0 0 12px; background: transparent; }
  .nav-dropdown.is-open .nav-dropdown__menu { display: flex; }
  .nav-dropdown__menu a { font-size: 13px; padding: 6px 10px; }
  .nav-panel.is-open { display: flex; }
  .nav-links, .header-cta { flex-direction: column; align-items: stretch; }
  .hero-benefit-grid { grid-template-columns: 1fr; }
  .catalog-filter-bar {
    display: none;
    position: fixed; left: 0; right: 0; bottom: 0; top: auto;
    z-index: 90; max-height: 80vh; overflow-y: auto;
    background: var(--surface);
    border-radius: 16px 16px 0 0;
    box-shadow: 0 -20px 40px rgba(0,0,0,.4);
    padding: 16px;
  }
  .catalog-filter-bar.is-open { display: flex; flex-wrap: wrap; }
  .catalog-filter-bar__field, .catalog-filter-bar__field--search { flex: 1 1 calc(50% - 8px); }
  .catalog-filter-bar__actions { width: 100%; justify-content: stretch; margin-left: 0; }
  .catalog-filter-bar__actions .btn { flex: 1 1 0; }
  .mobile-filter-btn { display: inline-flex; }
  .catalog-list-desktop { display: none; }
  .catalog-list-mobile { display: block; }
  .catalog-pagination__desktop { display: none; }
  .catalog-pagination__mobile { display: flex; }
}
@media (max-width: 720px) {
  .products-grid, .articles-grid, .catalog-products-grid,
  .attributes-grid--details, .product-pricing-box,
  .product-prices.compact, .footer-links { grid-template-columns: 1fr; }

  .quantity-row { grid-template-columns: 1fr; }
  .product-placeholder--large { aspect-ratio: 4 / 5; }
  .section { padding: 24px 0 40px; }
  .catalog-topline--actions, .catalog-inline-actions,
  .floating-buy-bar__inner, .catalog-card-actions { flex-direction: column; align-items: stretch; }
  .catalog-inline-actions { align-items: stretch; }
  .catalog-filter-bar__field, .catalog-filter-bar__field--search { flex: 1 1 100%; }
  .view-toggle { width: 100%; justify-content: center; }
  .view-toggle__btn { flex: 1 1 0; }
  .article-title { font-size: 20px; }
}
@media (max-width: 600px) {
  .sigarety-grid--countries, .sigarety-grid--brands { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .products-grid, .catalog-products-grid { grid-template-columns: 1fr; }
}
@media (max-width: 380px) {
  .sigarety-grid--countries, .sigarety-grid--brands { grid-template-columns: 1fr; }
}
