.wm-home {
  direction: rtl;
  background:
    linear-gradient(180deg, rgba(200, 155, 60, 0.045), rgba(200, 155, 60, 0) 260px),
    var(--wm-color-bg);
  padding-bottom: 64px;
  --wm-home-shadow-sm: 0 10px 26px rgba(17, 24, 39, 0.045);
  --wm-home-shadow-md: 0 16px 36px rgba(17, 24, 39, 0.07);
  --wm-home-shadow-accent: 0 16px 34px rgba(200, 155, 60, 0.13);
  --wm-home-hover-border: rgba(200, 155, 60, 0.5);
  --wm-home-motion: 260ms cubic-bezier(0.22, 1, 0.36, 1);
}

.wm-home,
.wm-home * {
  box-sizing: border-box;
}

.wm-home-hero,
.wm-home-section,
.wm-product-carousel {
  width: min(100% - 32px, var(--wm-content-width, 1200px));
  margin: 0 auto;
}

.wm-home-hero {
  position: relative;
  margin-top: 24px;
  overflow: hidden;
  border: 1px solid rgba(229, 224, 216, 0.95);
  border-radius: 28px;
  background:
    radial-gradient(circle at 14% 18%, rgba(200, 155, 60, 0.13), transparent 30%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(249, 248, 245, 0.96));
  box-shadow: 0 20px 48px rgba(17, 24, 39, 0.08);
}

.wm-home-hero__track {
  position: relative;
}

.wm-home-hero__slide {
  display: none;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: 30px;
  align-items: center;
  min-height: 500px;
  padding: 44px 48px 58px;
  opacity: 0;
  transform: translateY(8px);
}

.wm-home-hero__slide.is-active,
.wm-home-hero__slide.is-entering,
.wm-home-hero__slide.is-leaving {
  display: grid;
}

.wm-home-hero__slide.is-active {
  position: relative;
  z-index: 1;
  opacity: 1;
  transform: translateY(0);
}

.wm-home-hero__slide.is-entering {
  z-index: 1;
  animation: wm-home-hero-slide-in 460ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.wm-home-hero__slide.is-leaving {
  position: absolute;
  inset: 0;
  z-index: 0;
  animation: wm-home-hero-slide-out 300ms ease both;
}

.wm-home-hero__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  text-align: right;
}

.wm-home-hero__content > * {
  transition: opacity var(--wm-home-motion), transform var(--wm-home-motion);
}

.wm-home-hero__slide.is-entering .wm-home-hero__eyebrow {
  animation: wm-home-hero-item-in 360ms 70ms both;
}

.wm-home-hero__slide.is-entering .wm-home-hero__title {
  animation: wm-home-hero-item-in 400ms 120ms both;
}

.wm-home-hero__slide.is-entering .wm-home-hero__subtitle {
  animation: wm-home-hero-item-in 420ms 170ms both;
}

.wm-home-hero__slide.is-entering .wm-home-hero__actions {
  animation: wm-home-hero-item-in 430ms 220ms both;
}

.wm-home-hero__eyebrow {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  padding: 5px 12px;
  border: 1px solid rgba(200, 155, 60, 0.25);
  border-radius: var(--wm-radius-pill);
  background: rgba(200, 155, 60, 0.09);
  color: var(--wm-color-accent-dark);
  font-size: 12px;
  font-weight: 800;
}

.wm-home-hero__title {
  max-width: 620px;
  margin: 0;
  color: var(--wm-color-primary);
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 850;
  line-height: 1.45;
}

.wm-home-hero__subtitle {
  max-width: 560px;
  margin: 0;
  color: #4b5563;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.95;
}

.wm-home-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
}

.wm-home-button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border-radius: 15px;
  font-size: 14px;
  font-weight: 850;
  text-decoration: none;
  transition: transform var(--wm-home-motion), color var(--wm-home-motion), background var(--wm-home-motion), border-color var(--wm-home-motion), box-shadow var(--wm-home-motion);
}

.wm-home-button--primary {
  background: linear-gradient(135deg, #111827, #26364d);
  color: #fff;
  box-shadow: 0 16px 30px rgba(17, 24, 39, 0.2), 0 0 0 1px rgba(200, 155, 60, 0.08) inset;
}

.wm-home-button--outline {
  border: 1px solid var(--wm-color-border);
  background: rgba(255, 255, 255, 0.84);
  color: var(--wm-color-primary);
}

.wm-home-button:hover,
.wm-home-button:focus {
  transform: translateY(-1px);
}

.wm-home-button--primary:hover,
.wm-home-button--primary:focus {
  color: #fff;
  box-shadow: 0 20px 38px rgba(17, 24, 39, 0.24), var(--wm-home-shadow-accent);
}

.wm-home-button--outline:hover,
.wm-home-button--outline:focus {
  border-color: var(--wm-home-hover-border);
  color: var(--wm-color-accent-dark);
  box-shadow: 0 12px 24px rgba(200, 155, 60, 0.1);
}

.wm-home-hero__visual {
  min-height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid rgba(229, 224, 216, 0.92);
  border-radius: 24px;
  background:
    radial-gradient(circle at 50% 36%, rgba(200, 155, 60, 0.11), transparent 38%),
    linear-gradient(180deg, #fff, #f9f8f5);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.85);
}

.wm-home-hero__visual img {
  display: block;
  width: 100%;
  max-height: 430px;
  object-fit: contain;
  transform: translateY(0) scale(1);
  transition: transform 520ms cubic-bezier(0.22, 1, 0.36, 1), opacity 420ms ease;
}

.wm-home-hero__slide.is-entering .wm-home-hero__visual img,
.wm-home-hero__slide.is-entering .wm-home-hero__placeholder {
  animation: wm-home-hero-visual-in 520ms 90ms both;
}

.wm-home-hero__placeholder {
  width: 72%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200, 155, 60, 0.18), rgba(17, 24, 39, 0.05) 55%, rgba(255, 255, 255, 0));
}

.wm-home-hero__nav {
  position: absolute;
  right: 22px;
  bottom: 12px;
  left: 22px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  pointer-events: none;
  z-index: 2;
}

.wm-home-hero__arrow,
.wm-home-hero__dot {
  pointer-events: auto;
}

.wm-home-hero__arrow,
.wm-product-carousel__arrow {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(229, 224, 216, 0.95);
  border-radius: var(--wm-radius-pill);
  background: rgba(255, 255, 255, 0.94);
  color: var(--wm-color-primary);
  font-size: 28px;
  line-height: 1;
  box-shadow: var(--wm-home-shadow-sm);
  cursor: pointer;
  transition: transform var(--wm-home-motion), color var(--wm-home-motion), border-color var(--wm-home-motion), box-shadow var(--wm-home-motion), background var(--wm-home-motion);
}

.wm-home-hero__arrow:hover,
.wm-home-hero__arrow:focus,
.wm-product-carousel__arrow:hover,
.wm-product-carousel__arrow:focus {
  border-color: var(--wm-home-hover-border);
  background: #fff;
  color: var(--wm-color-accent-dark);
  box-shadow: var(--wm-home-shadow-accent);
  transform: translateY(-1px);
}

.wm-home-hero__dots {
  display: inline-flex;
  gap: 7px;
}

.wm-home-hero__dot {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(17, 24, 39, 0.2);
  transition: width var(--wm-home-motion), background var(--wm-home-motion), opacity var(--wm-home-motion);
}

.wm-home-hero__dot.is-active {
  width: 24px;
  border-radius: var(--wm-radius-pill);
  background: var(--wm-color-accent);
}

.wm-home-section,
.wm-product-carousel {
  margin-top: 54px;
}

.wm-home.is-motion-ready .wm-home-section,
.wm-home.is-motion-ready .wm-product-carousel {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 420ms ease, transform 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

.wm-home.is-motion-ready .wm-home-section.is-visible,
.wm-home.is-motion-ready .wm-product-carousel.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.wm-home-section__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 14px;
}

.wm-home-section__title {
  position: relative;
  width: fit-content;
  margin: 0;
  color: var(--wm-color-primary);
  font-size: 24px;
  font-weight: 850;
  line-height: 1.55;
}

.wm-home-section__title::after {
  content: "";
  display: block;
  width: 42px;
  height: 3px;
  margin-top: 7px;
  border-radius: var(--wm-radius-pill);
  background: linear-gradient(90deg, var(--wm-color-accent), rgba(200, 155, 60, 0.2));
}

.wm-home-section__subtitle {
  max-width: 640px;
  margin: 5px 0 0;
  color: var(--wm-color-muted);
  font-size: 14px;
  line-height: 1.9;
}

.wm-home-brands__grid,
.wm-home-styles__grid,
.wm-home-trust__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.wm-home-brand-card,
.wm-home-style-card,
.wm-home-trust__item {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 96px;
  padding: 14px;
  border: 1px solid rgba(229, 224, 216, 0.95);
  border-radius: 20px;
  background: linear-gradient(180deg, #fff, rgba(249, 248, 245, 0.72));
  color: var(--wm-color-primary);
  text-decoration: none;
  box-shadow: var(--wm-home-shadow-sm);
  transition: transform var(--wm-home-motion), border-color var(--wm-home-motion), box-shadow var(--wm-home-motion), background var(--wm-home-motion);
}

.wm-home-brand-card:hover,
.wm-home-brand-card:focus,
.wm-home-style-card:hover,
.wm-home-style-card:focus {
  border-color: var(--wm-home-hover-border);
  box-shadow: var(--wm-home-shadow-md);
  transform: translateY(-2px);
}

.wm-home-brand-card {
  gap: 14px;
  min-height: 112px;
}

.wm-home-brand-card__media,
.wm-home-style-card__media,
.wm-home-trust__icon {
  flex: 0 0 54px;
  width: 54px;
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid var(--wm-color-border);
  border-radius: 16px;
  background: #f9f8f5;
}

.wm-home-brand-card__media img,
.wm-home-style-card__media img,
.wm-home-trust__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.wm-home-brand-card__media {
  flex: 0 0 70px;
  width: 70px;
  height: 70px;
  border-radius: 18px;
  background: linear-gradient(180deg, #fff, rgba(200, 155, 60, 0.045));
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.72);
}

.wm-home-brand-card__media img {
  width: auto;
  height: auto;
  max-width: 82%;
  max-height: 82%;
  display: block;
  transition: transform var(--wm-home-motion);
}

.wm-home-brand-card:hover .wm-home-brand-card__media img,
.wm-home-brand-card:focus .wm-home-brand-card__media img {
  transform: scale(1.035);
}

.wm-home-brand-card__body,
.wm-home-style-card__body,
.wm-home-trust__item {
  min-width: 0;
}

.wm-home-brand-card strong,
.wm-home-style-card strong,
.wm-home-trust__item strong {
  display: block;
  color: var(--wm-color-primary);
  font-size: 14px;
  font-weight: 850;
  line-height: 1.7;
}

.wm-home-brand-card small,
.wm-home-style-card small,
.wm-home-trust__item small {
  display: block;
  color: var(--wm-color-muted);
  font-size: 12px;
  line-height: 1.8;
}

.wm-home-brand-card__count {
  display: block;
  margin-top: 4px;
  color: var(--wm-color-accent-dark);
  font-size: 13px;
  font-weight: 760;
  line-height: 1.6;
}

.wm-home-filters__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.wm-home-filters--cards_4 .wm-home-filters__grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.wm-home-filters--compact_grid .wm-home-filters__grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.wm-home-filters--horizontal_scroll .wm-home-filters__grid {
  grid-auto-flow: column;
  grid-auto-columns: clamp(230px, 28vw, 320px);
  grid-template-columns: none;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding-bottom: 8px;
}

.wm-home-filters--horizontal_scroll .wm-home-filters__grid::-webkit-scrollbar {
  display: none;
}

.wm-home-filter-card {
  --wm-filter-accent: var(--wm-color-accent);
  position: relative;
  min-height: 220px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding: 20px;
  border: 1px solid rgba(229, 224, 216, 0.9);
  border-radius: 22px;
  background: var(--wm-color-surface);
  color: #fff;
  text-decoration: none;
  box-shadow: var(--wm-home-shadow-md);
  scroll-snap-align: start;
  transition: transform var(--wm-home-motion), border-color var(--wm-home-motion), box-shadow var(--wm-home-motion);
}

.wm-home-filter-card__media {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #111827, #26364d);
}

.wm-home-filter-card__media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 420ms cubic-bezier(0.22, 1, 0.36, 1), filter 420ms ease;
}

.wm-home-filter-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(17, 24, 39, 0.08), rgba(17, 24, 39, 0.76)),
    linear-gradient(135deg, color-mix(in srgb, var(--wm-filter-accent) 24%, transparent), transparent 46%);
}

.wm-home-filter-card::before {
  content: "";
  position: absolute;
  inset: 12px;
  z-index: 1;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 17px;
  pointer-events: none;
  transition: border-color var(--wm-home-motion), opacity var(--wm-home-motion);
}

.wm-home-filter-card__body {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 6px;
}

.wm-home-filter-card__badge {
  width: fit-content;
  min-height: 24px;
  display: inline-flex;
  align-items: center;
  padding: 0 9px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: var(--wm-radius-pill);
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.9);
  font-size: 11px;
  font-weight: 820;
}

.wm-home-filter-card strong {
  font-size: 18px;
  font-weight: 850;
}

.wm-home-filter-card small {
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  line-height: 1.8;
}

.wm-home-filter-card em {
  width: fit-content;
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  margin-top: 5px;
  padding: 0 12px;
  border-radius: var(--wm-radius-pill);
  background: rgba(255, 255, 255, 0.92);
  color: var(--wm-color-accent-dark);
  font-size: 12px;
  font-style: normal;
  font-weight: 850;
  box-shadow: 0 10px 22px rgba(17, 24, 39, 0.14);
}

.wm-home-filter-card--light_card,
.wm-home-filter-card--minimal_card {
  align-items: stretch;
  min-height: 188px;
  border-color: rgba(229, 224, 216, 0.96);
  background: linear-gradient(180deg, #fff, rgba(249, 248, 245, 0.86));
  color: var(--wm-color-primary);
}

.wm-home-filter-card--light_card .wm-home-filter-card__media,
.wm-home-filter-card--minimal_card .wm-home-filter-card__media {
  inset: auto 0 0;
  height: 46%;
  background: linear-gradient(135deg, color-mix(in srgb, var(--wm-filter-accent) 14%, #fff), #fff);
}

.wm-home-filter-card--minimal_card .wm-home-filter-card__media {
  display: none;
}

.wm-home-filter-card--light_card::after,
.wm-home-filter-card--minimal_card::after {
  background: linear-gradient(135deg, color-mix(in srgb, var(--wm-filter-accent) 12%, transparent), transparent 58%);
}

.wm-home-filter-card--light_card::before,
.wm-home-filter-card--minimal_card::before {
  border-color: rgba(200, 155, 60, 0.14);
}

.wm-home-filter-card--light_card .wm-home-filter-card__body,
.wm-home-filter-card--minimal_card .wm-home-filter-card__body {
  align-content: start;
  width: 100%;
  padding-bottom: 64px;
}

.wm-home-filter-card--minimal_card .wm-home-filter-card__body {
  padding-bottom: 0;
}

.wm-home-filter-card--light_card small,
.wm-home-filter-card--minimal_card small {
  color: var(--wm-color-muted);
}

.wm-home-filter-card--light_card em,
.wm-home-filter-card--minimal_card em {
  background: color-mix(in srgb, var(--wm-filter-accent) 14%, #fff);
  color: var(--wm-color-accent-dark);
}

.wm-home-filter-card--light_card .wm-home-filter-card__badge,
.wm-home-filter-card--minimal_card .wm-home-filter-card__badge {
  border-color: color-mix(in srgb, var(--wm-filter-accent) 24%, transparent);
  background: color-mix(in srgb, var(--wm-filter-accent) 10%, #fff);
  color: var(--wm-color-accent-dark);
}

.wm-home-filter-card--image_card::after {
  background: linear-gradient(180deg, rgba(17, 24, 39, 0.02), rgba(17, 24, 39, 0.58));
}

.wm-home-filters--compact_grid .wm-home-filter-card {
  min-height: 176px;
  padding: 16px;
  border-radius: 18px;
}

.wm-home-filters--compact_grid .wm-home-filter-card::before {
  inset: 10px;
  border-radius: 13px;
}

.wm-home-filters--compact_grid .wm-home-filter-card strong {
  font-size: 16px;
}

.wm-home-filter-card:hover,
.wm-home-filter-card:focus {
  border-color: rgba(200, 155, 60, 0.48);
  box-shadow: 0 20px 44px rgba(17, 24, 39, 0.12);
  transform: translateY(-2px);
}

.wm-home-filter-card:hover .wm-home-filter-card__media img,
.wm-home-filter-card:focus .wm-home-filter-card__media img {
  filter: saturate(1.03);
  transform: scale(1.035);
}

.wm-home-filter-card:hover::before,
.wm-home-filter-card:focus::before {
  border-color: rgba(200, 155, 60, 0.32);
}

.wm-product-carousel__controls {
  display: inline-flex;
  gap: 8px;
}

.wm-product-carousel__track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: clamp(230px, 23vw, 270px);
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  padding: 4px 0 10px;
}

.wm-product-carousel__track::-webkit-scrollbar {
  display: none;
}

.wm-product-card {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  gap: 9px;
  scroll-snap-align: start;
  padding: 13px;
  border: 1px solid rgba(229, 224, 216, 0.95);
  border-radius: 22px;
  background: linear-gradient(180deg, #fff, rgba(249, 248, 245, 0.72));
  box-shadow: var(--wm-home-shadow-sm);
  transition: transform var(--wm-home-motion), border-color var(--wm-home-motion), box-shadow var(--wm-home-motion);
}

.wm-product-card__media {
  position: relative;
  min-height: 230px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid rgba(229, 224, 216, 0.92);
  border-radius: 18px;
  background: radial-gradient(circle at 50% 32%, rgba(200, 155, 60, 0.06), transparent 42%), #fff;
}

.wm-product-card__image {
  max-width: 84%;
  max-height: 200px;
  object-fit: contain;
  transition: opacity 280ms ease, transform 280ms ease;
}

.wm-product-card__image-hover {
  position: absolute;
  inset: 0;
  margin: auto;
  opacity: 0;
}

@media (hover: hover) and (pointer: fine) {
  .wm-product-card--has-hover-image .wm-product-card__media:hover .wm-product-card__image-main {
    opacity: 0;
  }

  .wm-product-card--has-hover-image .wm-product-card__media:hover .wm-product-card__image-hover {
    opacity: 1;
    transform: scale(1.02);
  }
}

.wm-product-card__title {
  min-height: 54px;
  margin: 1px 0 0;
  color: var(--wm-color-primary);
  font-size: 14px;
  font-weight: 760;
  line-height: 1.75;
}

.wm-product-card__title a {
  display: -webkit-box;
  overflow: hidden;
  color: inherit;
  text-decoration: none;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.wm-product-card__price {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  color: var(--wm-color-accent-dark);
  font-size: 15px;
  font-weight: 850;
  direction: ltr;
  text-align: left;
}

.wm-product-card__price .price,
.wm-product-card__price .amount,
.wm-product-card__price bdi {
  color: inherit;
  font-weight: inherit;
  direction: rtl;
}

.wm-product-card__actions {
  margin-top: 0;
}

.wm-product-card__button {
  width: 100%;
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  border: 1px solid var(--wm-color-border) !important;
  border-radius: 14px !important;
  background: transparent !important;
  color: var(--wm-color-primary) !important;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none !important;
  box-shadow: none !important;
  transition: color var(--wm-home-motion), border-color var(--wm-home-motion), background var(--wm-home-motion), transform var(--wm-home-motion);
}

.wm-product-card__button:hover {
  border-color: rgba(200, 155, 60, 0.45) !important;
  background: rgba(200, 155, 60, 0.07) !important;
  color: var(--wm-color-accent-dark) !important;
  transform: translateY(-1px);
}

.wm-product-card:hover,
.wm-product-card:focus-within {
  border-color: var(--wm-home-hover-border);
  box-shadow: var(--wm-home-shadow-md);
  transform: translateY(-2px);
}

.wm-product-card:hover .wm-product-card__image-main,
.wm-product-card:focus-within .wm-product-card__image-main {
  transform: scale(1.018);
}

.wm-home-trust__item {
  flex-direction: column;
  align-items: flex-start;
  min-height: 150px;
  padding: 18px;
}

.wm-home-trust__item:hover {
  border-color: rgba(200, 155, 60, 0.36);
  box-shadow: var(--wm-home-shadow-md);
  transform: translateY(-1px);
}

.wm-home-trust__icon {
  background: rgba(200, 155, 60, 0.08);
  color: var(--wm-color-accent-dark);
}

.wm-home-trust__icon:empty::before,
.wm-home-style-card__media:empty::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--wm-color-accent);
  box-shadow: 0 0 0 8px rgba(200, 155, 60, 0.12);
}

@keyframes wm-home-hero-slide-in {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes wm-home-hero-slide-out {
  from {
    opacity: 1;
    transform: translateY(0);
  }

  to {
    opacity: 0;
    transform: translateY(-6px);
  }
}

@keyframes wm-home-hero-item-in {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes wm-home-hero-visual-in {
  from {
    opacity: 0;
    transform: translateY(10px) scale(0.985);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (max-width: 1024px) {
  .wm-home-hero__slide {
    grid-template-columns: 1fr;
    min-height: auto;
    gap: 24px;
  }

  .wm-home-brands__grid,
  .wm-home-styles__grid,
  .wm-home-trust__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .wm-home-filters__grid,
  .wm-home-filters--cards_4 .wm-home-filters__grid,
  .wm-home-filters--compact_grid .wm-home-filters__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .wm-home-filters--horizontal_scroll .wm-home-filters__grid {
    grid-auto-columns: minmax(240px, 42vw);
    grid-template-columns: none;
  }
}

@media (max-width: 767px) {
  .wm-home-hero,
  .wm-home-section,
  .wm-product-carousel {
    width: min(100% - 24px, var(--wm-content-width, 1200px));
  }

  .wm-home-hero {
    margin-top: 24px;
    border-radius: 26px;
  }

  .wm-home-hero__slide {
    gap: 12px;
    padding: 22px 16px 60px;
  }

  .wm-home-hero__content {
    gap: 9px;
  }

  .wm-home-hero__eyebrow {
    min-height: 28px;
    padding: 4px 11px;
    font-size: 12px;
  }

  .wm-home-hero__actions {
    gap: 8px;
    margin-top: 4px;
  }

  .wm-home-hero__nav {
    right: 16px;
    bottom: 12px;
    left: 16px;
  }

  .wm-home-hero__arrow {
    width: 38px;
    height: 38px;
    font-size: 26px;
  }

  .wm-home-hero__title {
    font-size: 27px;
    line-height: 1.42;
  }

  .wm-home-hero__subtitle {
    font-size: 14px;
    line-height: 1.85;
  }

  .wm-home-hero__visual {
    min-height: 230px;
    padding: 14px;
    border-radius: 22px;
  }

  .wm-home-hero__visual img {
    width: auto;
    max-width: 88%;
    max-height: 240px;
  }

  .wm-home-hero__dots {
    gap: 6px;
    align-items: center;
    min-height: 38px;
  }

  .wm-home-hero__dot {
    width: 8px;
    height: 8px;
  }

  .wm-home-hero__dot.is-active {
    width: 22px;
  }

  .wm-home-section,
  .wm-product-carousel {
    margin-top: 38px;
  }

  .wm-home-section__header {
    align-items: flex-start;
  }

  .wm-home-section__title {
    font-size: 20px;
  }

  .wm-home-section__subtitle {
    font-size: 13px;
    line-height: 1.85;
  }

  .wm-home-brands__grid,
  .wm-home-styles__grid,
  .wm-home-trust__grid,
  .wm-home-filters__grid,
  .wm-home-filters--cards_4 .wm-home-filters__grid,
  .wm-home-filters--compact_grid .wm-home-filters__grid {
    grid-template-columns: 1fr;
  }

  .wm-home-brands {
    overflow: hidden;
  }

  .wm-home-brands__grid {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    padding: 4px 12px 10px;
    margin-inline: -12px;
  }

  .wm-home-brands__grid::-webkit-scrollbar {
    display: none;
  }

  .wm-home-brand-card {
    flex: 0 0 230px;
    max-width: 230px;
    min-height: 94px;
    gap: 12px;
    padding: 14px 16px;
    border-radius: 20px;
    scroll-snap-align: start;
  }

  .wm-home-brand-card__media {
    flex: 0 0 58px;
    width: 58px;
    height: 58px;
    border-radius: 16px;
  }

  .wm-home-brand-card strong {
    font-size: 14px;
    line-height: 1.55;
  }

  .wm-home-brand-card__count {
    margin-top: 2px;
    font-size: 12px;
    line-height: 1.5;
  }

  .wm-home-filter-card {
    min-height: 152px;
    padding: 16px;
    border-radius: 20px;
  }

  .wm-home-filter-card::before {
    inset: 10px;
    border-radius: 15px;
  }

  .wm-home-filter-card__body {
    gap: 5px;
  }

  .wm-home-filter-card__badge {
    min-height: 22px;
    padding: 0 8px;
    font-size: 10.5px;
  }

  .wm-home-filter-card strong {
    font-size: 17px;
    line-height: 1.5;
  }

  .wm-home-filter-card small {
    max-width: 78%;
    font-size: 12.5px;
    line-height: 1.75;
  }

  .wm-home-filter-card em {
    min-height: 30px;
    margin-top: 4px;
    padding: 0 11px;
    font-size: 11.5px;
  }

  .wm-home-filter-card__media img {
    max-height: 160px;
  }

  .wm-home-filter-card--light_card,
  .wm-home-filter-card--minimal_card {
    min-height: 150px;
  }

  .wm-home-filter-card--light_card .wm-home-filter-card__media {
    height: 42%;
  }

  .wm-home-filter-card--light_card .wm-home-filter-card__media img {
    object-fit: contain;
  }

  .wm-home-filter-card--light_card .wm-home-filter-card__body {
    padding-bottom: 52px;
  }

  .wm-home-filter-card--minimal_card .wm-home-filter-card__body {
    padding-bottom: 0;
  }

  .wm-home-trust__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .wm-home-trust__item {
    min-height: 170px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 0;
    padding: 16px 14px;
    border-radius: 22px;
    text-align: center;
  }

  .wm-home-trust__icon {
    flex: 0 0 54px;
    width: 54px;
    height: 54px;
    margin-bottom: 12px;
    border-radius: 16px;
  }

  .wm-home-trust__item strong {
    margin: 0 0 8px;
    font-size: 15px;
    line-height: 1.6;
  }

  .wm-home-trust__item small {
    margin: 0;
    font-size: 12.5px;
    line-height: 1.8;
  }

  .wm-home-filters--horizontal_scroll .wm-home-filters__grid {
    grid-auto-columns: minmax(240px, 82vw);
    grid-template-columns: none;
  }

  .wm-product-carousel__track {
    grid-auto-columns: minmax(250px, 82vw);
    gap: 14px;
  }

  .wm-product-carousel__controls {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .wm-home *,
  .wm-home *::before,
  .wm-home *::after {
    animation-duration: 1ms !important;
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
  }
}
