/* ── Шрифты ───────────────────────────────────────────────────────────────────
   Свои сабсеты вместо Google Fonts CDN. Раньше здесь стоял
   @import url('https://fonts.googleapis.com/css2?family=Rubik:wght@300..900')
   — это цепочка запросов (браузер узнаёт про шрифт только после загрузки
   этого файла) плюс чужой домен на критическом пути.

   Rubik — вариативный, одна ось wght 300-900: один файл 30 КБ закрывает все
   начертания, которыми пользуется вёрстка. Пересобрать: scripts/build-fonts.py.

   size-adjust и *-override подгоняют метрики системного фолбэка под Rubik,
   чтобы подмена шрифта после загрузки не двигала вёрстку (CLS).
   ─────────────────────────────────────────────────────────────────────────── */
@font-face {
  font-family: 'Rubik';
  src: url('/fonts/rubik-latin-cyrillic.woff2') format('woff2-variations'),
       url('/fonts/rubik-latin-cyrillic.woff2') format('woff2');
  font-weight: 300 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Rubik Fallback';
  src: local('Arial'), local('Helvetica'), local('Segoe UI');
  size-adjust: 96%;
  ascent-override: 95%;
  descent-override: 25%;
  line-gap-override: 0%;
}

@font-face {
  font-family: 'PizzaHutPE';
  src: url('/fonts/pizzahutpe.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/* Заголовки каталога. Раньше подключался вторым @import с того же CDN
   прямо из <style> страницы категории — то есть цепочкой поверх цепочки. */
@font-face {
  font-family: 'Russo One';
  src: url('/fonts/russo-one.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

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

:root {
  --orange: #FF6B00;
  --orange-h: #E05A00;
  --orange-light: #FF8C00;
  --teal: #0B3040;
  --teal-l: #174f6b;
  --teal-mid: #1a4a5e;
  --gray: #F4F6F8;
  --gray2: #ECEEF0;
  --border: #E2E6EA;
  --muted: #8A9BB0;
  --green: #27AE60;
  --text: #1C2B36;
  --textm: #4A6070;
  --white: #FFFFFF;
  --hero-bg: #0D1F35;
}

body {
  font-family: 'Rubik', 'Rubik Fallback', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 14px;
  color: var(--text);
  /* Фон: светлая база + мягкое сияние (волны убраны) */
  background: #F7F9FB;
  line-height: 1.5;
}
/* Живое «северное сияние»: мягкие цветные пятна, медленно дрейфуют (transform/opacity — лёгкое) */
body::before {
  content: '';
  position: fixed;
  inset: -10%;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(42% 42% at 12% 8%, rgba(26,168,190,.18), transparent 60%),
    radial-gradient(48% 48% at 90% 4%, rgba(11,48,64,.13), transparent 60%),
    radial-gradient(46% 46% at 80% 95%, rgba(255,107,0,.07), transparent 62%);
  animation: auroraDrift 20s ease-in-out infinite alternate;
  will-change: transform;
}
@keyframes auroraDrift {
  0%   { transform: translate3d(0, 0, 0) scale(1); }
  100% { transform: translate3d(-3%, 2.5%, 0) scale(1.08); }
}
@media (prefers-reduced-motion: reduce) {
  body::before { animation: none; }
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; border: none; background: none; font-family: inherit; font-size: inherit; }
input, textarea, select { font-family: inherit; font-size: inherit; }

.container { max-width: 1240px; margin: 0 auto; padding: 0 20px; }

/* ===== HEADER ===== */
.site-header { background: var(--white); position: sticky; top: 0; z-index: 200; box-shadow: 0 2px 12px rgba(0,0,0,.08); }

.header-top { background: var(--teal); padding: 7px 0; }
.header-top .container { display: flex; align-items: center; justify-content: space-between; }
.htop-links { display: flex; gap: 20px; }
.htop-links a { color: rgba(255,255,255,.7); font-size: 12px; transition: color .2s; }
.htop-links a:hover { color: var(--white); }
.htop-right { display: flex; align-items: center; gap: 20px; }
.htop-phone { color: var(--white); font-size: 13px; font-weight: 600; letter-spacing: .3px; }

.header-main { padding: 14px 0; border-bottom: 1px solid var(--border); }
.header-main .container { display: flex; align-items: center; gap: 20px; }

/* Logo */
.logo { display: flex; align-items: center; flex-shrink: 0; }
.logo img { height: 124px; width: auto; display: block; }

/* Search */
.search-wrap { flex: 1; max-width: 500px; position: relative; }
.search-input { width: 100%; padding: 11px 46px 11px 18px; border: 2px solid var(--border); border-radius: 30px; font-size: 14px; outline: none; transition: border-color .2s; background: var(--gray); color: var(--text); }
.search-input:focus { border-color: var(--orange); background: var(--white); }
.search-input::placeholder { color: var(--muted); }
.search-btn { position: absolute; right: 4px; top: 50%; transform: translateY(-50%); width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; color: var(--muted); border-radius: 30px; transition: color .2s; cursor: pointer; }
.search-btn:hover { color: var(--orange); }

/* Header actions */
.hdr-actions { display: flex; gap: 4px; margin-left: auto; }
.hdr-btn { display: flex; flex-direction: column; align-items: center; gap: 3px; padding: 8px 14px; border-radius: 16px; cursor: pointer; transition: all .2s; color: var(--textm); position: relative; }
.hdr-btn:hover { color: var(--orange); background: #FFF4EC; }
.hdr-btn svg { width: 22px; height: 22px; }
.hdr-btn span { font-size: 11px; font-weight: 500; }
.hdr-badge { position: absolute; top: 4px; right: 8px; background: var(--orange); color: var(--white); font-size: 10px; font-weight: 700; min-width: 18px; height: 18px; border-radius: 9px; display: flex; align-items: center; justify-content: center; padding: 0 3px; }

/* Автоподсказки поиска в шапке */
.search-suggest { position: absolute; z-index: 300; background: var(--white); border: 1px solid var(--border); border-radius: 14px; box-shadow: 0 16px 40px rgba(11,48,64,.16); overflow: hidden; padding: 6px; display: none; }
.search-suggest.open { display: block; }
.ss-row { display: flex; align-items: center; gap: 12px; padding: 8px 10px; border-radius: 10px; cursor: pointer; transition: background .15s; text-decoration: none; }
.ss-row:hover, .ss-row.active { background: var(--gray); }
.ss-thumb { width: 44px; height: 44px; border-radius: 8px; background: var(--gray2) center/cover no-repeat; flex-shrink: 0; }
.ss-info { min-width: 0; flex: 1; }
.ss-name { font-size: 13px; color: var(--text); line-height: 1.3; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.ss-name b { color: var(--orange); font-weight: 700; }
.ss-meta { font-size: 11px; color: var(--muted); margin-top: 2px; }
.ss-price { font-size: 14px; font-weight: 800; color: var(--teal); white-space: nowrap; flex-shrink: 0; }
.ss-all { display: block; text-align: center; padding: 9px; margin-top: 4px; border-top: 1px solid var(--border); font-size: 12px; font-weight: 700; color: var(--orange); cursor: pointer; }
.ss-empty { padding: 18px 12px; text-align: center; font-size: 13px; color: var(--muted); }

/* Navigation */
.main-nav { background: var(--white); }
.main-nav .container { display: flex; align-items: stretch; overflow-x: auto; }
.main-nav .container::-webkit-scrollbar { display: none; }
.nav-item { position: relative; display: inline-flex; align-items: center; gap: 7px; padding: 15px 14px; font-size: 12.5px; font-weight: 500; color: var(--text); white-space: nowrap; cursor: pointer; transition: color .2s; text-transform: uppercase; letter-spacing: .4px; border-bottom: none; flex-shrink: 0; }
.nav-item:hover { color: var(--orange); }
.nav-item.active { color: var(--orange); }
/* Иконка пункта меню */
.nav-ic { width: 16px; height: 16px; flex-shrink: 0; opacity: .65; transition: opacity .2s; }
.nav-item:hover .nav-ic, .nav-item.active .nav-ic { opacity: 1; }
/* Анимированное подчёркивание */
.nav-item::after { content: ''; position: absolute; left: 14px; right: 14px; bottom: 8px; height: 2px; background: var(--orange); border-radius: 2px; transform: scaleX(0); transform-origin: left center; transition: transform .25s ease; }
.nav-item:hover::after, .nav-item.active::after { transform: scaleX(1); }
.nav-item:focus-visible { outline: 2px solid var(--orange); outline-offset: -2px; border-radius: 6px; }
@media (prefers-reduced-motion: reduce){ .nav-item::after{ transition: none; } }

/* Сжатие шапки при прокрутке */
.site-header { transition: box-shadow .25s ease, background .25s ease; }
.site-header.shrink { box-shadow: 0 4px 20px rgba(0,0,0,.13); }
.site-header .logo img { transition: height .25s ease; }
.site-header.shrink .logo img { height: 56px !important; }

/* Стеклянная шапка при прокрутке (glassmorphism): полупрозрачный фон + блюр контента под ней */
.site-header.shrink {
  background: rgba(255,255,255,.72);
  -webkit-backdrop-filter: blur(14px) saturate(1.4);
  backdrop-filter: blur(14px) saturate(1.4);
  box-shadow: 0 6px 24px rgba(11,48,64,.10);
  border-bottom: 1px solid rgba(11,48,64,.07);
}
/* Внутренние белые полосы делаем прозрачными, чтобы стекло было видно */
.site-header.shrink > div,
.site-header.shrink > nav { background: transparent !important; border-bottom-color: transparent !important; }

/* Мега-меню каталога */
.mega { position: fixed; z-index: 300; background: #fff; border: 1px solid var(--border); border-radius: 16px; box-shadow: 0 22px 56px rgba(11,48,64,.18); padding: 12px; min-width: 540px; max-width: 92vw; opacity: 0; visibility: hidden; transform: translateY(8px); transition: opacity .2s ease, transform .2s ease, visibility .2s; }
.mega.open { opacity: 1; visibility: visible; transform: translateY(0); }
.mega-inner { display: grid; grid-template-columns: repeat(2, 1fr); gap: 4px; }
.mega-item { display: flex; align-items: center; gap: 13px; padding: 11px 14px; border-radius: 11px; text-decoration: none; color: var(--text); transition: background .15s ease; }
.mega-item:hover { background: var(--gray); }
.mega-ic { width: 34px; height: 34px; border-radius: 10px; background: rgba(23,162,184,.1); color: var(--teal); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.mega-ic svg { width: 20px; height: 20px; }
.mega-t { flex: 1; font-size: 14px; font-weight: 600; }
.mega-c { font-size: 12px; font-weight: 600; color: var(--muted); background: var(--gray); border-radius: 20px; padding: 2px 9px; }
.mega-all { display: block; text-align: center; margin-top: 8px; padding: 10px; border-radius: 10px; background: var(--orange); color: #fff; font-size: 13px; font-weight: 700; text-decoration: none; transition: background .2s; }
.mega-all:hover { background: var(--orange-h); }
@media (max-width: 640px){ .mega { display: none; } }
.nav-item.accent { background: var(--orange); color: var(--white) !important; border-radius: 20px; margin: 6px 4px; padding: 7px 14px; border-bottom: none; }
.nav-item.accent:hover { background: var(--orange-h); }

/* ===== HERO ===== */
.hero { background: linear-gradient(135deg, #0a1826 0%, #0d2038 40%, #0f2a48 70%, #102d50 100%); position: relative; overflow: hidden; min-height: 380px; display: flex; align-items: center; }
.hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 70% 50%, rgba(255,107,0,.08) 0%, transparent 60%); pointer-events: none; }

/* Snowflakes decoration */
.hero-snowflakes { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.snow-dot { position: absolute; background: rgba(255,255,255,.15); border-radius: 50%; animation: snowfall linear infinite; }

@keyframes snowfall {
  0% { transform: translateY(-20px) rotate(0deg); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: .6; }
  100% { transform: translateY(400px) rotate(360deg); opacity: 0; }
}

.hero .container { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 40px; padding-top: 48px; padding-bottom: 48px; position: relative; z-index: 1; width: 100%; }

.hero-content { max-width: 480px; }
.hero-tag { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,107,0,.2); color: var(--orange); font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; padding: 6px 14px; border-radius: 20px; margin-bottom: 20px; border: 1px solid rgba(255,107,0,.3); }
.hero-title { font-size: 46px; font-weight: 900; color: var(--white); line-height: 1.08; text-transform: uppercase; letter-spacing: -0.5px; margin-bottom: 20px; }
.hero-title span { color: var(--orange); }
.hero-sub { font-size: 15px; color: rgba(255,255,255,.65); line-height: 1.6; margin-bottom: 32px; max-width: 380px; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-hero { display: inline-flex; align-items: center; gap: 8px; padding: 14px 32px; background: var(--orange); color: var(--white); border-radius: 30px; font-size: 14px; font-weight: 700; text-transform: uppercase; letter-spacing: .5px; cursor: pointer; transition: all .25s; border: none; }
.btn-hero:hover { background: var(--orange-h); transform: translateY(-1px); box-shadow: 0 8px 24px rgba(255,107,0,.35); }
.btn-hero-outline { display: inline-flex; align-items: center; gap: 8px; padding: 13px 28px; background: transparent; color: var(--white); border-radius: 30px; font-size: 14px; font-weight: 600; cursor: pointer; transition: all .25s; border: 2px solid rgba(255,255,255,.3); }
.btn-hero-outline:hover { border-color: var(--white); background: rgba(255,255,255,.08); }

/* Hero image */
.hero-img { width: 420px; height: 340px; position: relative; flex-shrink: 0; }

/* Hero slider dots */
.hero-dots { display: flex; gap: 8px; margin-top: 28px; }
.hdot { width: 8px; height: 8px; border-radius: 4px; background: rgba(255,255,255,.3); cursor: pointer; transition: all .2s; }
.hdot.active { width: 28px; background: var(--orange); }

/* Category strip below hero */
.cat-strip { background: var(--white); border-bottom: 1px solid var(--border); padding: 0; }
.cat-strip .container { display: flex; gap: 0; overflow-x: auto; }
.cat-strip .container::-webkit-scrollbar { display: none; }
.cat-item { display: flex; flex-direction: column; align-items: center; gap: 8px; padding: 14px 20px; cursor: pointer; transition: all .2s; border-bottom: 3px solid transparent; white-space: nowrap; flex-shrink: 0; }
.cat-item:hover { border-bottom-color: var(--orange); }
.cat-item.active { border-bottom-color: var(--orange); }
.cat-item img, .cat-item .cat-img { width: 48px; height: 48px; object-fit: contain; border-radius: 10px; }
.cat-name { font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: .5px; color: var(--textm); }
.cat-item:hover .cat-name, .cat-item.active .cat-name { color: var(--orange); }

/* ===== SECTION COMMONS ===== */
.section { padding: 48px 0; }
.section-alt { background: var(--gray); }

.sec-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 24px; }
.sec-title-wrap { display: flex; align-items: center; gap: 12px; }
.sec-badge { display: inline-flex; align-items: center; padding: 5px 14px; background: var(--orange); color: var(--white); border-radius: 20px; font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: .5px; }
.sec-badge.teal { background: var(--teal); }
.sec-badge.new { background: var(--green); }
.sec-link { font-size: 13px; color: var(--orange); font-weight: 500; cursor: pointer; display: flex; align-items: center; gap: 4px; }
.sec-link:hover { text-decoration: underline; }
.sec-nav { display: flex; gap: 8px; }
.sec-nav-btn { width: 36px; height: 36px; border: 1.5px solid var(--border); border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: all .2s; color: var(--muted); background: var(--white); }
.sec-nav-btn:hover { border-color: var(--orange); color: var(--orange); }

/* ===== АКЦИИ SECTION ===== */
.promos-row { display: grid; grid-template-columns: 280px 1fr; gap: 20px; }
.discount-banner { background: linear-gradient(145deg, #0a1826, #0d2a40); border-radius: 16px; padding: 28px 24px; display: flex; flex-direction: column; justify-content: flex-end; min-height: 280px; color: var(--white); position: relative; overflow: hidden; cursor: pointer; }
.discount-banner::before { content: ''; position: absolute; inset: 0; background: url("data:image/svg+xml,%3Csvg width='200' height='200' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='150' cy='50' r='80' fill='rgba(255,107,0,.06)'/%3E%3Ccircle cx='30' cy='160' r='60' fill='rgba(255,107,0,.04)'/%3E%3C/svg%3E") center/cover; }
.discount-banner-inner { position: relative; z-index: 1; }
.discount-label { font-size: 13px; font-weight: 600; color: rgba(255,255,255,.6); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 8px; }
.discount-text { font-size: 16px; font-weight: 700; margin-bottom: 6px; }
.discount-pct { font-size: 52px; font-weight: 900; color: var(--orange); line-height: 1; margin-bottom: 16px; }

/* Products row */
.products-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; align-items: start; }
.products-row-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; align-items: start; }
.products-row-5 { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; align-items: start; }

/* ===== PRODUCT CARD ===== */
.pcard { position: relative; background: var(--white); border: 1.5px solid var(--border); border-radius: 20px; transition: box-shadow .25s, border-color .25s, transform .15s ease-out; cursor: pointer; display: flex; flex-direction: column; }
.pcard:hover { box-shadow: 0 8px 28px rgba(0,0,0,.1); transform: translateY(-3px); border-color: var(--border); }
/* Карточка с размерами «раздвигается» вниз при наведении (панель выпадает под карточкой) */
.pcard-has-sizes:hover { z-index: 30; border-bottom-left-radius: 0; border-bottom-right-radius: 0; border-bottom-color: transparent; box-shadow: 0 12px 30px rgba(0,0,0,.14); }
.pcard-img { border-radius: 18px 18px 0 0; overflow: hidden; }
.pcard-glow { position: absolute; inset: 0; opacity: 0; transition: opacity .25s; pointer-events: none; z-index: 1; }

/* ===== REVEAL / SCROLL-ANIMATIONS ===== */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .55s ease, transform .55s ease; }
.reveal.reveal-in { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .pcard { transition: box-shadow .25s, border-color .25s; }
}

/* ===== BTN-CART PULSE (отклик при добавлении в корзину) ===== */
@keyframes btnPulse { 0% { transform: scale(1); } 35% { transform: scale(.93); } 65% { transform: scale(1.05); } 100% { transform: scale(1); } }
.btn-pulse { animation: btnPulse .36s ease; }

.pcard-img { position: relative; aspect-ratio: 1; background: var(--gray); display: flex; align-items: center; justify-content: center; overflow: hidden; }
.pcard-img-inner { width: 100%; height: 100%; object-fit: contain; padding: 16px; transition: transform .3s; }
.pcard:hover .pcard-img-inner { transform: scale(1.06); }
.pcard-img-photo { cursor: pointer; background: #ECECEF; }
.pcard-slide { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transition: opacity .15s ease; }
.pcard-slide.active { opacity: 1; }
.pcard-dots { position: absolute; bottom: 8px; left: 0; right: 0; display: flex; justify-content: center; gap: 5px; z-index: 3; }
.pcd { width: 5px; height: 5px; border-radius: 50%; background: rgba(255,255,255,.55); transition: all .15s; }
.pcd.active { background: #fff; width: 14px; border-radius: 3px; }

/* Badges */
.badge { position: absolute; font-size: 10px; font-weight: 700; padding: 4px 8px; border-radius: 6px; text-transform: uppercase; letter-spacing: .3px; line-height: 1.2; }
.badge-tl { top: 8px; left: 8px; }
.badge-tr { top: 8px; right: 8px; }
.badge-new { background: var(--teal); color: var(--white); }
.badge-sale { background: #E0218A; color: var(--white); }
.badge-hit { background: #D32F2F; color: var(--white); }
.badge-top { background: #7B1FA2; color: var(--white); }

.pcard-body { padding: 14px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.pcard-title { font-size: 13px; line-height: 1.45; color: var(--text); font-weight: 400; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; min-height: calc(1.45em * 2); }
.pcard:hover .pcard-title { color: var(--orange); }
.pcard-code { font-size: 11px; color: var(--muted); }
.pcard-avail { font-size: 11px; font-weight: 600; color: var(--green); display: flex; align-items: center; gap: 5px; }
.pcard-avail::before { content: ''; width: 6px; height: 6px; background: var(--green); border-radius: 50%; display: block; flex-shrink: 0; }
.pcard-price { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.price-cur { font-size: 19px; font-weight: 800; background: linear-gradient(90deg, #0B3040 0%, #14796E 50%, #1AA8BE 100%); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: #0B3040; }
.price-old { font-size: 12px; color: var(--muted); text-decoration: line-through; }
.price-disc { font-size: 11px; font-weight: 700; color: var(--orange); background: rgba(255,107,0,.1); padding: 2px 6px; border-radius: 4px; }

.btn-cart { display: flex; align-items: center; justify-content: center; gap: 6px; padding: 10px; background: var(--orange); color: var(--white); border-radius: 20px; font-size: 13px; font-weight: 600; transition: background .2s; width: 100%; cursor: pointer; margin-top: 4px; }
.btn-cart:hover { background: var(--orange-h); }
.btn-cart svg { width: 15px; height: 15px; flex-shrink: 0; }

/* ── Раскрывающаяся при наведении панель выбора размера (EU/CM/US/UK) ── */
.pcard-foot { position: relative; margin-top: 4px; }
.btn-cart-ghost { background: var(--gray); color: var(--textm); transition: opacity .2s, background .2s, color .2s; }
.pcard-has-sizes:hover .btn-cart-ghost { opacity: 0; pointer-events: none; }
/* Карточка бесшовно раздвигается вниз: панель = продолжение карточки (та же ширина, общие боковые границы, без верхней рамки), а не отдельное окно */
.pcard-sizes { position: absolute; top: 0; left: -15.5px; right: -15.5px; background: var(--white); border: 1.5px solid var(--border); border-top: none; border-radius: 0 0 18px 18px; box-shadow: 0 14px 26px rgba(0,0,0,.12); max-height: 0; opacity: 0; overflow: hidden; pointer-events: none; transition: max-height .3s ease, opacity .2s ease, padding .3s ease; padding: 0 15.5px; z-index: 30; }
.pcard-has-sizes:hover .pcard-sizes { max-height: 280px; opacity: 1; pointer-events: auto; padding: 8px 15.5px 14px; }
.pcard-sizes-static { position: static; left: auto; right: auto; top: auto; bottom: auto; background: transparent !important; border: none !important; box-shadow: none !important; border-radius: 0 !important; pointer-events: auto !important; max-height: none !important; opacity: 1 !important; overflow: visible !important; padding: 0 !important; margin: 16px 0 !important; }
.pcard-sizes-static .psz-label { font-size: 13px; }
.pcard-sizes-static .psz-tab { font-size: 13px; padding: 3px 9px; }
.pcard-sizes-static .psz-pill { padding: 6px 12px; font-size: 13px; }
/* На странице товара плашки переносятся на новую строку, а не скроллятся —
   иначе при EU→CM (цифры шире) появляется ползунок и вёрстка прыгает. */
.pcard-sizes-static .psz-pills { flex-wrap: wrap; overflow-x: visible; padding-bottom: 0; }
.pcard-sizes-static .psz-pills::-webkit-scrollbar { display: none; }
.psz-label { font-size: 10px; font-weight: 600; color: var(--muted); margin-bottom: 9px; display: flex; align-items: center; gap: 5px; flex-wrap: nowrap; white-space: nowrap; }
.psz-tab { cursor: pointer; padding: 2px 5px; border-radius: 6px; font-weight: 700; font-size: 10px; color: var(--textm); transition: all .15s; }
.psz-tab.active { background: var(--teal); color: #fff; }
.psz-pills { display: flex; flex-wrap: nowrap; gap: 6px; margin-bottom: 12px; overflow-x: auto; padding-bottom: 2px; scrollbar-width: thin; }
.psz-pills::-webkit-scrollbar { height: 4px; }
.psz-pills::-webkit-scrollbar-thumb { background: var(--border); border-radius: 4px; }
.psz-pill { border: 1.5px solid var(--border); border-radius: 8px; padding: 4px 8px; font-size: 10.5px; font-weight: 700; cursor: pointer; transition: all .15s; color: var(--text); background: var(--white); flex-shrink: 0; white-space: nowrap; }
.psz-pill:hover { border-color: #22C1DA; }
.psz-pill.active { background: linear-gradient(90deg, #0B3040 0%, #14796E 50%, #1AA8BE 100%); border-color: #1AA8BE; color: #fff; box-shadow: none; }
.psz-addcart { margin-top: 0; }

/* ===== BRANDS SECTION ===== */
.brands-pills { display: flex; flex-wrap: wrap; gap: 10px; }
.brand-pill { padding: 10px 22px; background: var(--teal); color: rgba(255,255,255,.9); border-radius: 30px; font-size: 13px; font-weight: 600; cursor: pointer; transition: all .2s; border: 1.5px solid var(--teal); }
.brand-pill:hover { background: var(--teal-l); border-color: var(--orange); }
.brand-pill.hi { background: var(--orange); border-color: var(--orange); color: var(--white); }

/* ===== ABOUT TEXT ===== */
.about-block { padding: 40px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.about-block h2 { font-size: 18px; font-weight: 700; margin-bottom: 16px; color: var(--text); }
.about-block p { font-size: 14px; color: var(--textm); line-height: 1.85; max-width: 900px; }

/* ===== BREADCRUMB ===== */
.breadcrumb { padding: 14px 0 4px; }
.breadcrumb ol { display: flex; gap: 8px; align-items: center; font-size: 13px; color: var(--muted); flex-wrap: wrap; }
.breadcrumb li { display: flex; align-items: center; gap: 8px; }
.breadcrumb li::before { content: '/'; color: var(--border); }
.breadcrumb li:first-child::before { display: none; }
.breadcrumb a:hover { color: var(--orange); }
.breadcrumb li:last-child { color: var(--text); }

/* ===== PAGE HEADING ===== */
.page-h1 { font-size: 30px; font-weight: 800; text-transform: uppercase; letter-spacing: .5px; margin: 12px 0 20px; }

/* ===== PILLS (filter) ===== */
.pills { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 20px; }
.pill { padding: 7px 18px; border-radius: 20px; font-size: 13px; cursor: pointer; border: 1.5px solid var(--border); background: var(--white); transition: all .2s; white-space: nowrap; color: var(--textm); font-weight: 400; }
.pill:hover { border-color: var(--orange); color: var(--orange); }
.pill.active { background: var(--orange); color: var(--white); border-color: var(--orange); font-weight: 600; }

/* ===== FILTERS ===== */
.filters { display: flex; gap: 10px; align-items: center; flex-wrap: wrap; margin-bottom: 28px; padding: 14px 18px; background: var(--gray); border-radius: 12px; }
.filter-lbl { font-size: 13px; color: var(--muted); white-space: nowrap; }
.filter-sel { padding: 8px 30px 8px 12px; border: 1.5px solid var(--border); border-radius: 20px; background: var(--white) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%238A9BB0' stroke-width='2' viewBox='0 0 24 24'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E") no-repeat right 10px center; appearance: none; font-size: 13px; cursor: pointer; outline: none; color: var(--text); transition: border-color .2s; }
.filter-sel:focus { border-color: var(--orange); }

/* Products grid */
.products-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; align-items: stretch; }
/* Без брейкпоинтов четыре колонки сохранялись и на телефоне: на /catalog,
   страницах категорий и /promotions содержимое занимало 520-623 px при ширине
   окна 360 px, и вся страница ехала вбок. Значения те же, что у .products-row-4
   и .grid-5 — сетки должны вести себя одинаково. */
@media (max-width: 1100px) { .products-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 760px)  { .products-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; } }
@media (max-width: 420px)  { .products-grid { grid-template-columns: 1fr; } }

/* ===== PAGINATION ===== */
.pagination { display: flex; align-items: center; justify-content: center; gap: 6px; margin: 36px 0 12px; }
.pgn-btn { width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; border: 1.5px solid var(--border); border-radius: 50%; font-size: 14px; cursor: pointer; transition: all .2s; background: var(--white); color: var(--text); font-weight: 500; }
.pgn-btn:hover { border-color: var(--orange); color: var(--orange); }
.pgn-btn.active { background: var(--orange); color: var(--white); border-color: var(--orange); }
.pgn-btn.arrow { color: var(--muted); }
.pgn-dots { padding: 0 4px; color: var(--muted); line-height: 36px; }

/* ===== NEWSLETTER ===== */
.newsletter { background: var(--teal); padding: 64px 0; position: relative; overflow: hidden; }
.newsletter::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 20% 50%, rgba(255,107,0,.08) 0%, transparent 50%), radial-gradient(ellipse at 80% 30%, rgba(255,255,255,.03) 0%, transparent 50%); pointer-events: none; }
.newsletter .container { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: center; text-align: center; gap: 14px; }
.nl-title { font-size: 26px; font-weight: 800; color: var(--white); text-transform: uppercase; letter-spacing: 1px; }
.nl-sub { font-size: 14px; color: rgba(255,255,255,.6); max-width: 460px; line-height: 1.6; }
.nl-form { display: flex; gap: 10px; width: 100%; max-width: 500px; margin-top: 8px; }
.nl-input { flex: 1; padding: 13px 20px; border: none; border-radius: 30px; font-size: 14px; outline: none; background: rgba(255,255,255,.12); color: var(--white); border: 1.5px solid rgba(255,255,255,.2); transition: border-color .2s; }
.nl-input::placeholder { color: rgba(255,255,255,.4); }
.nl-input:focus { border-color: var(--orange); background: rgba(255,255,255,.15); }
.nl-btn { padding: 13px 28px; background: var(--orange); color: var(--white); border-radius: 30px; font-size: 14px; font-weight: 700; cursor: pointer; transition: background .2s; white-space: nowrap; border: none; }
.nl-btn:hover { background: var(--orange-h); }

/* ===== FOOTER ===== */
.footer { background: #071E2C; color: rgba(255,255,255,.75); padding: 52px 0 0; }
.footer-top { display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; padding-bottom: 44px; }
.fcol-title { font-size: 11px; font-weight: 700; color: rgba(255,255,255,.3); text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 18px; }
.fcol ul li { margin-bottom: 11px; }
.fcol ul li a { font-size: 13px; color: rgba(255,255,255,.6); transition: color .2s; }
.fcol ul li a:hover { color: var(--white); }
.fcol ul li a.hl { color: var(--orange); }
.ftr-phone { font-size: 20px; font-weight: 800; color: var(--white); margin-bottom: 14px; display: block; }
.ftr-socials { display: flex; gap: 8px; margin-bottom: 18px; }
.ftr-social { width: 36px; height: 36px; border-radius: 9px; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: opacity .2s; flex-shrink: 0; }
.ftr-social:hover { opacity: .8; }
.btn-call { display: inline-flex; padding: 10px 22px; background: var(--orange); color: var(--white); border-radius: 30px; font-size: 13px; font-weight: 600; cursor: pointer; transition: background .2s; }
.btn-call:hover { background: var(--orange-h); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.07); padding: 20px 0; display: flex; justify-content: space-between; align-items: center; font-size: 12px; color: rgba(255,255,255,.3); }

/* ===== PRODUCT DETAIL ===== */
.product-detail { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; margin: 28px 0 52px; }
/* грид-элементам разрешаем сжиматься меньше контента — иначе на узких экранах
   колонки переполняют окно (картинка вылазит, скроллбар мигает, шапка «вибрирует») */
.product-detail > * { min-width: 0; }
.gallery-wrap { display: flex; gap: 12px; min-width: 0; }
.gallery-thumbs { display: flex; flex-direction: column; gap: 8px; }
.gthumb { width: 72px; height: 72px; border: 2px solid var(--border); border-radius: 10px; overflow: hidden; cursor: pointer; display: flex; align-items: center; justify-content: center; background: var(--gray); transition: border-color .2s; flex-shrink: 0; }
.gthumb.active, .gthumb:hover { border-color: var(--orange); }
.gmain { flex: 1; min-width: 0; border: 1.5px solid var(--border); border-radius: 14px; overflow: hidden; display: flex; align-items: center; justify-content: center; background: var(--gray); aspect-ratio: 1; }
.gmain img, .gmain-img { max-width: 100%; }
@media (max-width: 860px) {
  .product-detail { grid-template-columns: 1fr; gap: 28px; }
}
@media (max-width: 560px) {
  .gallery-wrap { flex-direction: column-reverse; }
  .gallery-thumbs { flex-direction: row; flex-wrap: wrap; }
}

.pinfo { display: flex; flex-direction: column; gap: 18px; }
.pinfo-brand { font-size: 12px; color: var(--muted); text-transform: uppercase; letter-spacing: 1px; }
.pinfo-title { font-size: 22px; font-weight: 700; line-height: 1.3; margin: 0; }
.pinfo-rating { display: flex; align-items: center; gap: 10px; }
.stars { color: #FFC107; font-size: 16px; letter-spacing: 2px; }
.rating-cnt { font-size: 13px; color: var(--muted); }
.rating-link { font-size: 13px; color: var(--orange); cursor: pointer; }
.pinfo-price { display: flex; align-items: baseline; gap: 12px; }
.pprice-cur { font-size: 34px; font-weight: 800; }
.pprice-old { font-size: 18px; color: var(--muted); text-decoration: line-through; }
.pinfo-avail { font-size: 13px; font-weight: 600; color: var(--green); display: flex; align-items: center; gap: 6px; }
.pinfo-avail::before { content: ''; width: 8px; height: 8px; background: var(--green); border-radius: 50%; display: block; }

.option-row { display: flex; flex-direction: column; gap: 8px; }
.opt-label { font-size: 13px; font-weight: 600; color: var(--textm); }
.opt-btns { display: flex; gap: 8px; flex-wrap: wrap; }
.opt-btn { padding: 7px 16px; border: 1.5px solid var(--border); border-radius: 8px; font-size: 13px; cursor: pointer; transition: all .2s; background: var(--white); }
.opt-btn:hover { border-color: var(--orange); color: var(--orange); }
.opt-btn.active { background: var(--orange); color: var(--white); border-color: var(--orange); }

.add-cart-btn { padding: 15px 36px; background: var(--orange); color: var(--white); border-radius: 30px; font-size: 15px; font-weight: 700; cursor: pointer; transition: background .2s; display: flex; align-items: center; justify-content: center; gap: 10px; border: none; }
.add-cart-btn:hover { background: var(--orange-h); }

.product-tabs-bar { display: flex; border-bottom: 2px solid var(--border); margin-bottom: 24px; }
/* На узком экране три вкладки не помещались в строку и растягивали страницу
   (402 px при ширине окна 360). Прокручиваем сами вкладки, а не документ;
   полосу прокрутки прячем — она мерцала на границе «влезает/не влезает». */
@media (max-width: 560px) {
  .product-tabs-bar { overflow-x: auto; scrollbar-width: none; -ms-overflow-style: none; }
  .product-tabs-bar::-webkit-scrollbar { display: none; }
  .product-tabs-bar .ptab { flex-shrink: 0; padding: 14px 16px; }
}
.ptab { padding: 14px 24px; font-size: 14px; font-weight: 500; cursor: pointer; border-bottom: 2px solid transparent; margin-bottom: -2px; transition: all .2s; color: var(--muted); }
.ptab.active { color: var(--orange); border-bottom-color: var(--orange); }

.specs-table { width: 100%; border-collapse: collapse; }
.specs-table tr:nth-child(even) { background: var(--gray); }
.specs-table td { padding: 11px 16px; font-size: 14px; border-bottom: 1px solid var(--border); }
.specs-table td:first-child { color: var(--muted); width: 45%; }
.specs-table td:last-child { font-weight: 500; }

/* ===== FAQ ===== */
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q { padding: 18px 0; display: flex; align-items: center; justify-content: space-between; cursor: pointer; font-size: 15px; font-weight: 500; gap: 16px; }
.faq-q:hover { color: var(--orange); }
.faq-toggle { width: 30px; height: 30px; border-radius: 50%; border: 2px solid var(--border); display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: all .3s; color: var(--muted); font-size: 20px; line-height: 1; font-weight: 300; }
.faq-item.open .faq-toggle { background: var(--orange); border-color: var(--orange); color: var(--white); transform: rotate(45deg); }
.faq-a { font-size: 14px; line-height: 1.85; color: var(--textm); padding: 0; max-height: 0; overflow: hidden; transition: max-height .35s ease, padding .35s; }
.faq-item.open .faq-a { max-height: 400px; padding-bottom: 20px; }
.ask-btn { display: inline-flex; align-items: center; gap: 8px; padding: 12px 26px; background: var(--orange); color: var(--white); border-radius: 30px; font-size: 14px; font-weight: 600; cursor: pointer; transition: background .2s; border: none; }
.ask-btn:hover { background: var(--orange-h); }

/* ===== CONTACTS ===== */
.contacts-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; margin: 28px 0 48px; }
.cinfo-label { font-size: 12px; font-weight: 700; color: var(--teal); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 14px; }
.cinfo-phone { font-size: 30px; font-weight: 800; margin-bottom: 8px; }
.cinfo-email { font-size: 15px; color: var(--orange); margin-bottom: 24px; }
.cinfo-socials { display: flex; gap: 10px; margin-bottom: 32px; }
.csocial { width: 40px; height: 40px; border-radius: 10px; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: opacity .2s; }
.cinfo-addr-label { font-size: 12px; font-weight: 700; color: var(--teal); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 10px; }
.cinfo-addr { font-size: 14px; color: var(--textm); line-height: 1.7; }

.cform { background: var(--teal); color: var(--white); border-radius: 18px; padding: 36px; }
.cform-title { font-size: 20px; font-weight: 800; text-transform: uppercase; line-height: 1.25; margin-bottom: 8px; }
.cform-sub { font-size: 13px; color: rgba(255,255,255,.6); margin-bottom: 26px; line-height: 1.6; }
.frow { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 12px; }
.fgroup { margin-bottom: 12px; }
.fgroup input, .fgroup textarea { width: 100%; padding: 13px 16px; border: 1.5px solid rgba(255,255,255,.2); border-radius: 16px; background: rgba(255,255,255,.1); color: var(--white); outline: none; transition: border-color .2s; }
.fgroup input::placeholder, .fgroup textarea::placeholder { color: rgba(255,255,255,.4); }
.fgroup input:focus, .fgroup textarea:focus { border-color: var(--orange); }
.fgroup textarea { resize: vertical; min-height: 100px; }
.fsubmit { width: 100%; padding: 14px; background: var(--orange); color: var(--white); border-radius: 30px; font-size: 14px; font-weight: 700; cursor: pointer; transition: background .2s; margin-top: 4px; border: none; }
.fsubmit:hover { background: var(--orange-h); }
.fagree { font-size: 11px; color: rgba(255,255,255,.4); margin-top: 10px; line-height: 1.5; }
/* Согласие на обработку ПДн в форме контактов — обязательная галочка, не сноска */
.fagree-check { display: flex; align-items: flex-start; gap: 9px; margin: 4px 0 14px; cursor: pointer; font-size: 12px; line-height: 1.5; color: rgba(255,255,255,.72); }
.fagree-check input { width: 17px; height: 17px; margin-top: 1px; flex-shrink: 0; accent-color: #FF6B00; cursor: pointer; }
.fagree-check a { color: #FF8C33; text-decoration: underline; }
.fagree-check input:focus-visible { outline: 2px solid #FF8C33; outline-offset: 2px; }

/* ===== BLOG ===== */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.bcard { background: var(--white); border-radius: 20px; overflow: hidden; border: 1.5px solid var(--border); cursor: pointer; transition: all .25s; }
.bcard:hover { box-shadow: 0 10px 28px rgba(0,0,0,.1); transform: translateY(-3px); }
.bcard-img { aspect-ratio: 16/10; overflow: hidden; background: var(--gray); }
.bcard-img-inner { width: 100%; height: 100%; object-fit: cover; transition: transform .3s; }
.bcard:hover .bcard-img-inner { transform: scale(1.05); }
.bcard-body { padding: 16px; }
.bcard-cat { font-size: 11px; font-weight: 700; color: var(--orange); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 6px; }
.bcard-title { font-size: 14px; font-weight: 600; line-height: 1.45; margin-bottom: 10px; }
.bcard-date { font-size: 12px; color: var(--muted); }

/* ===== PROMO TABS ===== */
.promo-tabs { display: flex; border-bottom: 2px solid var(--border); margin-bottom: 24px; }
.ptab-promo { padding: 12px 24px; font-size: 14px; font-weight: 500; cursor: pointer; border-bottom: 2px solid transparent; margin-bottom: -2px; transition: all .2s; color: var(--muted); }
.ptab-promo.active { color: var(--orange); border-bottom-color: var(--orange); }
.ptab-promo:hover { color: var(--orange); }

/* ===== ABOUT PAGE ===== */
.about-hero-grid { display: grid; grid-template-columns: auto 1fr; gap: 48px; align-items: start; margin: 32px 0 52px; }
.brand-tag { padding: 8px 22px; border: 1.5px solid var(--border); border-radius: 9px; font-size: 13px; font-weight: 500; cursor: pointer; transition: all .2s; }
.brand-tag:hover, .brand-tag.hi { border-color: var(--orange); color: var(--orange); }
.brands-flex { display: flex; flex-wrap: wrap; gap: 10px; }

/* Section divider */
.sec-divider { height: 1px; background: var(--border); margin: 0; }

/* ===== UTILS ===== */
.btn-primary { display: inline-flex; align-items: center; gap: 8px; padding: 13px 30px; background: var(--orange); color: var(--white); border-radius: 30px; font-size: 14px; font-weight: 700; cursor: pointer; transition: background .2s; border: none; }
.btn-primary:hover { background: var(--orange-h); }
.btn-outline-dark { display: inline-flex; align-items: center; gap: 8px; padding: 12px 28px; background: transparent; color: var(--text); border-radius: 30px; font-size: 14px; font-weight: 600; cursor: pointer; transition: all .2s; border: 1.5px solid var(--border); }
.btn-outline-dark:hover { border-color: var(--orange); color: var(--orange); }

/* Blog season */
.season-tab { display: flex; align-items: center; gap: 8px; padding: 8px 22px; border-radius: 24px; font-size: 14px; font-weight: 500; cursor: pointer; border: 1.5px solid var(--border); transition: all .2s; }
.season-tab.active { background: var(--teal); color: var(--white); border-color: var(--teal); }
.blog-season-tabs { display: flex; gap: 10px; margin-bottom: 10px; }
.blog-cats { display: flex; gap: 8px; flex-wrap: wrap; padding: 14px 0 20px; border-bottom: 1px solid var(--border); margin-bottom: 28px; }
.blog-cat { padding: 5px 16px; border-radius: 20px; font-size: 12.5px; cursor: pointer; border: 1.5px solid var(--border); white-space: nowrap; transition: all .2s; color: var(--muted); }
.blog-cat.active { background: var(--teal); color: var(--white); border-color: var(--teal); }

/* Promo hero */
.promo-hero { border-radius: 18px; overflow: hidden; background: linear-gradient(130deg, #071f2a 0%, #0f4560 100%); color: var(--white); padding: 50px 48px; margin-bottom: 48px; display: grid; grid-template-columns: 1fr auto; gap: 24px; align-items: center; position: relative; }
.promo-month-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 48px; }
.promo-card { background: var(--white); border: 1.5px solid var(--border); border-radius: 14px; overflow: hidden; cursor: pointer; transition: all .25s; }
.promo-card:hover { box-shadow: 0 10px 28px rgba(0,0,0,.1); transform: translateY(-3px); }
.promo-card-body { padding: 18px; }
.promo-card-title { font-size: 15px; font-weight: 700; margin-bottom: 8px; }
.promo-card-desc { font-size: 13px; color: var(--textm); line-height: 1.6; }

/* Social icons SVG shared */
.icon-tg { fill: #2AABEE; }
.icon-vk { fill: #4C75A3; }
.icon-yt { fill: #FF0000; }

/* ===== RESPONSIVE ===== */

/* Планшет */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr !important; }
  .products-row-4 { grid-template-columns: repeat(3, 1fr); }
  .products-row-5 { grid-template-columns: repeat(3, 1fr); }
  .promos-row { grid-template-columns: 1fr; }
}

/* Hero адаптив */
@media (max-width: 900px) {
  .hero-text h1 { font-size: 52px !important; }
}

@media (max-width: 768px) {
  /* Header */
  .header-main .container { flex-wrap: wrap; gap: 12px; }
  .search-wrap { order: 3; max-width: 100%; flex: 1 0 100%; }
  .hdr-actions { margin-left: 0; }

  /* Nav */
  .main-nav .container { gap: 0; }
  .nav-item { padding: 10px 10px; font-size: 11px; }

  /* Hero — одна колонка */
  .container[style*="grid-template-columns"] {
    grid-template-columns: 1fr !important;
  }
  .hero { min-height: 400px !important; }
  .hero h1 { font-size: 42px !important; }
  .hero p { max-width: 100% !important; }

  /* Грид продуктов */
  .products-row { grid-template-columns: repeat(2, 1fr); }
  .products-row-4 { grid-template-columns: repeat(2, 1fr); }
  .products-row-5 { grid-template-columns: repeat(2, 1fr); }

  /* Акции */
  .promos-row { grid-template-columns: 1fr; }

  /* Newsletter */
  .nl-form { flex-direction: column; }

  /* Footer */
  .footer-top { grid-template-columns: repeat(2, 1fr) !important; }
}

@media (max-width: 480px) {
  .products-row,
  .products-row-4,
  .products-row-5 { grid-template-columns: 1fr; }
  .hero h1 { font-size: 36px !important; }
  .footer-top { grid-template-columns: 1fr !important; }
  .stat-row { grid-template-columns: 1fr !important; }
}

/* Image placeholders */
.iph { display: flex; align-items: center; justify-content: center; }
.iph-snow { background: linear-gradient(135deg, #C8DFF0, #9BBBD4); }
.iph-orange { background: linear-gradient(135deg, #FFE8D0, #F5C99A); }
.iph-dark { background: linear-gradient(135deg, #2D4A5C, #1A3040); }
.iph-purple { background: linear-gradient(135deg, #E8E0F5, #C8B8E8); }
.iph-red { background: linear-gradient(135deg, #FFE0E0, #F5AAAA); }
.iph-gray { background: linear-gradient(135deg, #E8E8E8, #C8CACF); }
.iph-green { background: linear-gradient(135deg, #E5EED0, #C0D89A); }
.iph-blue { background: linear-gradient(135deg, #D0E4F8, #A0C4E8); }
