/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --orange: #e84c0e;
  --orange-hover: #d44409;
  --dark: #1e1e1e;
  --dark2: #2a2a2a;
  --white: #ffffff;
  --light-gray: #f5f5f5;
  --text: #222222;
  --font: 'Montserrat', 'Arial', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { display: block; width: 100%; height: 100%; object-fit: cover; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}

.orange { color: var(--orange); }
.section-label {
  color: var(--orange);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.section-label::before {
  content: '';
  width: 28px;
  height: 2px;
  background: var(--orange);
  border-radius: 1px;
  flex-shrink: 0;
}
.section-title { font-size: 42px; font-weight: 800; line-height: 1.1; margin-bottom: 48px; color: var(--text); }
.badge { background: var(--orange); color: white; font-size: 12px; font-weight: 700; padding: 4px 12px; border-radius: 20px; display: inline-block; }
.price { font-size: 18px; font-weight: 700; color: var(--text); }


/* ===== HEADER ===== */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--dark);
  height: 64px;
}

.header__inner {
  display: flex;
  align-items: center;
  gap: 32px;
  height: 100%;
}

.logo {
  font-size: 28px;
  font-weight: 900;
  color: white;
  letter-spacing: -0.02em;
  font-style: italic;
  text-transform: uppercase;
  margin-right: 4px;
}

.catalog-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--orange);
  color: white;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 0 20px;
  height: 44px;
  border-radius: 4px;
  white-space: nowrap;
  transition: background .2s;
}
.catalog-btn:hover { background: var(--orange-hover); }
.catalog-btn__icon { display: flex; flex-direction: column; gap: 4px; }
.catalog-btn__icon span { display: block; width: 18px; height: 2px; background: white; border-radius: 2px; }

.header__left { display: flex; align-items: center; gap: 16px; }

.nav { display: flex; align-items: center; gap: 28px; flex: 1; }
.nav a { color: rgba(255,255,255,0.85); font-size: 13px; font-weight: 600; letter-spacing: 0.06em; transition: color .2s; }
.nav a:hover { color: white; }

.header__right { display: flex; align-items: center; gap: 12px; margin-left: auto; }

.social-icon { display: flex; align-items: center; transition: opacity .2s; }
.social-icon:hover { opacity: .8; }

.phone-link { color: var(--orange); font-size: 16px; font-weight: 700; white-space: nowrap; }
.phone-link:hover { text-decoration: underline; }

.lang-switch { display: flex; align-items: center; gap: 5px; }
.lang-switch span { font-size: 11px; opacity: .4; color: rgba(255,255,255,.5); }
.lang-switch__item { display: flex; transition: opacity .2s, transform .15s; opacity: .5; border-radius: 5px; overflow: hidden; line-height: 1; }
.lang-switch__item img { width: 28px; height: 28px; display: block; }
.lang-switch__item.active { opacity: 1; transform: scale(1.12); }
.lang-switch__item:hover { opacity: .82; }

/* ── Old/discounted price display ── */
.old-price { text-decoration: line-through; color: rgba(0,0,0,.38); font-size: .82em; margin-right: 5px; }
.bs-card__prices { display: flex; flex-direction: column; gap: 1px; }
.bs-card__prices .old-price { display: block; }
.bs-card__prices .price { font-weight: 700; }
.price-block { display: flex; flex-direction: column; gap: 2px; margin-bottom: 10px; }
.price-block .old-price { font-size: .82em; }
.price-block .price { font-weight: 700; font-size: 1.05em; }
.mc-prod__price .old-price { color: rgba(255,255,255,.38); }


/* ===== HERO ===== */
.hero {
  position: relative;
  background: var(--dark2);
  min-height: 580px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1534438327276-14e5300c3a48?w=1400&q=80') center/cover no-repeat;
  opacity: 0.35;
  filter: brightness(0.6);
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  width: 100%;
  padding-top: 60px;
  padding-bottom: 60px;
  gap: 40px;
}

.hero__title { display: flex; flex-direction: column; gap: 4px; }
.hero__title--big {
  font-size: clamp(80px, 10vw, 130px);
  font-weight: 900;
  color: white;
  line-height: 0.9;
  letter-spacing: -0.02em;
}
.hero__title--medium {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 700;
  color: white;
  letter-spacing: 0.05em;
}
.hero__title--sub {
  font-size: 15px;
  font-weight: 700;
  color: var(--orange);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-top: 8px;
}

.hero__desc-wrap {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-top: 32px;
  max-width: 300px;
}
.hero__line { width: 3px; min-height: 80px; background: var(--orange); border-radius: 2px; flex-shrink: 0; }
.hero__desc { color: rgba(255,255,255,.75); font-size: 15px; line-height: 1.6; }

.hero__promo {
  background: var(--orange);
  color: white;
  padding: 28px 28px 28px 24px;
  border-radius: 8px;
  max-width: 240px;
  min-width: 200px;
  position: relative;
}
.hero__promo-icon {
  font-size: 36px;
  font-weight: 300;
  line-height: 1;
  margin-bottom: 12px;
}
.hero__promo p { font-size: 14px; line-height: 1.6; }
.hero__promo strong { font-weight: 800; }


.callback-btn {
  position: absolute;
  top: 24px;
  right: 24px;
  background: #4CAF50;
  color: white;
  font-size: 12px;
  font-weight: 700;
  padding: 10px 14px;
  border-radius: 50%;
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 1.3;
  transition: background .2s, transform .2s;
  box-shadow: 0 4px 12px rgba(0,0,0,.2);
}
.callback-btn:hover { background: #43a047; transform: scale(1.05); }


/* ===== CATALOG (legacy, used by catalog.html product cards) ===== */
.catalog {
  padding: 80px 0;
  background: white;
}

.catalog__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* ═══════════════════════════════════════════════════
   HOMEPAGE CATEGORIES SECTION — Professional Redesign
   ═══════════════════════════════════════════════════ */
.cat-section {
  padding: 90px 0;
  background: #f6f7f9;
}

.cat-section__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 52px;
}

.cat-section__label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 10px;
}
.cat-section__label::before {
  content: '';
  width: 28px;
  height: 2px;
  background: var(--orange);
  display: inline-block;
  border-radius: 2px;
  flex-shrink: 0;
}

.cat-section__title {
  font-size: clamp(28px, 4.2vw, 50px);
  font-weight: 900;
  line-height: 1.05;
  color: #111;
  margin: 0;
}

.cat-section__all {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border: 2px solid #111;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 700;
  color: #111;
  text-decoration: none;
  flex-shrink: 0;
  transition: background .22s ease, color .22s ease;
  white-space: nowrap;
}
.cat-section__all:hover { background: #111; color: #fff; }

/* ─── Category Card Grid ─── */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* ─── Category Card ─── */
.cat-card {
  position: relative;
  display: block;
  border-radius: 20px;
  overflow: hidden;
  background: #1a1a1a;
  color: #fff;
  text-decoration: none;
  aspect-ratio: 3 / 4;
  transition: transform .32s cubic-bezier(.25,.46,.45,.94),
              box-shadow .32s cubic-bezier(.25,.46,.45,.94);
}
.cat-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 70px rgba(0,0,0,.2);
}

.cat-card__img { position: absolute; inset: 0; }
.cat-card__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s cubic-bezier(.25,.46,.45,.94);
}
.cat-card:hover .cat-card__img img { transform: scale(1.1); }

.cat-card__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    160deg,
    rgba(0,0,0,.04) 0%,
    rgba(0,0,0,.08) 35%,
    rgba(0,0,0,.72) 72%,
    rgba(0,0,0,.92) 100%
  );
  transition: background .35s;
}
.cat-card:hover .cat-card__overlay {
  background: linear-gradient(
    160deg,
    rgba(0,0,0,.10) 0%,
    rgba(0,0,0,.22) 35%,
    rgba(0,0,0,.82) 72%,
    rgba(0,0,0,.96) 100%
  );
}

/* Count pill — top right */
.cat-card__count {
  position: absolute; top: 16px; right: 16px; z-index: 2;
  padding: 5px 12px;
  background: rgba(255,255,255,.15);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  letter-spacing: .03em;
}

/* HOT badge — top left (first card only) */
.cat-card__hot {
  position: absolute; top: 16px; left: 16px; z-index: 2;
  padding: 5px 12px;
  background: var(--orange);
  border-radius: 100px;
  font-size: 10px;
  font-weight: 900;
  color: #fff;
  letter-spacing: .1em;
  text-transform: uppercase;
}

/* Body — bottom */
.cat-card__body {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 2;
  padding: 0 20px 22px;
}
.cat-card__name {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.3;
  color: #fff;
  margin: 0 0 12px;
  transition: transform .3s ease;
}
.cat-card:hover .cat-card__name { transform: translateY(-4px); }

.cat-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 16px;
  background: var(--orange);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .3s ease, transform .3s ease;
}
.cat-card:hover .cat-card__cta {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered entrance animation */
@keyframes catFadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
.cat-card { animation: catFadeUp .45s ease both; }
.cat-card:nth-child(1)  { animation-delay: .04s; }
.cat-card:nth-child(2)  { animation-delay: .08s; }
.cat-card:nth-child(3)  { animation-delay: .12s; }
.cat-card:nth-child(4)  { animation-delay: .16s; }
.cat-card:nth-child(5)  { animation-delay: .20s; }
.cat-card:nth-child(6)  { animation-delay: .24s; }
.cat-card:nth-child(7)  { animation-delay: .28s; }
.cat-card:nth-child(8)  { animation-delay: .32s; }
.cat-card:nth-child(9)  { animation-delay: .36s; }
.cat-card:nth-child(10) { animation-delay: .40s; }
.cat-card:nth-child(11) { animation-delay: .44s; }
.cat-card:nth-child(12) { animation-delay: .48s; }

/* ─── Responsive ─── */
@media (max-width: 1100px) {
  .cat-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 720px) {
  .cat-section { padding: 60px 0; }
  .cat-section__head { flex-direction: column; align-items: flex-start; gap: 16px; }
  .cat-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .cat-card { border-radius: 14px; }
  .cat-card__name { font-size: 13px; margin-bottom: 10px; }
  .cat-card__count { font-size: 10px; padding: 4px 9px; }
}

/* ─── Product Card ─── */
.catalog-card {
  display: flex;
  flex-direction: column;
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 2px 14px rgba(0,0,0,.06);
  transition: box-shadow .3s, transform .3s;
}
.catalog-card:hover {
  box-shadow: 0 14px 44px rgba(0,0,0,.13);
  transform: translateY(-5px);
}

.catalog-card__img-wrap {
  display: block;
  height: 210px;
  overflow: hidden;
  background: #f7f7f7;
  position: relative;
  flex-shrink: 0;
}
.catalog-card__img-wrap img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s ease;
}
.catalog-card:hover .catalog-card__img-wrap img { transform: scale(1.07); }
.catalog-card__img-wrap .badge { position: absolute; top: 12px; left: 12px; z-index: 1; }

.catalog-card__body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 8px;
}
.catalog-card__body h3 {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.45;
  margin: 0;
  flex: 1;
}
.catalog-card__body h3 a { color: var(--text); text-decoration: none; }
.catalog-card__body h3 a:hover { color: var(--orange); }

.catalog-card__body .price {
  font-size: 20px;
  font-weight: 800;
  color: var(--orange);
  margin: 0;
  line-height: 1;
}

.catalog-card__order-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 12px 16px;
  background: var(--orange);
  color: #fff;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  margin-top: 4px;
  transition: background .2s, transform .15s;
}
.catalog-card__order-btn:hover {
  background: var(--orange-hover);
  transform: translateY(-1px);
}


/* ===== ARRIVALS ===== */
.arrivals {
  padding: 80px 0;
  background: white;
}

.arrivals__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.arrival-card {
  border: 1px solid #e8e8e8;
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow .25s;
}
.arrival-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,.1); }

.arrival-card--featured {
  position: relative;
  min-height: 380px;
}
.arrival-card--featured img {
  position: absolute;
  inset: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.arrival-card--featured .arrival-card__info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0,0,0,.75) 0%, transparent 100%);
  padding: 30px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: white;
}
.arrival-card--featured h3 { font-size: 20px; font-weight: 700; }
.arrival-card__link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--orange);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  margin-left: auto;
  transition: background .2s;
}
.arrival-card__link:hover { background: var(--orange-hover); }

.arrivals__right { display: flex; flex-direction: column; gap: 20px; }

.arrivals__right .arrival-card {
  flex-direction: row;
  min-height: 160px;
  align-items: center;
  gap: 0;
}
.arrivals__right .arrival-card img {
  width: 200px;
  min-width: 200px;
  height: 160px;
  object-fit: contain;
  background: #f5f5f5;
  padding: 16px;
}
.arrivals__right .arrival-card__info {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
  position: relative;
}
.arrivals__right h3 { font-size: 15px; font-weight: 600; line-height: 1.4; }
.arrival-card__plus {
  position: absolute;
  bottom: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  border: 1.5px solid #ccc;
  border-radius: 4px;
  font-size: 20px;
  color: #999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color .2s, color .2s;
}
.arrival-card__plus:hover { border-color: var(--orange); color: var(--orange); }


/* ===== VIDEO SECTION ===== */
.video-section {
  position: relative;
  background: #000;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.video-section__brand {
  position: absolute;
  font-size: clamp(100px, 18vw, 240px);
  font-weight: 900;
  color: white;
  letter-spacing: -0.02em;
  z-index: 1;
  user-select: none;
  line-height: 1;
}

.video-section__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
}
.video-section__overlay img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  opacity: 0.55;
  mix-blend-mode: screen;
}

.video-section__play-wrap {
  position: absolute;
  bottom: 40px;
  right: 80px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: white;
}
.video-section__play {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  border: 2.5px solid white;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: background .2s, border-color .2s;
}
.video-section__play:hover { background: rgba(255,255,255,.15); }
.video-section__play-wrap p {
  font-size: 13px;
  font-weight: 600;
  color: var(--orange);
  text-align: center;
  letter-spacing: 0.03em;
}


/* ===== FEATURES ===== */
.features {
  padding: 60px 0;
  background: white;
}

.features__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.feature-card {
  border: 1px solid #e8e8e8;
  border-radius: 8px;
  padding: 32px 28px;
  position: relative;
  transition: box-shadow .25s;
  min-height: 180px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.feature-card:hover { box-shadow: 0 8px 28px rgba(0,0,0,.08); }
.feature-card h3 { font-size: 20px; font-weight: 700; margin-bottom: 8px; }
.feature-card p { font-size: 14px; color: #555; line-height: 1.5; }

.feature-card--orange {
  background: var(--orange);
  border-color: var(--orange);
  color: white;
}
.feature-card--orange p { color: rgba(255,255,255,.9); font-size: 16px; font-weight: 600; }
.feature-card__num {
  font-size: 96px;
  font-weight: 900;
  color: rgba(255,255,255,.25);
  line-height: 1;
  position: absolute;
  top: 8px;
  left: 16px;
}
.feature-card__plus {
  position: absolute;
  bottom: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  border: 2px solid rgba(255,255,255,.5);
  border-radius: 4px;
  font-size: 20px;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  transition: border-color .2s;
}
.feature-card__plus:hover { border-color: white; }

.feature-card__arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1.5px solid #ccc;
  border-radius: 4px;
  color: #555;
  font-size: 18px;
  font-weight: 700;
  margin-top: auto;
  align-self: flex-start;
  transition: border-color .2s, color .2s;
}
.feature-card__arrow:hover { border-color: var(--orange); color: var(--orange); }


/* ===== SEO TEXT ===== */
.seo-text {
  padding: 60px 0 80px;
  background: white;
}
.seo-text__inner {
  max-width: 760px;
}
.seo-text h2 {
  font-size: 22px;
  font-weight: 700;
  color: #ccc;
  margin-bottom: 24px;
}
.seo-text p, .seo-text li {
  font-size: 14px;
  color: #bbb;
  line-height: 1.8;
  margin-bottom: 12px;
}
.seo-text ul { padding-left: 16px; list-style: disc; margin-bottom: 12px; }
.seo-text strong { color: var(--orange); }


/* ===== FOOTER ===== */
.footer {
  background: var(--dark);
  color: white;
  padding: 60px 0 40px;
}

.footer__top {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-bottom: 48px;
  text-align: center;
}

.footer__logo {
  font-size: 36px;
  font-weight: 900;
  color: white;
  font-style: italic;
  letter-spacing: -0.02em;
}
.site-logo-img { height: 52px; width: auto; display: block; max-width: 280px; }
.site-logo-img--white { filter: invert(1); }

.footer__tagline { color: var(--orange); font-size: 13px; }

.footer__cols {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
}

.footer__col-label {
  font-size: 13px;
  color: rgba(255,255,255,.5);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.footer__phone {
  color: var(--orange);
  font-size: 20px;
  font-weight: 700;
  display: block;
  margin-bottom: 4px;
}

.footer__address {
  color: var(--orange);
  font-size: 13px;
  line-height: 1.6;
  display: block;
  margin-bottom: 12px;
}

.footer__email { font-size: 13px; color: rgba(255,255,255,.6); }
.footer__email a { color: var(--orange); }

.footer__col-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--orange);
  margin-bottom: 16px;
  letter-spacing: 0.04em;
}

.footer__col ul { display: flex; flex-direction: column; gap: 10px; }
.footer__col ul li a {
  color: rgba(255,255,255,.7);
  font-size: 14px;
  transition: color .2s;
}
.footer__col ul li a:hover { color: white; }


/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .catalog__grid { grid-template-columns: repeat(3, 1fr); }
  .features__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__cols { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .container { padding: 0 20px; }
  .nav { display: none; }
  .header__right .lang-switch { display: none; }
  .hero__inner { flex-direction: column; align-items: flex-start; }
  .hero__promo { max-width: 100%; width: 100%; }
  .catalog__grid { grid-template-columns: repeat(2, 1fr); }
  .arrivals__grid { grid-template-columns: 1fr; }
  .features__grid { grid-template-columns: repeat(2, 1fr); }
  .section-title { font-size: 32px; }
  .footer__cols { grid-template-columns: 1fr; }
  .video-section__play-wrap { right: 24px; bottom: 24px; }
}

@media (max-width: 480px) {
  .catalog__grid { grid-template-columns: 1fr; }
  .features__grid { grid-template-columns: 1fr; }
}

/* ===== SIDEBAR (CATALOG & CART) ===== */
.overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,.55);
  z-index: 200; opacity: 0; pointer-events: none;
  transition: opacity .3s;
}
.overlay.open { opacity: 1; pointer-events: all; }

.sidebar {
  position: fixed; top: 0; left: 0; height: 100vh; width: 340px;
  background: white; z-index: 300; display: flex; flex-direction: column;
  transform: translateX(-100%); transition: transform .35s cubic-bezier(.4,0,.2,1);
  box-shadow: 4px 0 32px rgba(0,0,0,.18);
}
.sidebar--right { left: auto; right: 0; transform: translateX(100%); }
.sidebar.open { transform: translateX(0); }

.sidebar__head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px; border-bottom: 1px solid #eee; background: var(--dark);
}
.sidebar__head h2 { color: white; font-size: 18px; font-weight: 700; }
.sidebar__close {
  width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,.15);
  color: white; font-size: 16px; display: flex; align-items: center; justify-content: center;
  transition: background .2s; border: none; cursor: pointer;
}
.sidebar__close:hover { background: rgba(255,255,255,.3); }

.sidebar__list {
  flex: 1; overflow-y: auto; padding: 12px 0;
}
/* ── Sidebar 2-level navigation ── */
.sidebar-cat-group { border-bottom: 1px solid #efefef; }

.sidebar-cat-btn {
  display: flex; align-items: center; gap: 14px; width: 100%;
  padding: 13px 16px; background: none; border: none; cursor: pointer;
  text-align: left; transition: background .18s; border-left: 3px solid transparent;
}
.sidebar-cat-btn:hover { background: #fff5f1; border-left-color: var(--orange); }
.sidebar-cat-group.open .sidebar-cat-btn { background: #fff5f1; border-left-color: var(--orange); }
.sidebar-cat-btn img {
  width: 54px; height: 54px; object-fit: cover; border-radius: 10px; flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(0,0,0,.13);
}
.sidebar-cat-info { flex: 1; min-width: 0; }
.sidebar-cat-name {
  display: block; font-size: 14px; font-weight: 700; color: #1a1a1a;
  transition: color .18s; line-height: 1.3;
}
.sidebar-cat-group.open .sidebar-cat-name { color: var(--orange); }
.sidebar-cat-btn:hover .sidebar-cat-name { color: var(--orange); }
.sidebar-cat-count { display: block; font-size: 11px; color: #aaa; font-weight: 400; margin-top: 3px; }

.sidebar-cat-arrow { flex-shrink: 0; color: #ccc; transition: transform .25s ease, color .18s; }
.sidebar-cat-group.open .sidebar-cat-arrow { transform: rotate(180deg); color: var(--orange); }

.sidebar-products {
  max-height: 0; overflow: hidden;
  transition: max-height .38s cubic-bezier(.4,0,.2,1);
  background: #f6f6f6; border-top: 1px solid #eee;
}
.sidebar-cat-group.open .sidebar-products { max-height: 900px; }

.sidebar-products-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 10px; padding: 12px 14px 16px;
}
.sidebar-product-card {
  display: flex; flex-direction: column; text-decoration: none;
  background: white; border-radius: 10px; border: 1.5px solid #eee; overflow: hidden;
  transition: border-color .2s, box-shadow .2s, transform .15s;
}
.sidebar-product-card:hover {
  border-color: var(--orange); box-shadow: 0 4px 16px rgba(232,76,14,.18);
  transform: translateY(-2px);
}
.sidebar-product-card img { width: 100%; height: 88px; object-fit: cover; display: block; }
.sidebar-product-card span {
  font-size: 11px; font-weight: 600; color: #333; padding: 7px 8px 9px;
  line-height: 1.35; display: block;
}

/* ═══════════════════════════════════════════════════════════════
   MEGA CATALOG — Premium
   ═══════════════════════════════════════════════════════════════ */
.mega-catalog {
  position: fixed; inset: 0; z-index: 400;
  visibility: hidden; pointer-events: none;
}
.mega-catalog.open { visibility: visible; pointer-events: auto; }

/* ── Backdrop ── */
.mc-backdrop {
  position: absolute; inset: 0;
  background: rgba(0,0,0,.75);
  backdrop-filter: blur(10px) saturate(.6);
  opacity: 0; transition: opacity .45s ease;
}
.mega-catalog.open .mc-backdrop { opacity: 1; }

/* ── Panel ── */
.mc-panel {
  position: absolute; top: 0; left: 0; bottom: 0;
  width: 940px; max-width: 100vw;
  display: flex; flex-direction: column;
  background: white;
  transform: translateX(-100%);
  transition: transform .48s cubic-bezier(0.32, 1.18, 0.64, 1);
  box-shadow: 20px 0 80px rgba(0,0,0,.45);
}
.mega-catalog.open .mc-panel { transform: translateX(0); }

/* ── Header ── */
.mc-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 24px 0 28px; height: 62px; flex-shrink: 0;
  background: #0a0a0a;
}
.mc-head__left { display: flex; align-items: center; gap: 14px; }
.mc-head__title {
  font-size: 14px; font-weight: 900; color: white;
  letter-spacing: 2px; text-transform: uppercase; font-family: 'Montserrat', sans-serif;
}
.mc-head__tag {
  font-size: 9px; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase;
  color: #e84c0e; background: rgba(232,76,14,.12);
  border: 1px solid rgba(232,76,14,.3); padding: 3px 10px; border-radius: 20px;
}
.mc-close {
  width: 38px; height: 38px; border-radius: 8px; flex-shrink: 0;
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.1);
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: background .2s, transform .3s, border-color .2s;
}
.mc-close:hover { background: #e84c0e; border-color: #e84c0e; transform: rotate(90deg); }

/* ── Body ── */
.mc-body { flex: 1; display: flex; overflow: hidden; }

/* ── Left: Categories ── */
.mc-cats {
  width: 252px; flex-shrink: 0; background: #0d0d0d;
  display: flex; flex-direction: column; overflow-y: auto;
}
.mc-cats::-webkit-scrollbar { width: 2px; }
.mc-cats::-webkit-scrollbar-thumb { background: #222; }

.mc-cats-label {
  display: block; font-size: 9px; font-weight: 800; color: #e84c0e;
  letter-spacing: 3px; text-transform: uppercase; padding: 18px 20px 10px;
  font-family: 'Montserrat', sans-serif;
}
.mc-cat-list { flex: 1; }

.mc-cat-item {
  display: flex; align-items: center; gap: 13px; width: 100%;
  padding: 11px 20px; background: none; border: none; cursor: pointer;
  text-align: left; border-left: 3px solid transparent;
  transition: background .2s, border-color .2s;
}
.mc-cat-item:hover { background: rgba(255,255,255,.04); border-left-color: rgba(232,76,14,.35); }
.mc-cat-item.active { background: rgba(232,76,14,.1); border-left-color: #e84c0e; }

.mc-cat-item__thumb {
  width: 44px; height: 44px; border-radius: 10px; flex-shrink: 0; overflow: hidden;
  border: 1.5px solid rgba(255,255,255,.06);
  transition: border-color .2s, transform .25s;
  position: relative;
}
.mc-cat-item__thumb::after {
  content: ''; position: absolute; inset: 0;
  background: rgba(0,0,0,.25); transition: opacity .2s;
}
.mc-cat-item.active .mc-cat-item__thumb { border-color: rgba(232,76,14,.5); transform: scale(1.06); }
.mc-cat-item.active .mc-cat-item__thumb::after { opacity: 0; }
.mc-cat-item__thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }

.mc-cat-item__text { flex: 1; min-width: 0; }
.mc-cat-item__name {
  display: block; font-size: 12.5px; font-weight: 600; color: #888;
  line-height: 1.3; transition: color .2s;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.mc-cat-item:hover .mc-cat-item__name { color: #ccc; }
.mc-cat-item.active .mc-cat-item__name { color: white; font-weight: 700; }

.mc-cat-item__count {
  display: inline-block; font-size: 10px; color: #333;
  background: #1a1a1a; border: 1px solid #222;
  padding: 1px 7px; border-radius: 10px; margin-top: 4px;
  transition: background .2s, color .2s, border-color .2s;
}
.mc-cat-item.active .mc-cat-item__count {
  background: rgba(232,76,14,.15); color: #e84c0e; border-color: rgba(232,76,14,.25);
}
.mc-cat-item__arr {
  color: #252525; flex-shrink: 0; transition: color .2s, transform .2s;
}
.mc-cat-item.active .mc-cat-item__arr { color: #e84c0e; transform: translateX(4px); }

.mc-cats-footer {
  padding: 18px 20px; border-top: 1px solid #1a1a1a; margin-top: auto;
}
.mc-cats-footer span {
  font-size: 14px; font-weight: 900; color: #1e1e1e;
  letter-spacing: 3px; text-transform: uppercase; font-family: 'Montserrat', sans-serif;
}

/* ── Right: Products column ── */
.mc-prods-col { flex: 1; display: flex; flex-direction: column; overflow: hidden; background: #f6f6f6; }

/* Hero banner */
.mc-hero {
  height: 170px; flex-shrink: 0; position: relative; overflow: hidden;
}
.mc-hero__img {
  position: absolute; inset: -4px;
  background-size: cover; background-position: center;
  transition: background-image .1s, transform .6s ease;
  filter: brightness(.85);
}
.mc-hero:hover .mc-hero__img { transform: scale(1.04); }
.mc-hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(0,0,0,.9) 0%, rgba(0,0,0,.55) 50%, rgba(0,0,0,.15) 100%);
}
.mc-hero__content {
  position: relative; z-index: 1; height: 100%;
  display: flex; flex-direction: column; justify-content: center;
  padding: 0 28px;
}
.mc-hero__label {
  font-size: 9px; font-weight: 800; color: #e84c0e;
  letter-spacing: 3px; text-transform: uppercase; margin-bottom: 8px;
  font-family: 'Montserrat', sans-serif;
}
.mc-hero__title {
  font-size: 28px; font-weight: 900; color: white; line-height: 1.05;
  font-family: 'Montserrat', sans-serif; text-transform: uppercase; letter-spacing: .5px;
  transition: opacity .2s;
}
.mc-hero__meta {
  display: flex; align-items: center; gap: 12px; margin-top: 10px;
}
.mc-hero__count { font-size: 12px; color: rgba(255,255,255,.5); font-weight: 500; }
.mc-hero__divider { width: 30px; height: 2px; background: #e84c0e; border-radius: 2px; }

/* Products wrap + grid */
.mc-prods-wrap {
  flex: 1; overflow-y: auto; padding: 18px 20px 24px;
}
.mc-prods-wrap::-webkit-scrollbar { width: 4px; }
.mc-prods-wrap::-webkit-scrollbar-thumb { background: #d8d8d8; border-radius: 4px; }

.mc-prods {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 13px; align-content: start;
}

/* Card entrance animation */
@keyframes mc-card-in {
  from { opacity: 0; transform: translateY(18px) scale(.97); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

.mc-prod {
  display: flex; flex-direction: column; text-decoration: none;
  background: white; border-radius: 14px; overflow: hidden;
  border: 1.5px solid #ebebeb;
  animation: mc-card-in .38s ease both;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.mc-prod:hover {
  transform: translateY(-5px) scale(1.01);
  box-shadow: 0 14px 36px rgba(0,0,0,.14);
  border-color: var(--orange);
}
.mc-prod__img-wrap { position: relative; height: 155px; overflow: hidden; background: #f5f5f5; }
.mc-prod__img-wrap img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform .42s ease;
}
.mc-prod:hover .mc-prod__img-wrap img { transform: scale(1.09); }

.mc-prod-badge {
  position: absolute; top: 10px; left: 10px; z-index: 1;
  background: var(--orange); color: white;
  font-size: 9px; font-weight: 800; padding: 3px 10px; border-radius: 20px;
  text-transform: uppercase; letter-spacing: .6px;
}
.mc-prod__info { padding: 13px 14px 15px; display: flex; flex-direction: column; gap: 4px; flex: 1; }
.mc-prod__name { font-size: 12.5px; font-weight: 700; color: #111; line-height: 1.4; flex: 1; }
.mc-prod__price {
  font-size: 15px; font-weight: 900; color: var(--orange);
  font-family: 'Montserrat', sans-serif; letter-spacing: .3px;
}
.mc-prod__cta {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: 8px; padding-top: 9px; border-top: 1px solid #f0f0f0;
  font-size: 11px; font-weight: 700; color: #bbb;
  transition: color .2s;
}
.mc-prod__cta svg { transition: transform .22s; }
.mc-prod:hover .mc-prod__cta { color: var(--orange); }
.mc-prod:hover .mc-prod__cta svg { transform: translateX(4px); }

/* View-all */
.mc-view-all {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  margin-top: 16px; padding: 14px;
  background: white; border: 1.5px solid #e8e8e8; border-radius: 12px;
  font-size: 13px; font-weight: 700; color: #444; text-decoration: none;
  transition: border-color .2s, color .2s, background .2s, transform .2s;
}
.mc-view-all:hover {
  border-color: var(--orange); color: var(--orange);
  background: #fff8f5; transform: translateY(-1px);
}
.mc-view-all svg { transition: transform .22s; }
.mc-view-all:hover svg { transform: translateX(4px); }

/* ── Responsive ── */
@media (max-width: 920px) {
  .mc-panel { width: 100vw; }
  .mc-prods { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .mc-head { padding: 0 14px 0 16px; height: 52px; }
  .mc-head__tag { display: none; }
  .mc-head__title { font-size: 14px; }

  /* Stack layout vertically */
  .mc-body { flex-direction: column; }

  /* Categories → horizontal scroll strip */
  .mc-cats {
    width: 100%; height: auto; flex-shrink: 0;
    flex-direction: row; overflow-x: auto; overflow-y: visible;
    border-right: none; border-bottom: 1px solid #1c1c1c;
  }
  .mc-cats::-webkit-scrollbar { height: 0; width: 0; }
  .mc-cats-label { display: none; }
  .mc-cats-footer { display: none; }

  .mc-cat-list {
    display: flex; flex-direction: row; gap: 4px;
    padding: 10px 12px; width: max-content;
  }

  .mc-cat-item {
    flex-direction: column; align-items: center; justify-content: flex-start;
    padding: 8px 10px; gap: 6px;
    width: auto; min-width: 66px;
    border-left: none; border-bottom: 2px solid transparent;
    border-radius: 10px;
  }
  .mc-cat-item:hover { border-left-color: transparent; border-bottom-color: rgba(232,76,14,.4); }
  .mc-cat-item.active { border-left-color: transparent; border-bottom-color: #e84c0e; }

  .mc-cat-item__thumb { width: 38px; height: 38px; border-radius: 8px; }
  .mc-cat-item__text { align-items: center; }
  .mc-cat-item__name {
    font-size: 9.5px; text-align: center;
    white-space: normal; overflow: visible; text-overflow: unset;
    max-width: 64px; line-height: 1.25;
  }
  .mc-cat-item__count { display: none; }
  .mc-cat-item__arr { display: none; }

  /* Right column fills remaining space */
  .mc-prods-col { flex: 1; overflow: hidden; }

  /* Hero */
  .mc-hero { height: 110px; }
  .mc-hero__label { font-size: 8px; letter-spacing: 2px; }
  .mc-hero__title { font-size: 18px; }
  .mc-hero__count { font-size: 10px; }
  .mc-hero__content { padding: 12px 16px; }

  /* Products */
  .mc-prods-wrap { padding: 10px; }
  .mc-prods { grid-template-columns: 1fr 1fr; gap: 8px; }
  .mc-prod__img-wrap { height: 100px; }
  .mc-prod { padding: 10px; border-radius: 12px; }
  .mc-prod__name { font-size: 11px; }
  .mc-prod__price { font-size: 12px; }
  .mc-prod__cta { font-size: 10px; }
}

/* ===== CART SIDEBAR ===== */
.cart-items { flex: 1; overflow-y: auto; padding: 16px; }
.cart-item {
  display: flex; gap: 12px; align-items: flex-start;
  padding: 12px 0; border-bottom: 1px solid #f0f0f0;
}
.cart-item img { width: 70px; height: 70px; object-fit: cover; border-radius: 6px; flex-shrink: 0; }
.cart-item__info { flex: 1; min-width: 0; }
.cart-item__name { font-size: 13px; font-weight: 600; line-height: 1.3; margin-bottom: 4px; }
.cart-item__price { font-size: 13px; color: var(--orange); font-weight: 700; margin-bottom: 8px; }
.cart-item__qty { display: flex; align-items: center; gap: 10px; }
.cart-item__qty button { width: 26px; height: 26px; border: 1px solid #ddd; border-radius: 4px; background: white; font-size: 16px; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: border-color .2s; }
.cart-item__qty button:hover { border-color: var(--orange); color: var(--orange); }
.cart-item__qty span { font-size: 14px; font-weight: 600; min-width: 20px; text-align: center; }
.cart-item__remove { color: #bbb; font-size: 14px; padding: 4px; transition: color .2s; flex-shrink: 0; background: none; border: none; cursor: pointer; }
.cart-item__remove:hover { color: #e53935; }
.cart-empty { padding: 60px 20px; text-align: center; color: #999; font-size: 15px; }
.cart-footer { padding: 16px; border-top: 1px solid #eee; }
.cart-footer__total { display: flex; justify-content: space-between; align-items: center; margin-bottom: 14px; font-size: 15px; }
.cart-footer__total strong { color: var(--orange); font-size: 18px; }
.btn-block { display: block; width: 100%; text-align: center; padding: 14px; }

/* ===== MODALS ===== */
.modal-backdrop {
  position: fixed; inset: 0; background: rgba(0,0,0,.6);
  z-index: 400; display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity .3s;
}
.modal-backdrop.open { opacity: 1; pointer-events: all; }

.modal {
  background: white; border-radius: 12px; padding: 40px;
  max-width: 440px; width: 90%; position: relative;
  transform: translateY(20px); transition: transform .3s;
  box-shadow: 0 20px 60px rgba(0,0,0,.3);
}
.modal-backdrop.open .modal { transform: translateY(0); }
.modal--video { background: #000; padding: 0; max-width: 800px; border-radius: 8px; overflow: hidden; }
.video-modal__player { width: 100%; aspect-ratio: 16/9; }
.video-modal__player iframe { width: 100%; height: 100%; }

.modal__close {
  position: absolute; top: 14px; right: 14px; width: 32px; height: 32px;
  border-radius: 50%; background: #f0f0f0; border: none; cursor: pointer;
  font-size: 14px; display: flex; align-items: center; justify-content: center;
  transition: background .2s; color: #555;
}
.modal__close:hover { background: #e0e0e0; }
.modal h3 { font-size: 22px; font-weight: 800; margin-bottom: 8px; }
.modal p { color: #777; font-size: 14px; margin-bottom: 24px; }
.callback-form { display: flex; flex-direction: column; gap: 14px; }
.callback-form input { border: 1.5px solid #e0e0e0; border-radius: 6px; padding: 12px 16px; font-size: 15px; font-family: inherit; transition: border-color .2s; }
.callback-form input:focus { outline: none; border-color: var(--orange); }
.callback-form .btn-orange { padding: 14px; font-size: 15px; }

/* ===== BUTTONS ===== */
.btn-orange {
  background: var(--orange); color: white; border: none; border-radius: 6px;
  padding: 12px 24px; font-size: 14px; font-weight: 700; cursor: pointer;
  transition: background .2s, transform .15s; display: inline-block; text-align: center;
}
.btn-orange:hover { background: var(--orange-hover); transform: translateY(-1px); }
.btn-outline {
  background: transparent; color: var(--orange); border: 2px solid var(--orange);
  border-radius: 6px; padding: 12px 24px; font-size: 14px; font-weight: 700;
  cursor: pointer; transition: all .2s;
}
.btn-outline:hover { background: var(--orange); color: white; }

/* ===== CART BUTTON IN HEADER ===== */
.cart-btn {
  position: relative; width: 40px; height: 40px; display: flex; align-items: center;
  justify-content: center; border-radius: 6px; background: rgba(255,255,255,.1);
  border: none; cursor: pointer; transition: background .2s;
}
.cart-btn:hover { background: rgba(255,255,255,.2); }
.cart-badge {
  position: absolute; top: -6px; right: -6px; width: 20px; height: 20px;
  background: var(--orange); color: white; border-radius: 50%; font-size: 11px;
  font-weight: 700; align-items: center; justify-content: center;
}

/* ===== TOAST ===== */
.toast-container {
  position: fixed; bottom: 100px; right: 24px; z-index: 999;
  display: flex; flex-direction: column; gap: 10px; pointer-events: none;
}
.toast {
  background: var(--dark); color: white; padding: 12px 20px; border-radius: 8px;
  font-size: 14px; max-width: 320px; box-shadow: 0 4px 20px rgba(0,0,0,.3);
  opacity: 0; transform: translateX(40px); transition: all .35s; pointer-events: all;
}
.toast--show { opacity: 1; transform: translateX(0); }
.toast--success { border-left: 4px solid #4CAF50; }
.toast--error   { border-left: 4px solid #e53935; }

/* ===== NAV ACTIVE ===== */
.nav a.active { color: var(--orange) !important; }

/* ===== PAGE HERO ===== */
.page-hero {
  background: var(--dark); padding: 48px 0 40px; color: white;
}
.page-hero--small { padding: 28px 0; }
.page-hero__title { font-size: 42px; font-weight: 900; margin-top: 12px; color: white; }
.page-hero__sub { color: rgba(255,255,255,.6); margin-top: 8px; font-size: 16px; }

.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 13px; color: rgba(255,255,255,.5); }
.breadcrumb a { color: var(--orange); }
.breadcrumb span { color: rgba(255,255,255,.4); }

/* ═══════════════════════════════════════════════════
   CATALOG PAGE — Professional Redesign
   ═══════════════════════════════════════════════════ */
.catalog-page { display: grid; grid-template-columns: 268px 1fr; gap: 28px; padding: 36px 0 64px; align-items: start; }

/* ─── Sidebar card ─── */
.cat-filter {
  position: sticky;
  top: 20px;
  background: #fff;
  border-radius: 16px;
  border: 1px solid #ebebeb;
  box-shadow: 0 2px 16px rgba(0,0,0,.05);
  overflow: hidden;
}

/* Search */
.cf-search-wrap {
  position: relative;
  padding: 14px 14px;
  border-bottom: 1px solid #f0f0f0;
}
.cf-search-icon {
  position: absolute;
  left: 28px;
  top: 50%;
  transform: translateY(-50%);
  color: #bbb;
  font-size: 12px;
  pointer-events: none;
}
.cf-search {
  width: 100%;
  padding: 9px 10px 9px 34px;
  border: 1.5px solid #eee;
  border-radius: 10px;
  font-size: 13px;
  font-family: inherit;
  background: #f8f8f8;
  color: var(--text);
  transition: border-color .2s, background .2s;
  box-sizing: border-box;
}
.cf-search:focus { outline: none; border-color: var(--orange); background: #fff; }
.cf-search::placeholder { color: #bbb; }

/* Section */
.cf-section { padding: 14px; border-bottom: 1px solid #f0f0f0; }
.cf-section:last-child { border-bottom: none; }
.cf-heading {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: #bbb;
  margin-bottom: 10px;
}

/* Category items */
.cat-filter__list {
  display: flex;
  flex-direction: column;
  gap: 2px;
  max-height: 440px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: #e0e0e0 transparent;
}
.cat-filter__list::-webkit-scrollbar { width: 3px; }
.cat-filter__list::-webkit-scrollbar-thumb { background: #ddd; border-radius: 3px; }

.cf-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 7px 8px;
  border-radius: 10px;
  text-decoration: none;
  transition: background .15s;
  cursor: pointer;
}
.cf-item:hover:not(.cf-item--active) { background: #f7f7f7; }
.cf-item--active { background: #fff3ef; }

.cf-item__thumb, .cf-item__icon {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
  background: #f2f2f2;
}
.cf-item__thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.cf-item__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: #aaa;
}
.cf-item--active .cf-item__icon { background: rgba(232,76,14,.1); color: var(--orange); }

.cf-item__name {
  flex: 1;
  font-size: 13px;
  font-weight: 500;
  color: #444;
  line-height: 1.3;
  min-width: 0;
}
.cf-item--active .cf-item__name { color: var(--orange); font-weight: 700; }

.cf-item__count {
  flex-shrink: 0;
  font-size: 11px;
  font-weight: 700;
  color: #bbb;
  background: #f2f2f2;
  padding: 2px 7px;
  border-radius: 100px;
  min-width: 22px;
  text-align: center;
}
.cf-item--active .cf-item__count { background: var(--orange); color: #fff; }

/* Price range */
.price-range { padding: 4px 0; }
.price-range__vals {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  margin-bottom: 10px;
  color: #999;
}
.price-range__vals strong { color: var(--text); font-weight: 700; }
.price-range input[type="range"] { width: 100%; accent-color: var(--orange); cursor: pointer; }

/* ─── Toolbar ─── */
.cat-toolbar { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; gap: 12px; }
.cat-count { font-size: 13px; color: #999; font-weight: 500; }
.cat-toolbar__right { display: flex; align-items: center; gap: 10px; }

.cat-sort {
  border: 1.5px solid #e0e0e0; border-radius: 8px; padding: 8px 12px;
  font-size: 13px; font-family: inherit; cursor: pointer; background: #fff;
}
.cat-sort:focus { outline: none; border-color: var(--orange); }

/* View toggle */
.view-toggle { display: flex; border: 1.5px solid #e0e0e0; border-radius: 8px; overflow: hidden; }
.view-btn { padding: 7px 11px; background: none; border: none; cursor: pointer; color: #bbb; font-size: 14px; line-height: 1; transition: background .15s, color .15s; }
.view-btn:hover { background: #f5f5f5; color: #555; }
.view-btn--active { background: var(--orange) !important; color: #fff !important; }

/* ─── List view ─── */
.catalog__list { display: flex; flex-direction: column; gap: 14px; }
.cl-card {
  display: grid;
  grid-template-columns: 150px 1fr;
  border: 1px solid #eee;
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  transition: box-shadow .25s, transform .25s;
}
.cl-card:hover { box-shadow: 0 6px 28px rgba(0,0,0,.08); transform: translateY(-2px); }
.cl-card__img { position: relative; background: #f5f5f5; display: block; height: 150px; }
.cl-card__img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.cl-card__img .badge { position: absolute; top: 10px; left: 10px; }
.cl-card__body { padding: 18px 20px; display: flex; flex-direction: column; }
.cl-card__body h3 { font-size: 15px; font-weight: 700; margin-bottom: 4px; line-height: 1.3; }
.cl-card__body h3 a { color: inherit; }
.cl-card__body h3 a:hover { color: var(--orange); }
.cl-card__price { font-size: 20px; font-weight: 800; color: var(--orange); margin: 4px 0 0; }
.cl-card__order { display: inline-block; margin-top: auto; padding-top: 14px; padding: 10px 24px; background: var(--orange); color: #fff; border-radius: 8px; font-size: 13px; font-weight: 700; text-decoration: none; transition: background .2s, transform .15s; align-self: flex-start; margin-top: auto; }
.cl-card__order:hover { background: var(--orange-hover); transform: translateY(-1px); }

.empty-state { padding: 80px 0; text-align: center; color: #aaa; font-size: 18px; grid-column: 1/-1; }

/* ===== PRODUCT PAGE ===== */
.product-page {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
  padding: 48px 40px; align-items: start;
}
.product-gallery__main {
  position: relative; border-radius: 12px; overflow: hidden;
  background: #f8f8f8; aspect-ratio: 1; margin-bottom: 12px;
}
.product-gallery__main img { width: 100%; height: 100%; object-fit: contain; }
.product-badge { position: absolute; top: 16px; left: 16px; }
.product-gallery__thumbs { display: flex; gap: 10px; flex-wrap: wrap; }
.thumb {
  width: 72px; height: 72px; object-fit: cover; border-radius: 8px;
  border: 2px solid transparent; cursor: pointer; transition: border-color .2s;
}
.thumb.active, .thumb:hover { border-color: var(--orange); }

.product-info__title { font-size: 28px; font-weight: 800; margin-bottom: 12px; line-height: 1.2; }
.product-info__price { font-size: 32px; font-weight: 900; color: var(--orange); margin-bottom: 16px; }
.product-info__desc { font-size: 15px; color: #555; line-height: 1.7; margin-bottom: 24px; }
.product-info__actions { display: flex; flex-wrap: wrap; align-items: center; gap: 12px; margin-bottom: 24px; }

.qty-ctrl {
  display: flex; align-items: center; border: 2px solid #e0e0e0;
  border-radius: 6px; overflow: hidden;
}
.qty-ctrl button {
  width: 40px; height: 44px; background: #f8f8f8; border: none;
  font-size: 20px; cursor: pointer; transition: background .2s;
}
.qty-ctrl button:hover { background: #ffe8e0; color: var(--orange); }
.qty-ctrl span { width: 48px; text-align: center; font-size: 16px; font-weight: 700; }

.product-info__add { padding: 12px 28px; font-size: 15px; }

.product-badges { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 28px; }
.product-badge-item { background: #f5f5f5; padding: 8px 14px; border-radius: 20px; font-size: 13px; }

.product-specs h3 { font-size: 18px; font-weight: 700; margin-bottom: 16px; }
.specs-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.specs-table tr { border-bottom: 1px solid #f0f0f0; }
.specs-table td { padding: 10px 12px; }
.specs-table td:first-child { color: #888; width: 40%; }
.specs-table td:last-child { font-weight: 600; }

.related-section { padding-top: 0; }

/* ===== INFO PAGES (service, delivery) ===== */
.info-page { padding: 60px 40px; }
.info-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 60px;
}
.info-card {
  border: 1px solid #e8e8e8; border-radius: 12px; padding: 32px 28px;
  transition: box-shadow .25s;
}
.info-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,.08); }
.info-card--orange { background: var(--orange); color: white; border-color: var(--orange); }
.info-card--orange h3, .info-card--orange p { color: white; }
.info-card__icon { font-size: 36px; margin-bottom: 16px; }
.info-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 10px; }
.info-card p { font-size: 14px; line-height: 1.7; color: #555; }

.info-section { margin-bottom: 60px; }
.info-section h2 { font-size: 28px; font-weight: 800; margin-bottom: 20px; }
.info-list { padding-left: 20px; display: flex; flex-direction: column; gap: 10px; }
.info-list li { font-size: 15px; color: #555; line-height: 1.6; list-style: disc; }

.cta-block { background: var(--dark); border-radius: 12px; padding: 48px; text-align: center; color: white; }
.cta-block h2 { font-size: 32px; font-weight: 900; margin-bottom: 12px; color: white; }
.cta-block p { color: rgba(255,255,255,.7); margin-bottom: 24px; font-size: 16px; }

.installment-table-wrap { overflow-x: auto; border-radius: 8px; border: 1px solid #e8e8e8; }
.installment-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.installment-table th { background: var(--dark); color: white; padding: 14px 20px; text-align: left; }
.installment-table td { padding: 12px 20px; border-bottom: 1px solid #f0f0f0; }
.installment-table tr:last-child td { border-bottom: none; }
.installment-table tr:hover td { background: #f9f9f9; }

/* ===== FAQ PAGE ===== */
.faq-cats { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 36px; }
.faq-cat-btn { padding: 8px 20px; border-radius: 24px; border: 1.5px solid #e0e0e0; background: #fff; font-size: 13px; font-weight: 600; color: #555; cursor: pointer; transition: all .2s; }
.faq-cat-btn:hover { border-color: var(--orange); color: var(--orange); }
.faq-cat-btn--active { background: var(--orange); border-color: var(--orange); color: #fff; }

.faq-list { display: flex; flex-direction: column; gap: 0; margin-bottom: 60px; border: 1px solid #e8e8e8; border-radius: 12px; overflow: hidden; }
.faq-item { border-bottom: 1px solid #f0f0f0; }
.faq-item:last-child { border-bottom: none; }
.faq-q { width: 100%; text-align: left; padding: 20px 24px; font-size: 15px; font-weight: 700; display: flex; justify-content: space-between; align-items: center; gap: 12px; background: #fff; cursor: pointer; transition: background .2s; }
.faq-q:hover { background: #fafafa; }
.faq-q i { flex-shrink: 0; transition: transform .3s; color: #999; font-size: 13px; }
.faq-item--open .faq-q { color: var(--orange); background: #fff8f5; }
.faq-item--open .faq-q i { transform: rotate(180deg); color: var(--orange); }
.faq-a { display: none; padding: 0 24px 20px; }
.faq-item--open .faq-a { display: block; }
.faq-a p { font-size: 14px; line-height: 1.75; color: #555; }
.faq-a a { color: var(--orange); }

/* ===== RETURNS PAGE ===== */
.return-steps { display: flex; flex-direction: column; gap: 0; border-left: 2px solid #e8e8e8; margin-left: 20px; padding-left: 0; }
.return-step { display: flex; gap: 24px; padding: 24px 0 24px 28px; position: relative; }
.return-step__num { width: 40px; height: 40px; border-radius: 50%; background: var(--orange); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 16px; font-weight: 800; flex-shrink: 0; position: absolute; left: -21px; top: 20px; }
.return-step__body { padding-left: 28px; }
.return-step__body h4 { font-size: 16px; font-weight: 700; margin-bottom: 6px; }
.return-step__body p { font-size: 14px; line-height: 1.7; color: #555; }
.return-rules { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.return-rules li { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; line-height: 1.6; color: #444; }
.return-rules i { color: #e84c0e; margin-top: 2px; flex-shrink: 0; }

/* ===== ABOUT PAGE ===== */
.about-hero { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; margin-bottom: 60px; padding-bottom: 60px; border-bottom: 1px solid #f0f0f0; }
.about-hero__text h2 { font-size: 32px; font-weight: 900; margin: 8px 0 20px; line-height: 1.2; }
.about-hero__text p { font-size: 15px; line-height: 1.8; color: #555; margin-bottom: 14px; }
.about-hero__stats { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.about-stat { background: #f9f9f9; border-radius: 12px; padding: 28px 20px; text-align: center; }
.about-stat__num { display: block; font-size: 36px; font-weight: 900; color: var(--orange); margin-bottom: 6px; }
.about-stat__label { font-size: 13px; color: #777; font-weight: 500; }

.values-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.value-card { background: #f9f9f9; border-radius: 12px; padding: 28px 20px; }
.value-card__icon { font-size: 28px; color: var(--orange); margin-bottom: 14px; display: block; }
.value-card h4 { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.value-card p { font-size: 13px; line-height: 1.7; color: #666; }

.about-address { display: flex; gap: 40px; }
.about-address__info { flex: 1; display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.about-address__info .contact-block { margin: 0; }

/* ===== CONTACTS PAGE ===== */
.contacts-page { padding: 60px 40px; }
.contacts-grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 60px; margin-bottom: 60px; }

.contact-block { margin-bottom: 32px; }
.contact-block h3 { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.contact-block p { font-size: 14px; color: #555; line-height: 1.6; }
.contact-phone { font-size: 24px; font-weight: 800; color: var(--orange); display: block; margin-bottom: 4px; }
.contact-hours { font-size: 13px; color: #999; }
.contact-socials { display: flex; gap: 12px; flex-wrap: wrap; }
.social-pill { background: #f0f0f0; color: var(--text); padding: 8px 16px; border-radius: 20px; font-size: 14px; font-weight: 500; transition: all .2s; }
.social-pill:hover { background: var(--orange); color: white; }

.contacts-form-wrap h2 { font-size: 28px; font-weight: 800; margin-bottom: 24px; }
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 13px; font-weight: 600; color: #555; }
.form-group input, .form-group textarea {
  border: 1.5px solid #e0e0e0; border-radius: 8px; padding: 12px 16px;
  font-size: 14px; font-family: inherit; transition: border-color .2s;
  resize: vertical;
}
.form-group input:focus, .form-group textarea:focus { outline: none; border-color: var(--orange); }
.contact-form .btn-orange { padding: 14px 28px; align-self: flex-start; }

.map-section h2 { font-size: 28px; font-weight: 800; margin-bottom: 20px; }
.map-wrap { border-radius: 12px; overflow: hidden; box-shadow: 0 4px 20px rgba(0,0,0,.1); }

/* ===== RESPONSIVE ADDITIONS ===== */
@media (max-width: 1024px) {
  .catalog-page { grid-template-columns: 1fr; padding: 20px 0 48px; }
  .cat-filter { position: static; }
  .cat-filter__list { max-height: none; flex-direction: row; flex-wrap: wrap; gap: 6px; }
  .cf-item__thumb, .cf-item__icon { display: none; }
  .cf-item { padding: 5px 10px; border-radius: 20px; border: 1px solid #eee; }
  .cf-item--active { border-color: var(--orange); }
  .cl-card { grid-template-columns: 110px 1fr; }
  .cl-card__img { height: 110px; }
  .product-page { grid-template-columns: 1fr; gap: 32px; }
  .info-grid { grid-template-columns: repeat(2, 1fr); }
  .contacts-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-hero { grid-template-columns: 1fr; gap: 32px; }
  .values-grid { grid-template-columns: repeat(2,1fr); }
  .about-address__info { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .catalog-page, .info-page, .contacts-page { padding: 24px 16px; }
  .product-page { padding: 32px 20px; }
  .info-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .about-hero__stats { grid-template-columns: 1fr 1fr; }
  .return-step { padding-left: 16px; }
  .faq-cats { gap: 8px; }
  .faq-cat-btn { padding: 7px 14px; font-size: 12px; }
  .sidebar { width: 290px; }
  .page-hero__title { font-size: 30px; }
  .cl-card { grid-template-columns: 90px 1fr; }
  .cl-card__img { height: 90px; }
  .cl-card__body { padding: 12px; }
  .cl-card__price { font-size: 16px; }
  .cl-card__order { padding: 8px 14px; font-size: 12px; }
}


/* ═══════════════════════════════════════════════════════════
   HOMEPAGE REDESIGN — HERO2, TRUST BAR, BESTSELLERS,
   ABOUT STRIP, WHY GENAU, HOME CTA
   ══════════════════════════════════════════════════════════ */

/* ── Hero 2 ── */
.hero2 {
  position: relative;
  background: #0f1117;
  min-height: calc(100vh - 70px);
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero2__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 75% 50%, rgba(232,76,14,0.10) 0%, transparent 55%),
    radial-gradient(ellipse at 15% 80%, rgba(255,255,255,0.02) 0%, transparent 50%);
  pointer-events: none;
}
.hero2__inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 60px;
  padding-top: 80px;
  padding-bottom: 100px;
  width: 100%;
}
.hero2__content { flex: 1; min-width: 0; }

.hero2__chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(232,76,14,0.12);
  border: 1px solid rgba(232,76,14,0.28);
  color: var(--orange);
  padding: 7px 18px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  margin-bottom: 32px;
}
.hero2__chip-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--orange);
  animation: chip-pulse 2.2s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes chip-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.25; transform: scale(0.7); }
}

.hero2__title {
  font-size: clamp(40px, 4.6vw, 62px);
  font-weight: 900;
  color: white;
  line-height: 1.08;
  letter-spacing: -0.025em;
  margin-bottom: 24px;
  overflow-wrap: break-word;
}
.hero2__title em {
  font-style: normal;
  color: var(--orange);
}
.hero2__desc {
  color: rgba(255,255,255,0.60);
  font-size: 16px;
  line-height: 1.75;
  max-width: 460px;
  margin-bottom: 40px;
}
.hero2__stats {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-bottom: 44px;
}
.hero2__stat { text-align: center; }
.hero2__stat strong {
  display: block;
  font-size: 30px;
  font-weight: 900;
  color: white;
  line-height: 1;
  margin-bottom: 4px;
}
.hero2__stat span {
  font-size: 11px;
  color: rgba(255,255,255,0.45);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.hero2__stat-sep {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.12);
  flex-shrink: 0;
}
.hero2__btns {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.hero2__btn-primary { padding: 16px 36px; font-size: 15px; font-weight: 700; }
.hero2__btn-ghost {
  background: transparent;
  border: 2px solid rgba(255,255,255,0.22);
  color: white;
  padding: 14px 28px;
  border-radius: 6px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}
.hero2__btn-ghost:hover {
  border-color: rgba(255,255,255,0.55);
  background: rgba(255,255,255,0.05);
}

.hero2__visual {
  flex: 0 0 44%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero2__img-wrap {
  position: relative;
  width: 100%;
  max-width: 500px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.06),
    0 40px 80px rgba(0,0,0,0.55);
}
.hero2__img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(232,76,14,0.08) 0%, transparent 60%);
  pointer-events: none;
}
.hero2__img-wrap img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  display: block;
}

.hero2__badge-float {
  position: absolute;
  border-radius: 16px;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  z-index: 5;
  animation: badge-float 4s ease-in-out infinite;
  min-width: 192px;
}
.hero2__badge-float:nth-child(3) { animation-delay: -2s; }
@keyframes badge-float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-9px); }
}
.hero2__badge-float i      { font-size: 26px; flex-shrink: 0; }
.hero2__badge-float strong { display: block; font-size: 14px; font-weight: 800; line-height: 1.2; }
.hero2__badge-float span   { font-size: 11px; }

/* Top badge — solid orange */
.hero2__badge-float--top {
  top: -22px;
  left: 24px;
  background: var(--orange);
  box-shadow:
    0 12px 40px rgba(232,76,14,0.6),
    0 4px 16px rgba(0,0,0,0.25);
}
.hero2__badge-float--top i      { color: rgba(255,255,255,0.92); }
.hero2__badge-float--top strong { color: #fff; }
.hero2__badge-float--top span   { color: rgba(255,255,255,0.72); }

/* Bottom badge — dark glass */
.hero2__badge-float--bottom {
  bottom: 36px;
  right: -30px;
  background: rgba(15,17,23,0.88);
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow:
    0 16px 48px rgba(0,0,0,0.6),
    0 0 0 1px rgba(255,255,255,0.05);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.hero2__badge-float--bottom i      { color: var(--orange); }
.hero2__badge-float--bottom strong { color: #fff; }
.hero2__badge-float--bottom span   { color: rgba(255,255,255,0.52); }

.hero2__scroll-hint {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  animation: scroll-bounce 2.5s ease-in-out infinite;
}
@keyframes scroll-bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(7px); }
}

/* ── Trust Bar ── */
.trust-bar {
  background: #fff;
  border-bottom: 1px solid #ebebeb;
  padding: 22px 0;
}
.trust-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
}
.trust-item__icon {
  width: 46px;
  height: 46px;
  border-radius: 11px;
  background: rgba(232,76,14,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  font-size: 18px;
  flex-shrink: 0;
}
.trust-item strong {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.3;
}
.trust-item span { font-size: 12px; color: #999; }

/* ── Best Sellers ── */
.bestsellers { padding: 88px 0; background: #f7f8fa; }
.bestsellers__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px;
}
.bs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.bs-card {
  background: white;
  border-radius: 14px;
  overflow: hidden;
  display: block;
  transition: transform 0.22s, box-shadow 0.22s;
  box-shadow: 0 2px 14px rgba(0,0,0,0.06);
  color: inherit;
}
.bs-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 36px rgba(0,0,0,0.11);
}
.bs-card__img {
  position: relative;
  height: 210px;
  background: #f4f4f4;
  overflow: hidden;
}
.bs-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.32s;
}
.bs-card:hover .bs-card__img img { transform: scale(1.05); }
.bs-card__img .badge { position: absolute; top: 12px; left: 12px; }
.bs-card__body { padding: 18px; }
.bs-card__rating {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 8px;
}
.bs-card__stars { color: var(--orange); font-size: 13px; font-weight: 700; }
.bs-card__rcount { font-size: 12px; color: #aaa; }
.bs-card__name {
  font-size: 14px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 16px;
  line-height: 1.4;
  min-height: 38px;
}
.bs-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.bs-card__footer .price { font-size: 15px; }
.bs-card__arrow { color: var(--orange); font-size: 22px; font-weight: 700; }

/* ── About Strip ── */
.about-strip {
  background: #111827;
  padding: 100px 0;
}
.about-strip__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-strip__img {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0,0,0,0.45);
}
.about-strip__img img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
}
.about-strip__img-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: var(--orange);
  color: white;
  padding: 12px 22px;
  border-radius: 12px;
  line-height: 1.3;
}
.about-strip__img-badge strong { display: block; font-size: 20px; font-weight: 900; letter-spacing: 0.1em; }
.about-strip__img-badge span { font-size: 12px; opacity: 0.82; }

.about-strip__body { color: white; }
.about-strip__body h2 {
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
}
.about-strip__body > p {
  color: rgba(255,255,255,0.60);
  font-size: 15px;
  line-height: 1.75;
  margin-bottom: 40px;
}
.about-strip__stats {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 20px;
  margin-bottom: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.10);
}
.about-strip__stat strong {
  display: block;
  font-size: 26px;
  font-weight: 900;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 6px;
}
.about-strip__stat span {
  font-size: 11px;
  color: rgba(255,255,255,0.45);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.about-strip__btn {
  display: inline-block;
  border: 2px solid rgba(255,255,255,0.22);
  color: white;
  padding: 14px 30px;
  border-radius: 7px;
  font-weight: 600;
  font-size: 14px;
  transition: border-color 0.2s, background 0.2s;
}
.about-strip__btn:hover { border-color: rgba(255,255,255,0.55); background: rgba(255,255,255,0.05); }

/* ── Why ZORXARID ── */
.why-zorxarid { padding: 100px 0; background: white; }
.why-zorxarid__head { text-align: center; margin-bottom: 64px; }
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.why-card {
  padding: 36px 26px;
  background: #f7f8fa;
  border-radius: 18px;
  border: 1.5px solid transparent;
  transition: transform 0.22s, box-shadow 0.22s, border-color 0.22s;
}
.why-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 44px rgba(0,0,0,0.08);
  border-color: rgba(232,76,14,0.18);
}
.why-card__icon {
  width: 54px;
  height: 54px;
  background: rgba(232,76,14,0.10);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  font-size: 22px;
  margin-bottom: 22px;
}
.why-card h3 { font-size: 16px; font-weight: 700; color: #1a1a1a; margin-bottom: 12px; }
.why-card p { font-size: 14px; color: #666; line-height: 1.65; }

/* ── Home CTA ── */
.home-cta {
  background: linear-gradient(130deg, #e84c0e 0%, #d44409 100%);
  padding: 88px 0;
}
.home-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.home-cta__text h2 {
  font-size: clamp(26px, 3vw, 44px);
  font-weight: 800;
  color: white;
  margin-bottom: 12px;
}
.home-cta__text p {
  color: rgba(255,255,255,0.78);
  font-size: 16px;
  max-width: 480px;
  line-height: 1.6;
}
.home-cta__actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}
.home-cta__btn {
  background: white;
  color: var(--orange);
  padding: 18px 40px;
  border-radius: 7px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  transition: transform 0.2s, box-shadow 0.2s;
}
.home-cta__btn:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,0,0,0.18); }
.home-cta__link { color: rgba(255,255,255,0.75); font-size: 14px; font-weight: 600; transition: color 0.2s; }
.home-cta__link:hover { color: white; }

/* ── Responsive: Homepage ── */
@media (max-width: 1100px) {
  .hero2__img-wrap img { height: 420px; }
  .bs-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .about-strip__inner { gap: 48px; }
  .about-strip__img img { height: 400px; }
}
@media (max-width: 900px) {
  .hero2__inner { flex-direction: column; gap: 48px; padding-bottom: 60px; }
  .hero2__content { max-width: none; }
  .hero2__visual { width: 100%; max-width: 500px; margin: 0 auto; }
  .hero2__badge-float--top { left: 16px; top: -16px; }
  .hero2__badge-float--bottom { right: -16px; bottom: 28px; }
  .trust-bar__inner { flex-wrap: wrap; gap: 16px; }
  .trust-item { width: calc(50% - 8px); }
  .about-strip__inner { grid-template-columns: 1fr; }
  .about-strip__img img { height: 320px; }
  .home-cta__inner { flex-direction: column; text-align: center; }
  .home-cta__text p { max-width: none; }
  .bestsellers__head { flex-direction: column; align-items: flex-start; gap: 16px; }
}
@media (max-width: 600px) {
  .hero2 { min-height: auto; }
  .hero2__inner { padding-top: 44px; padding-bottom: 48px; }
  .hero2__title { font-size: 36px; }
  .hero2__stats { gap: 16px; }
  .hero2__stat strong { font-size: 24px; }
  .hero2__badge-float { display: none; }
  .hero2__img-wrap img { height: 280px; }
  .bs-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .about-strip__stats { grid-template-columns: 1fr 1fr; }
  .trust-item { width: 100%; }
  .why-zorxarid__head { text-align: left; }
  .testimonials__grid { grid-template-columns: 1fr; }
  .featured-product__inner { grid-template-columns: 1fr; }
  .featured-product__visual { min-height: 260px; border-radius: 0 0 16px 16px; }
}


/* ════════════════════════════════════════════════════════════
   HOMEPAGE v2 EXTRAS — MARQUEE, FEATURED PRODUCT, TESTIMONIALS
   ════════════════════════════════════════════════════════════ */

/* ── Hero dot-grid overlay ── */
.hero2::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 36px 36px;
  pointer-events: none;
  z-index: 0;
}

/* ── Marquee Strip ── */
.marquee-strip {
  background: var(--orange);
  padding: 14px 0;
  overflow: hidden;
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee-scroll 38s linear infinite;
}
.marquee-strip:hover .marquee-track { animation-play-state: paused; }
.marquee-item {
  white-space: nowrap;
  font-size: 11px;
  font-weight: 800;
  color: white;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0 36px;
}
.marquee-dot {
  color: rgba(255,255,255,0.45);
  font-size: 10px;
  align-self: center;
  flex-shrink: 0;
}
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── Featured Product ── */
.featured-product {
  background: white;
  overflow: hidden;
}
.featured-product__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 540px;
  align-items: stretch;
}
.featured-product__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 72px 64px 72px 0;
}
.featured-product__badge {
  display: inline-block;
  background: var(--orange);
  color: white;
  padding: 5px 14px;
  border-radius: 5px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 20px;
  width: fit-content;
}
.featured-product__name {
  font-size: clamp(26px, 2.8vw, 40px);
  font-weight: 800;
  color: #111;
  margin-bottom: 12px;
  line-height: 1.2;
}
.featured-product__rating {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
}
.fp-stars { color: var(--orange); font-weight: 700; font-size: 15px; }
.featured-product__rating span:last-child { color: #aaa; font-size: 13px; }
.featured-product__desc {
  color: #666;
  font-size: 15px;
  line-height: 1.75;
  margin-bottom: 32px;
  max-width: 440px;
}
.featured-product__price {
  font-size: clamp(24px, 2.5vw, 36px);
  font-weight: 900;
  color: #111;
  margin-bottom: 32px;
}
.featured-product__actions {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.featured-product__btn { padding: 15px 32px; font-size: 14px; }
.featured-product__trust {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #777;
  font-size: 13px;
  font-weight: 500;
}
.featured-product__trust i { color: var(--orange); font-size: 15px; }
.featured-product__visual {
  position: relative;
  overflow: hidden;
  background: #f0f0f0;
  min-height: 540px;
}
.featured-product__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.featured-product:hover .featured-product__visual img { transform: scale(1.03); }
.featured-product__visual-tag {
  position: absolute;
  top: 24px;
  right: 24px;
  background: var(--orange);
  color: white;
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 7px;
}

/* ── Testimonials ── */
.testimonials {
  padding: 100px 0;
  background: #111827;
}
.testimonials__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 56px;
}
.testimonials__head .section-label { color: rgba(255,255,255,0.45); }
.testimonials__head .section-label::before { background: rgba(255,255,255,0.25); }
.testimonials__head .section-title { color: white; margin-bottom: 0; }
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 18px;
  padding: 30px;
  transition: background 0.22s, border-color 0.22s, transform 0.22s;
}
.testimonial-card:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(232,76,14,0.35);
  transform: translateY(-3px);
}
.testimonial-card__stars {
  color: var(--orange);
  font-size: 15px;
  letter-spacing: 2px;
  margin-bottom: 16px;
}
.testimonial-card__text {
  color: rgba(255,255,255,0.72);
  font-size: 14px;
  line-height: 1.75;
  margin-bottom: 24px;
  font-style: italic;
}
.testimonial-card__footer {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.testimonial-card__avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 800;
  font-size: 14px;
  flex-shrink: 0;
}
.testimonial-card__name { font-size: 14px; font-weight: 600; color: white; line-height: 1.3; }
.testimonial-card__city { font-size: 12px; color: rgba(255,255,255,0.38); margin-top: 2px; }

/* ── Responsive extras ── */
@media (max-width: 1100px) {
  .featured-product__content { padding: 56px 48px 56px 0; }
  .testimonials__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .featured-product__inner { grid-template-columns: 1fr; }
  .featured-product__content { padding: 48px 0 40px; }
  .featured-product__visual { min-height: 320px; }
  .testimonials__head { flex-direction: column; align-items: flex-start; gap: 16px; }
}


/* ════════════════════════════════════════════════════════════
   HOMEPAGE PREMIUM — DARK HEADER, ANIMATIONS, POLISH
   ════════════════════════════════════════════════════════════ */

/* Smooth header transition on all pages */
.ph-header { transition: background 0.32s ease, border-color 0.32s ease, box-shadow 0.32s ease; }

/* ── Dark header: default state on homepage ── */
.page-home #main-header {
  background: #0f1117 !important;
  border-bottom: 1px solid rgba(255,255,255,0.07) !important;
  box-shadow: none !important;
}
.page-home #main-header .ph-logo { color: white !important; }
.page-home #main-header .site-logo-img { filter: invert(1); }
.page-home.home-scrolled #main-header .site-logo-img { filter: none; }
.page-home #main-header .ph-svc__name { color: rgba(255,255,255,0.82) !important; }
.page-home #main-header .ph-svc__time { color: rgba(255,255,255,0.40) !important; }
.page-home #main-header .ph-svc__icon--support,
.page-home #main-header .ph-svc__icon--delivery {
  background: rgba(255,255,255,0.07) !important;
  color: rgba(255,255,255,0.65) !important;
}
.page-home #main-header .lang-switch { color: rgba(255,255,255,0.28) !important; }
.page-home #main-header .lang-switch__item { color: rgba(255,255,255,0.48) !important; }
.page-home #main-header .lang-switch__item.active,
.page-home #main-header .lang-switch__item:hover { color: var(--orange) !important; }
.page-home .ph-catalog-btn { background: var(--orange) !important; color: white !important; }

/* Mobile services strip: dark on homepage */
.page-home .ph-services-strip {
  background: #0f1117;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.page-home .ph-services-strip .ph-svc__name { color: rgba(255,255,255,0.75); }
.page-home .ph-services-strip .ph-svc__time { color: rgba(255,255,255,0.4); }
.page-home .ph-services-strip .ph-svc__icon--support,
.page-home .ph-services-strip .ph-svc__icon--delivery { background: rgba(255,255,255,0.07); }

/* ── White header: scrolled state ── */
.page-home.home-scrolled #main-header {
  background: rgba(255,255,255,0.98) !important;
  border-bottom: 1px solid #eee !important;
  box-shadow: 0 2px 20px rgba(0,0,0,0.06) !important;
}
.page-home.home-scrolled #main-header .ph-logo { color: #111 !important; }
.page-home.home-scrolled #main-header .ph-svc__name { color: #222 !important; }
.page-home.home-scrolled #main-header .ph-svc__time { color: #999 !important; }
.page-home.home-scrolled #main-header .ph-svc__icon--support,
.page-home.home-scrolled #main-header .ph-svc__icon--delivery {
  background: rgba(232,76,14,0.08) !important;
  color: var(--orange) !important;
}
.page-home.home-scrolled #main-header .lang-switch { color: #ccc !important; }
.page-home.home-scrolled #main-header .lang-switch__item { color: #999 !important; }
.page-home.home-scrolled #main-header .lang-switch__item.active,
.page-home.home-scrolled #main-header .lang-switch__item:hover { color: var(--orange) !important; }

/* ── Hero: full viewport ── */
.hero2 { min-height: 100vh; }
.hero2__img-wrap img { height: 560px; }

/* ── Hero image: gradient bleed left into dark background ── */
.hero2__visual::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 50%;
  height: 100%;
  background: linear-gradient(to right, #0f1117 0%, rgba(15,17,23,0) 100%);
  z-index: 3;
  pointer-events: none;
}
/* Bottom fade */
.hero2__visual::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 40%;
  background: linear-gradient(to top, rgba(15,17,23,0.5) 0%, transparent 100%);
  z-index: 3;
  pointer-events: none;
}
/* Keep img-wrap ::after from conflicting */
.hero2__img-wrap::after { z-index: 1; }

/* ── Hero entrance animations ── */
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes heroFadeRight {
  from { opacity: 0; transform: translateX(52px); }
  to   { opacity: 1; transform: translateX(0); }
}
.hero2__chip   { animation: heroFadeUp   0.65s cubic-bezier(.25,.46,.45,.94) both 0.08s; }
.hero2__title  { animation: heroFadeUp   0.70s cubic-bezier(.25,.46,.45,.94) both 0.22s; }
.hero2__desc   { animation: heroFadeUp   0.65s cubic-bezier(.25,.46,.45,.94) both 0.38s; }
.hero2__stats  { animation: heroFadeUp   0.65s cubic-bezier(.25,.46,.45,.94) both 0.54s; }
.hero2__btns   { animation: heroFadeUp   0.65s cubic-bezier(.25,.46,.45,.94) both 0.68s; }
.hero2__visual { animation: heroFadeRight 0.90s cubic-bezier(.25,.46,.45,.94) both 0.16s; }

/* ── Scroll fade-up ── */
.fade-up {
  opacity: 0;
  transform: translateY(38px);
  transition: opacity 0.70s ease, transform 0.70s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up[data-delay="1"] { transition-delay: 0.08s; }
.fade-up[data-delay="2"] { transition-delay: 0.18s; }
.fade-up[data-delay="3"] { transition-delay: 0.28s; }
.fade-up[data-delay="4"] { transition-delay: 0.38s; }

/* ── Section title bump ── */
.section-title { font-size: clamp(34px, 4.2vw, 54px); }

/* ── Cat-card: taller ── */
.cat-card__img { height: 260px; }

/* ── Better hover glow on bs-card ── */
.bs-card:hover { box-shadow: 0 16px 44px rgba(232,76,14,0.10), 0 4px 16px rgba(0,0,0,0.08); }

/* ── Responsive ── */
@media (max-width: 900px) {
  .hero2 { min-height: auto; }
  .hero2__img-wrap img { height: 340px; }
  .hero2__visual::before { width: 30%; }
  .cat-card__img { height: 200px; }
}
@media (max-width: 600px) {
  .hero2__img-wrap img { height: 260px; }
  .cat-card__img { height: 160px; }
}

/* ── Promo Banner ── */
.promo-banner {
  background: #0f1117;
  position: relative;
  overflow: hidden;
  padding: 72px 0;
}
.promo-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 75% 50%, rgba(232,76,14,0.22) 0%, transparent 60%),
    radial-gradient(ellipse at 10% 80%, rgba(232,76,14,0.08) 0%, transparent 50%);
  pointer-events: none;
}
.promo-banner__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  position: relative;
  z-index: 1;
}
.promo-banner__label {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--orange);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 4px;
  margin-bottom: 18px;
}
.promo-banner__title {
  font-size: clamp(30px, 3.6vw, 52px);
  font-weight: 900;
  color: #fff;
  line-height: 1.08;
  margin-bottom: 14px;
}
.promo-banner__title em {
  font-style: normal;
  color: var(--orange);
}
.promo-banner__sub {
  color: rgba(255,255,255,0.5);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 32px;
  max-width: 420px;
}
.promo-banner__btn {
  font-size: 15px;
  padding: 14px 34px;
}
.promo-banner__timer {
  flex-shrink: 0;
  text-align: center;
}
.promo-banner__timer-label {
  color: rgba(255,255,255,0.4);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.promo-banner__countdown {
  display: flex;
  align-items: center;
  gap: 10px;
}
.promo-countdown-item {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px;
  padding: 18px 22px;
  text-align: center;
  min-width: 84px;
  backdrop-filter: blur(4px);
}
.promo-countdown-item strong {
  display: block;
  font-size: 40px;
  font-weight: 900;
  color: #fff;
  line-height: 1;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.02em;
}
.promo-countdown-item span {
  display: block;
  font-size: 10px;
  color: rgba(255,255,255,0.35);
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  margin-top: 5px;
}
.promo-countdown-sep {
  font-size: 30px;
  font-weight: 900;
  color: var(--orange);
  align-self: flex-start;
  padding-top: 14px;
  opacity: 0.8;
}
.promo-banner__deco {
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 260px;
  font-weight: 900;
  color: rgba(255,255,255,0.025);
  line-height: 1;
  letter-spacing: -0.04em;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}
@media (max-width: 900px) {
  .promo-banner__inner { flex-direction: column; text-align: center; }
  .promo-banner__sub { max-width: none; }
  .promo-banner__countdown { justify-content: center; }
  .promo-countdown-item { min-width: 64px; padding: 14px 16px; }
  .promo-countdown-item strong { font-size: 28px; }
  .promo-banner__deco { font-size: 140px; opacity: 1; }
}

/* ── Service page: steps ── */
.svc-steps {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 32px;
}
.svc-step {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}
.svc-step__num {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  font-weight: 800;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.svc-step h4 { font-size: 16px; font-weight: 700; margin-bottom: 4px; }
.svc-step p  { font-size: 14px; color: #555; line-height: 1.6; margin: 0; }

/* ── Service page: pricing ── */
.svc-price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 32px;
}
.svc-price-card {
  border: 1px solid #e8e8e8;
  border-radius: 16px;
  padding: 28px 24px;
  background: #fff;
}
.svc-price-card--highlight {
  border-color: var(--orange);
  background: #fff8f5;
}
.svc-price-card__head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.svc-price-card__head i {
  font-size: 22px;
  color: var(--orange);
}
.svc-price-card__head h3 {
  font-size: 15px;
  font-weight: 700;
  margin: 0;
}
.svc-price-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.svc-price-card ul li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  padding-bottom: 10px;
  border-bottom: 1px solid #f0f0f0;
}
.svc-price-card ul li:last-child { border-bottom: none; padding-bottom: 0; }
.svc-price-card ul li span { color: #555; }
.svc-price-card ul li strong { font-weight: 700; color: var(--orange); }
.svc-price-card__note {
  font-size: 11px;
  color: #888;
  line-height: 1.5;
  margin: 0;
  padding-top: 12px;
  border-top: 1px solid #f0f0f0;
}
@media (max-width: 900px) {
  .svc-price-grid { grid-template-columns: 1fr; }
}
