
:root {
  color-scheme: light;
  --bg: #ffffff;
  --bg-soft: #f6f7f9;
  --bg-muted: #f1f3f6;
  --card: #ffffff;
  --card-2: #ffffff;
  --text: #14171c;
  --text-soft: #4d545f;
  --muted: #7a828e;
  --line: #e4e7ec;
  --line-strong: #cfd5de;
  --accent: #ffc400;
  --accent-2: #ffb000;
  --accent-soft: rgba(255, 196, 0, .13);
  --danger: #f0272d;
  --success: #30b04a;
  --dark: #111316;
  --orange: #ff5a18;
  --shadow: 0 18px 44px rgba(20, 24, 33, .08);
  --shadow-soft: 0 10px 30px rgba(20, 24, 33, .055);
  --radius-sm: 10px;
  --radius: 14px;
  --radius-lg: 22px;
  --container: 1440px;
  --side-gap: clamp(18px, 3.2vw, 52px);
  --font-main: "Inter", "Segoe UI", Roboto, Arial, sans-serif;
}

[data-theme="dark"] {
  color-scheme: dark;
  --bg: #090d0f;
  --bg-soft: #101518;
  --bg-muted: #141a1e;
  --card: #11171b;
  --card-2: #151c21;
  --text: #f7f9fb;
  --text-soft: #c0c8d2;
  --muted: #87919f;
  --line: rgba(255, 255, 255, .095);
  --line-strong: rgba(255, 255, 255, .16);
  --accent: #ffc400;
  --accent-2: #ffad00;
  --accent-soft: rgba(255, 196, 0, .16);
  --danger: #ff3d32;
  --success: #36c65a;
  --dark: #050708;
  --orange: #ff5a18;
  --shadow: 0 24px 54px rgba(0, 0, 0, .34);
  --shadow-soft: 0 14px 34px rgba(0, 0, 0, .22);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: var(--font-main);
  color: var(--text);
  background:
    radial-gradient(circle at 50% -8%, rgba(255, 196, 0, .09), transparent 28%),
    var(--bg);
  font-size: 15px;
  line-height: 1.45;
  letter-spacing: -.018em;
}

body.theme-changing * {
  transition: background-color .2s ease, color .2s ease, border-color .2s ease, box-shadow .2s ease;
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

.container {
  width: min(var(--container), calc(100% - var(--side-gap) * 2));
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 16px;
  z-index: 999;
  padding: 12px 16px;
  border-radius: 999px;
  background: var(--accent);
  color: #111;
  font-weight: 700;
}

.skip-link:focus {
  left: 16px;
}

/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}

[data-theme="dark"] .site-header {
  background: rgba(9, 13, 15, .92);
}

.top-benefits {
  border-bottom: 1px solid var(--line);
  background: color-mix(in srgb, var(--bg) 96%, var(--accent));
}

.top-benefits__inner {
  min-height: 36px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: center;
  gap: 16px;
}

.top-benefits__item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 0;
  color: var(--text-soft);
  font-size: 12px;
  font-weight: 500;
  white-space: nowrap;
}

.top-benefits__item svg {
  width: 17px;
  height: 17px;
  color: var(--accent-2);
  flex: 0 0 auto;
}

.promo-strip {
  padding: 14px 0;
}

.promo-strip__box {
  min-height: 46px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 10px 18px;
  border: 1px solid var(--accent-2);
  border-radius: 8px;
  background: linear-gradient(90deg, rgba(255, 196, 0, .15), rgba(255, 196, 0, .04));
}

.promo-strip__main {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 11px;
  color: var(--text);
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: .02em;
  text-transform: uppercase;
}

.promo-strip__main svg {
  width: 24px;
  height: 24px;
  color: var(--accent-2);
  flex: 0 0 auto;
}

.promo-strip__main strong {
  color: var(--accent-2);
  font-weight: 800;
}

.promo-strip__close {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  background: transparent;
  color: var(--accent-2);
}

.header-main {
  padding: 16px 0 20px;
}

.header-main__grid {
  display: grid;
  grid-template-columns: 245px minmax(300px, 1fr) auto;
  align-items: center;
  gap: clamp(20px, 3.2vw, 56px);
}

.logo {
  display: inline-flex;
  align-items: center;
  color: var(--text);
}

.logo img {
  width: 212px;
  height: auto;
}

.search {
  min-width: 0;
}

.search__form {
  width: 100%;
  max-width: 520px;
  position: relative;
}

.search input {
  width: 100%;
  height: 54px;
  padding: 0 60px 0 20px;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  color: var(--text);
  background: var(--card);
  outline: 0;
  box-shadow: 0 2px 0 rgba(0,0,0,.02);
}

.search input::placeholder {
  color: var(--muted);
}

.search button {
  position: absolute;
  top: 50%;
  right: 12px;
  width: 38px;
  height: 38px;
  transform: translateY(-50%);
  border: 0;
  border-radius: 999px;
  color: var(--text);
  background: transparent;
}

.search button:hover {
  background: var(--bg-soft);
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(18px, 2.4vw, 34px);
}

.header-action {
  position: relative;
  min-width: 64px;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: var(--text);
  font-size: 13px;
  font-weight: 500;
  text-align: center;
}

.header-action svg {
  width: 30px;
  height: 30px;
}

.header-action small {
  color: var(--muted);
  font-size: 11px;
}

.header-action__badge {
  position: absolute;
  top: -6px;
  right: 7px;
  min-width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--accent);
  color: #111;
  font-size: 10px;
  font-weight: 800;
}

.navbar {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.navbar__inner {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  overflow-x: auto;
  scrollbar-width: none;
}

.navbar__inner::-webkit-scrollbar {
  display: none;
}

.navbar a {
  height: 58px;
  display: inline-flex;
  align-items: center;
  color: var(--text);
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
}

.navbar a:hover {
  color: var(--accent-2);
}

/* Main layout */

.main {
  padding: 24px 0 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 2.05fr) minmax(300px, .95fr);
  gap: 18px;
}

.hero-card {
  position: relative;
  min-height: 420px;
  display: grid;
  grid-template-columns: minmax(300px, .9fr) minmax(360px, 1.1fr);
  overflow: hidden;
  border-radius: var(--radius);
  color: #fff;
  background:
    radial-gradient(circle at 80% 40%, rgba(255, 196, 0, .15), transparent 36%),
    linear-gradient(90deg, #080808 0%, #151515 54%, #1f1b14 100%);
  box-shadow: var(--shadow);
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, .88), rgba(0, 0, 0, .46) 55%, rgba(0, 0, 0, .08)),
    repeating-linear-gradient(135deg, rgba(255,255,255,.045) 0 1px, transparent 1px 8px);
  pointer-events: none;
}

.hero-card__content {
  position: relative;
  z-index: 2;
  align-self: center;
  padding: clamp(30px, 4.5vw, 58px);
}

.hero-card__eyebrow {
  color: rgba(255,255,255,.86);
  font-size: 14px;
  font-weight: 500;
}

.hero-card h1 {
  margin: 8px 0 16px;
  max-width: 520px;
  font-size: clamp(38px, 4.4vw, 64px);
  line-height: .98;
  letter-spacing: -.055em;
  font-weight: 800;
}

.hero-card h1 span {
  color: var(--accent);
}

.hero-card__lead {
  max-width: 410px;
  margin: 0 0 24px;
  color: rgba(255,255,255,.86);
  font-size: 17px;
  line-height: 1.45;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,.9);
  font-size: 14px;
}

.check-list li::before {
  content: "";
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  border: 2px solid var(--accent);
  border-radius: 999px;
  background:
    linear-gradient(135deg, transparent 46%, var(--accent) 47% 54%, transparent 55%),
    linear-gradient(45deg, transparent 44%, var(--accent) 45% 52%, transparent 53%);
}

.hero-price {
  margin: 0 0 16px;
  color: var(--accent);
  font-size: 34px;
  line-height: 1;
  font-weight: 800;
}

.hero-card__visual {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 34px;
}

.hero-card__visual img {
  width: min(560px, 100%);
  transform: scale(1.22);
  filter: drop-shadow(0 30px 28px rgba(0,0,0,.45));
}

.hero-dots {
  position: absolute;
  left: 50%;
  bottom: 22px;
  z-index: 3;
  display: flex;
  gap: 8px;
  transform: translateX(-50%);
}

.hero-dots span {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: rgba(255,255,255,.72);
}

.hero-dots .is-active {
  background: var(--accent);
}

.btn {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 18px;
  border: 0;
  border-radius: 7px;
  color: #111;
  background: var(--accent);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: transform .16s ease, background-color .16s ease, box-shadow .16s ease;
}

.btn:hover {
  transform: translateY(-1px);
  background: #ffd21a;
  box-shadow: 0 12px 20px rgba(255, 196, 0, .25);
}

.btn--dark {
  color: #fff;
  background: #111316;
}

.btn--dark:hover {
  background: #000;
}

.side-promos {
  display: grid;
  gap: 18px;
}

.side-promo {
  position: relative;
  min-height: 201px;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--card);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  padding: 28px 170px 26px 26px;
}

.side-promo--yellow {
  background:
    radial-gradient(circle at 88% 26%, rgba(255,255,255,.36), transparent 28%),
    linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #111;
}

.side-promo--soft {
  background: linear-gradient(135deg, var(--card), var(--bg-muted));
}

.side-promo h3 {
  margin: 0 0 10px;
  max-width: 240px;
  font-size: 22px;
  line-height: 1.1;
  letter-spacing: -.045em;
  font-weight: 700;
}

.side-promo p {
  margin: 0 0 16px;
  color: color-mix(in srgb, currentColor 74%, transparent);
  font-size: 13px;
}

.side-promo strong {
  display: block;
  margin-bottom: 13px;
  font-size: 23px;
  letter-spacing: -.04em;
}

.side-promo img {
  position: absolute;
  right: 10px;
  bottom: 8px;
  width: 170px;
  height: 150px;
  object-fit: contain;
  filter: drop-shadow(0 18px 18px rgba(0,0,0,.16));
}

/* USP */

.usp-row {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--card);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.usp {
  min-height: 86px;
  display: grid;
  grid-template-columns: 42px 1fr;
  align-content: center;
  column-gap: 12px;
  padding: 16px 20px;
  border-right: 1px solid var(--line);
}

.usp:last-child {
  border-right: 0;
}

.usp svg {
  width: 34px;
  height: 34px;
  color: var(--accent-2);
}

.usp strong {
  display: block;
  font-size: 13px;
  line-height: 1.2;
  font-weight: 700;
}

.usp span {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 12px;
}

/* Sections */

.section {
  margin-top: 44px;
}

.section__head {
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.section__head h2 {
  margin: 0;
  font-size: 24px;
  line-height: 1.15;
  letter-spacing: -.045em;
  font-weight: 700;
}

.section__link {
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
}

.section__link:hover {
  color: var(--accent-2);
}

/* Categories */

.category-grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 18px;
}

.category {
  min-width: 0;
  display: grid;
  place-items: center;
  gap: 10px;
  text-align: center;
  color: var(--text);
}

.category__image {
  width: 116px;
  height: 116px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.58);
}

[data-theme="dark"] .category__image {
  background: #151c21;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.04);
}

.category img {
  width: 90px;
  height: 82px;
  object-fit: contain;
  transition: transform .16s ease;
}

.category:hover img {
  transform: translateY(-3px) scale(1.03);
}

.category strong {
  font-size: 13px;
  line-height: 1.2;
  font-weight: 600;
}

/* Products */

.product-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}

.product-card {
  position: relative;
  min-width: 0;
  display: grid;
  grid-template-rows: 188px 1fr;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--card);
  box-shadow: 0 1px 0 rgba(0,0,0,.02);
  transition: transform .16s ease, box-shadow .16s ease, border-color .16s ease;
}

.product-card:hover {
  transform: translateY(-3px);
  border-color: var(--line-strong);
  box-shadow: var(--shadow-soft);
}

.product-card__media {
  position: relative;
  display: grid;
  place-items: center;
  padding: 18px;
  background:
    radial-gradient(circle at 50% 36%, rgba(255,196,0,.08), transparent 34%),
    var(--bg-soft);
}

.product-card__media img {
  width: 100%;
  height: 145px;
  object-fit: contain;
  filter: drop-shadow(0 14px 16px rgba(15, 23, 42, .18));
}

.product-badge {
  position: absolute;
  left: 12px;
  top: 12px;
  min-height: 23px;
  display: inline-flex;
  align-items: center;
  padding: 0 8px;
  border-radius: 5px;
  color: #fff;
  background: var(--danger);
  font-size: 11px;
  font-weight: 800;
}

.product-badge--new {
  background: var(--success);
}

.product-card__body {
  display: grid;
  align-content: start;
  padding: 15px;
}

.product-card h3 {
  min-height: 42px;
  margin: 0 0 9px;
  color: var(--text);
  font-size: 14px;
  line-height: 1.28;
  font-weight: 600;
}

.rating {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 10px;
  color: var(--accent-2);
  font-size: 13px;
  letter-spacing: .03em;
}

.rating small {
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0;
}

.price {
  margin-bottom: 14px;
  display: flex;
  align-items: baseline;
  gap: 9px;
  flex-wrap: wrap;
}

.price strong {
  color: var(--text);
  font-size: 20px;
  line-height: 1;
  font-weight: 800;
}

.price del {
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
}

.product-card__actions {
  margin-top: auto;
  display: grid;
  grid-template-columns: 1fr 38px;
  gap: 9px;
}

.cart-btn {
  min-height: 38px;
  border: 0;
  border-radius: 6px;
  color: #111;
  background: var(--accent);
  font-size: 13px;
  font-weight: 800;
}

.wish-btn {
  min-height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--card);
  color: var(--muted);
}

.wish-btn:hover {
  color: var(--danger);
}

/* Promo banners */

.promo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.promo-card {
  position: relative;
  min-height: 190px;
  overflow: hidden;
  border-radius: var(--radius);
  padding: 28px 180px 28px 28px;
  color: #111;
  box-shadow: var(--shadow-soft);
}

.promo-card--yellow {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
}

.promo-card--gray {
  color: var(--text);
  background: linear-gradient(135deg, var(--card), var(--bg-muted));
  border: 1px solid var(--line);
}

.promo-card--orange {
  color: #fff;
  background: linear-gradient(135deg, var(--orange), #e7400f);
}

.promo-card h3 {
  margin: 0 0 8px;
  max-width: 280px;
  font-size: 24px;
  line-height: 1.1;
  letter-spacing: -.045em;
  font-weight: 700;
}

.promo-card p {
  max-width: 260px;
  margin: 0 0 18px;
  font-size: 13px;
  color: color-mix(in srgb, currentColor 72%, transparent);
}

.promo-card strong {
  display: block;
  margin-bottom: 12px;
  font-size: 20px;
  font-weight: 800;
}

.promo-card img {
  position: absolute;
  right: 5px;
  bottom: 7px;
  width: 190px;
  height: 160px;
  object-fit: contain;
  filter: drop-shadow(0 16px 18px rgba(0,0,0,.18));
}

/* Sale strip */

.product-scroller {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(185px, 1fr);
  gap: 14px;
  overflow-x: auto;
  padding-bottom: 10px;
  scrollbar-width: thin;
}

.product-scroller .product-card {
  grid-template-rows: 160px 1fr;
  min-width: 185px;
}

.product-scroller .product-card__media img {
  height: 122px;
}

/* Brands */

.brands-strip {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  align-items: center;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--card);
}

.brand-item {
  min-height: 72px;
  display: grid;
  place-items: center;
  color: var(--text-soft);
  border-right: 1px solid var(--line);
  font-size: 22px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: -.05em;
  filter: grayscale(1);
  opacity: .76;
}

.brand-item:last-child {
  border-right: 0;
}

.brand-item small {
  font-size: 18px;
  font-weight: 700;
}

/* Blog */

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.blog-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--card);
  box-shadow: var(--shadow-soft);
}

.blog-card img {
  width: 100%;
  height: 190px;
  object-fit: cover;
}

.blog-card__body {
  padding: 20px;
}

.blog-card h3 {
  margin: 0 0 8px;
  font-size: 18px;
  line-height: 1.25;
  letter-spacing: -.035em;
  font-weight: 700;
}

.blog-card p {
  margin: 0 0 18px;
  color: var(--text-soft);
  font-size: 14px;
}

.blog-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--muted);
  font-size: 12px;
}

/* Newsletter */

.newsletter {
  margin-top: 54px;
  display: grid;
  grid-template-columns: 1fr minmax(320px, .9fr);
  gap: 32px;
  align-items: center;
  padding: clamp(26px, 4vw, 42px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 5% 30%, rgba(255, 196, 0, .12), transparent 22%),
    var(--card);
  box-shadow: var(--shadow-soft);
}

.newsletter__copy {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 22px;
  align-items: center;
}

.newsletter__copy svg {
  width: 70px;
  height: 70px;
  color: var(--accent-2);
}

.newsletter h2 {
  margin: 0 0 8px;
  font-size: 24px;
  line-height: 1.1;
  letter-spacing: -.045em;
}

.newsletter p {
  margin: 0;
  color: var(--text-soft);
}

.newsletter__form {
  display: grid;
  gap: 10px;
}

.newsletter__row {
  display: grid;
  grid-template-columns: 1fr 134px;
  gap: 10px;
}

.newsletter input[type="email"] {
  height: 48px;
  padding: 0 16px;
  border: 1px solid var(--line-strong);
  border-radius: 7px;
  color: var(--text);
  background: var(--bg);
  outline: 0;
}

.newsletter__consent {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  color: var(--muted);
  font-size: 11px;
}

/* Footer */

.footer {
  margin-top: 56px;
  color: var(--text-soft);
  background:
    linear-gradient(180deg, color-mix(in srgb, var(--bg-soft) 72%, transparent), var(--bg-soft));
  border-top: 1px solid var(--line);
}

[data-theme="dark"] .footer {
  background:
    radial-gradient(circle at 20% 0%, rgba(255, 196, 0, .06), transparent 22%),
    #070a0d;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.15fr repeat(4, 1fr) 1.1fr;
  gap: clamp(24px, 3vw, 54px);
  padding: 52px 0 42px;
}

.footer h3 {
  margin: 0 0 16px;
  color: var(--text);
  font-size: 15px;
  line-height: 1.2;
  font-weight: 700;
}

.footer p {
  margin: 0 0 16px;
  font-size: 13px;
}

.footer a {
  display: block;
  margin: 0 0 10px;
  color: var(--text-soft);
  font-size: 13px;
}

.footer a:hover {
  color: var(--accent-2);
}

.footer__contact {
  display: grid;
  gap: 10px;
  font-size: 13px;
}

.socials {
  margin-top: 16px;
  display: flex;
  gap: 12px;
}

.socials a {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  margin: 0;
}

.payments {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.payments span {
  min-width: 56px;
  min-height: 34px;
  display: grid;
  place-items: center;
  padding: 0 8px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: var(--card);
  color: var(--text);
  font-size: 12px;
  font-weight: 800;
}

.footer__bottom {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
}

/* Theme switcher */

.theme-switcher {
  position: fixed;
  right: 20px;
  bottom: 120px;
  z-index: 110;
  display: grid;
  gap: 8px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: color-mix(in srgb, var(--card) 88%, transparent);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow-soft);
}

.theme-switcher button {
  width: 68px;
  min-height: 64px;
  display: grid;
  place-items: center;
  gap: 4px;
  border: 1px solid transparent;
  border-radius: 13px;
  background: transparent;
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
}

.theme-switcher button svg {
  width: 22px;
  height: 22px;
}

.theme-switcher button.is-active {
  background: var(--accent-soft);
  color: var(--accent-2);
  border-color: color-mix(in srgb, var(--accent) 44%, transparent);
}

/* Mobile */

.mobile-menu-btn {
  display: none;
}

@media (max-width: 1240px) {
  .header-main__grid {
    grid-template-columns: 220px 1fr;
  }

  .header-actions {
    grid-column: 1 / -1;
    justify-content: space-between;
    border-top: 1px solid var(--line);
    padding-top: 16px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
  }

  .side-promos {
    grid-template-columns: repeat(2, 1fr);
  }

  .product-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .category-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .promo-grid {
    grid-template-columns: 1fr;
  }

  .footer__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .usp-row {
    grid-template-columns: repeat(3, 1fr);
  }

  .usp:nth-child(3) {
    border-right: 0;
  }

  .usp:nth-child(n+4) {
    border-top: 1px solid var(--line);
  }
}

@media (max-width: 900px) {
  .top-benefits__inner {
    grid-template-columns: repeat(2, 1fr);
    padding: 8px 0;
  }

  .top-benefits__item:nth-child(n+5) {
    display: none;
  }

  .promo-strip__main {
    font-size: 12px;
  }

  .header-main__grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .logo {
    justify-content: center;
  }

  .logo img {
    width: 200px;
  }

  .search__form {
    max-width: none;
  }

  .header-actions {
    grid-column: auto;
    overflow-x: auto;
    justify-content: flex-start;
    padding: 12px 0 0;
  }

  .navbar__inner {
    gap: 22px;
  }

  .hero-card {
    grid-template-columns: 1fr;
    min-height: 560px;
  }

  .hero-card__visual {
    position: absolute;
    inset: 0;
    opacity: .32;
  }

  .hero-card__visual img {
    transform: scale(1.4);
  }

  .side-promos {
    grid-template-columns: 1fr;
  }

  .usp-row {
    grid-template-columns: 1fr;
  }

  .usp {
    border-right: 0;
    border-top: 1px solid var(--line);
  }

  .usp:first-child {
    border-top: 0;
  }

  .category-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .newsletter {
    grid-template-columns: 1fr;
  }

  .blog-grid {
    grid-template-columns: 1fr;
  }

  .brands-strip {
    grid-template-columns: repeat(4, 1fr);
  }

  .footer__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .theme-switcher {
    right: 12px;
    bottom: 92px;
  }
}

@media (max-width: 620px) {
  :root {
    --side-gap: 14px;
  }

  body {
    font-size: 14px;
  }

  .top-benefits__inner {
    grid-template-columns: 1fr;
  }

  .top-benefits__item:nth-child(n+2) {
    display: none;
  }

  .promo-strip__box {
    grid-template-columns: 1fr auto;
    padding: 8px 12px;
  }

  .header-action {
    min-width: 64px;
    font-size: 12px;
  }

  .navbar__inner {
    justify-content: flex-start;
  }

  .hero-card__content {
    padding: 30px 22px;
  }

  .hero-card h1 {
    font-size: 38px;
  }

  .hero-card__lead {
    font-size: 15px;
  }

  .side-promo,
  .promo-card {
    padding-right: 128px;
  }

  .side-promo img,
  .promo-card img {
    width: 138px;
    height: 130px;
  }

  .category-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .product-grid {
    grid-template-columns: 1fr;
  }

  .product-card {
    grid-template-rows: 165px 1fr;
  }

  .product-card__media img {
    height: 130px;
  }

  .section__head {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .newsletter {
    padding: 24px 18px;
  }

  .newsletter__copy {
    grid-template-columns: 1fr;
  }

  .newsletter__copy svg {
    width: 56px;
    height: 56px;
  }

  .newsletter__row {
    grid-template-columns: 1fr;
  }

  .brands-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer__grid {
    grid-template-columns: 1fr;
  }

  .footer__bottom {
    align-items: flex-start;
    flex-direction: column;
    padding: 18px 0;
  }

  .theme-switcher {
    bottom: 18px;
  }

  .theme-switcher button {
    width: 58px;
    min-height: 54px;
  }
}

.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0;}


/* ERATOOLS V2 PHP guards */
.product-card__actions form{min-width:0;display:block}.product-card__actions form .cart-btn,a.cart-btn{width:100%;text-decoration:none}.cart-btn{display:inline-flex;align-items:center;justify-content:center}.main{min-height:50vh}.admin-folder-info{width:min(920px,calc(100% - 32px));margin:60px auto;padding:32px;border:1px solid var(--line);border-radius:var(--radius);background:var(--card);color:var(--text);box-shadow:var(--shadow-soft)}
