/* ── ROOT ── */
:root {
  --ink:        #120E0B;
  --coal:       #1B1612;
  --coal-2:     #251F1A;
  --coal-line:  rgba(255,236,214,.10);
  --ember:      #E8621A;
  --ember-hi:   #FF8A3D;
  --ember-soft: #FFF1E7;
  --gold:       #F4B35E;
  --bg:         #F6F2ED;
  --white:      #FFFFFF;
  --text:       #1E1813;
  --muted:      #7C6E63;
  --border:     #E7DED4;
  --on-dark:    #F6EEE4;
  --on-dark-2:  rgba(246,238,228,.66);
  --green:      #2F8F5B;
  --shadow-sm:  0 2px 10px rgba(30,20,12,.06);
  --shadow-md:  0 10px 30px rgba(30,20,12,.12);
  --shadow-lg:  0 22px 50px rgba(30,20,12,.18);
  --glow:       0 10px 30px rgba(232,98,26,.35);
  --radius:     14px;
  --font-head:  'Unbounded', 'Manrope', sans-serif;
  --font-body:  'Manrope', system-ui, sans-serif;
}

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

button, a { touch-action: manipulation; }

html { scroll-behavior: smooth; scroll-padding-top: 76px; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ember);
  margin-bottom: 14px;
}
.eyebrow::before {
  content: '';
  width: 22px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
}

/* ── BUTTONS ── */
.btn-primary,
.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 30px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
}
.btn-primary {
  background: linear-gradient(135deg, var(--ember-hi), var(--ember));
  color: #fff;
  box-shadow: var(--glow);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 36px rgba(232,98,26,.45); }
.btn-ghost {
  color: var(--on-dark);
  border: 1.5px solid rgba(246,238,228,.35);
  background: rgba(18,14,11,.25);
  backdrop-filter: blur(6px);
}
.btn-ghost:hover { border-color: var(--on-dark); background: rgba(18,14,11,.45); }

/* ── HEADER ── */
.site-header {
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  max-width: 1240px;
  margin: 0 auto;
  padding: 22px 24px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--on-dark);
}
.logo-mark {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(135deg, var(--ember-hi), var(--ember));
  box-shadow: var(--glow);
}
.logo-text {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -.01em;
}
.logo-text b, .footer-logo b { color: var(--ember-hi); font-weight: 700; }

.header-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.header-nav a {
  color: var(--on-dark-2);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: color .2s;
}
.header-nav a:hover { color: var(--on-dark); }
.header-nav .header-cta {
  color: var(--on-dark);
  padding: 10px 18px;
  border-radius: 999px;
  border: 1.5px solid rgba(246,238,228,.3);
}
.header-nav .header-cta:hover { border-color: var(--ember-hi); color: var(--ember-hi); }

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  background: var(--ink) url('../images/main1.webp') center / cover no-repeat;
  overflow: hidden;
  isolation: isolate;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(18,14,11,.05) 0%, rgba(18,14,11,.35) 38%, rgba(18,14,11,.86) 70%, rgba(18,14,11,.92) 100%),
    linear-gradient(180deg, rgba(18,14,11,.55) 0%, rgba(18,14,11,0) 22%, rgba(18,14,11,0) 70%, rgba(18,14,11,.7) 100%);
}

.hero-inner {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 120px 24px 90px;
  display: flex;
  justify-content: flex-end;
}

.hero-content {
  max-width: 560px;
  width: 100%;
  color: var(--on-dark);
}

.hero-tagline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(244,179,94,.1);
  border: 1px solid rgba(244,179,94,.28);
  margin-bottom: 22px;
}
.hero-tagline-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--ember-hi);
  box-shadow: 0 0 0 0 rgba(255,138,61,.7);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(255,138,61,.7); }
  70%  { box-shadow: 0 0 0 9px rgba(255,138,61,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,138,61,0); }
}

.hero-title {
  font-family: var(--font-head);
  font-size: clamp(48px, 8.5vw, 96px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -.03em;
  color: #fff;
  margin-bottom: 18px;
  white-space: nowrap;
}
/* "PRO" — вогняним градієнтом */
.hero-title .tr-outer:nth-child(-n+3) .tr-char {
  color: var(--ember-hi);
}

/* ── ROLLING TEXT ── */
.tr-outer {
  display: inline-flex;
  overflow: hidden;
  height: 1em;
  vertical-align: top;
}
.tr-char {
  display: inline-block;
  line-height: 1;
  text-shadow: 0 1em currentColor;
  transition: transform 280ms ease-in-out;
  transition-delay: calc(var(--i) * 45ms);
  will-change: transform;
}
.hero-title.rolling .tr-char {
  transform: translateY(-1em);
  transition-delay: calc(var(--i) * 45ms);
}

.hero-sub {
  font-family: var(--font-head);
  font-size: clamp(18px, 2.6vw, 26px);
  font-weight: 500;
  line-height: 1.3;
  color: var(--on-dark);
  margin-bottom: 16px;
}

.hero-lead {
  font-size: 16px;
  line-height: 1.65;
  color: var(--on-dark-2);
  margin-bottom: 28px;
  max-width: 480px;
}

.hero-timer {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 10px 12px 10px 18px;
  border-radius: 14px;
  background: rgba(18,14,11,.55);
  border: 1px solid var(--coal-line);
  backdrop-filter: blur(8px);
  margin-bottom: 26px;
}
.hero-timer-label {
  font-size: 11px;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--on-dark-2);
}
.hero-timer-digits {
  font-family: var(--font-head);
  font-size: clamp(20px, 3.4vw, 26px);
  font-weight: 600;
  letter-spacing: .04em;
  color: #fff;
  padding: 8px 14px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--ember-hi), var(--ember));
  font-variant-numeric: tabular-nums;
  font-feature-settings: "tnum" 1;
  min-width: 5.4em;
  text-align: center;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 36px;
}

.hero-trust {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  border-radius: 14px;
  overflow: hidden;
  background: var(--coal-line);
  border: 1px solid var(--coal-line);
}
.hero-trust li {
  background: rgba(18,14,11,.6);
  backdrop-filter: blur(8px);
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.hero-trust b {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 600;
  color: var(--gold);
}
.hero-trust span {
  font-size: 12px;
  line-height: 1.35;
  color: var(--on-dark-2);
}

/* scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  width: 26px;
  height: 42px;
  border-radius: 14px;
  border: 1.5px solid rgba(246,238,228,.4);
}
.hero-scroll span {
  position: absolute;
  top: 8px;
  left: 50%;
  width: 4px;
  height: 8px;
  margin-left: -2px;
  border-radius: 2px;
  background: var(--on-dark);
  animation: scrollDot 1.8s ease-in-out infinite;
}
@keyframes scrollDot {
  0%   { transform: translateY(0); opacity: 0; }
  30%  { opacity: 1; }
  100% { transform: translateY(14px); opacity: 0; }
}

/* ── ABOUT ── */
.about {
  background:
    radial-gradient(900px 500px at 85% 20%, rgba(232,98,26,.14), transparent 60%),
    var(--ink);
  color: var(--on-dark);
  padding: 110px 24px 90px;
}
.about-inner {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-title {
  font-family: var(--font-head);
  font-size: clamp(26px, 3.4vw, 40px);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -.02em;
  margin-bottom: 26px;
  color: #fff;
}
.about-title em {
  font-style: normal;
  background: linear-gradient(90deg, var(--gold), var(--ember-hi));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.about-text p:not(.eyebrow) {
  font-size: 16px;
  line-height: 1.75;
  color: var(--on-dark-2);
  margin-bottom: 16px;
}
.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 30px;
}
.about-stats div {
  padding: 18px;
  border-radius: 14px;
  background: var(--coal);
  border: 1px solid var(--coal-line);
}
.about-stats b {
  display: block;
  font-family: var(--font-head);
  font-size: clamp(26px, 3vw, 34px);
  font-weight: 700;
  color: var(--ember-hi);
  line-height: 1;
  margin-bottom: 8px;
}
.about-stats span {
  font-size: 13px;
  line-height: 1.35;
  color: var(--on-dark-2);
}
.about-media {
  position: relative;
}
.about-media::before {
  content: '';
  position: absolute;
  inset: 12% -6% -6% 12%;
  border-radius: 24px;
  background: radial-gradient(closest-side, rgba(232,98,26,.45), transparent);
  filter: blur(30px);
  z-index: 0;
}
.about-media img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  border-radius: 22px;
  border: 1px solid var(--coal-line);
  box-shadow: 0 30px 70px rgba(0,0,0,.5);
}

.brands {
  max-width: 1240px;
  margin: 70px auto 0;
  padding-top: 34px;
  border-top: 1px solid var(--coal-line);
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.brands-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--on-dark-2);
}
.brands-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.brands-list button {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 500;
  color: var(--on-dark);
  background: var(--coal);
  border: 1px solid var(--coal-line);
  border-radius: 999px;
  padding: 10px 18px;
  cursor: pointer;
  transition: border-color .2s, color .2s, background .2s;
}
.brands-list button:hover {
  border-color: var(--ember);
  color: var(--ember-hi);
  background: var(--coal-2);
}

/* ── CATALOG ── */
.catalog {
  max-width: 1240px;
  margin: 0 auto;
  padding: 96px 20px 110px;
}

.catalog-intro {
  text-align: center;
  margin-bottom: 40px;
}

.section-title {
  font-family: var(--font-head);
  font-size: clamp(28px, 4.4vw, 44px);
  font-weight: 700;
  letter-spacing: -.02em;
  color: var(--text);
  margin-bottom: 14px;
}
.section-sub {
  max-width: 560px;
  margin: 0 auto;
  font-size: 15px;
  line-height: 1.6;
  color: var(--muted);
}

/* ── STICKY CATEGORY NAV ── */
.filters {
  position: sticky;
  top: 10px;
  z-index: 100;
  background: rgba(27,22,18,.94);
  backdrop-filter: blur(10px);
  border-radius: 999px;
  margin: 0 0 56px;
  padding: 6px;
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  box-shadow: var(--shadow-md);
}
.filters::-webkit-scrollbar { display: none; }

.cat-nav-inner {
  display: flex;
  gap: 4px;
  min-width: max-content;
}

.cat-nav-btn {
  white-space: nowrap;
  padding: 11px 20px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  color: var(--on-dark-2);
  background: transparent;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  transition: color .2s ease, background .2s ease;
  touch-action: manipulation;
}
.cat-nav-btn:hover  { color: var(--on-dark); }
.cat-nav-btn.active {
  color: #fff;
  background: linear-gradient(135deg, var(--ember-hi), var(--ember));
}

/* ── CATEGORY SECTIONS ── */
.cat-section { margin-bottom: 72px; }
.cat-section:last-child { margin-bottom: 0; }

.cat-section-header {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 26px;
}
.cat-section-title {
  font-family: var(--font-head);
  font-size: clamp(20px, 2.6vw, 28px);
  font-weight: 600;
  letter-spacing: -.01em;
  color: var(--text);
  white-space: nowrap;
}
.cat-section-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, var(--ember), var(--border) 30%, transparent);
}

/* ── PRODUCT GRID ── */
.products-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

@media (min-width: 600px)  { .products-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 960px)  { .products-grid { grid-template-columns: repeat(4, 1fr); gap: 22px; } }

/* ── CARD ── */
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(232,98,26,.35);
}

.card-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  background: var(--white);
  padding: 14px;
}

.card-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform .5s ease;
}
.card:hover .card-img { transform: scale(1.05); }

.card-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 1;
  background: linear-gradient(135deg, var(--ember-hi), var(--ember));
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  padding: 5px 10px;
  border-radius: 999px;
  box-shadow: 0 6px 14px rgba(232,98,26,.35);
}

.card-body {
  padding: 16px 16px 18px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
  border-top: 1px solid var(--border);
}

.card-name {
  font-weight: 600;
  font-size: 14px;
  line-height: 1.45;
  color: var(--text);
  flex: 1;
  margin-bottom: 8px;
}

.card-old {
  font-size: 13px;
  color: var(--muted);
  text-decoration: line-through;
}

.card-new {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.1;
}

.card-minqty,
.card-options {
  display: inline-flex;
  align-self: flex-start;
  font-size: 12px;
  font-weight: 700;
  color: var(--ember);
  background: var(--ember-soft);
  border-radius: 999px;
  padding: 3px 10px;
  margin-top: 6px;
}

.card-btns {
  display: flex;
  gap: 8px;
  margin-top: 14px;
}

.card-btn-details,
.card-btn {
  min-height: 42px;
  padding: 0 10px;
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: background .2s ease, border-color .2s ease, color .2s ease, box-shadow .2s ease;
}

.card-btn-details {
  flex: 1;
  background: transparent;
  border: 1.5px solid var(--border);
  color: var(--text);
}
.card-btn-details:hover { border-color: var(--text); }

.card-btn {
  flex: 1.4;
  background: var(--coal);
  color: #fff;
  border: none;
}
.card-btn:hover  { background: var(--ember); box-shadow: 0 8px 18px rgba(232,98,26,.3); }
.card-btn:active { opacity: .85; }
.card-btn.added  { background: var(--green); box-shadow: none; }

/* ── MODAL ── */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(18,14,11,.72);
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
  backdrop-filter: blur(4px);
}
.modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.modal {
  background: var(--white);
  border-radius: 20px;
  max-width: 600px;
  width: 100%;
  max-height: 92vh;
  overflow-y: auto;
  transform: translateY(20px);
  transition: transform .25s ease;
  position: relative;
}
.modal-overlay.open .modal { transform: translateY(0); }

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--coal);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 38px;
  height: 38px;
  font-size: 17px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: background .15s;
}
.modal-close:hover { background: var(--ember); }

.modal-swiper-wrap {
  border-radius: 20px 20px 0 0;
  overflow: hidden;
  background: var(--white);
}

.modal-swiper { width: 100%; aspect-ratio: 1/1; }

.modal-swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  padding: 16px;
}

.modal-swiper .swiper-button-prev,
.modal-swiper .swiper-button-next {
  width: 40px;
  height: 40px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 50%;
  box-shadow: var(--shadow-sm);
  color: var(--text);
  --swiper-navigation-size: 14px;
  transition: background .15s, color .15s;
}
.modal-swiper .swiper-button-prev:hover,
.modal-swiper .swiper-button-next:hover { background: var(--ember); color: #fff; border-color: var(--ember); }

.modal-swiper .swiper-pagination-bullet { background: var(--border); opacity: 1; }
.modal-swiper .swiper-pagination-bullet-active { background: var(--ember); }

.modal-thumbs {
  display: flex;
  gap: 8px;
  padding: 12px 16px;
  background: var(--bg);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow-x: auto;
  scrollbar-width: none;
}
.modal-thumbs::-webkit-scrollbar { display: none; }

.modal-thumb {
  width: 58px;
  height: 58px;
  flex-shrink: 0;
  border-radius: 10px;
  overflow: hidden;
  border: 2px solid var(--border);
  background: var(--white);
  cursor: pointer;
  transition: border-color .15s;
}
.modal-thumb.active { border-color: var(--ember); }
.modal-thumb img { width: 100%; height: 100%; object-fit: contain; display: block; background: var(--white); padding: 3px; }

.modal-body { padding: 24px 26px 28px; }

.modal-sku {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}

.modal-name {
  font-family: var(--font-body);
  font-size: 22px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 16px;
  line-height: 1.3;
  letter-spacing: -.01em;
}

.modal-prices {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin-bottom: 8px;
  flex-wrap: wrap;
}

.modal-old {
  font-size: 16px;
  color: var(--muted);
  text-decoration: line-through;
}

.modal-new {
  font-family: var(--font-head);
  font-size: 34px;
  font-weight: 700;
  color: var(--text);
  line-height: 1;
}

.modal-economy {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  color: var(--ember);
  background: var(--ember-soft);
  border-radius: 999px;
  padding: 5px 12px;
  margin-bottom: 20px;
}
.modal-economy:empty { display: none; }

.modal-desc {
  font-size: 15px;
  line-height: 1.75;
  color: #4A3F36;
  margin-bottom: 20px;
  white-space: pre-line;
}

/* ── Вибір комплектації ── */
.modal-options {
  margin: 0 0 22px;
  padding: 16px;
  border-radius: 16px;
  background: var(--bg);
}
.modal-options-title {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 12px;
}
.modal-options-list { display: flex; flex-direction: column; gap: 8px; }
.modal-option {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 14px;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 12px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  text-align: left;
  cursor: pointer;
  transition: border-color .2s, background .2s, box-shadow .2s;
}
.modal-option:hover { border-color: var(--ember-hi); }
.modal-option.active {
  border-color: var(--ember);
  background: var(--ember-soft);
  box-shadow: 0 0 0 3px rgba(232,98,26,.14);
}
.mo-radio {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border: 2px solid var(--border);
  border-radius: 50%;
  position: relative;
  transition: border-color .2s;
}
.modal-option.active .mo-radio { border-color: var(--ember); }
.modal-option.active .mo-radio::after {
  content: '';
  position: absolute;
  inset: 3px;
  border-radius: 50%;
  background: var(--ember);
}
.mo-label { flex: 1; line-height: 1.35; }
.mo-price {
  flex-shrink: 0;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 15px;
  color: var(--text);
  text-align: right;
  line-height: 1.2;
}
.mo-price small {
  display: block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  color: var(--ember);
}

.modal-specs {
  list-style: none;
  margin-bottom: 24px;
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
}
.modal-specs li {
  font-size: 14px;
  padding: 10px 14px;
  color: var(--text);
  line-height: 1.45;
}
.modal-specs li:nth-child(odd) { background: var(--bg); }

.modal-add-btn {
  position: sticky;
  bottom: 0;
  width: 100%;
  min-height: 56px;
  background: linear-gradient(135deg, var(--ember-hi), var(--ember));
  color: #fff;
  border: none;
  border-radius: 14px;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 800;
  cursor: pointer;
  box-shadow: var(--glow);
  transition: transform .2s ease, box-shadow .2s ease;
}
.modal-add-btn:hover { transform: translateY(-1px); box-shadow: 0 14px 34px rgba(232,98,26,.45); }
.modal-add-btn.added { background: var(--green); box-shadow: none; }

/* ── CART FAB ── */
.cart-fab {
  position: fixed;
  bottom: 22px;
  right: 20px;
  z-index: 200;
  background: var(--coal);
  color: #fff;
  border: 1px solid var(--coal-line);
  border-radius: 999px;
  padding: 12px 14px 12px 20px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 12px 30px rgba(18,14,11,.35);
  display: flex;
  align-items: center;
  gap: 10px;
  transition: background .2s ease, transform .2s ease;
}
.cart-fab:hover { background: var(--ember); transform: translateY(-2px); }

.cart-count {
  background: var(--ember);
  border-radius: 999px;
  min-width: 26px;
  height: 26px;
  padding: 0 6px;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
}
.cart-fab:hover .cart-count { background: var(--coal); }

/* ── CART PANEL ── */
.cart-panel {
  position: fixed;
  inset: 0;
  z-index: 400;
  display: flex;
  pointer-events: none;
}

.cart-backdrop {
  flex: 1;
  background: rgba(18,14,11,.55);
  opacity: 0;
  transition: opacity .28s ease;
}

.cart-drawer {
  width: min(430px, 100vw);
  background: var(--bg);
  height: 100%;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform .3s cubic-bezier(.4,0,.2,1);
  display: flex;
  flex-direction: column;
}

.cart-panel.open { pointer-events: all; }
.cart-panel.open .cart-backdrop { opacity: 1; }
.cart-panel.open .cart-drawer  { transform: translateX(0); }

.cart-header {
  background: var(--ink);
  color: #fff;
  padding: 22px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-shrink: 0;
}

.cart-title {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 600;
}

.cart-close {
  background: rgba(255,255,255,.1);
  border: none;
  color: #fff;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 17px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .15s;
}
.cart-close:hover { background: var(--ember); }

.cart-items {
  flex: 1;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cart-empty {
  text-align: center;
  color: var(--muted);
  padding: 48px 0;
  font-size: 15px;
  line-height: 2;
}

.cart-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 12px;
}

.ci-img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  border-radius: 10px;
  flex-shrink: 0;
  background: var(--white);
  border: 1px solid var(--border);
  padding: 3px;
}

.ci-info { flex: 1; min-width: 0; }

.ci-name {
  font-size: 13px;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 4px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  color: var(--text);
}

.ci-variant {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  color: var(--ember);
  background: var(--ember-soft);
  border-radius: 999px;
  padding: 2px 9px;
  margin-bottom: 6px;
}

.ci-price {
  font-family: var(--font-head);
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
}

.ci-controls {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 8px;
}

.ci-btn {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  width: 30px;
  height: 30px;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--text);
  transition: all .15s;
}
.ci-btn:hover { background: var(--coal); color: #fff; border-color: var(--coal); }
.ci-qty { font-weight: 800; font-size: 14px; min-width: 22px; text-align: center; }

.ci-area {
  font-size: 12px;
  color: var(--ember);
  font-weight: 600;
  margin-top: 3px;
}

.ci-minqty {
  font-size: 11px;
  color: var(--muted);
  margin-left: 4px;
}

.ci-del {
  background: none;
  border: none;
  color: #C9BCB0;
  font-size: 17px;
  cursor: pointer;
  padding: 4px;
  flex-shrink: 0;
  transition: color .15s;
}
.ci-del:hover { color: var(--ember); }

.cart-summary {
  margin: 0 16px;
  padding: 16px 18px;
  flex-shrink: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
}

.sum-row {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  margin-bottom: 8px;
  color: var(--muted);
}
.sum-row.discount { color: var(--ember); font-weight: 700; }
.sum-row.total {
  color: var(--text);
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 700;
  margin: 12px 0 0;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}

.order-form {
  padding: 22px 20px 26px;
  flex-shrink: 0;
}

.order-form h3 {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--text);
}

.form-group { margin-bottom: 14px; }

.form-group label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: var(--muted);
  margin-bottom: 6px;
}

.form-group input {
  width: 100%;
  border: 1.5px solid var(--border);
  border-radius: 12px;
  padding: 13px 14px;
  font-size: 16px;
  font-family: var(--font-body);
  outline: none;
  transition: border-color .18s, box-shadow .18s;
  background: var(--white);
  color: var(--text);
  touch-action: manipulation;
}
.form-group input:focus { border-color: var(--ember); box-shadow: 0 0 0 3px rgba(232,98,26,.14); }

.order-btn {
  width: 100%;
  min-height: 54px;
  background: linear-gradient(135deg, var(--ember-hi), var(--ember));
  color: #fff;
  border: none;
  border-radius: 14px;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 800;
  cursor: pointer;
  box-shadow: var(--glow);
  transition: transform .2s ease, box-shadow .2s ease;
}
.order-btn:hover { transform: translateY(-1px); box-shadow: 0 14px 34px rgba(232,98,26,.45); }

.order-note {
  font-size: 12px;
  color: var(--muted);
  text-align: center;
  margin-top: 10px;
  line-height: 1.5;
}

/* ── FOOTER ── */
.site-footer {
  background: var(--ink);
  padding: 56px 24px 28px;
  text-align: center;
}

.footer-inner {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.footer-logo {
  font-family: var(--font-head);
  font-size: 26px;
  font-weight: 600;
  color: #fff;
  letter-spacing: -.01em;
}

.footer-tagline {
  font-size: 14px;
  color: var(--on-dark-2);
}

.footer-policy {
  font-size: 13px;
  color: var(--on-dark-2);
  text-decoration: none;
  transition: color .18s;
}
.footer-policy:hover { color: var(--ember-hi); }

.footer-bottom {
  border-top: 1px solid var(--coal-line);
  margin-top: 32px;
  padding-top: 20px;
  text-align: center;
  font-size: 12px;
  color: rgba(246,238,228,.35);
}

/* ── TOAST ── */
.toast {
  position: fixed;
  bottom: 90px;
  right: 20px;
  background: var(--coal);
  color: #fff;
  padding: 13px 18px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  z-index: 600;
  transform: translateY(16px);
  opacity: 0;
  transition: all .25s ease;
  pointer-events: none;
  box-shadow: var(--shadow-md);
  border-left: 4px solid var(--ember);
  max-width: 280px;
}
.toast.show { opacity: 1; transform: translateY(0); }

/* ── TABLET ── */
@media (max-width: 900px) {
  .hero-inner { justify-content: center; padding: 110px 20px 90px; }
  .hero { background-position: 24% center; align-items: flex-end; }
  .hero::before {
    background: linear-gradient(180deg, rgba(18,14,11,.5) 0%, rgba(18,14,11,.15) 22%, rgba(18,14,11,.55) 45%, rgba(18,14,11,.92) 70%);
  }
  .about { padding: 80px 20px 70px; }
  .about-inner { grid-template-columns: 1fr; gap: 44px; }
  .about-media { max-width: 560px; }
  .brands { margin-top: 50px; }
}

@media (max-width: 760px) {
  .card-btns  { flex-direction: column; gap: 6px; margin-top: 10px; }
  .card-btn, .card-btn-details { flex: none; width: 100%; }
}

/* ── MOBILE ── */
@media (max-width: 600px) {
  .site-header { padding: 16px; }
  .header-nav a:not(.header-cta) { display: none; }
  .header-nav .header-cta { padding: 8px 14px; font-size: 13px; }
  .logo-text { font-size: 16px; }
  .logo-mark { width: 32px; height: 32px; }

  .hero-inner { padding: 38vh 16px 40px; }
  .hero-tagline { font-size: 10px; letter-spacing: .14em; }
  .hero-lead { font-size: 15px; }
  .hero-actions { flex-direction: column; }
  .hero-actions a { width: 100%; }
  .hero-trust li { padding: 12px 10px; }
  .hero-trust b { font-size: 15px; }
  .hero-trust span { font-size: 11px; }
  .hero-scroll { display: none; }

  .about { padding: 64px 16px 56px; }
  .about-stats { gap: 8px; }
  .about-stats div { padding: 14px 12px; }
  .about-stats span { font-size: 12px; }
  .brands { gap: 14px; }
  .brands-list button { font-size: 13px; padding: 8px 14px; }
}

@media (max-width: 480px) {
  .catalog { padding: 60px 14px 70px; }
  .filters { margin-bottom: 36px; }
  .catalog-intro { margin-bottom: 28px; }
  .cat-nav-btn { padding: 10px 16px; font-size: 13px; }

  .cat-section { margin-bottom: 48px; }
  .cat-section-header { margin-bottom: 16px; }

  .products-grid { gap: 10px; }

  .card-img-wrap { padding: 8px; }
  .card-body { padding: 12px 12px 14px; gap: 3px; }
  .card-name  { font-size: 13px; }
  .card-new   { font-size: 18px; }
  .card-options { font-size: 11px; padding: 3px 8px; }

  .modal-body { padding: 20px 18px 22px; }
  .modal-name { font-size: 18px; }
  .modal-new { font-size: 28px; }
}

/* ── SINGLE COLUMN (≤350px) ── */
@media (max-width: 350px) {
  .catalog { padding: 48px 12px 56px; }
  .products-grid { grid-template-columns: 1fr; gap: 10px; }
  .card-new { font-size: 22px; }
  .hero-trust { grid-template-columns: 1fr; }
}

/* ── REVIEWS ── */
.reviews {
  background:
    radial-gradient(800px 420px at 12% 0%, rgba(232,98,26,.16), transparent 60%),
    var(--ink);
  color: var(--on-dark);
  padding: 100px 0 90px;
  overflow: hidden;
}
.reviews-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}
.reviews-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 40px;
}
.reviews-title {
  font-family: var(--font-head);
  font-size: clamp(26px, 3.6vw, 42px);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -.02em;
  color: #fff;
  margin-bottom: 14px;
  max-width: 640px;
}
.reviews-title em {
  font-style: normal;
  background: linear-gradient(90deg, var(--gold), var(--ember-hi));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.reviews-sub {
  font-size: 15px;
  line-height: 1.6;
  color: var(--on-dark-2);
  max-width: 520px;
}
.reviews-nav { display: flex; gap: 10px; flex-shrink: 0; }
.reviews-nav button {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--on-dark);
  background: var(--coal);
  border: 1px solid var(--coal-line);
  cursor: pointer;
  transition: background .2s, border-color .2s, opacity .2s;
}
.reviews-nav button:hover { background: var(--ember); border-color: var(--ember); }
.reviews-nav button.swiper-button-disabled { opacity: .35; pointer-events: none; }

.reviews-swiper { overflow: visible; }
.reviews-swiper .swiper-wrapper { align-items: flex-start; }

.review-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  background: var(--coal);
  border: 1px solid var(--coal-line);
  border-radius: 20px;
  overflow: hidden;
  transition: border-color .3s, transform .3s;
}
.review-card:hover { border-color: rgba(232,98,26,.45); transform: translateY(-4px); }

.review-photo {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 4 / 4.2;
  padding: 0;
  border: none;
  background: var(--coal-2);
  cursor: zoom-in;
  overflow: hidden;
}
.review-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s ease;
}
.review-card:hover .review-photo img { transform: scale(1.05); }
.review-photo::after {
  content: '';
  position: absolute;
  inset: auto 0 0 0;
  height: 40%;
  background: linear-gradient(transparent, rgba(27,22,18,.85));
  pointer-events: none;
}
.review-photo-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 1;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 800;
  color: #fff;
  padding: 5px 10px 5px 24px;
  border-radius: 999px;
  background: rgba(18,14,11,.6);
  backdrop-filter: blur(6px);
}
.review-photo-tag::before {
  content: '';
  position: absolute;
  left: 10px;
  top: 50%;
  width: 7px;
  height: 7px;
  margin-top: -3.5px;
  border-radius: 50%;
  background: var(--ember-hi);
}

.review-body {
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 22px 20px 20px;
}
.review-body::before {
  content: '\201C';
  position: absolute;
  top: -34px;
  right: 16px;
  font-family: Georgia, serif;
  font-size: 84px;
  line-height: 1;
  color: var(--ember);
  opacity: .9;
}
.review-text {
  flex: 1;
  font-size: 15px;
  line-height: 1.65;
  color: var(--on-dark);
}
.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--coal-line);
}
.review-avatar {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(135deg, var(--ember-hi), var(--ember));
}
.review-name {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
}

.reviews-pagination {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 34px;
}
.reviews-pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  margin: 0 !important;
  background: rgba(246,238,228,.25);
  opacity: 1;
  transition: width .25s, background .25s;
  border-radius: 999px;
}
.reviews-pagination .swiper-pagination-bullet-active {
  width: 26px;
  background: var(--ember);
}

.site-footer { border-top: 1px solid var(--coal-line); }

/* ── LIGHTBOX ── */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(10,8,6,.92);
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
  cursor: zoom-out;
}
.lightbox.open { opacity: 1; pointer-events: all; }
.lightbox img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 14px;
  box-shadow: 0 30px 80px rgba(0,0,0,.6);
}
.lightbox-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,.12);
  color: #fff;
  font-size: 18px;
  cursor: pointer;
}
.lightbox-close:hover { background: var(--ember); }

@media (max-width: 600px) {
  .reviews { padding: 70px 0 64px; }
  .reviews-inner { padding: 0 16px; }
  .reviews-head { margin-bottom: 28px; }
  .reviews-nav { display: none; }
  .review-text { font-size: 14px; }
}
