:root {
  --orange: #ff5a00;
  --orange-dark: #dc4700;
  --graphite: #111820;
  --graphite-2: #1d2732;
  --white: #ffffff;
  --soft: #f5f5f5;
  --soft-2: #fafafa;
  --line: #e7e8ea;
  --text: #555555;
  --muted: #7b828c;
  --radius: 8px;
  --shadow: 0 16px 40px rgba(17, 24, 32, 0.08);
  --shadow-soft: 0 10px 28px rgba(17, 24, 32, 0.07);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--graphite);
  letter-spacing: 0;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

.container {
  width: min(calc(100% - 32px), 1200px);
  margin-inline: auto;
}

.topbar {
  background: var(--graphite);
  color: var(--white);
  font-size: 0.83rem;
}

.topbar__inner {
  min-height: 42px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 18px;
}

.topbar__message {
  grid-column: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  justify-self: center;
  font-weight: 700;
  line-height: 1.35;
  text-align: center;
}

.topbar__links {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  justify-self: end;
  color: rgba(255, 255, 255, 0.92);
}

.topbar__links a:hover,
.nav__link:hover,
.footer a:hover {
  color: var(--orange);
}

.nav__link {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 0 13px;
  border: 1px solid rgba(17, 24, 32, 0.08);
  border-radius: 999px;
  background: var(--white);
  color: var(--graphite);
  white-space: nowrap;
  box-shadow: 0 8px 18px rgba(17, 24, 32, 0.035);
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.nav__link .icon {
  width: 17px;
  height: 17px;
  color: var(--orange);
  stroke-width: 2.2;
}

.nav__link:hover {
  border-color: rgba(255, 90, 0, 0.28);
  background: #fff6f1;
  box-shadow: 0 10px 22px rgba(255, 90, 0, 0.1);
  transform: translateY(-1px);
}

.nav__link--highlight {
  color: var(--orange);
  border-color: rgba(255, 90, 0, 0.24);
  background: #fff4ee;
  font-weight: 900;
}

.nav__link--highlight:hover {
  color: var(--orange);
  background: #ffe9dd;
}

.main-header {
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(12px);
}

.main-header__inner {
  min-height: 104px;
  display: grid;
  grid-template-columns: 210px minmax(260px, 1fr) auto;
  align-items: center;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.brand__text {
  color: var(--orange);
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
}

.search {
  display: block;
  position: relative;
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: visible;
  background: linear-gradient(90deg, var(--white) 0, var(--white) calc(100% - 56px), var(--orange) calc(100% - 56px), var(--orange) 100%);
  box-shadow: 0 8px 20px rgba(17, 24, 32, 0.04);
  padding-right: 56px;
}

.search::before {
  content: "";
  position: absolute;
  z-index: 3;
  top: 16px;
  right: 22px;
  width: 13px;
  height: 13px;
  border: 2px solid var(--white);
  border-radius: 50%;
  pointer-events: none;
}

.search::after {
  content: "";
  position: absolute;
  z-index: 3;
  top: 31px;
  right: 17px;
  width: 9px;
  height: 2px;
  border-radius: 999px;
  background: var(--white);
  transform: rotate(45deg);
  pointer-events: none;
}

.search input {
  display: block;
  width: 100%;
  min-width: 0;
  height: 52px;
  border: 0;
  padding: 0 18px;
  color: var(--graphite);
  background: transparent;
  outline: none;
}

.search input::placeholder {
  color: #8e949c;
}

.search button {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: auto;
  z-index: 2;
  width: 56px;
  border: 0;
  background: transparent;
  color: var(--white);
  display: grid;
  place-items: center;
  transition: background 180ms ease, transform 180ms ease;
}

.search button:hover {
  background: rgba(220, 71, 0, 0.24);
}

.search button .icon {
  opacity: 0;
}

.search-suggestions {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  z-index: 45;
  max-height: min(390px, 70vh);
  overflow-y: auto;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 18px 44px rgba(17, 24, 32, 0.16);
}

.search-suggestion {
  min-height: 54px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 9px 10px;
  border-radius: var(--radius);
  color: var(--graphite);
  transition: background 160ms ease, color 160ms ease;
}

.search-suggestion:hover,
.search-suggestion:focus {
  background: #fff4ee;
  color: var(--orange);
  outline: none;
}

.search-suggestion__icon {
  flex: 0 0 34px;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 8px;
  background: #fff0e8;
}

.search-suggestion__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 3px;
  background: var(--white);
}

.search-suggestion__icon .icon {
  width: 18px;
  height: 18px;
}

.search-suggestion__content {
  min-width: 0;
  display: grid;
  gap: 2px;
}

.search-suggestion strong {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 0.9rem;
}

.search-suggestion small {
  color: var(--muted);
  font-size: 0.74rem;
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
}

.header-action {
  border: 0;
  background: transparent;
  color: var(--graphite);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  padding: 4px;
  position: relative;
  white-space: nowrap;
}

.header-action small {
  display: block;
  color: var(--muted);
  font-weight: 600;
  line-height: 1;
}

.header-action strong {
  display: block;
  font-size: 0.91rem;
  line-height: 1.12;
}

.cart-badge {
  position: absolute;
  top: 0;
  left: 20px;
  min-width: 18px;
  height: 18px;
  padding-inline: 5px;
  border-radius: 999px;
  background: var(--orange);
  color: var(--white);
  display: grid;
  place-items: center;
  font-size: 0.68rem;
  font-weight: 800;
}

.nav {
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.nav__inner {
  min-height: 58px;
  display: flex;
  align-items: center;
  gap: 14px;
  overflow: hidden;
}

.nav-toggle {
  border: 0;
  background: var(--graphite);
  color: var(--white);
  min-height: 44px;
  padding: 0 18px;
  border-radius: var(--radius);
  display: none;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  transition: transform 180ms ease, background 180ms ease;
}

.nav-toggle:hover {
  background: var(--graphite-2);
  transform: translateY(-1px);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 9px;
  min-width: 0;
  overflow-x: auto;
  padding: 8px 2px;
  scrollbar-width: none;
  font-size: 0.94rem;
  font-weight: 700;
}

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

.section {
  padding: 28px 0;
}

.hero {
  padding-top: 26px;
}

.hero__panel {
  position: relative;
  min-height: 470px;
  display: block;
  border-radius: 22px;
  overflow: hidden;
  background: linear-gradient(110deg, #ffffff 0%, #f6f6f6 100%);
  box-shadow: var(--shadow-soft);
}

.hero__panel::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.86) 42%, rgba(255, 255, 255, 0.08) 72%);
  pointer-events: none;
}

.hero__copy {
  position: relative;
  z-index: 3;
  padding: 42px 0 44px 58px;
  max-width: 460px;
}

.hero h1 {
  margin: 0;
  color: var(--graphite);
  font-size: 3.55rem;
  line-height: 1.04;
  font-weight: 900;
  letter-spacing: 0;
}

.accent {
  color: var(--orange);
}

.hero p {
  margin: 22px 0 26px;
  color: var(--text);
  font-size: 1.05rem;
  line-height: 1.6;
}

.hero .btn {
  min-height: 60px;
  padding-inline: 36px;
  font-size: 1.06rem;
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: 1;
  min-height: 0;
  display: block;
  padding: 0;
}

.hero__circle {
  display: none;
}

.hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-affiliate-bubbles {
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
}

.affiliate-bubble {
  position: absolute;
  width: 112px;
  aspect-ratio: 1;
  display: block;
  overflow: hidden;
  border: 3px solid rgba(255, 255, 255, 0.86);
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 18px 42px rgba(17, 24, 32, 0.18);
  opacity: 0;
  transform: translate3d(0, 20px, 0) scale(0.86);
  animation: affiliateBubbleFloat 16s cubic-bezier(0.45, 0, 0.2, 1) infinite;
  will-change: opacity, transform;
}

.affiliate-bubble img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.affiliate-bubble--amazon {
  top: 46px;
  right: 28%;
  animation-delay: 0s;
}

.affiliate-bubble--shopee {
  top: 104px;
  right: 9%;
  width: 104px;
  animation-delay: 4s;
}

.affiliate-bubble--mercado {
  right: 34%;
  bottom: 118px;
  width: 122px;
  animation-delay: 8s;
}

.affiliate-bubble--temu {
  right: 12%;
  bottom: 82px;
  width: 98px;
  animation-delay: 12s;
}

@keyframes affiliateBubbleFloat {
  0%,
  8% {
    opacity: 0;
    transform: translate3d(0, 22px, 0) scale(0.86);
  }

  18% {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }

  34% {
    opacity: 1;
    transform: translate3d(0, -9px, 0) scale(1.03);
  }

  48% {
    opacity: 1;
    transform: translate3d(0, -4px, 0) scale(1);
  }

  60%,
  100% {
    opacity: 0;
    transform: translate3d(0, -24px, 0) scale(0.9);
  }
}

@media (prefers-reduced-motion: reduce) {
  .affiliate-bubble {
    animation: none;
    opacity: 1;
    transform: none;
  }
}

.mini-benefit,
.benefit-item,
.category-card,
.product-card,
.info-card,
.account-panel,
.checkout-card,
.policy-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.mini-benefit {
  min-height: 56px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 14px;
  box-shadow: 0 10px 24px rgba(17, 24, 32, 0.06);
}

.mini-benefit strong,
.benefit-item strong {
  display: block;
  font-size: 0.84rem;
}

.mini-benefit span,
.benefit-item span {
  color: var(--text);
  font-size: 0.75rem;
}

.btn {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  border-radius: var(--radius);
  padding: 0 22px;
  background: var(--orange);
  color: var(--white);
  font-weight: 900;
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.btn:hover {
  background: var(--orange-dark);
  box-shadow: 0 12px 24px rgba(255, 90, 0, 0.22);
  transform: translateY(-1px);
}

.btn--large {
  min-height: 54px;
  padding-inline: 30px;
  font-size: 1rem;
}

.btn--large .icon {
  width: 20px;
  height: 20px;
}

.btn--dark {
  background: var(--graphite);
}

.btn--dark:hover {
  background: var(--graphite-2);
  box-shadow: 0 12px 24px rgba(17, 24, 32, 0.16);
}

.btn--ghost {
  background: var(--white);
  color: var(--graphite);
  border: 1px solid var(--line);
}

.btn--ghost:hover {
  color: var(--orange);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

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

.section-heading h2 {
  margin: 0;
  font-size: 1.8rem;
  line-height: 1.2;
}

.section-heading a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--graphite);
  font-weight: 800;
  font-size: 0.92rem;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 16px;
}

.category-card {
  min-height: 112px;
  padding: 18px;
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr) 34px;
  align-items: center;
  gap: 14px;
  box-shadow: 0 8px 24px rgba(17, 24, 32, 0.04);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.category-card__icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  background: #fff3ec;
}

.category-card__icon .icon--large {
  width: 32px;
  height: 32px;
}

.category-card__content {
  min-width: 0;
}

.category-card:hover,
.product-card:hover,
.info-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: rgba(255, 90, 0, 0.28);
}

.category-card h3 {
  margin: 0 0 5px;
  font-size: 0.98rem;
  line-height: 1.18;
  overflow-wrap: anywhere;
  hyphens: auto;
}

.category-card__content span {
  display: inline-flex;
  align-items: center;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
}

.category-card__arrow {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 90, 0, 0.22);
  border-radius: var(--radius);
  color: var(--orange);
}

.promo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.promo-card {
  min-height: 220px;
  border-radius: 12px;
  overflow: hidden;
  padding: 34px 38px;
  display: grid;
  grid-template-columns: 1fr 220px;
  align-items: center;
  gap: 16px;
  position: relative;
}

.promo-card h2 {
  margin: 0 0 18px;
  font-size: 2rem;
  line-height: 1.15;
}

.promo-card p {
  margin: -8px 0 18px;
  color: var(--graphite);
  line-height: 1.5;
}

.promo-card--dark {
  background: radial-gradient(circle at 78% 30%, #2b3642 0, var(--graphite) 48%, #0b1015 100%);
  color: var(--white);
}

.promo-card--dark p {
  color: rgba(255, 255, 255, 0.78);
}

.promo-card--light {
  background: var(--soft);
}

.promo-card__visual {
  justify-self: center;
  width: min(190px, 42vw);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  color: var(--orange);
}

.promo-card__visual .icon {
  width: 112px;
  height: 112px;
  stroke-width: 1.7;
}

.promo-card__visual--dark {
  color: #ff7a2d;
}

.offer-carousel-section {
  padding-top: 14px;
}

.offer-carousel {
  position: relative;
  padding: 22px 20px 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 10px 28px rgba(17, 24, 32, 0.04);
}

.offer-carousel__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
}

.offer-carousel__head h2 {
  margin: 0;
  color: var(--graphite);
  font-size: 1.45rem;
}

.offer-carousel__head a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--orange);
  font-weight: 800;
  font-size: 0.9rem;
}

.offer-carousel__track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(150px, 170px);
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding: 2px 0;
}

.offer-carousel__track::-webkit-scrollbar {
  display: none;
}

.offer-slide {
  min-width: 150px;
  position: relative;
  display: grid;
  gap: 8px;
  justify-items: center;
  padding: 10px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  scroll-snap-align: start;
  color: var(--graphite);
  transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.offer-slide:hover {
  border-color: #ffd5c2;
  box-shadow: 0 10px 24px rgba(255, 90, 0, 0.08);
  transform: translateY(-2px);
}

.offer-slide img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
  border-radius: 8px;
  background: var(--soft);
  padding: 8px;
}

.offer-slide strong {
  width: 100%;
  min-height: 34px;
  color: var(--graphite);
  font-size: 0.78rem;
  line-height: 1.25;
  text-align: center;
  overflow: hidden;
}

.offer-slide__tag,
.offer-slide__discount {
  position: absolute;
  top: 18px;
  z-index: 2;
  min-height: 22px;
  display: inline-grid;
  place-items: center;
  padding: 0 7px;
  background: var(--orange);
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 900;
}

.offer-slide__tag {
  left: 18px;
}

.offer-slide__discount {
  right: 18px;
}

.offer-slide__old {
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 700;
  text-decoration: line-through;
}

.offer-slide__price {
  color: var(--orange);
  font-size: 1rem;
  font-weight: 900;
}

.offer-carousel__nav {
  position: absolute;
  top: 50%;
  z-index: 4;
  width: 34px;
  height: 34px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--white);
  color: var(--graphite);
  box-shadow: 0 10px 24px rgba(17, 24, 32, 0.12);
}

.offer-carousel__nav--prev {
  left: -16px;
  transform: translateY(-50%) rotate(180deg);
}

.offer-carousel__nav--next {
  right: -16px;
  transform: translateY(-50%);
}

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

.product-card {
  min-height: 356px;
  padding: 14px 14px 68px;
  display: flex;
  flex-direction: column;
  position: relative;
  box-shadow: 0 8px 24px rgba(17, 24, 32, 0.04);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.product-card.is-free-shipping {
  border-color: rgba(18, 133, 74, 0.28);
}

.favorite-button {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.94);
  color: var(--graphite);
  display: grid;
  place-items: center;
  box-shadow: 0 8px 20px rgba(17, 24, 32, 0.06);
  transition: transform 180ms ease, border-color 180ms ease, color 180ms ease, background 180ms ease;
}

.favorite-button:hover,
.favorite-button.is-active {
  color: var(--orange);
  border-color: var(--orange);
  background: #fff0e8;
  transform: translateY(-2px);
}

.favorite-button.is-active .icon,
.favorite-cta.is-active .icon {
  fill: currentColor;
}

.product-card__media {
  position: relative;
  display: block;
  border-radius: 8px;
  overflow: hidden;
}

.product-card__image {
  width: 100%;
  aspect-ratio: 1.12;
  border-radius: 8px;
  background: linear-gradient(180deg, #ffffff, #f8f8f8);
  object-fit: contain;
  padding: 8px;
}

.product-card__body {
  display: flex;
  flex-direction: column;
  gap: 7px;
  flex: 1;
  padding: 12px 0 0;
}

.product-card h3 {
  min-height: 42px;
  margin: 0;
  color: var(--graphite);
  font-size: 0.96rem;
  line-height: 1.35;
}

.rating {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--orange);
}

.rating span {
  color: var(--muted);
  font-size: 0.78rem;
}

.price {
  margin-top: 2px;
  font-size: 1.08rem;
  font-weight: 900;
  color: var(--graphite);
}

.price-block {
  min-height: 42px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 2px;
}

.old-price {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
  text-decoration: line-through;
}

.price-block.is-sale .price {
  color: var(--orange);
}

.installment {
  color: var(--text);
  font-size: 0.78rem;
}

.marketplaces {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 4px;
  min-height: 26px;
  padding-right: 54px;
  align-items: center;
}

.marketplace-badge {
  border-radius: 999px;
  background: #fff0e8;
  color: var(--orange);
  padding: 4px 8px;
  font-size: 0.7rem;
  font-weight: 900;
}

.marketplace-badge--sale {
  background: var(--orange);
  color: var(--white);
}

.marketplace-badge--shipping {
  background: #e7f8ee;
  color: #12854a;
}

.partner-seal {
  position: absolute;
  left: 10px;
  bottom: 10px;
  z-index: 3;
  max-width: calc(100% - 20px);
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 4px 9px 4px 5px;
  border: 1px solid rgba(17, 24, 32, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--graphite);
  box-shadow: 0 10px 24px rgba(17, 24, 32, 0.12);
  font-size: 0.68rem;
  font-weight: 900;
  line-height: 1;
  pointer-events: none;
}

.partner-seal img {
  width: 30px;
  height: 30px;
  padding: 0;
  border-radius: 50%;
  object-fit: cover;
  background: var(--white);
}

.partner-seal span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.partner-seal--text {
  padding-left: 10px;
}

.partner-seal--offer {
  left: 12px;
  bottom: auto;
  top: 118px;
  transform: scale(0.9);
  transform-origin: left top;
}

.partner-seal--offer img {
  width: 34px;
  height: 34px;
}

.cart-button {
  position: absolute;
  right: 14px;
  bottom: 14px;
  width: 42px;
  height: 42px;
  min-width: 42px;
  min-height: 42px;
  padding: 0;
  border: 0;
  border-radius: var(--radius);
  background: var(--orange);
  color: var(--white);
  display: grid;
  place-items: center;
  transition: transform 180ms ease, background 180ms ease;
}

.cart-button .icon {
  width: 23px;
  height: 23px;
}

.cart-button:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
}

.benefits-strip {
  margin: 30px 0 0;
  padding: 22px 28px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  border-radius: 12px;
  background: var(--soft);
}

.benefit-item {
  border-color: transparent;
  background: transparent;
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer {
  margin-top: 34px;
  background: radial-gradient(circle at 15% 0%, #263341 0, var(--graphite) 40%, #0b1015 100%);
  color: var(--white);
  padding: 46px 0 22px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.3fr repeat(3, 1fr);
  gap: 34px;
}

.footer__brand {
  display: inline-flex;
  margin-bottom: 16px;
  color: var(--orange);
  font-size: 1.9rem;
  font-weight: 950;
  letter-spacing: 0;
  line-height: 1;
}

.footer p {
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.6;
  margin: 0;
}

.footer__socials {
  margin-top: 16px;
}

.socials {
  display: flex;
  gap: 12px;
}

.socials a {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.socials a:hover {
  background: var(--orange);
  color: var(--white);
  transform: translateY(-1px);
}

.socials .icon {
  width: 19px;
  height: 19px;
}

.socials a[aria-label*="WhatsApp"] .icon {
  width: 21px;
  height: 21px;
}

.footer h3 {
  margin: 0 0 14px;
  font-size: 0.96rem;
}

.footer ul {
  list-style: none;
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
}

.footer__bottom {
  margin-top: 36px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.11);
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.84rem;
}

.page-hero {
  padding: 42px 0 20px;
}

.page-hero__panel {
  border-radius: 14px;
  background: var(--soft);
  padding: 34px;
  display: grid;
  gap: 8px;
}

.page-hero h1 {
  margin: 0;
  font-size: 3rem;
  line-height: 1.08;
}

.page-hero p {
  max-width: 760px;
  color: var(--text);
  line-height: 1.65;
  margin: 0;
}

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

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

.pill {
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 999px;
  padding: 9px 14px;
  color: var(--graphite);
  font-weight: 800;
}

.pill.is-active {
  border-color: var(--orange);
  background: #fff0e8;
  color: var(--orange);
}

.price-filter {
  margin: 0;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 8px 24px rgba(17, 24, 32, 0.04);
}

.category-layout {
  display: grid;
  gap: 24px;
  align-items: start;
}

.category-layout--with-sidebar {
  grid-template-columns: minmax(0, 1fr) 300px;
}

.category-results {
  min-width: 0;
}

.category-layout--with-sidebar .product-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.filter-sidebar {
  position: sticky;
  top: 124px;
}

.price-filter__top,
.price-filter__actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.price-filter__top label {
  color: var(--graphite);
  font-weight: 900;
}

.price-filter__controls {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.price-filter__range-fields {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) 48px;
  gap: 10px;
  align-items: center;
}

.price-filter__range-fields input {
  width: 100%;
  min-height: 48px;
  border: 1px solid #d9dbe1;
  border-radius: var(--radius);
  padding: 0 14px;
  color: var(--graphite);
  background: var(--white);
  outline: 0;
  font-weight: 700;
}

.price-filter__range-fields input:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 4px rgba(255, 90, 0, 0.12);
}

.price-filter__range-fields input::placeholder {
  color: #9aa1ab;
}

.price-filter__search {
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 12px 24px rgba(255, 90, 0, 0.22);
  transition: transform 180ms ease, background 180ms ease;
}

.price-filter__search:hover {
  background: var(--orange-dark);
  transform: translateY(-1px);
}

.price-filter__field label {
  font-size: 0.78rem;
}

.filter-group {
  border: 0;
  margin: 18px 0 0;
  padding: 0;
}

.filter-group legend {
  margin-bottom: 9px;
  color: var(--graphite);
  font-size: 0.9rem;
  font-weight: 900;
}

.marketplace-filter__grid {
  display: grid;
  gap: 8px;
}

.marketplace-filter .checkbox-field {
  min-height: 42px;
  align-self: auto;
}

.price-filter__actions {
  justify-content: stretch;
  flex-wrap: wrap;
  margin-top: 14px;
}

.price-filter__actions .subtle-button {
  flex: 1 1 120px;
}

.product-detail {
  display: grid;
  grid-template-columns: minmax(290px, 0.9fr) minmax(320px, 1.1fr);
  gap: 34px;
  align-items: start;
}

.product-detail__media,
.product-detail__info,
.cart-summary,
.checkout-form {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
  box-shadow: 0 8px 24px rgba(17, 24, 32, 0.04);
}

.product-detail__media {
  position: relative;
  padding: 28px;
}

.product-detail__media img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
  background: var(--soft-2);
  border-radius: 12px;
}

.product-detail__info {
  padding: 30px;
}

.product-detail h1 {
  margin: 0 0 14px;
  font-size: 2.7rem;
  line-height: 1.1;
}

.product-description {
  color: var(--text);
  line-height: 1.72;
  margin: 18px 0 22px;
}

.shipping-panel {
  margin: 18px 0 0;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--soft-2);
}

.shipping-panel strong,
.shipping-panel span {
  display: block;
}

.shipping-panel strong {
  color: var(--graphite);
  font-size: 0.92rem;
}

.shipping-panel span {
  margin-top: 2px;
  color: var(--text);
  font-size: 0.88rem;
  line-height: 1.45;
}

.shipping-panel--free {
  border-color: rgba(18, 133, 74, 0.24);
  background: #f1fbf5;
}

.shipping-panel--free .icon {
  color: #12854a;
}

.partner-seal--detail {
  left: 42px;
  bottom: 42px;
  min-height: 38px;
  font-size: 0.78rem;
}

.partner-seal--detail img {
  width: 30px;
  height: 30px;
}

.affiliate-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 18px;
}

.affiliate-link {
  min-height: 50px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--graphite);
  font-weight: 900;
  transition: transform 180ms ease, border-color 180ms ease, color 180ms ease;
}

.affiliate-link:hover {
  transform: translateY(-2px);
  border-color: var(--orange);
  color: var(--orange);
}

.product-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.favorite-cta,
.subtle-button {
  min-height: 46px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--graphite);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 16px;
  font-weight: 900;
  transition: transform 180ms ease, border-color 180ms ease, color 180ms ease, background 180ms ease;
}

.favorite-cta:hover,
.favorite-cta.is-active,
.subtle-button:hover {
  transform: translateY(-2px);
  border-color: var(--orange);
  color: var(--orange);
  background: #fff0e8;
}

.cart-layout,
.checkout-layout,
.account-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 24px;
  align-items: start;
}

.account-layout {
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
}

.account-layout--login {
  grid-template-columns: minmax(0, 1fr) 360px;
}

.cart-suggestions {
  margin-top: 34px;
}

.account-panel {
  padding: 24px;
  box-shadow: 0 8px 24px rgba(17, 24, 32, 0.04);
}

.account-panel h2 {
  margin: 0 0 10px;
  font-size: 1.25rem;
}

.account-panel p {
  color: var(--text);
  line-height: 1.65;
}

.account-profile__head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.account-avatar {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #fff0e8;
  color: var(--orange);
  display: grid;
  place-items: center;
  font-size: 1.4rem;
  font-weight: 900;
}

.account-email {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.9rem;
}

.account-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.account-mode {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.account-mode .btn,
.account-mode .subtle-button {
  margin-top: 0;
}

.account-status {
  display: none;
  margin-top: 16px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--soft-2);
  color: var(--text);
  line-height: 1.55;
}

.account-status.is-visible {
  display: block;
}

.account-status a {
  display: inline-block;
  margin-top: 6px;
  color: var(--orange);
  font-weight: 900;
  text-decoration: none;
}

.btn:disabled,
.subtle-button:disabled {
  cursor: wait;
  opacity: 0.68;
  transform: none;
}

.account-benefits {
  display: grid;
  gap: 12px;
  margin-top: 16px;
}

.favorite-list {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.favorite-item {
  display: grid;
  grid-template-columns: 82px 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--soft-2);
}

.favorite-item img {
  width: 82px;
  aspect-ratio: 1;
  border-radius: 8px;
  object-fit: contain;
  background: var(--white);
}

.favorite-item h3 {
  margin: 0 0 6px;
  font-size: 1rem;
}

.favorite-item__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.cart-list {
  display: grid;
  gap: 12px;
}

.cart-item {
  display: grid;
  grid-template-columns: 96px 1fr auto;
  gap: 16px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
  padding: 12px;
}

.cart-item img {
  width: 96px;
  aspect-ratio: 1;
  border-radius: 8px;
  object-fit: contain;
  background: var(--soft-2);
}

.cart-item h3 {
  margin: 0 0 8px;
  font-size: 1rem;
}

.qty-control {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.qty-control button {
  width: 34px;
  height: 34px;
  border: 0;
  background: var(--white);
  color: var(--graphite);
  display: grid;
  place-items: center;
}

.qty-control span {
  width: 38px;
  text-align: center;
  font-weight: 900;
}

.icon-button {
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--graphite);
  display: grid;
  place-items: center;
}

.icon-button:hover {
  color: var(--orange);
  border-color: var(--orange);
}

.icon-button.is-active {
  color: var(--orange);
  border-color: var(--orange);
  background: #fff0e8;
}

.icon-button.is-active .icon {
  fill: currentColor;
}

.cart-summary {
  padding: 22px;
  position: sticky;
  top: 178px;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 10px 0;
  color: var(--text);
}

.summary-row strong {
  color: var(--graphite);
}

.summary-row--total {
  border-top: 1px solid var(--line);
  margin-top: 8px;
  padding-top: 16px;
  font-size: 1.22rem;
  font-weight: 900;
  color: var(--graphite);
}

.empty-state {
  min-height: 280px;
  border: 1px dashed var(--line);
  border-radius: 12px;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 34px;
  background: var(--soft-2);
}

.empty-state h2 {
  margin: 12px 0 8px;
}

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

.field {
  display: grid;
  gap: 7px;
}

.field--full {
  grid-column: 1 / -1;
}

.field label {
  font-weight: 800;
  color: var(--graphite);
  font-size: 0.9rem;
}

.field input,
.field select,
.field textarea {
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0 14px;
  outline: 0;
  color: var(--graphite);
  background: var(--white);
}

.field textarea {
  min-height: 130px;
  padding-top: 12px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 4px rgba(255, 90, 0, 0.1);
}

.checkbox-field {
  min-height: 46px;
  align-self: end;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0 14px;
  color: var(--graphite);
  font-size: 0.9rem;
  font-weight: 800;
  background: var(--white);
}

.checkbox-field input {
  width: 18px;
  height: 18px;
  accent-color: var(--orange);
}

.category-picker {
  border: 0;
  margin: 0;
  padding: 0;
}

.category-picker legend {
  margin-bottom: 7px;
  color: var(--graphite);
  font-size: 0.9rem;
  font-weight: 800;
}

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

.checkout-form,
.info-card,
.policy-card {
  padding: 24px;
}

.account-form h2 {
  margin: 0 0 10px;
  font-size: 1.25rem;
}

.account-form p {
  color: var(--text);
  line-height: 1.65;
  margin-top: 0;
}

.account-empty {
  min-height: 260px;
  display: grid;
  place-items: center;
  gap: 10px;
  text-align: center;
  padding: 24px;
  border: 1px dashed var(--line);
  border-radius: var(--radius);
  background: var(--soft-2);
  margin-top: 16px;
}

.account-empty h3,
.account-empty p {
  margin: 0;
}

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

.info-card {
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.info-card h2,
.policy-card h2 {
  margin: 12px 0 8px;
  font-size: 1.15rem;
}

.info-card p,
.policy-card p,
.policy-card li {
  color: var(--text);
  line-height: 1.7;
}

.policy-grid {
  display: grid;
  gap: 16px;
}

.policy-card ul {
  margin: 10px 0 0;
  padding-left: 20px;
}

.import-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.8fr);
  align-items: start;
  gap: 18px;
}

.import-panel h2 {
  margin: 0;
  font-size: 1.25rem;
}

.admin-login-form {
  max-width: 520px;
}

.import-form__actions {
  margin-top: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.import-panel__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.import-list {
  display: grid;
  gap: 10px;
}

.imported-product {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.imported-product img {
  width: 72px;
  aspect-ratio: 1;
  object-fit: contain;
  border-radius: 8px;
  background: var(--soft-2);
}

.imported-product h3 {
  margin: 0 0 8px;
  font-size: 0.95rem;
  line-height: 1.35;
}

.imported-product__actions {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.imported-product__actions .subtle-button {
  min-height: 40px;
  padding-inline: 12px;
}

.muted-text {
  color: var(--text);
  line-height: 1.65;
}

.toast {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 60;
  max-width: min(360px, calc(100% - 36px));
  padding: 14px 16px;
  border-radius: var(--radius);
  background: var(--graphite);
  color: var(--white);
  box-shadow: var(--shadow);
  transform: translateY(16px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease;
}

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

.icon {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
  flex: 0 0 auto;
}

.icon--orange {
  color: var(--orange);
}

.icon--large {
  width: 54px;
  height: 54px;
}

.icon--star {
  width: 13px;
  height: 13px;
  fill: currentColor;
  stroke: currentColor;
}

.rating .is-muted {
  color: #d8dce1;
}

@media (max-width: 1120px) {
  .hero h1 {
    font-size: 3rem;
  }

  .main-header__inner {
    grid-template-columns: 160px 1fr;
  }

  .header-actions {
    grid-column: 1 / -1;
    justify-content: flex-end;
    margin-top: -16px;
  }

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

  .hero__panel {
    min-height: 520px;
  }

  .hero__copy {
    padding: 42px 42px 44px;
  }

  .hero__media {
    min-height: 0;
    padding: 0;
  }

  .affiliate-bubble--amazon {
    right: 24%;
  }

  .affiliate-bubble--shopee {
    right: 5%;
  }

  .affiliate-bubble--mercado {
    right: 28%;
  }

  .affiliate-bubble--temu {
    right: 8%;
  }

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

@media (max-width: 860px) {
  .page-hero h1 {
    font-size: 2.45rem;
  }

  .product-detail h1 {
    font-size: 2.2rem;
  }

  .container {
    width: calc(100% - 24px);
    max-width: 1200px;
  }

  .topbar__inner {
    grid-template-columns: 1fr;
    justify-items: center;
    min-height: 54px;
    gap: 4px;
  }

  .topbar__message {
    grid-column: auto;
    max-width: 310px;
    text-align: center;
    font-size: 0.74rem;
  }

  .topbar__links {
    display: none;
  }

  .main-header__inner {
    display: flex;
    flex-wrap: wrap;
    position: relative;
    min-height: 132px;
    gap: 12px;
    padding: 12px 0;
  }

  .brand {
    flex: 1 1 auto;
  }

  .brand__text {
    font-size: 1.75rem;
  }

  .search {
    order: 3;
    flex: 0 0 100%;
    width: 100%;
    max-width: 100%;
  }

  .header-actions {
    flex: 0 0 auto;
    margin-top: 0;
    gap: 8px;
  }

  .header-action span {
    display: none;
  }

  .nav {
    position: relative;
  }

  .nav__inner {
    justify-content: space-between;
    min-height: 58px;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav__links {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(320px, 86vw);
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    padding: 96px 24px 24px;
    background: var(--white);
    box-shadow: -20px 0 50px rgba(17, 24, 32, 0.18);
    overflow-y: auto;
    transform: translateX(110%);
    transition: transform 220ms ease;
    z-index: 50;
  }

  .nav-open .nav__links {
    transform: translateX(0);
  }

  .nav__link {
    width: 100%;
    justify-content: flex-start;
    min-height: 48px;
    padding: 0 14px;
    border-radius: var(--radius);
  }

  .nav__link--highlight {
    margin-top: 4px;
    padding-inline: 12px;
    border-radius: var(--radius);
    background: rgba(255, 90, 0, 0.04);
  }

  .nav-backdrop {
    position: fixed;
    inset: 0;
    z-index: 45;
    background: rgba(17, 24, 32, 0.42);
    opacity: 0;
    pointer-events: none;
    transition: opacity 220ms ease;
  }

  .nav-open .nav-backdrop {
    opacity: 1;
    pointer-events: auto;
  }

  .hero__copy {
    padding: 34px 28px 0;
  }

  .hero__panel::before {
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.99) 0%, rgba(255, 255, 255, 0.93) 58%, rgba(255, 255, 255, 0.36) 100%);
  }

  .hero__image {
    object-position: 72% center;
  }

  .hero-affiliate-bubbles {
    z-index: 2;
  }

  .affiliate-bubble {
    width: 84px;
  }

  .affiliate-bubble--amazon {
    top: 34px;
    right: 18%;
  }

  .affiliate-bubble--shopee {
    top: 108px;
    right: 4%;
    width: 78px;
  }

  .affiliate-bubble--mercado {
    right: 22%;
    bottom: 138px;
    width: 92px;
  }

  .affiliate-bubble--temu {
    right: 5%;
    bottom: 118px;
    width: 74px;
  }

  .hero__media {
    min-height: 0;
  }

  .category-grid,
  .category-layout--with-sidebar,
  .product-grid,
  .promo-grid,
  .product-detail,
  .cart-layout,
  .checkout-layout,
  .account-layout,
  .info-grid {
    grid-template-columns: 1fr 1fr;
  }

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

  .promo-card__visual {
    width: 190px;
    justify-self: end;
  }

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

  .offer-carousel__track {
    grid-auto-columns: minmax(140px, 42vw);
  }

  .cart-summary {
    position: static;
  }
}

@media (max-width: 620px) {
  .main-header__inner {
    min-height: 156px;
    padding-bottom: 78px;
  }

  .header-actions {
    position: absolute;
    top: 26px;
    right: 0;
  }

  .header-action {
    min-height: 38px;
  }

  .search {
    position: absolute;
    left: 0;
    right: auto;
    bottom: 12px;
    width: 300px;
    max-width: calc(100vw - 24px);
    margin: 0;
  }

  .section {
    padding: 20px 0;
  }

  .hero {
    padding-top: 16px;
  }

  .hero__panel {
    border-radius: 16px;
  }

  .hero h1 {
    font-size: 1.95rem;
  }

  .section-heading h2 {
    font-size: 1.35rem;
  }

  .promo-card h2 {
    font-size: 1.45rem;
  }

  .page-hero h1 {
    font-size: 1.9rem;
  }

  .product-detail h1 {
    font-size: 1.85rem;
  }

  .hero p {
    font-size: 0.98rem;
  }

  .hero__media {
    min-height: 0;
    padding-bottom: 0;
  }

  .hero__circle {
    display: none;
  }

  .hero-affiliate-bubbles {
    display: none;
  }

  .category-grid,
  .product-grid,
  .promo-grid,
  .product-detail,
  .cart-layout,
  .checkout-layout,
  .account-layout,
  .import-layout,
  .info-grid,
  .benefits-strip,
  .footer__grid,
  .affiliate-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .filter-sidebar {
    position: static;
  }

  .offer-carousel {
    padding-inline: 12px;
  }

  .offer-carousel__head {
    align-items: flex-start;
    flex-direction: column;
  }

  .offer-carousel__track {
    grid-auto-columns: minmax(136px, 62vw);
  }

  .offer-carousel__nav {
    display: none;
  }

  .category-card {
    min-height: 96px;
    padding: 16px;
    grid-template-columns: 48px minmax(0, 1fr) 32px;
  }

  .product-card {
    min-height: 330px;
    padding-bottom: 68px;
  }

  .promo-card {
    padding: 28px;
  }

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

  .price-filter__top,
  .price-filter__actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .category-picker__grid {
    grid-template-columns: 1fr;
  }

  .price-filter__range-fields {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) 48px;
  }

  .price-filter__actions .subtle-button {
    width: 100%;
  }

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

  .cart-item img {
    width: 84px;
  }

  .cart-item__actions {
    grid-column: 1 / -1;
    display: flex;
    justify-content: space-between;
  }

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

  .imported-product img {
    width: 64px;
  }

  .imported-product__actions {
    grid-column: 1 / -1;
    justify-content: space-between;
  }

  .import-panel__head {
    align-items: flex-start;
    flex-direction: column;
  }

  .favorite-item {
    grid-template-columns: 72px 1fr;
  }

  .favorite-item img {
    width: 72px;
  }

  .favorite-item__actions {
    grid-column: 1 / -1;
    justify-content: stretch;
  }

  .favorite-item__actions .subtle-button {
    flex: 1 1 140px;
  }

  .footer {
    margin-top: 20px;
  }
}

@media (max-width: 420px) {
  .price-filter__range-fields {
    grid-template-columns: 1fr 1fr;
  }

  .price-filter__search {
    grid-column: 1 / -1;
    width: 100%;
    border-radius: var(--radius);
  }

  .partner-seal {
    max-width: calc(100% - 16px);
    left: 8px;
    bottom: 8px;
  }
}

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 650ms ease,
    transform 650ms cubic-bezier(0.2, 0.8, 0.2, 1),
    background 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease,
    color 180ms ease;
  will-change: opacity, transform;
}

.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-on-scroll[data-reveal-delay="1"] {
  transition-delay: 80ms;
}

.reveal-on-scroll[data-reveal-delay="2"] {
  transition-delay: 160ms;
}

.reveal-on-scroll[data-reveal-delay="3"] {
  transition-delay: 240ms;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
    animation: none !important;
  }

  .reveal-on-scroll {
    opacity: 1 !important;
    transform: none !important;
  }
}
