:root {
  --primary: #423f91;
  --primary-light: #6a63c4;
  --accent: #f7c531;
  --dark: #211f52;
  --text: #221f3d;
  --muted: #6b6889;
  --bg: #ffffff;
  --bg-muted: #f5f4fb;
  --border: #e6e4f3;
  --radius: 16px;
  --shadow: 0 10px 30px rgba(33, 31, 82, 0.08);
  --shadow-lg: 0 20px 50px rgba(33, 31, 82, 0.18);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Manrope', system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3 { font-weight: 800; line-height: 1.2; color: var(--dark); }
h2 { font-size: clamp(1.6rem, 3vw, 2.3rem); }
h3 { font-size: 1.1rem; }

.text-gradient {
  background: linear-gradient(90deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.icon {
  width: 1em;
  height: 1em;
  display: inline-block;
  vertical-align: -0.15em;
  flex-shrink: 0;
}

/* HEADER */
.header { position: sticky; top: 0; z-index: 50; }

.logo { display: inline-flex; align-items: center; text-decoration: none; flex-shrink: 0; }
.logo img { height: 34px; width: auto; border-radius: 8px; }

/* Top bar: logo + search + icons */
.topbar { background: rgba(255, 255, 255, 0.92); backdrop-filter: blur(10px); border-bottom: 1px solid var(--border); }
.topbar__inner { display: flex; align-items: center; gap: 28px; height: 76px; }

.topbar__search { flex: 1; display: flex; max-width: 460px; }
.topbar__search input {
  flex: 1; min-width: 0;
  border: 1.5px solid var(--border);
  border-right: none;
  border-radius: 999px 0 0 999px;
  padding: 11px 18px;
  font-family: inherit;
  font-size: 0.9rem;
  background: var(--bg-muted);
  color: var(--text);
}
.topbar__search input:focus { outline: none; border-color: var(--primary); background: #fff; }
.topbar__search button {
  border: 1.5px solid var(--primary);
  background: var(--primary);
  color: #fff;
  padding: 0 20px;
  border-radius: 0 999px 999px 0;
  cursor: pointer;
  font-size: 0.95rem;
  display: flex; align-items: center; justify-content: center;
}
.topbar__search button:hover { background: #33306f; }
.search-btn-icon { width: 18px; height: 18px; }

.topbar__actions { display: flex; align-items: center; gap: 14px; flex-shrink: 0; }
.header__phone { color: var(--dark); text-decoration: none; font-weight: 700; font-size: 0.9rem; white-space: nowrap; display: flex; align-items: center; gap: 6px; }
.header__phone:hover { color: var(--primary); }
.header__phone-svg { width: 17px; height: 17px; flex-shrink: 0; }

.icon-btn {
  background: none;
  border: none;
  padding: 6px 4px;
  font-family: inherit;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  display: flex; align-items: center; gap: 6px;
  color: var(--dark);
  white-space: nowrap;
  text-decoration: none;
  position: relative;
}
.icon-btn:hover { color: var(--primary); }
.icon-btn__icon { font-size: 1.25rem; line-height: 1; display: flex; align-items: center; justify-content: center; }
.icon-btn__svg { width: 20px; height: 20px; flex-shrink: 0; }
.icon-btn__heart { width: 22px; height: 22px; flex-shrink: 0; }
.icon-btn--fav.is-active .icon-btn__heart { fill: #e63757; stroke: #e63757; }
.icon-btn__badge {
  background: var(--primary);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 800;
  min-width: 18px; height: 18px;
  border-radius: 5px;
  display: inline-flex; align-items: center; justify-content: center;
  padding: 0 4px;
}

.lang-dd { position: relative; flex-shrink: 0; }
.lang-dd__btn {
  display: flex; align-items: center; gap: 6px;
  background: none;
  border: 1.5px solid var(--border);
  border-radius: 999px;
  padding: 7px 12px;
  font-family: inherit;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--dark);
  cursor: pointer;
  white-space: nowrap;
}
.lang-dd__btn:hover { border-color: var(--primary); color: var(--primary); }
.lang-dd__current { display: none; }
.lang-dd__flag { display: inline-flex; line-height: 1; }
.lang-dd__flag svg { width: 18px; height: 13px; border-radius: 2px; display: block; }
.lang-dd__arrow { font-size: 0.65rem; color: var(--muted); }
.lang-dd__panel {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 170px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  padding: 6px;
  z-index: 90;
}
.lang-dd.is-open .lang-dd__panel { display: block; }
.lang-dd__opt {
  display: flex; align-items: center; gap: 8px;
  padding: 9px 10px;
  border-radius: 8px;
  text-decoration: none;
  color: var(--text);
  font-size: 0.87rem;
  font-weight: 600;
}
.lang-dd__opt:hover { background: var(--bg-muted); }
.lang-dd__opt.is-active { background: #ebeafa; color: var(--primary); }

.catalog-dd { position: relative; flex-shrink: 0; }
.catalog-dd__btn {
  display: flex; align-items: center; gap: 8px;
  background: var(--primary);
  color: #fff;
  border: 1.5px solid var(--primary);
  border-radius: 8px;
  padding: 10px 18px;
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  font-family: inherit;
}
.catalog-dd__btn:hover { background: #33306f; }
.catalog-dd.is-open .catalog-dd__btn { background: #ebeafa; color: var(--primary); }
.catalog-dd__btn-icon { display: inline-flex; align-items: center; }
.catalog-dd__btn-svg { width: 17px; height: 17px; flex-shrink: 0; }
.catalog-dd__btn-svg--close { display: none; }
.catalog-dd.is-open .catalog-dd__btn-svg--menu { display: none; }
.catalog-dd.is-open .catalog-dd__btn-svg--close { display: block; }

.catalog-dd__panel {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  width: 660px;
  max-width: calc(100vw - 48px);
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  z-index: 60;
}
.catalog-dd.is-open .catalog-dd__panel { display: flex; }
@media (min-width: 681px) {
  .catalog-dd:hover .catalog-dd__panel { display: flex; }
}

.catalog-dd__sidebar {
  width: 250px;
  flex-shrink: 0;
  background: var(--bg-muted);
  padding: 10px;
  max-height: 420px;
  overflow-y: auto;
  border-right: 1px solid var(--border);
}
.catalog-dd__cat {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  text-decoration: none;
  padding: 11px 12px;
  border-radius: 8px;
  color: var(--text);
  font-size: 0.87rem;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
}
.catalog-dd__cat .catalog-dd__arrow { color: var(--muted); font-size: 1rem; }
.catalog-dd__cat:hover { background: #fff; }
.catalog-dd__cat.is-active { background: #fff; color: var(--primary); box-shadow: var(--shadow); }
.catalog-dd__cat.is-active .catalog-dd__arrow { color: var(--primary); }

.catalog-dd__content { flex: 1; padding: 22px 24px; min-width: 0; }
.catalog-dd__pane { display: none; }
.catalog-dd__pane.is-active { display: block; }
.catalog-dd__pane h4 { font-size: 1rem; margin-bottom: 14px; }
.catalog-dd__items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px 16px;
  margin-bottom: 16px;
}
.catalog-dd__items a {
  display: block;
  padding: 7px 0;
  color: var(--text);
  text-decoration: none;
  font-size: 0.85rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.catalog-dd__items a:hover { color: var(--primary); text-decoration: underline; }
.catalog-dd__viewall { color: var(--primary); text-decoration: none; font-weight: 700; font-size: 0.85rem; }
.catalog-dd__viewall:hover { text-decoration: underline; }
.catalog-dd__empty { display: block; padding: 10px 12px; color: var(--muted); font-size: 0.85rem; }

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
  white-space: nowrap;
}
.btn--primary {
  background: linear-gradient(90deg, var(--primary), #2e2b70);
  color: #fff;
  box-shadow: 0 8px 20px rgba(66, 63, 145, 0.35);
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 12px 24px rgba(66, 63, 145, 0.45); }
.btn--ghost { background: #fff; color: var(--dark); border: 1.5px solid var(--border); }
.btn--ghost:hover { border-color: var(--primary); color: var(--primary); }
.btn--light { background: #fff; color: var(--primary); }
.btn--light:hover { transform: translateY(-2px); }
.btn--sm { padding: 10px 18px; font-size: 0.85rem; }
.btn--lg { padding: 15px 30px; font-size: 1rem; }
.btn--full { width: 100%; padding: 13px; font-size: 0.9rem; }

/* HERO CAROUSEL */
.badge {
  display: inline-block;
  background: #ebeafa;
  color: var(--primary);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 7px 16px;
  border-radius: 999px;
  margin-bottom: 20px;
}
.badge--light { background: rgba(255,255,255,0.2); color: #fff; }

.hero-carousel { position: relative; height: 460px; overflow: hidden; }

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity .5s ease;
  display: flex;
  align-items: center;
}
.hero-slide.is-active { opacity: 1; visibility: visible; z-index: 1; }

.hero-slide--1 { background: linear-gradient(120deg, #f3f2fb, #fdf1d3); }
.hero-slide--2 { background: linear-gradient(120deg, var(--dark), var(--primary)); }
.hero-slide--3 { background: linear-gradient(120deg, var(--primary), #a8862f); }
.hero-slide--4 { background: linear-gradient(120deg, var(--primary-light), var(--dark)); }
.hero-slide--5 { background: linear-gradient(120deg, var(--dark), #4a4694); }

.hero-slide--1 h1, .hero-slide--1 p { color: var(--dark); }
.hero-slide--1 p { color: var(--muted); }
.hero-slide--2 h1, .hero-slide--2 p,
.hero-slide--3 h1, .hero-slide--3 p,
.hero-slide--4 h1, .hero-slide--4 p,
.hero-slide--5 h1, .hero-slide--5 p { color: #fff; }
.hero-slide--2 p, .hero-slide--3 p, .hero-slide--4 p, .hero-slide--5 p { opacity: 0.85; }

.hero-slide__inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
  width: 100%;
}
.hero-slide__text h1 { font-size: clamp(1.8rem, 3.6vw, 2.8rem); margin-bottom: 16px; }
.hero-slide__text p { font-size: 1.02rem; max-width: 480px; margin-bottom: 28px; }

.hero-slide__art {
  position: relative;
  height: 280px;
  border-radius: 28px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 6rem;
  box-shadow: var(--shadow-lg);
}
.hero-slide__art img { width: 100%; height: 100%; object-fit: cover; }
.hero-slide__art-icon { width: 30%; height: 30%; color: var(--dark); stroke-width: 1.4; }
.hero-slide--2 .hero-slide__art-icon,
.hero-slide--3 .hero-slide__art-icon,
.hero-slide--4 .hero-slide__art-icon,
.hero-slide--5 .hero-slide__art-icon { color: #fff; }
.badge__icon { width: 15px; height: 15px; vertical-align: -3px; margin-right: 2px; }

.hero-carousel__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px; height: 44px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.85);
  color: var(--dark);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  z-index: 5;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow);
}
.hero-carousel__arrow:hover { background: #fff; color: var(--primary); }
.hero-carousel__arrow--prev { left: 20px; }
.hero-carousel__arrow--next { right: 20px; }

.hero-carousel__dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 5;
}
.hero-carousel__dot {
  width: 8px; height: 8px;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: rgba(255, 255, 255, 0.85);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  padding: 0;
  transition: width .2s, background .2s;
}
.hero-carousel__dot.is-active { width: 22px; background: var(--accent); border-color: transparent; }

.hero-stats-bar { border-bottom: 1px solid var(--border); background: #fff; position: relative; z-index: 2; }
.hero-stats-bar__inner { display: flex; justify-content: center; padding: 26px 24px; }
.hero-stats-bar__item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 0 44px;
  position: relative;
}
.hero-stats-bar__item + .hero-stats-bar__item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 34px;
  background: var(--border);
}
.hero-stats-bar__item div { display: flex; flex-direction: column; }
.hero-stats-bar__icon {
  width: 28px; height: 28px;
  flex-shrink: 0;
  color: var(--primary);
  background: #ebeafa;
  border-radius: 10px;
  padding: 6px;
  box-sizing: content-box;
}
.hero-stats-bar__icon--star { color: var(--accent); background: #fdf1d3; }
.hero-stats-bar__inner strong { font-size: 1.35rem; color: var(--dark); font-weight: 800; line-height: 1.2; }
.hero-stats-bar__inner span { font-size: 0.8rem; color: var(--muted); }

/* TRUST STRIP */
.strip { background: var(--dark); padding: 22px 0; }
.strip__inner { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 16px 28px; }
.strip__inner span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 0.83rem;
  color: rgba(255, 255, 255, 0.85);
}
.strip__icon { width: 18px; height: 18px; flex-shrink: 0; }

/* SECTIONS */
.section { padding: 96px 0; position: relative; overflow: hidden; }
.section--muted { background: var(--bg-muted); }
.section__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #ebeafa;
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 16px;
}
.eyebrow__icon { width: 14px; height: 14px; flex-shrink: 0; }
.section__head { position: relative; z-index: 1; text-align: center; max-width: 560px; margin: 0 auto 48px; }
.section__head p { color: var(--muted); margin-top: 12px; }
.section__blob {
  position: absolute;
  width: 480px; height: 480px;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.16;
  z-index: 0;
  pointer-events: none;
}
.section__blob--tr { top: -180px; right: -140px; background: var(--primary); }
.section__blob--bl { bottom: -180px; left: -140px; background: var(--accent); }
.section > .container { position: relative; z-index: 1; }

/* CATEGORIES */
.cat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.cat-card {
  position: relative;
  display: block;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  text-decoration: none;
  box-shadow: var(--shadow);
  transition: transform .2s, box-shadow .2s;
}
.cat-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.cat-card__img {
  height: 140px;
  background: linear-gradient(135deg, #ebeafa, #fdf1d3);
  display: flex; align-items: center; justify-content: center;
  font-size: 2.4rem;
}
.cat-card__img img { width: 100%; height: 100%; object-fit: cover; }
.cat-card__label {
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
  color: #fff;
  text-align: center;
  padding: 13px 10px;
  font-weight: 700;
  font-size: 0.88rem;
  line-height: 1.3;
}

.cat-card__ribbon {
  position: absolute;
  top: 16px; left: -38px;
  width: 150px;
  padding: 5px 0;
  text-align: center;
  transform: rotate(-45deg);
  transform-origin: center;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  color: #fff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  z-index: 2;
}
.cat-card__ribbon.ribbon--blue { background: #2f6fed; }
.cat-card__ribbon.ribbon--gold { background: var(--accent); color: var(--dark); }
.cat-card__ribbon.ribbon--green { background: #16a34a; }
.cat-card__ribbon.ribbon--purple { background: var(--primary); }

.cat-viewall { text-align: center; margin-top: 40px; }

/* PRODUCTS */
.product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.product-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  position: relative;
  box-shadow: var(--shadow);
  transition: transform .2s, box-shadow .2s;
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.product-card:hover .product-card__img img { transform: scale(1.06); }
.product-card__img img { transition: transform .35s ease; }
.product-card__badge {
  position: absolute; top: 14px; left: 14px; z-index: 2;
  background: var(--accent); color: var(--dark); font-size: 0.75rem; font-weight: 800;
  padding: 5px 10px; border-radius: 999px;
}
.product-card__badge--top { background: var(--primary); color: #fff; }
.product-card__fav {
  position: absolute; top: 12px; right: 12px; z-index: 3;
  width: 34px; height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  border: none;
  display: flex; align-items: center; justify-content: center;
  color: var(--muted);
  cursor: pointer;
  box-shadow: var(--shadow);
  transition: transform .15s ease, color .15s ease;
}
.product-card__fav svg { width: 18px; height: 18px; }
.product-card__fav:hover { transform: scale(1.08); color: #e63757; }
.product-card__fav.is-active { color: #e63757; }
.product-card__fav.is-active svg { fill: #e63757; }
.product-card__img {
  height: 190px;
  background: linear-gradient(135deg, #ebeafa, #fdf1d3);
  display: flex; align-items: center; justify-content: center;
  font-size: 3.5rem;
}
.product-card__img img { width: 100%; height: 100%; object-fit: cover; }
.product-card__img .placeholder-icon { width: 56px; height: 56px; color: var(--primary-light); }
.product-card__body { padding: 18px; }
.product-card__cat { font-size: 0.75rem; color: var(--primary); font-weight: 700; text-transform: uppercase; }
.product-card__body h3 { margin: 6px 0 10px; }
.product-card__body h3 a { color: var(--dark); text-decoration: none; }
.product-card__body h3 a:hover { color: var(--primary); }
.product-card__price { display: flex; align-items: baseline; gap: 8px; margin-bottom: 14px; }
.product-card__price strong { font-size: 1.1rem; color: var(--dark); }
.product-card__price del { color: var(--muted); font-size: 0.85rem; }

.empty-state {
  grid-column: 1 / -1;
  text-align: center;
  padding: 48px;
  background: #fff;
  border: 1px dashed var(--border);
  border-radius: var(--radius);
  color: var(--muted);
}
.empty-state code { background: var(--bg-muted); padding: 2px 8px; border-radius: 6px; }
.empty-state__icon { width: 20px; height: 20px; vertical-align: -5px; margin-right: 2px; }

/* BREADCRUMB */
.breadcrumb { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; padding: 24px 0 0; font-size: 0.85rem; color: var(--muted); }
.breadcrumb a { color: var(--muted); text-decoration: none; }
.breadcrumb a:hover { color: var(--primary); }
.breadcrumb__current { color: var(--dark); font-weight: 600; }

/* CATEGORY DETAIL / FILTERS */
.cat-detail-section { padding-top: 32px; }
.cat-detail-head { text-align: left; max-width: none; margin: 0 0 32px; }
.cat-detail { display: grid; grid-template-columns: 250px 1fr; gap: 32px; align-items: start; }

.cat-filters {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  position: sticky;
  top: 90px;
}
.cat-filters__group { padding-bottom: 20px; margin-bottom: 20px; border-bottom: 1px solid var(--border); }
.cat-filters__group:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.cat-filters__group h4 { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.4px; color: var(--muted); margin-bottom: 14px; }
.cat-filters__check {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.9rem; font-weight: 600; color: var(--text);
  margin-bottom: 12px; cursor: pointer;
}
.cat-filters__check:last-child { margin-bottom: 0; }
.cat-filters__check input { width: 16px; height: 16px; accent-color: var(--primary); cursor: pointer; }
.cat-filters__price { display: flex; align-items: center; gap: 8px; margin-bottom: 14px; }
.cat-filters__price input {
  width: 0; flex: 1;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  padding: 9px 10px;
  font-family: inherit;
  font-size: 0.85rem;
}
.cat-filters__price input:focus { outline: none; border-color: var(--primary); }
.cat-filters__price span { color: var(--muted); }
.cat-filters__apply { margin-bottom: 10px; }
.cat-filters__reset { display: block; text-align: center; color: var(--muted); font-size: 0.82rem; text-decoration: none; }
.cat-filters__reset:hover { color: var(--primary); text-decoration: underline; }

.cat-toolbar {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
  margin-bottom: 20px;
}
.cat-toolbar__count { color: var(--muted); font-size: 0.9rem; font-weight: 600; }
.cat-toolbar__actions { display: flex; align-items: center; gap: 12px; }
.view-toggle { display: flex; border: 1.5px solid var(--border); border-radius: 8px; overflow: hidden; }
.view-toggle__btn {
  width: 38px; height: 36px;
  border: none;
  background: #fff;
  color: var(--muted);
  cursor: pointer;
  font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
}
.view-toggle__svg { width: 17px; height: 17px; }
.view-toggle__btn.is-active { background: var(--primary); color: #fff; }
.cat-toolbar__sort {
  border: 1.5px solid var(--border);
  border-radius: 8px;
  padding: 9px 12px;
  font-family: inherit;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
  background: #fff;
  cursor: pointer;
}
.cat-toolbar__sort:focus { outline: none; border-color: var(--primary); }

.product-grid--list { grid-template-columns: 1fr; }
.product-grid--list .product-card { display: grid; grid-template-columns: 200px 1fr; }
.product-grid--list .product-card__img { height: 100%; }
.product-grid--list .product-card__body { display: flex; flex-direction: column; justify-content: center; }
.product-grid--list .product-card__body .btn { align-self: flex-start; padding-left: 28px; padding-right: 28px; }

/* PRODUCT DETAIL */
.pd { padding-top: 32px; }
.pd__inner { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 48px; margin-bottom: 56px; }
.pd__image {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: linear-gradient(135deg, #ebeafa, #fdf1d3);
  aspect-ratio: 1 / 1;
  display: flex; align-items: center; justify-content: center;
  font-size: 5rem;
  border: 1px solid var(--border);
}
.pd__image img { width: 100%; height: 100%; object-fit: cover; cursor: zoom-in; }
.pd__image .product-card__badge { top: 16px; left: 16px; }
.pd__image .placeholder-icon { width: 90px; height: 90px; color: var(--muted); }

.pd__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px; height: 40px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.9);
  color: var(--dark);
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  z-index: 3;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow);
}
.pd__arrow:hover { background: #fff; color: var(--primary); }
.pd__arrow--prev { left: 14px; }
.pd__arrow--next { right: 14px; }

.pd-lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(20, 18, 46, 0.92);
  z-index: 200;
  align-items: center;
  justify-content: center;
}
.pd-lightbox.is-open { display: flex; }
.pd-lightbox img {
  max-width: min(88vw, 900px);
  max-height: 86vh;
  border-radius: 12px;
  object-fit: contain;
}
.pd-lightbox .pd__arrow--prev { left: 24px; }
.pd-lightbox .pd__arrow--next { right: 24px; }
.pd-lightbox__close {
  position: absolute;
  top: 24px; right: 24px;
  width: 44px; height: 44px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.9);
  color: var(--dark);
  font-size: 1.2rem;
  cursor: pointer;
  z-index: 3;
  display: flex; align-items: center; justify-content: center;
}
.pd-lightbox__close-icon { width: 18px; height: 18px; }
.pd-lightbox__close:hover { background: #fff; color: var(--primary); }

.pd__thumbs { display: flex; gap: 10px; margin-top: 14px; flex-wrap: wrap; }
.pd__thumb {
  width: 66px; height: 66px;
  border-radius: 10px;
  overflow: hidden;
  border: 2px solid var(--border);
  background: var(--bg-muted);
  padding: 0;
  cursor: pointer;
  flex-shrink: 0;
  transition: border-color .15s;
}
.pd__thumb img { width: 100%; height: 100%; object-fit: cover; }
.pd__thumb:hover { border-color: var(--primary-light); }
.pd__thumb.is-active { border-color: var(--primary); }

.pd__info h1 { font-size: clamp(1.5rem, 3vw, 2rem); margin: 10px 0 16px; }
.pd__meta { display: flex; flex-wrap: wrap; gap: 16px; font-size: 0.9rem; color: var(--muted); margin-bottom: 20px; }
.pd__stock { font-weight: 700; color: #16803c; display: inline-flex; align-items: center; gap: 5px; }
.pd__stock--out { color: #b42318; }
.pd__stock-icon { width: 16px; height: 16px; }

.pd__price { display: flex; align-items: baseline; gap: 12px; margin-bottom: 24px; }
.pd__price strong { font-size: 1.9rem; color: var(--dark); }
.pd__price del { font-size: 1.1rem; color: var(--muted); }

.pd__actions { display: flex; align-items: center; gap: 16px; margin-bottom: 28px; flex-wrap: wrap; }
.pd__fav-btn {
  width: 52px; height: 52px; flex-shrink: 0;
  border-radius: 50%;
  background: #fff;
  border: 1.5px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--muted);
  cursor: pointer;
  transition: transform .15s ease, color .15s ease, border-color .15s ease;
}
.pd__fav-btn svg { width: 24px; height: 24px; }
.pd__fav-btn:hover { transform: scale(1.06); color: #e63757; border-color: #e63757; }
.pd__fav-btn.is-active { color: #e63757; border-color: #e63757; }
.pd__fav-btn.is-active svg { fill: #e63757; }
.qty { display: flex; align-items: center; border: 1.5px solid var(--border); border-radius: 999px; overflow: hidden; }
.qty__btn { width: 42px; height: 46px; border: none; background: var(--bg-muted); font-size: 1.1rem; cursor: pointer; color: var(--dark); }
.qty__btn:hover { background: var(--border); }
.qty__input { width: 52px; height: 46px; border: none; text-align: center; font-weight: 700; font-size: 1rem; -moz-appearance: textfield; }
.qty__input::-webkit-outer-spin-button, .qty__input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }

.pd__highlights { list-style: none; display: flex; flex-direction: column; gap: 10px; font-size: 0.9rem; color: var(--text); margin-bottom: 24px; }
.pd__highlights li { display: flex; align-items: center; gap: 8px; }
.pd__highlight-icon { width: 18px; height: 18px; flex-shrink: 0; color: var(--primary); }

.pd__description { border-top: 1px solid var(--border); padding-top: 20px; }
.pd__description h3 { margin-bottom: 10px; font-size: 1.05rem; }
.pd__description p { color: var(--muted); line-height: 1.7; }

.pd__specs { margin-bottom: 24px; }
.pd__specs h3 { margin-bottom: 16px; font-size: 1.2rem; }
.specs-table { width: 100%; border-collapse: collapse; background: #fff; border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.specs-table tr:nth-child(even) { background: var(--bg-muted); }
.specs-table th, .specs-table td { text-align: left; padding: 13px 20px; font-size: 0.9rem; font-weight: 400; }
.specs-table th { color: var(--muted); font-weight: 600; width: 40%; }
.specs-table td { color: var(--dark); font-weight: 600; }

/* PROMO */
.promo {
  position: relative;
  background: linear-gradient(120deg, var(--dark), var(--primary) 60%, var(--accent));
  color: #fff;
  border-radius: 28px;
  max-width: 1180px;
  margin: 0 auto 20px;
  padding: 56px 48px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.promo::before, .promo::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
}
.promo::before { width: 320px; height: 320px; top: -160px; right: 60px; }
.promo::after { width: 200px; height: 200px; bottom: -120px; right: 220px; }
.promo__inner { position: relative; z-index: 1; display: flex; align-items: center; justify-content: space-between; gap: 32px; }
.promo h2 { color: #fff; margin: 14px 0 10px; font-size: clamp(1.5rem, 3vw, 2.1rem); }
.promo p { max-width: 420px; opacity: 0.9; margin-bottom: 24px; }
.promo__figure {
  position: relative; z-index: 1;
  width: 160px; height: 160px;
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 5rem;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  backdrop-filter: blur(4px);
}
.promo__figure-icon { width: 44%; height: 44%; color: #fff; stroke-width: 1.4; }

/* FEATURES */
.feature-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.feature-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 24px;
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s ease;
}
.feature-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.feature-card:hover::before { transform: scaleX(1); }
.feature-card__icon {
  width: 60px; height: 60px;
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.7rem; margin-bottom: 20px;
  box-shadow: var(--shadow);
}
.feature-card__svg { width: 26px; height: 26px; }
.feature-card__icon--1 { background: linear-gradient(135deg, #eef2ff, #dfe6ff); }
.feature-card__icon--1 .feature-card__svg { color: #5b56c9; }
.feature-card__icon--2 .feature-card__svg { color: #c98a1f; }
.feature-card__icon--3 .feature-card__svg { color: #2fa968; }
.feature-card__icon--4 .feature-card__svg { color: #d1447e; }
.feature-card__icon--2 { background: linear-gradient(135deg, #fff4dd, #ffe8bd); }
.feature-card__icon--3 { background: linear-gradient(135deg, #e9f9ef, #d3f3e0); }
.feature-card__icon--4 { background: linear-gradient(135deg, #fde8f0, #fbd4e6); }
.feature-card h3 { margin-bottom: 8px; }
.feature-card p { color: var(--muted); font-size: 0.9rem; }

/* TESTIMONIALS */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testi-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px 28px;
  box-shadow: var(--shadow);
  transition: transform .25s ease, box-shadow .25s ease;
}
.testi-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.testi-card::before {
  content: '\201C';
  position: absolute;
  top: 12px; right: 22px;
  font-size: 4rem;
  font-family: Georgia, serif;
  color: var(--bg-muted);
  line-height: 1;
  z-index: 0;
}
.testi-card__stars { position: relative; display: inline-flex; gap: 3px; margin-bottom: 14px; }
.star-rating__star { width: 16px; height: 16px; fill: none; stroke: var(--border); stroke-width: 1.5; color: var(--border); }
.star-rating__star.is-filled { fill: var(--accent); stroke: var(--accent); color: var(--accent); }
.testi-card p { position: relative; color: var(--text); margin-bottom: 20px; font-style: italic; }
.testi-card__author { position: relative; display: flex; align-items: center; gap: 12px; }
.testi-card__avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff; display: flex; align-items: center; justify-content: center;
  font-weight: 800; overflow: hidden; flex-shrink: 0;
  box-shadow: 0 0 0 3px #fff, 0 0 0 4px var(--border);
}
.testi-card__avatar img { width: 100%; height: 100%; object-fit: cover; }
.testi-card__author strong { display: block; font-size: 0.9rem; }
.testi-card__author span { font-size: 0.8rem; color: var(--muted); }

/* CONTACT */
.contact__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; }
.contact__text p { color: var(--muted); margin: 16px 0 24px; }
.contact__info { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.contact__info li { display: flex; align-items: center; gap: 12px; font-weight: 600; font-size: 0.92rem; }
.contact__info-icon {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: #ebeafa;
  color: var(--primary);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.contact__info-icon .icon { width: 18px; height: 18px; }

.contact__form {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.form-input, .contact__form input, .contact__form textarea {
  width: 100%;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: 13px 16px;
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--text);
  background: var(--bg-muted);
  transition: border-color .2s;
}
.form-input:focus, .contact__form input:focus, .contact__form textarea:focus {
  outline: none;
  border-color: var(--primary);
  background: #fff;
}
.form-message {
  background: #ecfdf5;
  color: #065f46;
  padding: 12px 16px;
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 600;
}

/* CART PAGE */
.cart-page { padding-top: 32px; }
.cart-page__head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 28px; flex-wrap: wrap; gap: 12px;
}
.cart-page__grid { display: grid; grid-template-columns: 1fr 340px; gap: 32px; align-items: start; }
.cart-page__items { display: flex; flex-direction: column; gap: 16px; }

.cart-row {
  display: grid;
  grid-template-columns: 72px 1fr auto auto auto;
  align-items: center;
  gap: 16px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
}
.cart-row__img {
  width: 72px; height: 72px; border-radius: 10px; overflow: hidden;
  background: var(--bg-muted);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  color: var(--muted);
}
.cart-row__img img { width: 100%; height: 100%; object-fit: cover; }
.cart-row__img .placeholder-icon { width: 28px; height: 28px; }
.cart-row__info { display: flex; flex-direction: column; gap: 3px; min-width: 0; }
.cart-row__name { color: var(--dark); font-weight: 700; font-size: 0.95rem; text-decoration: none; }
.cart-row__name:hover { color: var(--primary); }
.cart-row__sku, .cart-row__unit { font-size: 0.78rem; color: var(--muted); }
.cart-row__qty { display: flex; align-items: center; gap: 8px; }
.cart-row__qty form { display: contents; }
.cart-row__qty .qty__btn {
  width: 30px; height: 30px; border-radius: 8px; border: 1.5px solid var(--border);
  background: var(--bg-muted); cursor: pointer; font-size: 1rem; color: var(--dark);
}
.cart-row__qty .qty__btn:hover { border-color: var(--primary); color: var(--primary); }
.qty__value { min-width: 20px; text-align: center; font-weight: 700; }
.cart-row__total { font-weight: 800; color: var(--dark); white-space: nowrap; }
.cart-row__remove button {
  width: 32px; height: 32px; border-radius: 50%; border: none;
  background: var(--bg-muted); color: var(--muted); cursor: pointer; font-size: 0.9rem;
  display: flex; align-items: center; justify-content: center;
}
.cart-row__remove button:hover { background: #fde8e8; color: #b42318; }
.cart-row__remove-icon { width: 14px; height: 14px; }

.cart-summary {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
  position: sticky;
  top: 90px;
}
.cart-summary h3 { font-size: 1.05rem; margin-bottom: 18px; }
.cart-summary__items { display: flex; flex-direction: column; gap: 10px; margin-bottom: 16px; padding-bottom: 16px; border-bottom: 1px solid var(--border); }
.cart-summary__item { display: flex; justify-content: space-between; gap: 12px; font-size: 0.85rem; color: var(--muted); }
.cart-summary__item strong { color: var(--dark); flex-shrink: 0; }
.cart-summary__row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 8px; font-size: 0.9rem; color: var(--muted); }
.cart-summary__row--total { padding-top: 12px; margin: 8px 0 20px; border-top: 1px solid var(--border); font-size: 1rem; }
.cart-summary__row--total strong { font-size: 1.25rem; color: var(--dark); }

.checkout-form {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field label { font-size: 0.85rem; font-weight: 700; color: var(--dark); }
.form-error { color: #b42318; font-size: 0.8rem; }

/* AUTH (register / login) */
.auth-section__inner { display: flex; justify-content: center; }
.auth-form { width: 100%; max-width: 420px; }
.auth-form h2 { margin: 0 0 4px; font-size: 1.4rem; }
.auth-form__switch { text-align: center; font-size: 0.88rem; color: var(--muted); margin: 0; }
.auth-form__switch a { color: var(--primary); font-weight: 700; text-decoration: none; }
.auth-form__switch a:hover { text-decoration: underline; }

.checkout-success {
  max-width: 480px; margin: 0 auto; text-align: center;
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  padding: 48px 36px; box-shadow: var(--shadow);
}
.checkout-success__icon { margin-bottom: 16px; display: flex; justify-content: center; }
.checkout-success__svg { width: 64px; height: 64px; color: #16a34a; stroke-width: 1.6; }
.checkout-success p { color: var(--muted); margin: 14px 0; }
.checkout-success__total { font-size: 1.1rem; color: var(--dark); }
.checkout-success .btn { margin-top: 12px; }

/* MINI CART DROPDOWN */
.mini-cart-dd { position: relative; }
.mini-cart-dd__panel {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  width: 340px;
  max-width: calc(100vw - 32px);
  max-height: 70vh;
  overflow-y: auto;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: var(--shadow-lg);
  padding: 16px;
  z-index: 90;
}
.mini-cart-dd.is-open .mini-cart-dd__panel { display: block; }

.mini-cart__items { display: flex; flex-direction: column; gap: 14px; margin-bottom: 14px; }
.mini-cart__item { display: flex; align-items: center; gap: 10px; }
.mini-cart__img {
  width: 52px; height: 52px; flex-shrink: 0;
  border-radius: 8px; overflow: hidden;
  background: var(--bg-muted);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
}
.mini-cart__img img { width: 100%; height: 100%; object-fit: cover; }
.mini-cart__img .placeholder-icon { width: 22px; height: 22px; color: var(--muted); }
.mini-cart__info { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 2px; }
.mini-cart__info a {
  color: var(--text); text-decoration: none; font-size: 0.85rem; font-weight: 700;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.mini-cart__info a:hover { color: var(--primary); }
.mini-cart__qty { font-size: 0.78rem; color: var(--muted); }
.mini-cart__price { font-size: 0.85rem; font-weight: 800; color: var(--dark); white-space: nowrap; }

.mini-cart__total {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 12px; margin-bottom: 14px;
  border-top: 1px solid var(--border);
  font-size: 0.9rem; color: var(--muted);
}
.mini-cart__total strong { color: var(--dark); font-size: 1.05rem; }
.mini-cart__actions { display: flex; flex-direction: column; gap: 8px; }
.mini-cart__actions form { display: contents; }

.mini-cart__empty { text-align: center; padding: 30px 10px; color: var(--muted); }
.mini-cart__empty-icon { width: 32px; height: 32px; display: block; margin: 0 auto 10px; }

/* FLOATING ACTION BUTTONS */
.fab-stack {
  position: fixed;
  right: 20px;
  bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 80;
}
.fab {
  width: 52px; height: 52px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  text-decoration: none;
  color: #fff;
  box-shadow: var(--shadow-lg);
  transition: transform .15s ease;
}
.fab svg { width: 24px; height: 24px; }
.fab:hover { transform: scale(1.08); }
.fab--call { background: linear-gradient(135deg, #16a34a, #22c55e); }
.fab--telegram { background: linear-gradient(135deg, #29a9eb, #229ed9); }
.fab--instagram { background: linear-gradient(135deg, #f58529, #dd2a7b, #8134af, #515bd4); }

/* FOOTER */
.footer { background: var(--dark); color: #cbc8db; padding: 64px 0 0; }
.footer__inner { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 32px; padding-bottom: 48px; }
.footer__brand p { margin-top: 14px; font-size: 0.9rem; opacity: 0.75; max-width: 260px; }
.footer__col h4 { color: #fff; margin-bottom: 16px; font-size: 0.95rem; }
.footer__col { display: flex; flex-direction: column; gap: 10px; }
.footer__col a { color: #cbc8db; text-decoration: none; font-size: 0.9rem; opacity: 0.85; }
.footer__col a:hover { opacity: 1; color: var(--primary-light); }
.footer__social { display: flex; flex-direction: column; gap: 10px; }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
  padding: 20px 0;
  font-size: 0.82rem;
  opacity: 0.6;
}

/* RESPONSIVE */
@media (max-width: 1200px) {
  .topbar__inner { gap: 16px; }
  .topbar__search { max-width: 220px; }
  .header__phone { display: none; }
}

@media (max-width: 980px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__art { height: 320px; order: -1; }
  .cat-grid, .product-grid, .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .testi-grid { grid-template-columns: 1fr; }
  .contact__inner { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .promo__inner { flex-direction: column; text-align: center; }
  .pd__inner { grid-template-columns: 1fr; }
  .cat-detail { grid-template-columns: 1fr; }
  .cat-filters { position: static; }
  .product-grid--list .product-card { grid-template-columns: 1fr; }
  .product-grid--list .product-card__img { height: 190px; }
  .topbar__search { max-width: 180px; }
  .topbar__inner { gap: 10px; }
  .catalog-dd__btn-text { display: none; }
  .catalog-dd__btn { padding: 8px 10px; }
  .cart-page__grid { grid-template-columns: 1fr; }
  .cart-summary { position: static; }
}

@media (max-width: 680px) {
  .hero-stats-bar__inner { padding: 16px 8px; display: grid; grid-template-columns: repeat(3, 1fr); }
  .hero-stats-bar__item {
    padding: 0 4px;
    gap: 0;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .hero-stats-bar__item + .hero-stats-bar__item::before { display: none; }
  .hero-stats-bar__item div { align-items: center; margin-top: 6px; }
  .hero-stats-bar__icon { width: 20px; height: 20px; padding: 5px; }
  .hero-stats-bar__inner strong { font-size: 1rem; white-space: nowrap; }
  .hero-stats-bar__inner span { font-size: 0.66rem; line-height: 1.25; }
  .topbar .container { padding: 0 12px; }
  .topbar__inner { gap: 8px; }
  .logo img { height: 28px; }
  .header__phone { display: none; }
  .lang-dd__btn { padding: 7px 6px; }
  .lang-dd__current { display: none; }
  .lang-dd__arrow { display: none; }
  .icon-btn { font-size: 0; gap: 0; }
  .icon-btn__svg, .icon-btn__heart { width: 21px; height: 21px; }
  .icon-btn--cart .icon-btn__badge { font-size: 0.65rem; }
  .topbar__search { max-width: none; }
  .topbar__search input { font-size: 0.8rem; padding: 10px 14px; }
  .catalog-dd__btn { padding: 8px 10px; font-size: 0.85rem; }
  .catalog-dd__btn-text { display: none; }
  .catalog-dd__panel {
    position: fixed;
    flex-direction: column;
    left: 16px; right: 16px; top: 78px;
    width: auto;
    max-width: none;
    max-height: calc(100vh - 96px);
    overflow-y: auto;
  }
  .catalog-dd__sidebar { width: 100%; max-height: 260px; border-right: none; border-bottom: 1px solid var(--border); }
  .catalog-dd__items { grid-template-columns: 1fr; }
  .mini-cart-dd__panel {
    position: fixed;
    left: 16px; right: 16px; top: 78px;
    width: auto;
    max-width: none;
  }
  .strip__inner { justify-content: flex-start; gap: 20px; }
  .cat-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .cat-card__img { height: 110px; }
  .cat-card__label { font-size: 0.78rem; padding: 10px 8px; }
  .cat-card__ribbon { font-size: 0.6rem; width: 130px; top: 12px; left: -34px; }
  .product-grid, .feature-grid { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; }
  .promo { padding: 40px 24px; border-radius: 20px; }
  .cart-row { grid-template-columns: 56px 1fr auto; row-gap: 10px; }
  .cart-row__qty { grid-column: 2 / 4; }
  .cart-row__total { grid-column: 2 / 3; font-size: 0.9rem; }
  .cart-row__remove { grid-row: 1; grid-column: 3; justify-self: end; }
  .cart-page__head { flex-direction: column; align-items: flex-start; }

  /* HERO CAROUSEL */
  .hero-carousel { height: auto; }
  .hero-slide {
    position: relative;
    inset: auto;
    height: 0;
    overflow: hidden;
    visibility: hidden;
    opacity: 0;
  }
  .hero-slide.is-active { height: auto; visibility: visible; opacity: 1; overflow: visible; }
  .hero-slide__inner { grid-template-columns: 1fr; gap: 20px; padding: 32px 0 60px; }
  .hero-slide__text h1 { font-size: 1.5rem; }
  .hero-slide__text p { font-size: 0.9rem; margin-bottom: 20px; }
  .hero-slide__art { height: 200px; order: -1; font-size: 3.5rem; }
  .hero-carousel__arrow { display: none; }
  .hero-carousel__dots { bottom: 16px; }
}

@media (max-width: 560px) {
  .topbar__search { display: none; }
}

@media (max-width: 420px) {
  .topbar .container { padding: 0 6px; }
  .topbar__inner { gap: 3px; }
  .logo img { height: 22px; }
  .catalog-dd__btn { padding: 8px; }
  .catalog-dd__btn-text { display: none; }
  .lang-dd__btn, .icon-btn--account, .icon-btn--fav { padding: 5px; }
  .icon-btn--cart .icon-btn__svg { width: 19px; height: 19px; }
}
