:root {
  --bg: #ffffff;
  --surface: #ffffff;
  --surface-soft: #ffffff;
  --text: #111827;
  --muted: #667085;
  --line: #d8dfeb;
  --brand: #24324a;
  --brand-dark: #1b2435;
  --accent: #ff4d36;
  --accent-dark: #e23420;
  --accent-soft: #fff1ed;
  --success: #2f8f46;
  --shadow: 0 16px 36px rgba(15, 23, 42, 0.08);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --container: 1440px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  max-width: 100%;
  overflow-x: clip;
}

body {
  margin: 0;
  max-width: 100%;
  overflow-x: clip;
  font-family: "Segoe UI", Arial, sans-serif;
  color: var(--text);
  background: #ffffff;
}

.site,
.site-main,
.site-content,
.section,
.container {
  max-width: 100%;
  min-width: 0;
}

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

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

.container {
  width: min(var(--container), calc(100% - 48px));
  margin: 0 auto;
}

.topbar {
  background: #10151f;
  color: #ffffff;
  font-size: 13px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.topbar__inner,
.header__inner,
.hero,
.split,
.page-layout,
.footer__top,
.footer__bottom {
  display: flex;
  gap: 20px;
}

.header__inner > *,
.hero > *,
.section-head > *,
.page-layout > * {
  min-width: 0;
}

.topbar__inner {
  justify-content: space-between;
  padding: 7px 0;
  align-items: center;
  flex-wrap: wrap;
}

.topbar__meta,
.topbar__links,
.header__actions,
.feature-list,
.stats,
.contact-cards,
.policy-list,
.info-grid,
.mini-list {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.topbar__meta span,
.topbar__links a {
  opacity: 0.92;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: none;
  background: #2f3b52;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header__inner {
  align-items: center;
  padding: 10px 0;
  flex-wrap: wrap;
}

.header__inner--reference {
  gap: 14px;
}

.brand {
  min-width: 172px;
}

.brand__title {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: #ffffff;
}

.brand__subtitle {
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  margin-top: 4px;
}

.search {
  flex: 1;
  position: relative;
}

.catalog-button {
  min-width: 148px;
  height: 48px;
  padding: 0 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: #ffffff;
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(255, 77, 54, 0.24);
}

.catalog-button svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.catalog-button:hover {
  background: linear-gradient(135deg, #ff5e49, #cd2817);
}

.search input {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 16px;
  padding: 13px 62px 13px 18px;
  font-size: 15px;
  background: var(--surface);
  box-shadow: none;
}

.search input:focus {
  outline: none;
  border-color: rgba(47, 59, 82, 0.3);
  box-shadow: 0 0 0 4px rgba(36, 50, 74, 0.08);
}

.search-submit {
  position: absolute;
  top: 50%;
  right: 8px;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border: 1px solid rgba(45, 54, 72, 0.12);
  border-radius: 12px;
  background: #ffffff;
  color: #2d3648;
  cursor: pointer;
}

.search-submit:hover {
  background: #f8fafc;
}

.search-submit svg,
.icon-chip svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.search-results {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  right: 0;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: var(--shadow);
  padding: 10px;
  display: grid;
  gap: 8px;
  z-index: 40;
}

.search-results[hidden] {
  display: none;
}

.search-result {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 12px;
  padding: 10px;
  border-radius: 16px;
}

.search-result:hover {
  background: var(--surface-soft);
}

.search-result img {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  object-fit: cover;
}

.search-result strong,
.search-result span {
  display: block;
}

.search-result span,
.search-results__empty {
  color: var(--muted);
  font-size: 14px;
}

.search-results__empty {
  padding: 12px;
}

.header__actions {
  align-items: center;
  justify-content: flex-end;
  min-width: auto;
}

.header-chip,
.btn,
.pill,
.tag,
.nav-badge {
  border-radius: 999px;
}

.header-chip {
  padding: 11px 14px;
  background: var(--surface);
  border: 1px solid var(--line);
  font-size: 14px;
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.icon-chip {
  min-width: 48px;
  height: 48px;
  padding: 0 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: #ffffff;
  border-radius: 16px;
}

.icon-chip:hover {
  background: rgba(255, 255, 255, 0.16);
}

.icon-chip--cart span {
  font-size: 16px;
  font-weight: 800;
}

.menu-toggle {
  display: none;
  border: 0;
  background: var(--accent);
  color: #fff;
  border-radius: 14px;
  padding: 12px 16px;
  font-weight: 700;
}

.main-nav {
  background: #ffffff;
  border-top: 1px solid rgba(216, 223, 235, 0.9);
  border-bottom: 1px solid rgba(216, 223, 235, 0.9);
}

.main-nav__inner {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 9px 0;
  overflow-x: auto;
}

.nav-link {
  padding: 8px 11px;
  white-space: nowrap;
  color: #5a6272;
  font-weight: 600;
  border-radius: 12px;
}

.nav-link.is-active {
  color: #101623;
  font-weight: 700;
  background: #f3f6fb;
}

.hero {
  padding: 34px 0 22px;
  align-items: stretch;
}

.hero--front {
  display: block;
}

.hero--front .hero-banner {
  width: 100%;
}

.hero__sidebar {
  width: 290px;
  flex: 0 0 290px;
}

.card,
.hero-banner,
.sidebar-card,
.product-card,
.promo-card,
.info-card,
.contact-card,
.article-card,
.empty-card {
  background: var(--surface);
  border: 1px solid #eef2f8;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.sidebar-card {
  padding: 18px;
}

.sidebar-card h3 {
  margin: 0 0 16px;
  font-size: 18px;
}

.category-list,
.breadcrumbs,
.footer-links,
.product-meta,
.spec-list,
.tabs,
.socials {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.category-link {
  padding: 13px 14px;
  border-radius: 14px;
  background: #f7f9fc;
  border: 1px solid #ebf0f6;
  color: var(--text);
  font-weight: 600;
}

.category-link:hover {
  background: #eef4ff;
  border-color: #cfdbef;
}

.hero-banner {
  flex: 1;
  padding: 34px 36px;
  min-height: 360px;
  background:
    linear-gradient(135deg, rgba(22, 30, 45, 0.9), rgba(36, 50, 74, 0.84)),
    linear-gradient(135deg, #24324a, #33435f);
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.hero-banner--photo {
  background:
    linear-gradient(135deg, rgba(19, 29, 45, 0.86), rgba(41, 58, 84, 0.62)),
    url("assets/images/hero.webp") center / cover no-repeat;
}

.hero-banner::after,
.hero-banner::before {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
}

.hero-banner::before {
  width: 240px;
  height: 240px;
  top: -40px;
  right: -40px;
}

.hero-banner::after {
  width: 180px;
  height: 180px;
  bottom: -60px;
  left: 30%;
}

.eyebrow {
  display: inline-flex;
  padding: 9px 14px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  margin-bottom: 18px;
  font-size: 14px;
}

.hero-banner h1,
.page-hero h1 {
  margin: 0 0 14px;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.02;
}

.hero-banner p,
.page-hero p,
.section-head p,
.info-card p,
.article-card p,
.product-description p {
  color: rgba(255, 246, 239, 0.86);
  line-height: 1.6;
}

.hero-banner p {
  max-width: 580px;
  font-size: 17px;
}

.hero-actions,
.cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  font-weight: 700;
  border: 1px solid transparent;
  transition: 0.2s ease;
}

.btn--brand {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: #fff;
  box-shadow: 0 12px 28px rgba(255, 77, 54, 0.22);
}

.btn--brand:hover {
  background: linear-gradient(135deg, #ff5e49, #cd2817);
  transform: translateY(-1px);
}

.btn--light {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.28);
}

.btn--outline {
  background: transparent;
  border-color: var(--line);
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.btn--outline:hover {
  border-color: rgba(36, 50, 74, 0.24);
  color: var(--brand);
  background: rgba(36, 50, 74, 0.04);
}

.page-hero {
  padding: 48px 0 30px;
}

.page-hero__card {
  padding: 40px;
  background:
    linear-gradient(135deg, rgba(17, 17, 17, 0.98), rgba(58, 58, 58, 0.94)),
    linear-gradient(135deg, #111111, #444444);
  color: #ffffff;
}

.page-hero p,
.section-head p,
.info-card p,
.article-card p,
.product-description p,
.contact-card p,
.footer-card p {
  color: var(--muted);
}

.page-hero__card p {
  color: rgba(255, 246, 239, 0.82);
  max-width: 760px;
}

.section {
  padding: 22px 0;
}

.section--spacious {
  padding: 36px 0;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
}

.section-head--slider {
  align-items: center;
}

.slider-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.slider-arrow {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--text);
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
  box-shadow: var(--shadow);
}

.products-slider-wrap {
  max-width: 100%;
  min-width: 0;
  overflow: hidden;
}

.products-slider {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 48px) / 4);
  gap: 16px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  padding-bottom: 6px;
}

.categories-slider-wrap {
  max-width: 100%;
  min-width: 0;
  overflow: hidden;
}

.categories-slider {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 64px) / 5);
  gap: 16px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  padding-bottom: 6px;
}

.categories-slider::-webkit-scrollbar {
  display: none;
}

.categories-slider--all {
  grid-auto-flow: row;
  grid-auto-columns: auto;
  grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
  overflow: visible;
}

.categories-slider--all .category-showcase {
  min-width: 0;
}

.products-slider::-webkit-scrollbar {
  display: none;
}

.products-slider--shelf {
  grid-auto-columns: 272px;
  gap: 12px;
}

.section-head h2,
.section-head h3,
.info-card h3,
.article-card h3,
.product-card h3,
.contact-card h3 {
  margin: 0;
}

.grid {
  display: grid;
  gap: 20px;
}

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

.grid--products {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.content-card .grid--products {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid--promo,
.grid--info,
.grid--articles,
.grid--contacts {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.promo-card,
.info-card,
.article-card,
.contact-card,
.product-card {
  padding: 22px;
}

.promo-card {
  min-height: 240px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.96)),
    linear-gradient(135deg, #f6f6f6, #eeeeee);
}

.promo-card__image {
  width: 100%;
  aspect-ratio: 16 / 8.6;
  border-radius: 18px;
  overflow: hidden;
  margin-bottom: 18px;
}

.promo-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.category-tile {
  min-height: 185px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  color: #fff;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(0, 0, 0, 0.2)),
    linear-gradient(135deg, #7a7a7a, #3a3a3a);
}

.category-tile:nth-child(2n) {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(0, 0, 0, 0.2)),
    linear-gradient(135deg, #6a6a6a, #2c2c2c);
}

.category-tile:nth-child(3n) {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(0, 0, 0, 0.2)),
    linear-gradient(135deg, #777777, #353535);
}

.category-tile:nth-child(4n) {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(0, 0, 0, 0.2)),
    linear-gradient(135deg, #888888, #404040);
}

.category-tile h3 {
  font-size: 24px;
  margin-bottom: 8px;
}

.category-tile--photo {
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center;
}

.category-tile--photo::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(16, 10, 7, 0.02), rgba(16, 10, 7, 0.58));
}

.category-tile--photo > * {
  position: relative;
  z-index: 1;
}

.category-showcase {
  padding: 14px;
  display: grid;
  gap: 14px;
}

.category-showcase__media {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  aspect-ratio: 1 / 1;
  background: linear-gradient(135deg, #edf2f8, #dce5f0);
}

.category-showcase__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.category-showcase__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(23, 15, 9, 0.02), rgba(23, 15, 9, 0.18));
}

.category-showcase__pill {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 12px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: #ffffff;
  font-weight: 800;
  font-size: 15px;
  line-height: 1.15;
  text-align: center;
  box-shadow: 0 12px 24px rgba(255, 77, 54, 0.24);
}

.category-showcase__caption {
  color: var(--muted);
  line-height: 1.55;
  font-size: 15px;
  min-height: 4.65em;
}

.product-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 0;
}

.product-card--interactive {
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.product-card--interactive:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.12);
}

.product-card.outofstock {
  background: #f7f8fb;
  border-color: #e5e9f1;
  color: #737b8c;
  box-shadow: none;
}

.product-card.outofstock .product-image img {
  filter: grayscale(0.85);
  opacity: 0.58;
}

.product-card.outofstock h3,
.product-card.outofstock .product-card__price {
  color: #6b7280;
}

.product-card.outofstock .product-card__price {
  opacity: 0.72;
}

.product-card.outofstock .product-card__actions {
  border-top-color: #e2e6ee;
}

.product-card.outofstock .product-card__unavailable {
  min-height: 42px;
  border-color: #d8dee9;
  background: #e7ebf2;
  color: #5f6878;
  cursor: not-allowed;
  box-shadow: none;
}

.product-card.outofstock .product-card__unavailable:hover {
  border-color: #d8dee9;
  background: #e7ebf2;
  color: #5f6878;
}


.product-image {
  aspect-ratio: 1 / 0.94;
  border-radius: 18px;
  overflow: hidden;
  background:
    radial-gradient(circle at 35% 35%, rgba(255, 255, 255, 0.85), transparent 32%),
    linear-gradient(135deg, #fafafa, #e8e8e8);
}

.product-image img,
.story-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-gallery__main img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 420px;
  object-fit: contain;
}

.tag-row,
.breadcrumbs,
.price-row,
.footer-payments,
.rating {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}

.tag,
.nav-badge,
.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 12px;
  font-size: 13px;
  background: var(--surface-soft);
  color: var(--muted);
}

.tag--sale {
  background: rgba(201, 106, 47, 0.12);
  color: var(--accent-dark);
}

.tag--new {
  background: rgba(63, 107, 87, 0.12);
  color: var(--success);
}

.price-row {
  margin-top: auto;
  justify-content: space-between;
}

.products-slider .product-card {
  padding: 8px;
  gap: 6px;
}

.product-card--shelf {
  padding: 8px;
  gap: 6px;
  border-radius: 0;
  box-shadow: none;
  min-height: 374px;
  border: 0;
  overflow: hidden;
}

.product-card--shelf .product-image {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 230px;
  width: calc(100% + 16px);
  margin-left: -8px;
  margin-right: -8px;
  aspect-ratio: auto;
  border-radius: 0;
  border: 0;
  background: #ffffff;
  padding: 0;
  overflow: hidden;
}

.product-card--shelf .product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-height: none;
  border-radius: 0;
}

.product-card--shelf h3 {
  font-size: 14px;
  line-height: 1.2;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 54px;
  font-weight: 500;
}

.product-card__sku {
  display: none;
}

.product-card__price {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 6px 8px;
  margin-top: auto;
  min-height: 24px;
}

.product-card--shelf .old-price {
  font-size: 14px;
  color: #575757;
}

.product-card--shelf .price {
  font-size: 18px;
  color: #222222;
  font-weight: 700;
}

.product-card--shelf .price.price--accent {
  color: #d92d20;
}

.product-card__unit {
  font-size: 11px;
  font-weight: 600;
  position: relative;
  top: -6px;
}

.product-card__actions {
  display: grid;
  grid-template-columns: 1fr 50px;
  gap: 8px;
  margin-top: 6px;
  padding-top: 8px;
  border-top: 1px solid #dbdbdb;
  align-items: stretch;
}

.product-card__actions .btn {
  min-height: 42px;
  height: 42px;
  padding: 0 12px;
  font-size: 12px;
}

.product-card__actions .btn--brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 4px;
  background: var(--accent);
  border-color: var(--accent);
  box-shadow: none;
}

.product-card__actions .btn--brand:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  transform: none;
}

.product-card__wish {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #dbdbdb;
  border-radius: 6px;
  background: var(--surface);
  color: #9a9a9a;
  line-height: 1;
  cursor: pointer;
  width: 50px;
  min-height: 42px;
  height: 42px;
  padding: 0;
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.product-card__wish:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.product-card__wish.is-active {
  border-color: var(--accent);
  background: var(--accent-soft);
  color: var(--accent);
}

.btn__icon,
.btn__label,
.product-card__wish-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn__icon {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.btn__label {
  line-height: 1;
}

.product-card__wish-icon {
  width: 22px;
  height: 22px;
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.product-card__wish.is-active .product-card__wish-icon {
  fill: currentColor;
}

.product-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.product-badge {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 5px 8px 3px;
  border-radius: 4px;
  font-size: 10px;
  font-weight: 600;
  line-height: 1;
}

.product-badge--top {
  background: #4d8a52;
  color: #ffffff;
}

.product-badge--sale {
  background: #fb3f4c;
  color: #ffffff;
}

.product-badge--new {
  background: #2f78c8;
  color: #ffffff;
}

.product-badge--out {
  background: #1f2937;
  color: #ffffff;
}

.products-slider .product-card h3 {
  font-size: 24px;
  line-height: 1.15;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.products-slider .product-card p {
  margin: 0;
  color: #333333;
  line-height: 1.45;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 4.35em;
}

.products-slider .btn--brand {
  padding: 12px 18px;
}

.products-slider .price-row {
  align-items: end;
  gap: 12px;
}

.products-slider .price {
  font-size: 22px;
}

.products-slider .old-price {
  font-size: 16px;
}

.price {
  font-size: 24px;
  font-weight: 800;
}

.old-price {
  color: var(--muted);
  text-decoration: line-through;
}

.split {
  align-items: start;
}

.split__main {
  flex: 1;
}

.split__side {
  width: 320px;
  flex: 0 0 320px;
}

.info-card,
.sidebar-card,
.empty-card {
  padding: 24px;
}

.info-card--dark {
  background:
    linear-gradient(135deg, rgba(17, 17, 17, 0.98), rgba(52, 43, 38, 0.95)),
    linear-gradient(135deg, #111111, #3d342f);
  color: #ffffff;
}

.info-card--about {
  padding: 28px;
}

.info-card--dark p,
.info-card--dark li {
  color: rgba(255, 246, 239, 0.82);
}

.feature-list .pill {
  background: rgba(201, 106, 47, 0.2);
  color: #fff4ec;
}

.brand-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.brand-tile {
  padding: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.brand-tile img {
  width: 100%;
  max-width: 180px;
  height: auto;
}

.brand-tile--rich {
  position: relative;
  min-height: 170px;
  overflow: hidden;
  padding: 0;
}

.brand-tile__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-tile__logo {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  max-width: none;
  width: auto;
  height: 74px;
  padding: 14px 18px;
  border-radius: 20px;
  background: rgba(17, 17, 17, 0.92);
  object-fit: contain;
}

.newsletter {
  padding: 28px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 22px;
  align-items: center;
}

.newsletter-form {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.newsletter-form input {
  flex: 1;
  min-width: 220px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 14px 18px;
  font-size: 15px;
}

.section--faq {
  padding-top: 6px;
}

.faq {
  padding: 18px;
  display: grid;
  gap: 14px;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: 22px;
  background: linear-gradient(180deg, #ffffff 0%, #fbf8f5 100%);
  box-shadow: 0 10px 30px rgba(27, 18, 12, 0.08);
  overflow: hidden;
}

.faq-item summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 24px 26px;
  cursor: pointer;
  font-size: 24px;
  font-weight: 800;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item[open] summary {
  color: var(--accent-dark);
}

.faq-item__icon {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(201, 106, 47, 0.28);
  background: rgba(201, 106, 47, 0.08);
  color: var(--accent-dark);
  font-size: 24px;
  line-height: 1;
  flex: 0 0 auto;
  transition: transform 0.2s ease;
}

.faq-item[open] .faq-item__icon {
  transform: rotate(45deg);
}

.faq-item__body {
  padding: 0 26px 24px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.site-form {
  display: grid;
  gap: 16px;
}

.site-form label {
  display: grid;
  gap: 8px;
}

.site-form span {
  font-weight: 600;
}

.site-form input,
.site-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 14px 16px;
  font: inherit;
  background: var(--surface);
}

.site-form textarea {
  resize: vertical;
  min-height: 120px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.form-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.form-note {
  color: var(--muted);
  font-size: 14px;
}

.site-toast {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 80;
  max-width: 360px;
  padding: 14px 18px;
  border-radius: 18px;
  background: #111111;
  color: #ffffff;
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateY(14px);
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.site-toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.map-placeholder {
  display: flex;
  align-items: end;
  padding: 24px;
}

.cart-checkout-form {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.footer {
  position: relative;
  margin-top: 40px;
  background: #ffffff;
  color: #111111;
}

.footer__curve {
  display: none;
}

.footer__top {
  position: relative;
  z-index: 1;
  padding: 64px 0 30px;
  align-items: start;
}

.footer__brand {
  flex: 1.25;
}

.footer__cols {
  flex: 2.1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.footer-card {
  background: #ffffff;
  border: 1px solid #e8edf5;
  border-radius: 24px;
  padding: 22px;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.05);
}

.footer-card--brand {
  min-height: 100%;
}

.footer-mark {
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 16px;
  align-items: center;
  margin-bottom: 18px;
}

.footer-mark__crest {
  width: 74px;
  height: 74px;
  border-radius: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #24324a, #43557a);
  color: #ffffff;
  font-size: 28px;
  font-weight: 900;
  letter-spacing: 0.06em;
}

.footer-mark__title {
  font-size: 28px;
  font-weight: 800;
  color: #111111;
}

.footer-mark__subtitle {
  margin-top: 4px;
  color: #6b7280;
  font-size: 14px;
}

.footer-links--stack {
  display: grid;
  gap: 12px;
}

.footer-links a {
  color: #4b5563;
}

.footer-card p,
.footer-card span,
.footer__brand p {
  color: #5f6673;
}

.footer__bottom {
  padding: 18px 0 28px;
  justify-content: space-between;
  border-top: 1px solid #e8edf5;
  flex-wrap: wrap;
}

.page-layout {
  padding: 10px 0 30px;
  align-items: start;
}

.breadcrumbs {
  flex-direction: row;
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 14px;
}

.content-card,
.product-layout {
  padding: 28px;
}

.content-card h2,
.content-card h3,
.product-description h3 {
  margin-top: 0;
}

.content-card p,
.content-card li,
.product-description p,
.product-description li {
  line-height: 1.7;
  color: #333333;
}

.content-card ul,
.content-card ol,
.product-description ul {
  padding-left: 20px;
}

.filter-bar {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.product-layout {
  display: grid;
  grid-template-columns: minmax(300px, 470px) minmax(0, 1fr);
  gap: 34px;
  max-width: 1180px;
  margin: 0 auto;
  align-items: start;
}

.product-gallery {
  display: grid;
  gap: 16px;
  justify-self: center;
  width: 100%;
  max-width: 470px;
}

.product-gallery__main {
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px;
  border-radius: 24px;
  overflow: hidden;
  background:
    radial-gradient(circle at top, rgba(255, 255, 255, 0.85), transparent 35%),
    linear-gradient(135deg, #f4f4f4, #dddddd);
}

.product-gallery__thumbs {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.product-gallery__thumbs div {
  aspect-ratio: 1 / 1;
  border-radius: 18px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  background: linear-gradient(135deg, #f8f8f8, #e2e2e2);
}

.product-gallery__thumbs div:hover {
  transform: translateY(-2px);
}

.product-gallery__thumbs div.is-active {
  border-color: var(--brand);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.18);
}

.product-meta {
  gap: 14px;
}

.product-detail-page .page-layout {
  padding-top: 22px;
}

.single-product-section {
  max-width: 1180px;
  margin: 28px auto 0;
}

.section-head--compact {
  margin-bottom: 14px;
}

.section-head--compact h2 {
  margin: 4px 0 0;
}

.eyebrow--soft {
  margin-bottom: 0;
  background: var(--accent-soft);
  border-color: #ffd7ce;
  color: var(--accent-dark);
}

.product-description {
  padding: 30px 34px;
}

.product-description__body {
  max-width: 920px;
}

.product-description__body p,
.product-description__body li,
.product-description__body h1,
.product-description__body h2,
.product-description__body h3,
.product-description__body h4,
.product-description__body h5,
.product-description__body h6 {
  color: #303846;
  font-size: 17px;
  line-height: 1.75;
  font-weight: 400;
}

.product-description__body p,
.product-description__body h1,
.product-description__body h2,
.product-description__body h3,
.product-description__body h4,
.product-description__body h5,
.product-description__body h6 {
  margin: 0 0 14px;
}

.product-description__body p:last-child,
.product-description__body h1:last-child,
.product-description__body h2:last-child,
.product-description__body h3:last-child,
.product-description__body h4:last-child,
.product-description__body h5:last-child,
.product-description__body h6:last-child {
  margin-bottom: 0;
}

.product-description__body strong,
.product-description__body b {
  font-weight: 600;
}

.product-description__body span {
  color: inherit;
  font: inherit;
}

.spec-list div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
}

.product-purchase {
  padding: 22px;
  background: var(--surface-soft);
  border: 1px solid var(--line);
  border-radius: 24px;
}

.product-purchase .price {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 8px 12px;
  margin: 0 0 18px;
  color: #111827;
  font-size: clamp(28px, 5vw, 36px);
  line-height: 1.15;
  font-weight: 800;
}

.product-purchase .price del {
  order: 1;
  color: #7b8494;
  font-size: 18px;
  font-weight: 700;
  text-decoration-thickness: 2px;
}

.product-purchase .price ins {
  order: 2;
  color: var(--accent-dark);
  text-decoration: none;
}

.product-purchase .price > .woocommerce-Price-amount {
  font-weight: 800;
}

.product-purchase .screen-reader-text,
.product-card__price .screen-reader-text {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(1px, 1px, 1px, 1px) !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.policy-list {
  flex-direction: column;
  gap: 12px;
}

.policy-list .info-card {
  padding: 20px 22px;
}

.contact-card iframe,
.map-placeholder {
  width: 100%;
  min-height: 280px;
  border: 0;
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(40, 40, 40, 0.12), rgba(180, 180, 180, 0.22)),
    #f3f3f3;
}

.story-image {
  min-height: 360px;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.story-image--about {
  min-height: 0;
  aspect-ratio: 16 / 8.8;
  margin-bottom: 22px;
}

.feature-list--about {
  margin-top: 18px;
}

.cart-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) 360px;
  gap: 24px;
}

.cart-items {
  display: grid;
  gap: 18px;
}

.cart-item {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 18px;
  padding: 18px;
}

.cart-item__media img {
  width: 120px;
  height: 120px;
  border-radius: 18px;
  object-fit: cover;
}

.cart-item__body h3 {
  margin: 0 0 10px;
}

.cart-item__body p {
  margin: 0 0 14px;
  color: var(--muted);
}

.cart-item__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.cart-controls {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
}

.qty-btn,
.remove-btn {
  border: 0;
  background: transparent;
  cursor: pointer;
  color: var(--text);
  font: inherit;
}

.qty-btn {
  font-size: 22px;
  line-height: 1;
}

.remove-btn {
  color: var(--muted);
  text-decoration: underline;
}

.cart-summary {
  padding: 24px;
  height: fit-content;
  position: sticky;
  top: 110px;
}

.cart-summary h3 {
  margin-top: 0;
}

.cart-summary__row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

.cart-summary .btn {
  width: 100%;
  margin-top: 18px;
}

.table-like {
  display: grid;
  gap: 12px;
}

.table-like div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 15px 18px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--surface-soft);
}

@media (max-width: 1100px) {
  .cart-layout {
    grid-template-columns: 1fr;
  }

  .cart-summary {
    position: static;
  }

  .products-slider {
    grid-auto-columns: calc((100% - 16px) / 2);
  }

  .categories-slider {
    grid-auto-columns: calc((100% - 32px) / 3);
  }

  .products-slider--shelf {
    grid-auto-columns: 244px;
  }

  .home-hero-grid,
  .shelf-grid--wide,
  .shelf-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-main-card {
    grid-template-columns: 1fr;
    min-height: auto;
    gap: 24px;
  }

  .hero-main-image {
    max-width: 360px;
    margin: 0 auto;
  }

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

  .brand-strip--silpo {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .grid--categories,
  .grid--products {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .content-card .grid--products {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .grid--promo,
  .grid--info,
  .grid--articles,
  .grid--contacts,
  .footer__cols,
  .product-layout {
    grid-template-columns: 1fr;
  }

  .hero,
  .split,
  .page,
  .footer__top {
    flex-direction: column;
  }

  .hero__sidebar,
  .split__side {
    width: 100%;
    flex-basis: auto;
  }

  .brand-strip,
  .newsletter,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .header__actions {
    min-width: 0;
  }
}

@media (max-width: 820px) {
  .topbar {
    display: none;
  }

  .page-layout,
  .split {
    display: flex;
    flex-direction: column;
  }

  .split__main,
  .split__side,
  .footer__brand,
  .footer__cols,
  .footer-card,
  .contact-card,
  .sidebar-card,
  .content-card,
  .page-hero__card,
  .newsletter {
    width: 100%;
    max-width: 100%;
  }

  .cart-item {
    grid-template-columns: 1fr;
  }

  .slider-actions {
    width: 100%;
    justify-content: space-between;
    flex-wrap: wrap;
  }

  .products-slider {
    display: flex;
    gap: 14px;
    max-width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    overscroll-behavior-inline: contain;
    scroll-snap-type: x proximity;
  }

  .categories-slider {
    display: flex;
    gap: 14px;
    max-width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    overscroll-behavior-inline: contain;
    scroll-snap-type: x proximity;
  }

  .products-slider--shelf {
    gap: 14px;
  }

  .products-slider > *,
  .categories-slider > * {
    flex: 0 0 86%;
    max-width: 86%;
    scroll-snap-align: start;
  }

  .products-slider--shelf > * {
    flex-basis: 226px;
    max-width: 226px;
  }

  .categories-slider-wrap,
  .products-slider-wrap {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    overflow-x: clip;
    contain: layout paint;
  }

  .categories-slider--all {
    display: grid;
    grid-auto-flow: row;
    grid-auto-columns: auto;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    max-width: 100%;
    overflow: visible;
    scroll-snap-type: none;
  }

  .categories-slider--all > * {
    flex: none;
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .header__inner--market {
    flex-wrap: wrap;
  }

  .brand__title--market {
    font-size: 34px;
  }

  .catalog-trigger--market,
  .header-chip--market,
  .search--market,
  .search--market input {
    width: 100%;
  }

  .home-hero-grid,
  .hero-side-grid,
  .shelf-grid,
  .shelf-grid--wide,
  .brand-strip--silpo {
    grid-template-columns: 1fr;
  }

  .hero-main-card,
  .silpo-shelf {
    padding: 22px;
  }

  .hero-main-copy h1 {
    font-size: 34px;
  }

  .product-add {
    top: 180px;
  }

  .header__inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto auto;
    gap: 8px;
    align-items: center;
    padding: 8px 0 10px;
  }

  .brand {
    min-width: 0;
    width: auto;
    order: 1;
  }

  .catalog-button {
    order: 4;
    grid-column: 1 / -1;
    min-width: 0;
    width: 100%;
    height: 40px;
    padding: 0 12px;
    font-size: 14px;
    border-radius: 12px;
  }

  .search,
  .header__actions {
    width: 100%;
  }

  .header__actions {
    order: 2;
    grid-column: auto;
    width: auto;
  }

  .menu-toggle {
    order: 3;
  }

  .search {
    order: 5;
    width: 100%;
  }

  .search,
  .main-nav {
    grid-column: 1 / -1;
  }

  .search input {
    min-height: 40px;
    padding: 10px 50px 10px 14px;
    font-size: 14px;
    border-radius: 12px;
  }

  .search-submit {
    width: 34px;
    height: 34px;
    right: 4px;
    border-radius: 10px;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    min-width: 54px;
    margin-left: 0;
    padding: 0 12px;
    border-radius: 12px;
    white-space: nowrap;
  }

  .main-nav {
    display: none;
  }

  .main-nav.is-open {
    display: block;
  }

  .main-nav__inner {
    flex-direction: column;
    align-items: stretch;
  }

  .main-nav__inner .menu {
    flex-direction: column;
    align-items: stretch;
  }

  .main-nav__inner .menu-item a {
    width: 100%;
  }

  .topbar__inner,
  .header__actions,
  .breadcrumbs,
  .price-row,
  .cart-item__meta {
    gap: 8px;
  }

  .icon-chip {
    flex: 0 0 40px;
    min-width: 0;
    width: 40px;
    height: 40px;
    padding: 0;
    border-radius: 12px;
  }

  .header__actions .icon-chip:nth-child(1),
  .header__actions .icon-chip:nth-child(3) {
    display: none;
  }

  .search-submit svg,
  .icon-chip svg {
    width: 20px;
    height: 20px;
  }

  .hero {
    padding-top: 18px;
  }

  .hero-banner {
    order: 1;
  }

  .hero__sidebar {
    order: 2;
  }

  .hero-banner {
    min-height: 0;
    padding: 28px 24px;
  }

  .hero-banner p,
  .page-hero__card p {
    font-size: 15px;
  }

  .section-head {
    align-items: start;
    flex-direction: column;
  }

  .section-head .btn {
    width: 100%;
  }

  .grid--categories,
  .grid--products {
    grid-template-columns: 1fr;
  }

  .content-card .grid--products {
    grid-template-columns: 1fr;
  }

  .hero-banner,
  .page-hero__card,
  .content-card,
  .product-layout {
    padding: 24px;
  }

  .product-card,
  .promo-card,
  .info-card,
  .article-card,
  .contact-card,
  .sidebar-card,
  .cart-item {
    padding: 18px;
  }

  .products-slider .product-card {
    padding: 10px;
    gap: 8px;
  }

  .product-card--shelf {
    padding: 8px 8px 10px;
    min-height: 336px;
  }

  .category-showcase {
    padding: 12px;
    gap: 12px;
  }

  .category-showcase__pill {
    left: 14px;
    right: 14px;
    bottom: 14px;
    min-height: 52px;
    font-size: 14px;
  }

  .category-showcase__caption {
    min-height: auto;
    font-size: 14px;
  }

  .info-card--about {
    padding: 18px;
  }

  .story-image--about {
    aspect-ratio: 4 / 3;
    margin-bottom: 18px;
    border-radius: 20px;
  }

  .products-slider .product-image {
    aspect-ratio: 1 / 0.78;
  }

  .products-slider .product-card h3 {
    font-size: 20px;
  }

  .product-card--shelf h3 {
    font-size: 16px;
  }

  .products-slider .product-card p {
    min-height: auto;
    -webkit-line-clamp: 2;
  }

  .products-slider .price {
    font-size: 20px;
  }

  .product-card--shelf .price {
    font-size: 18px;
  }

  .promo-card {
    min-height: 0;
  }

  .promo-card__image {
    aspect-ratio: 16 / 9.5;
  }

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

  .brand-tile--rich {
    min-height: 140px;
  }

  .brand-tile__logo {
    left: 12px;
    right: 12px;
    bottom: 12px;
    height: 58px;
    padding: 10px 12px;
  }

  .newsletter {
    padding: 24px;
  }

  .newsletter-form input,
  .newsletter-form .btn {
    width: 100%;
  }

  .product-gallery__thumbs {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
  }

  .cart-item__media img {
    width: 100%;
    height: 220px;
  }

  .cart-item__meta {
    flex-direction: column;
    align-items: stretch;
  }

  .cart-controls {
    justify-content: center;
  }

  .cart-summary {
    padding: 20px;
  }

  .search-results {
    border-radius: 18px;
    padding: 8px;
  }

  .footer__bottom {
    flex-direction: column;
    align-items: stretch;
  }

  .socials {
    width: 100%;
  }

  .faq-item summary {
    padding: 18px 18px;
    font-size: 18px;
  }

  .faq-item__body {
    padding: 0 18px 18px;
    font-size: 15px;
  }

  .faq-item__icon {
    width: 34px;
    height: 34px;
    font-size: 20px;
  }
}

@media (max-width: 560px) {
  .container {
    width: 100%;
    padding-left: 12px;
    padding-right: 12px;
  }

  .brand__title {
    font-size: 22px;
    line-height: 1.1;
  }

  .brand__subtitle {
    display: none;
  }

  .catalog-button {
    width: 100%;
    height: 38px;
    border-radius: 12px;
  }

  .icon-chip {
    flex: 0 0 38px;
    width: 38px;
    height: 38px;
    border-radius: 12px;
  }

  .menu-toggle {
    height: 38px;
    min-width: 50px;
    padding: 0 10px;
    font-size: 13px;
  }

  .icon-chip--cart span {
    font-size: 14px;
  }

  .products-slider {
    gap: 12px;
  }

  .categories-slider {
    gap: 12px;
  }

  .products-slider--shelf {
    gap: 12px;
  }

  .products-slider > *,
  .categories-slider > * {
    flex-basis: 86%;
    max-width: 86%;
  }

  .products-slider--shelf > * {
    flex-basis: 214px;
    max-width: 214px;
  }

  .categories-slider--all {
    gap: 12px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .categories-slider--all > * {
    flex-basis: auto;
    max-width: 100%;
  }

  .slider-arrow {
    width: 42px;
    height: 42px;
    font-size: 26px;
  }

  .product-card--shelf {
    min-height: 300px;
  }

  .product-card--shelf .product-image {
    aspect-ratio: 1 / 0.8;
    height: 184px;
    padding: 0;
  }

  .product-card__sku {
    font-size: 12px;
  }

  .product-card--shelf h3 {
    font-size: 15px;
    min-height: 2.1em;
  }

  .product-card__actions .btn {
    min-height: 40px;
    height: 40px;
    padding: 9px 12px;
    font-size: 13px;
  }

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

  .product-card__wish {
    width: 46px;
    min-height: 40px;
    height: 40px;
  }

  .hero-banner h1,
  .page-hero h1 {
    font-size: 30px;
  }

  .faq {
    padding: 12px;
    gap: 12px;
  }

  .faq-item {
    border-radius: 18px;
  }

  .faq-item summary {
    padding: 16px;
    font-size: 16px;
    gap: 12px;
  }

  .faq-item__body {
    padding: 0 16px 16px;
    font-size: 14px;
    line-height: 1.6;
  }

  .footer__curve {
    top: -18px;
    height: 38px;
  }

  .footer__top {
    padding-top: 48px;
  }

  .footer-mark {
    grid-template-columns: 56px 1fr;
    gap: 12px;
  }

  .footer-mark__crest {
    width: 56px;
    height: 56px;
    border-radius: 18px;
    font-size: 22px;
  }

  .footer-mark__title {
    font-size: 22px;
  }

  .footer-mark__subtitle {
    font-size: 12px;
  }

  .breadcrumbs {
    font-size: 13px;
  }

  .brand-strip {
    grid-template-columns: 1fr;
  }

  .story-image--about {
    aspect-ratio: 1 / 1.02;
  }

  .feature-list--about {
    gap: 10px;
  }

  .cart-item__media img {
    height: 180px;
  }

  .footer__top,
  .footer__bottom {
    gap: 14px;
  }

  .footer-card {
    border-radius: 18px;
  }
}

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

.site-main {
  min-height: 50vh;
}

.search form,
.woocommerce-product-search,
.search-form {
  margin: 0;
  position: relative;
}

.search .search-field {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 16px;
  padding: 15px 68px 15px 20px;
  font-size: 15px;
  background: #ffffff;
  box-shadow: none;
}

.search .search-field:focus {
  outline: none;
  border-color: rgba(47, 59, 82, 0.3);
  box-shadow: 0 0 0 4px rgba(36, 50, 74, 0.08);
}

.menu--primary,
.footer-links .menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

.main-nav__inner .menu {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}

.main-nav__inner .menu-item a {
  display: inline-flex;
  padding: 10px 12px;
  white-space: nowrap;
  color: #5a6272;
  font-weight: 600;
  border-radius: 12px;
  text-decoration: none;
}

.main-nav__inner .current-menu-item > a,
.main-nav__inner .current_page_item > a {
  color: #101623;
  font-weight: 700;
  background: #f3f6fb;
}

@media (max-width: 820px) {
  .site-header .header__inner {
    gap: 6px;
    padding-top: 7px;
    padding-bottom: 8px;
  }

  .brand__title {
    font-size: 22px;
    line-height: 1.08;
  }

  .catalog-button {
    height: 36px;
    border-radius: 11px;
  }

  .search .search-field {
    min-height: 38px;
    border-radius: 12px;
    padding: 9px 46px 9px 12px;
    font-size: 13px;
  }

  .search-submit {
    width: 32px;
    height: 32px;
    right: 4px;
    border-radius: 9px;
  }

  .icon-chip {
    flex-basis: 36px;
    width: 36px;
    height: 36px;
    border-radius: 11px;
  }

  .menu-toggle {
    height: 36px;
    min-width: 48px;
    border-radius: 11px;
    font-size: 13px;
  }
}

.footer-links .menu {
  display: grid;
  gap: 12px;
}

.footer-links .menu-item a {
  color: #4b5563;
  text-decoration: none;
}

.single-product-title {
  font-size: clamp(34px, 4vw, 42px);
  margin: 0;
}

.product-summary-copy p {
  color: var(--muted);
}

.woocommerce ul.products,
.woocommerce-page ul.products {
  list-style: none;
  margin: 0;
  padding: 0;
}

.woocommerce .related.products ul.products,
.woocommerce .upsells.products ul.products {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.woocommerce ul.products::before,
.woocommerce ul.products::after,
.woocommerce-page ul.products::before,
.woocommerce-page ul.products::after {
  content: "" !important;
  display: none !important;
}

.product-related-section .related.products > h2 {
  display: none;
}

.shop-grid {
  align-items: start;
}

.shop-grid .product {
  margin: 0;
}

.product-card__price del {
  color: #6b7280;
  opacity: 1;
}

.product-card__price ins {
  text-decoration: none;
}

.product-card__price .woocommerce-Price-amount {
  font-weight: 700;
}

.product-card__actions .added_to_cart {
  display: none;
}

.product-card__actions .button,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 14px;
  border-radius: 8px;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: #ffffff;
  font-weight: 700;
  transition: 0.2s ease;
}

.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce #respond input#submit:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  color: #ffffff;
}

.woocommerce .button.alt,
.woocommerce button.button.alt,
.woocommerce input.button.alt {
  background: var(--brand);
  border-color: var(--brand);
}

.woocommerce .button.alt:hover,
.woocommerce button.button.alt:hover,
.woocommerce input.button.alt:hover {
  background: var(--brand-dark);
  border-color: var(--brand-dark);
}

.woocommerce .quantity .qty,
.woocommerce-page .quantity .qty,
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select,
.coupon .input-text {
  min-height: 46px;
  border: 1px solid #d8dfeb;
  border-radius: 12px;
  padding: 10px 14px;
  background: #ffffff;
  color: var(--text);
  width: 100%;
}

.woocommerce form .form-row textarea {
  min-height: 112px;
  resize: vertical;
}

.woocommerce form .form-row label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
}

.woocommerce-info,
.woocommerce-message,
.woocommerce-error {
  list-style: none;
  margin: 0 0 20px;
  padding: 16px 18px;
  border-radius: 16px;
  border: 1px solid #e6ebf4;
  background: #ffffff;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.05);
}

.woocommerce-error {
  border-color: #f6c7c2;
  color: #b42318;
}

.woocommerce-message {
  border-color: #cbe8d2;
  color: #1f7a36;
}

.woocommerce table.shop_table,
.woocommerce-page table.shop_table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border: 1px solid #e8edf5;
  border-radius: 18px;
  overflow: hidden;
  background: #ffffff;
}

.woocommerce table.shop_table th,
.woocommerce table.shop_table td {
  padding: 14px;
  border-bottom: 1px solid #eef2f8;
}

.woocommerce table.shop_table tr:last-child td {
  border-bottom: 0;
}

.cart-coupon {
  display: grid;
  gap: 10px;
  margin: 14px 0;
}

.checkout-columns {
  display: grid;
  gap: 20px;
}

.checkout-summary .woocommerce-checkout-review-order-table {
  margin-bottom: 18px;
}

.nova-poshta-fields {
  position: relative;
  margin-top: 22px;
  padding: 20px;
  border: 1px solid #e8edf5;
  border-radius: 18px;
  background: #fbfcff;
}

.nova-poshta-fields h3 {
  margin: 0 0 8px;
  font-size: 20px;
}

.nova-poshta-fields > p:first-of-type {
  margin: 0 0 18px;
  color: var(--muted);
}

.nova-poshta-fields .form-row {
  position: relative;
}

.np-suggest {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% - 2px);
  max-height: 260px;
  overflow: auto;
  border: 1px solid #dbe3ef;
  border-radius: 14px;
  background: #ffffff;
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.14);
  z-index: 30;
}

.np-suggest__item,
.np-suggest__empty {
  width: 100%;
  padding: 12px 14px;
  border: 0;
  border-bottom: 1px solid #edf1f7;
  background: transparent;
  color: var(--text);
  font: inherit;
  text-align: left;
}

.np-suggest__item {
  cursor: pointer;
}

.np-suggest__item:hover,
.np-suggest__item:focus {
  background: #f4f7fb;
}

.np-suggest__item:last-child {
  border-bottom: 0;
}

.np-suggest__empty {
  color: var(--muted);
}

.shipping-extra-fields.is-hidden {
  display: none;
}

.ukrposhta-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: minmax(120px, 0.75fr) minmax(0, 1.25fr);
}

.woocommerce-checkout-payment ul,
.woocommerce-account .woocommerce-MyAccount-content ul {
  padding-left: 18px;
}

.account-page .woocommerce-MyAccount-content > *:first-child {
  margin-top: 0;
}

.account-page .woocommerce-MyAccount-navigation {
  margin-bottom: 0;
}

.category-link.is-active {
  background: #eef4ff;
  border-color: #cfdbef;
  color: var(--brand);
}

.empty-card {
  padding: 28px;
  border: 1px dashed #d8dfeb;
  border-radius: 20px;
  text-align: center;
  background: #fbfcfe;
}

.empty-card h3 {
  margin-top: 0;
}

.site-toast {
  position: fixed;
  right: 20px;
  bottom: 20px;
  max-width: 320px;
  padding: 14px 16px;
  border-radius: 16px;
  background: #111827;
  color: #ffffff;
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.22);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 60;
}

.site-toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.price .screen-reader-text,
.product-card__price .screen-reader-text,
.product-purchase .screen-reader-text,
.woocommerce .price .screen-reader-text {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

@media (max-width: 820px) {
  .account-page,
  .cart-layout {
    grid-template-columns: 1fr;
  }

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

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

  .woocommerce .related.products ul.products,
  .woocommerce .upsells.products ul.products {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
