:root {
  --blue: #0033ff;
  --blue-dark: #0027c9;
  --red: #e60023;
  --ink: #111111;
  --muted: #666a73;
  --line: #e4e5e8;
  --soft: #f5f6f8;
  --surface: #ffffff;
  --success: #14853b;
  --radius: 8px;
  --page: 1440px;
  --font: Arial, Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
}

/* Garante que o atributo "hidden" sempre esconda o elemento, mesmo quando
   uma regra de autor mais abaixo define "display" pro mesmo seletor (ex:
   .panel-summary { display: grid }), o que normalmente venceria o [hidden]
   do stylesheet do navegador por ter a mesma especificidade. */
[hidden] {
  display: none !important;
}

/* Transicao suave entre paginas em navegadores que suportam (Chrome/Edge) --
   ignorado silenciosamente nos que nao suportam, sem custo nenhum. */
@view-transition {
  navigation: auto;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--surface);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.45;
}

body.modal-open {
  overflow: hidden;
}

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

button,
input,
select {
  font: inherit;
}

button,
select {
  cursor: pointer;
}

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

h1,
h2,
h3,
p {
  margin-top: 0;
}

:focus-visible {
  outline: 3px solid rgba(0, 51, 255, 0.32);
  outline-offset: 2px;
}

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

.top-message {
  min-height: 34px;
  padding: 6px 24px;
  color: #fff;
  background: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(32px, 8vw, 120px);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.mobile-top-arrow,
.mobile-top-newsletter {
  display: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: #fff;
  box-shadow: 0 1px 0 rgba(17, 17, 17, 0.1);
}

.header-main {
  width: min(calc(100% - 48px), var(--page));
  min-height: 82px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: 160px minmax(260px, 1fr) auto;
  align-items: center;
  gap: 30px;
}

.header-logo,
.checkout-brand {
  display: inline-flex;
  align-items: center;
}

.marti-logo-image {
  width: 100px;
  height: auto;
  display: block;
}

.search-form {
  height: 44px;
  display: flex;
  overflow: hidden;
  background: #f4f4f4;
  border: 1px solid transparent;
  border-radius: 24px;
}

.search-form:focus-within {
  border-color: var(--blue);
  background: #fff;
}

.search-form input {
  width: 100%;
  min-width: 0;
  padding: 0 8px 0 20px;
  color: var(--ink);
  background: transparent;
  border: 0;
  outline: 0;
}

.search-form input::placeholder {
  color: #777;
}

.search-form button {
  width: 52px;
  padding: 0;
  display: grid;
  place-items: center;
  color: var(--blue);
  background: transparent;
  border: 0;
}

.ui-icon {
  width: 24px;
  height: 24px;
  display: inline-grid;
  place-items: center;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 1;
}

.ui-icon svg {
  width: 22px;
  height: 22px;
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.header-actions {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 24px;
}

.header-actions a {
  position: relative;
  min-width: 48px;
  display: grid;
  justify-items: center;
  gap: 3px;
  color: #242424;
  font-size: 11px;
  white-space: nowrap;
}

.header-actions a:hover {
  color: var(--blue);
}

.cart-count {
  position: absolute;
  top: -6px;
  right: 4px;
  min-width: 18px;
  height: 18px;
  padding-inline: 4px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--red);
  border: 2px solid #fff;
  border-radius: 10px;
  font-size: 10px;
}

.mobile-menu {
  display: none;
}

.category-nav {
  border-top: 1px solid #ededed;
}

.category-nav-inner {
  width: min(calc(100% - 48px), var(--page));
  min-height: 48px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  overflow-x: auto;
  scrollbar-width: none;
}

.category-nav-inner::-webkit-scrollbar {
  display: none;
}

.category-nav a {
  position: relative;
  padding: 15px 0 13px;
  color: #242424;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.025em;
  text-transform: uppercase;
  white-space: nowrap;
}

.category-nav a::after {
  position: absolute;
  right: 0;
  bottom: 6px;
  left: 0;
  height: 2px;
  background: var(--blue);
  content: "";
  transform: scaleX(0);
  transition: transform 180ms ease;
}

.category-nav a:hover,
.category-nav a.is-active {
  color: var(--blue);
}

.category-nav a:hover::after,
.category-nav a.is-active::after {
  transform: scaleX(1);
}

.category-nav .sale-link {
  color: var(--red);
}

.banner-carousel {
  position: relative;
  width: min(calc(100% - 48px), 1510px);
  margin-inline: auto;
  overflow: hidden;
  background: #e8e8e8;
  border-radius: 8px;
}

.carousel-track {
  position: relative;
  aspect-ratio: 4 / 1;
}

.carousel-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 550ms ease;
}

.carousel-slide.is-active {
  opacity: 1;
  pointer-events: auto;
}

.carousel-slide picture,
.carousel-slide img {
  width: 100%;
  height: 100%;
}

.carousel-slide img {
  object-fit: cover;
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 44px;
  height: 56px;
  color: #111;
  background: rgba(255, 255, 255, 0.88);
  border: 0;
  font-size: 40px;
  line-height: 1;
  transform: translateY(-50%);
}

.carousel-arrow:hover {
  color: var(--blue);
  background: #fff;
}

.carousel-arrow.previous {
  left: 18px;
}

.carousel-arrow.next {
  right: 18px;
}

.carousel-dots {
  position: absolute;
  right: 0;
  bottom: 18px;
  left: 0;
  z-index: 3;
  display: flex;
  justify-content: center;
  gap: 8px;
}

.carousel-dots button {
  width: 8px;
  height: 8px;
  padding: 0;
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(0, 0, 0, 0.28);
  border-radius: 50%;
}

.carousel-dots button.is-active {
  width: 26px;
  background: var(--blue);
  border-color: var(--blue);
  border-radius: 5px;
}

.home-section {
  width: min(calc(100% - 48px), 1510px);
  margin: 76px auto;
}

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

.section-heading.centered {
  justify-content: center;
  text-align: center;
}

.section-heading span,
.eyebrow {
  display: block;
  margin-bottom: 6px;
  color: var(--blue);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.1;
  letter-spacing: -0.035em;
}

.section-heading > a {
  padding-bottom: 4px;
  color: var(--blue);
  border-bottom: 1px solid var(--blue);
  font-size: 13px;
  font-weight: 700;
}

.section-heading > a b {
  margin-left: 4px;
}

.carousel-section-heading {
  margin-bottom: 18px;
  justify-content: center;
  text-align: center;
}

.carousel-section-heading h2 {
  font-size: clamp(24px, 2vw, 30px);
  letter-spacing: -0.025em;
}

.category-section {
  margin-top: 64px;
}

.launch-section {
  margin-top: 42px;
  margin-bottom: 30px;
}

.launch-section .carousel-section-heading {
  margin-bottom: 18px;
}

.launch-carousel,
.discount-carousel {
  position: relative;
}

.launch-rail,
.discount-rail {
  display: grid;
  grid-auto-flow: column;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.launch-rail {
  grid-auto-columns: 18%;
  gap: 10px;
  padding: 1px 1px 5px;
}

.launch-rail::-webkit-scrollbar,
.discount-rail::-webkit-scrollbar {
  display: none;
}

.launch-card {
  min-width: 0;
  display: grid;
  gap: 14px;
  color: #555;
  font-size: 11px;
  text-align: center;
  scroll-snap-align: start;
}

.launch-card-image {
  aspect-ratio: 1;
  display: block;
  overflow: hidden;
  background: #f4f4f4;
  border-radius: 8px;
}

.launch-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 220ms ease;
}

.launch-card:hover .launch-card-image img {
  transform: scale(1.035);
}

.discount-section {
  margin-top: 28px;
  margin-bottom: 66px;
}

.discount-rail {
  grid-auto-columns: 17%;
  gap: 20px;
  padding: 1px;
}

.discount-card {
  position: relative;
  height: 134px;
  min-width: 0;
  padding: 16px 10px 14px 18px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 46%;
  align-items: center;
  overflow: hidden;
  color: #d50035;
  background: #fff;
  border: 4px solid #d50035;
  border-radius: 10px;
  scroll-snap-align: start;
}

.discount-copy {
  position: relative;
  z-index: 1;
  min-width: 0;
  display: grid;
  align-content: center;
}

.discount-copy small {
  margin-bottom: 6px;
  font-size: 11px;
  font-weight: 800;
}

.discount-copy strong {
  font-size: 22px;
  line-height: 1;
  white-space: nowrap;
}

.discount-copy strong em {
  margin-left: 3px;
  font-size: 17px;
  font-style: normal;
  font-weight: 500;
}

.discount-copy b {
  margin-top: 5px;
  font-size: 12px;
  line-height: 1.15;
}

.discount-card img {
  width: 100%;
  height: 108px;
  object-fit: contain;
}

.launch-carousel .brand-carousel-arrow {
  top: 45%;
}

.discount-carousel .brand-carousel-arrow {
  top: 50%;
}

.category-tiles {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 20px;
}

.category-tile {
  display: grid;
  gap: 14px;
  text-align: center;
}

.category-tile > div {
  aspect-ratio: 1;
  overflow: hidden;
  background: #f2f2f2;
  border-radius: 50%;
}

.category-tile img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  mix-blend-mode: multiply;
  transition: transform 250ms ease;
}

.category-tile:hover img {
  transform: scale(1.05);
}

.category-tile strong {
  font-size: 14px;
  text-transform: uppercase;
}

.product-carousel {
  position: relative;
}

.product-rail {
  display: grid;
  grid-auto-columns: calc((100% - 50px) / 6);
  grid-auto-flow: column;
  gap: 10px;
  overflow-x: auto;
  padding: 1px 1px 6px;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.product-rail::-webkit-scrollbar {
  display: none;
}

.product-carousel-arrow {
  position: absolute;
  top: 42%;
  z-index: 3;
  width: 50px;
  height: 50px;
  padding: 0;
  display: grid;
  place-items: center;
  color: #999;
  background: #fff;
  border: 1px solid #ededed;
  border-radius: 50%;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
  font-size: 34px;
  line-height: 1;
  transform: translateY(-50%);
  transition: color 160ms ease, opacity 160ms ease, transform 160ms ease;
}

.product-carousel-arrow:hover {
  color: var(--blue);
  transform: translateY(-50%) scale(1.04);
}

.product-carousel-arrow.previous {
  left: -24px;
}

.product-carousel-arrow.next {
  right: -24px;
}

.product-carousel-arrow:disabled {
  opacity: 0.32;
  cursor: default;
  pointer-events: none;
}

@keyframes card-enter {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.product-card {
  min-width: 0;
  background: #fff;
  transition: box-shadow 220ms ease;
  animation: card-enter 420ms ease both;
}

.product-card:hover {
  box-shadow: 0 10px 24px rgba(17, 17, 17, 0.08);
}

/* Escalona os primeiros cards pra nao entrarem todos de uma vez -- so os
   visiveis na primeira dobra, os de baixo a animacao ja terminou antes de
   rolar ate eles. Roda uma unica vez via CSS puro (sem depender de JS/scroll,
   entao nunca fica produto "preso" invisivel se algo no JS falhar). */
.product-card:nth-child(2) { animation-delay: 40ms; }
.product-card:nth-child(3) { animation-delay: 80ms; }
.product-card:nth-child(4) { animation-delay: 120ms; }
.product-card:nth-child(5) { animation-delay: 160ms; }
.product-card:nth-child(6) { animation-delay: 200ms; }
.product-card:nth-child(7) { animation-delay: 240ms; }
.product-card:nth-child(8) { animation-delay: 280ms; }
.product-card:nth-child(n+9) { animation-delay: 320ms; }

@media (prefers-reduced-motion: reduce) {
  .product-card {
    animation: none;
  }
}

.product-card-link {
  display: block;
}

.product-card-image {
  position: relative;
  aspect-ratio: 1 / 1.08;
  overflow: hidden;
  background: #f5f5f5;
}

.product-card-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 260ms ease;
}

.product-card:hover .product-card-image img {
  transform: scale(1.035);
}

.favorite-button {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 50%;
  font-size: 24px;
  line-height: 1;
}

.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 1;
  padding: 5px 8px;
  color: #fff;
  background: var(--red);
  font-size: 11px;
  font-weight: 800;
}

.product-badge.sold-out {
  color: #fff;
  background: #555;
}

.product-card-info {
  padding: 14px 4px 12px;
}

.product-meta {
  display: flex;
  align-items: center;
  gap: 10px;
}

.product-brand {
  color: #4f535c;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.product-gender {
  padding-left: 10px;
  color: #333;
  border-left: 1px solid #333;
  font-size: 11px;
}

.product-card-info h3 {
  height: 42px;
  margin: 5px 0 10px;
  overflow: hidden;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.45;
}

.installment-note {
  min-height: 34px;
  margin-bottom: 7px;
  display: block;
  color: #00ad35;
  font-size: 11px;
  line-height: 1.35;
}

.product-pricing {
  min-height: 24px;
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.product-pricing strong {
  color: var(--red);
  font-size: 18px;
}

.product-pricing del {
  color: #777;
  font-size: 12px;
}

.product-card-info small {
  display: block;
  margin-top: 2px;
  color: #777;
  font-size: 10px;
}

.product-carousel .product-card {
  min-height: 500px;
  overflow: hidden;
  border: 1px solid #d8d8d8;
  border-radius: 15px;
  scroll-snap-align: start;
}

.product-carousel .product-card-link {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.product-carousel .product-card-image {
  width: calc(100% - 32px);
  margin: 16px;
  aspect-ratio: 1;
  flex: 0 0 auto;
  background: #f6f6f6;
  border-radius: 13px;
}

.product-carousel .favorite-button {
  top: 12px;
  right: 12px;
  width: 24px;
  height: 24px;
  color: #888;
  border: 1px solid #eee;
  font-size: 16px;
}

.product-carousel .product-badge {
  top: 10px;
  left: 10px;
  padding: 5px 10px;
  color: var(--red);
  background: #fff;
  border: 1px solid var(--red);
  border-radius: 16px;
  font-weight: 500;
}

.product-carousel .product-badge.sold-out {
  color: #555;
  background: #fff;
  border-color: #777;
}

.product-carousel .product-card-info {
  height: 100%;
  padding: 26px 16px 20px;
  display: flex;
  flex-direction: column;
}

.product-carousel .product-brand {
  color: #111;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: none;
}

.product-carousel .product-card-info h3 {
  height: 64px;
  margin: 18px 0 10px;
  font-size: 13px;
  line-height: 1.55;
}

.product-carousel .installment-note {
  margin-top: auto;
  font-size: 11px;
}

.product-carousel .product-pricing {
  min-height: 46px;
  display: grid;
  align-content: end;
  justify-content: start;
  gap: 0;
}

.product-carousel .product-pricing strong {
  color: #111;
  font-size: 20px;
  line-height: 1.1;
}

.product-carousel .has-discount .product-pricing strong {
  color: var(--red);
}

.product-carousel .product-pricing del {
  color: #999;
  font-size: 11px;
}

.image-placeholder {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  color: #888;
  background: #f3f3f3;
  text-align: center;
}

.favorite-categories-section {
  margin-top: 84px;
  margin-bottom: 62px;
}

.brands-section {
  margin-top: 0;
  margin-bottom: 28px;
}

.brands-heading {
  margin-bottom: 22px;
  text-align: center;
}

.brands-heading h2 {
  margin-bottom: 2px;
  font-size: clamp(25px, 2vw, 31px);
  line-height: 1.15;
  letter-spacing: -0.025em;
}

.brands-heading p {
  margin: 0;
  font-size: 13px;
}

.brand-carousel {
  position: relative;
}

.brand-rail {
  display: grid;
  grid-auto-columns: calc((100% - 50px) / 6);
  grid-auto-flow: column;
  gap: 10px;
  overflow-x: auto;
  padding: 1px 1px 6px;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.brand-rail::-webkit-scrollbar {
  display: none;
}

.brand-card {
  min-width: 0;
  display: grid;
  gap: 18px;
  text-align: center;
  scroll-snap-align: start;
}

.brand-card-image {
  aspect-ratio: 1;
  display: block;
  overflow: hidden;
  background: #f8f8f8;
  border-radius: 50%;
}

.brand-card-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 220ms ease;
}

.brand-card:hover .brand-card-image img {
  transform: scale(1.04);
}

.brand-card strong {
  font-size: 12px;
  font-weight: 900;
  line-height: 1.25;
  text-transform: uppercase;
}

.brand-carousel-arrow,
.middle-banner-arrow {
  position: absolute;
  z-index: 3;
  width: 50px;
  height: 50px;
  padding: 0;
  display: grid;
  place-items: center;
  color: #999;
  background: #fff;
  border: 1px solid #ededed;
  border-radius: 50%;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
  font-size: 35px;
  line-height: 1;
  transform: translateY(-50%);
  transition: color 160ms ease, opacity 160ms ease, transform 160ms ease;
}

.brand-carousel-arrow {
  top: 45%;
}

.brand-carousel-arrow:hover,
.middle-banner-arrow:hover {
  color: var(--blue);
  transform: translateY(-50%) scale(1.04);
}

.brand-carousel-arrow.previous,
.middle-banner-arrow.previous {
  left: -24px;
}

.brand-carousel-arrow.next,
.middle-banner-arrow.next {
  right: -24px;
}

.brand-carousel-arrow:disabled {
  opacity: 0.32;
  cursor: default;
  pointer-events: none;
}

.middle-banner-carousel {
  position: relative;
  width: min(calc(100% - 48px), 1510px);
  margin: 18px auto 0;
  padding-bottom: 20px;
}

.middle-banner-track {
  position: relative;
  aspect-ratio: 1920 / 300;
  overflow: hidden;
  background: #f2f2f2;
  border-radius: 9px;
}

.middle-banner-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 500ms ease;
}

.middle-banner-slide.is-active {
  opacity: 1;
  pointer-events: auto;
}

.middle-banner-slide picture,
.middle-banner-slide img {
  width: 100%;
  height: 100%;
}

.middle-banner-slide img {
  object-fit: cover;
}

.middle-banner-arrow {
  top: calc(50% - 10px);
}

.middle-banner-dots {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  justify-content: center;
  gap: 7px;
}

.middle-banner-dots button {
  width: 8px;
  height: 8px;
  padding: 0;
  background: #d7d7d7;
  border: 0;
  border-radius: 50%;
}

.middle-banner-dots button.is-active {
  width: 24px;
  background: var(--blue);
  border-radius: 5px;
}

.adidas-catalog {
  margin-top: 44px;
}

.benefits-bar {
  padding: 28px max(24px, calc((100vw - var(--page)) / 2 + 24px));
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  background: #f2f3f5;
  border-top: 1px solid var(--line);
}

.benefits-bar > div {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.benefits-bar .ui-icon {
  color: var(--blue);
  font-size: 26px;
}

.benefits-bar span {
  display: grid;
  color: var(--muted);
  font-size: 12px;
}

.benefits-bar strong {
  color: var(--ink);
  font-size: 13px;
}

.store-benefits {
  width: min(calc(100% - 48px), 1050px);
  margin: 82px auto 54px;
}

.benefits-heading {
  margin-bottom: 30px;
  text-align: center;
}

.benefits-heading h2 {
  margin-bottom: 2px;
  font-size: 25px;
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.benefits-heading p {
  margin: 0;
  font-size: 13px;
}

.benefit-cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.benefit-card {
  min-height: 216px;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  flex-direction: column;
  background: #fff;
  border: 1px solid #d5d5d5;
  border-radius: 24px;
  text-align: center;
}

.benefit-card img {
  width: 64px;
  height: 64px;
  margin-bottom: 12px;
  object-fit: contain;
}

.benefit-card h3 {
  margin: 0 0 2px;
  color: var(--blue);
  font-size: 17px;
  font-weight: 500;
}

.benefit-card p {
  min-height: 38px;
  margin: 0;
  font-size: 12px;
  line-height: 1.3;
}

.benefit-card a {
  margin-top: auto;
  color: #000;
  font-size: 12px;
  font-weight: 800;
  text-decoration: underline;
}

.newsletter-area {
  width: min(calc(100% - 48px), 1510px);
  margin: 0 auto 64px;
}

.newsletter-banner {
  min-height: 152px;
  padding: 32px clamp(40px, 13vw, 220px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  background: #f5f5f5;
  border-radius: 24px;
}

.newsletter-banner h2 {
  margin-bottom: 6px;
  font-size: 19px;
  letter-spacing: -0.02em;
}

.newsletter-banner p {
  margin: 0;
  font-size: 12px;
}

.newsletter-banner button {
  min-width: 152px;
  min-height: 46px;
  padding: 12px 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #fff;
  background: var(--blue);
  border: 0;
  border-radius: 24px;
  font-size: 12px;
  font-weight: 800;
}

.newsletter-banner button:hover {
  background: var(--blue-dark);
}

.newsletter-banner button span {
  font-size: 17px;
}

.quick-links {
  margin-top: 15px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

.quick-links a {
  min-height: 64px;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: #fff;
  border: 1px solid #d5d5d5;
  border-radius: 32px;
  font-size: 13px;
  font-weight: 800;
  transition: color 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.quick-links a:hover {
  color: var(--blue);
  border-color: var(--blue);
  transform: translateY(-2px);
}

.quick-links img {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.newsletter-signup {
  margin-top: 15px;
  padding: 26px clamp(28px, 8vw, 110px);
  background: #f5f5f5;
  border-radius: 18px;
}

.newsletter-signup[hidden] {
  display: none !important;
}

.newsletter-signup label {
  margin-bottom: 9px;
  display: block;
  font-size: 13px;
  font-weight: 800;
}

.newsletter-signup > div {
  display: flex;
}

.newsletter-signup input {
  width: 100%;
  min-width: 0;
  height: 46px;
  padding: 0 16px;
  background: #fff;
  border: 1px solid #aaa;
  border-radius: 23px 0 0 23px;
  outline: 0;
}

.newsletter-signup input:focus {
  border-color: var(--blue);
}

.newsletter-signup button {
  min-width: 180px;
  padding: 0 20px;
  color: #fff;
  background: var(--blue);
  border: 0;
  border-radius: 0 23px 23px 0;
  font-size: 12px;
  font-weight: 800;
}

.newsletter-signup > p {
  margin: 8px 0 0;
  color: #777;
  font-size: 10px;
}

.newsletter-success {
  padding: 8px;
  color: var(--success);
  font-size: 15px;
  font-weight: 800;
  text-align: center;
}

.site-footer {
  color: #fff;
  background: #101010;
}

.footer-grid {
  width: min(calc(100% - 48px), var(--page));
  margin-inline: auto;
  padding: 58px 0 54px;
  display: grid;
  grid-template-columns: 1.25fr 0.75fr 0.85fr 1.4fr;
  gap: 60px;
}

.footer-brand .marti-logo-image {
  width: 92px;
  filter: brightness(0) invert(1);
}

.footer-grid h3 {
  margin-bottom: 18px;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.footer-grid p,
.footer-grid a {
  color: #b8b8b8;
  font-size: 13px;
}

.footer-grid a {
  width: max-content;
  margin-bottom: 10px;
  display: block;
}

.footer-grid a:hover {
  color: #fff;
}

.footer-brand p {
  margin-top: 24px;
}

.newsletter {
  display: flex;
  border-bottom: 1px solid #777;
}

.newsletter input {
  width: 100%;
  min-width: 0;
  padding: 12px 0;
  color: #fff;
  background: transparent;
  border: 0;
  outline: 0;
}

.newsletter button {
  color: #fff;
  background: transparent;
  border: 0;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.footer-bottom {
  width: min(calc(100% - 48px), var(--page));
  min-height: 62px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #999;
  border-top: 1px solid #2f2f2f;
  font-size: 11px;
}

.breadcrumb {
  padding: 24px 0;
  display: flex;
  align-items: center;
  gap: 9px;
  overflow: hidden;
  color: #777;
  font-size: 12px;
  white-space: nowrap;
}

.breadcrumb a:hover {
  color: var(--blue);
}

.breadcrumb span {
  overflow: hidden;
  color: #333;
  text-overflow: ellipsis;
}

.breadcrumb i {
  color: #aaa;
  font-style: normal;
}

.catalog-page {
  padding-bottom: 80px;
}

.catalog-title-row {
  padding: 18px 0 30px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  border-bottom: 1px solid var(--line);
}

.catalog-title-row h1 {
  margin: 0 0 6px;
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1;
  letter-spacing: -0.045em;
}

.catalog-title-row p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.sort-form {
  display: flex;
  align-items: center;
  gap: 12px;
}

.sort-form label {
  color: var(--muted);
  font-size: 12px;
  white-space: nowrap;
}

.sort-form select {
  min-width: 190px;
  height: 42px;
  padding: 0 36px 0 14px;
  color: var(--ink);
  background: #fff;
  border: 1px solid #bbb;
  border-radius: 2px;
}

.subcategories {
  padding: 24px 0;
  display: flex;
  gap: 10px;
  overflow-x: auto;
}

.subcategories a {
  min-width: max-content;
  padding: 10px 14px;
  background: var(--soft);
  border: 1px solid transparent;
  font-size: 12px;
  font-weight: 700;
}

.subcategories a:hover {
  color: var(--blue);
  background: #fff;
  border-color: var(--blue);
}

.subcategories span {
  margin-left: 6px;
  color: #888;
  font-weight: 400;
}

.catalog-layout {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: 38px;
  align-items: start;
}

.filters {
  position: sticky;
  top: 166px;
}

.filter-title {
  min-height: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}

.filter-title strong {
  font-size: 18px;
}

.filter-title a {
  color: var(--blue);
  font-size: 11px;
  text-decoration: underline;
}

.filters details {
  border-bottom: 1px solid var(--line);
}

.filters summary {
  padding: 18px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  font-weight: 800;
  list-style: none;
  text-transform: uppercase;
}

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

.filters summary::after {
  content: "+";
  color: var(--blue);
  font-size: 18px;
}

.filters details[open] summary::after {
  content: "−";
}

.filter-options {
  max-height: 250px;
  padding: 0 0 16px;
  display: grid;
  gap: 11px;
  overflow-y: auto;
}

.filter-options a,
.filter-options > span {
  display: flex;
  align-items: center;
  color: #53565d;
  font-size: 12px;
}

.filter-options a > span {
  margin-left: auto;
  color: #999;
}

.filter-options i {
  width: 15px;
  height: 15px;
  margin-right: 9px;
  border: 1px solid #999;
}

.filter-options a.selected {
  color: var(--blue);
  font-weight: 700;
}

.filter-options a.selected i {
  background: var(--blue);
  border-color: var(--blue);
  box-shadow: inset 0 0 0 3px #fff;
}

.price-range {
  padding: 4px 0 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  color: #777;
  font-size: 11px;
}

.price-range div {
  position: relative;
  width: 100%;
  height: 3px;
  margin-top: 12px;
  background: var(--blue);
}

.price-range div::before,
.price-range div::after {
  position: absolute;
  top: 50%;
  width: 12px;
  height: 12px;
  background: #fff;
  border: 3px solid var(--blue);
  border-radius: 50%;
  content: "";
  transform: translateY(-50%);
}

.price-range div::after {
  right: 0;
}

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

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

.pagination {
  margin-top: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
}

.pagination a,
.pagination > span {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  font-size: 12px;
}

.pagination a:hover,
.pagination a.is-active {
  color: #fff;
  background: var(--blue);
  border-color: var(--blue);
}

.search-results-page .product-grid {
  margin-top: 34px;
}

.product-page {
  padding-bottom: 70px;
}

.product-detail {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(380px, 0.85fr);
  gap: clamp(48px, 7vw, 110px);
  align-items: start;
}

.product-gallery {
  min-width: 0;
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 18px;
}

.gallery-thumbs {
  display: grid;
  align-content: start;
  gap: 12px;
}

.gallery-thumbs button {
  aspect-ratio: 1;
  padding: 3px;
  overflow: hidden;
  background: #f6f6f6;
  border: 1px solid transparent;
}

.gallery-thumbs button.is-active {
  border-color: var(--blue);
}

.gallery-thumbs img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.gallery-main {
  aspect-ratio: 1 / 1.06;
  overflow: hidden;
  background: #f5f5f5;
}

.gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.gallery-slide {
  display: none;
}

.gallery-slide.is-active {
  display: block;
}

.product-buybox {
  position: sticky;
  top: 174px;
}

.product-buybox h1 {
  margin: 8px 0 8px;
  font-size: clamp(25px, 3vw, 38px);
  font-weight: 600;
  line-height: 1.16;
  letter-spacing: -0.035em;
}

.product-reference {
  margin-bottom: 10px;
  color: #888;
  font-size: 11px;
}

.rating {
  color: #ffb400;
  font-size: 14px;
}

.rating a {
  margin-left: 8px;
  color: #555;
  font-size: 11px;
  text-decoration: underline;
}

.buybox-price {
  margin: 22px 0 3px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.buybox-price strong {
  color: var(--red);
  font-size: 29px;
  line-height: 1;
}

.buybox-price del {
  color: #7f7f7f;
  font-size: 14px;
}

.buybox-price > span {
  padding: 3px 6px;
  color: #fff;
  background: var(--red);
  font-size: 11px;
  font-weight: 800;
}

.installments {
  margin-bottom: 24px;
  color: #555;
  font-size: 12px;
}

.size-selector {
  padding: 20px 0;
  border-top: 1px solid var(--line);
}

.size-selector > div:first-child {
  margin-bottom: 13px;
  display: flex;
  justify-content: space-between;
}

.size-selector strong {
  font-size: 13px;
}

.size-guide-link {
  padding: 0;
  color: var(--blue);
  background: transparent;
  border: 0;
  font-size: 11px;
  text-decoration: underline;
}

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

.size-option {
  min-width: 54px;
  height: 40px;
  padding: 0 12px;
  color: var(--ink);
  background: #fff;
  border: 1px solid #aaa;
  border-radius: 10px;
  font-size: 12px;
  transition: background 150ms ease, color 150ms ease, border-color 150ms ease;
}

.size-option:hover {
  border-color: var(--ink);
}

.size-option.is-selected {
  color: #fff;
  background: var(--ink);
  border-color: var(--ink);
}

.size-option:disabled {
  color: #aaa;
  background:
    linear-gradient(to top right, transparent 48%, #ccc 49%, #ccc 51%, transparent 52%),
    #f7f7f7;
  border-color: #ddd;
  cursor: not-allowed;
}

.delivery-card {
  margin-bottom: 16px;
  padding: 16px;
  background: #f5f6f8;
}

.delivery-card > div:first-child {
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.delivery-card span {
  display: grid;
  color: #666;
  font-size: 11px;
}

.delivery-card strong {
  color: var(--ink);
  font-size: 12px;
}

.postal-form {
  display: flex;
}

.postal-form input {
  width: 100%;
  min-width: 0;
  height: 40px;
  padding: 0 12px;
  background: #fff;
  border: 1px solid #bbb;
  outline: 0;
}

.postal-form button {
  padding: 0 18px;
  color: #fff;
  background: #111;
  border: 0;
  font-size: 11px;
  font-weight: 800;
}

.add-to-cart,
.checkout-button,
.place-order,
.primary-button {
  min-height: 52px;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: var(--blue);
  border: 0;
  border-radius: 2px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-align: center;
  text-transform: uppercase;
  transition: background 160ms ease;
}

.add-to-cart {
  width: 100%;
}

.add-to-cart:hover,
.checkout-button:hover,
.place-order:hover,
.primary-button:hover {
  background: var(--blue-dark);
}

.add-to-cart:disabled,
.place-order:disabled,
.checkout-button.is-disabled {
  background: #aaa;
  cursor: not-allowed;
  pointer-events: none;
}

.add-to-cart.is-added {
  background: var(--success);
}

.wishlist-toggle {
  width: 100%;
  min-height: 48px;
  margin-top: 10px;
  padding: 5px 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--ink);
  border-radius: 7px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  transition: color 160ms ease, border-color 160ms ease, background 160ms ease;
}

.wishlist-toggle img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.wishlist-toggle:hover,
.wishlist-toggle.is-selected {
  color: var(--blue);
  background: #f4f7ff;
  border-color: var(--blue);
}

.product-payment-options {
  margin-top: 22px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.product-payment-options > img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

.product-payment-options p {
  margin: 10px 0 8px;
  color: #3f3f3f;
  font-size: 12px;
  line-height: 1.45;
}

.product-payment-options a {
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
  text-decoration: underline;
}

.product-share {
  margin-top: 34px;
  display: grid;
  justify-items: center;
  gap: 10px;
  color: #999;
  font-size: 11px;
}

.product-share > div {
  display: flex;
  align-items: center;
  gap: 10px;
}

.product-share a {
  width: 40px;
  height: 40px;
  padding: 0;
  display: grid;
  place-items: center;
  background: #fff;
  border: 0;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(13, 57, 255, 0.2);
}

.product-share a img {
  width: 30px;
  height: 30px;
  display: block;
  border-radius: 50%;
  object-fit: contain;
}

.product-service-benefits {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.product-service-benefits a {
  display: grid;
  justify-items: center;
  align-content: start;
  gap: 7px;
  color: var(--ink);
  font-size: 9px;
  line-height: 1.18;
  text-align: center;
  text-transform: uppercase;
}

.product-service-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #fff;
  border: 1.5px solid var(--blue);
  border-radius: 50%;
  box-sizing: border-box;
}

.product-service-icon img {
  width: 23px;
  height: 23px;
  display: block;
  object-fit: contain;
}

.product-service-icon-native {
  border: 0;
}

.product-service-icon-native img {
  width: 42px;
  height: 42px;
}

.product-service-benefits strong {
  max-width: 94px;
}

.buybox-benefits {
  margin-top: 14px;
  display: flex;
  justify-content: center;
  gap: 20px;
  color: #555;
  font-size: 10px;
}

.buybox-benefits span {
  display: flex;
  align-items: center;
}

.buybox-benefits .ui-icon {
  width: 18px;
  height: 18px;
  color: var(--blue);
  font-size: 16px;
}

.product-description {
  margin-top: 72px;
  padding: 48px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.product-description > h2 {
  margin-bottom: 28px;
  font-size: 26px;
}

.description-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.8fr;
  gap: 80px;
  color: #4f535c;
  font-size: 14px;
}

.description-grid p:first-child {
  margin-top: 0;
}

.description-grid dl {
  margin: 0;
}

.description-grid dl > div {
  padding: 11px 0;
  display: grid;
  grid-template-columns: 120px 1fr;
  border-bottom: 1px solid var(--line);
}

.description-grid dt {
  color: #777;
}

.description-grid dd {
  margin: 0;
  color: var(--ink);
  font-weight: 600;
}

.related-products {
  width: 100%;
  margin-bottom: 10px;
}

.cart-page {
  padding-bottom: 80px;
}

.cart-title {
  padding: 8px 0 26px;
  border-bottom: 1px solid var(--line);
}

.cart-title h1 {
  margin-bottom: 4px;
  font-size: 42px;
  letter-spacing: -0.04em;
}

.cart-title p {
  margin: 0;
  color: #777;
  font-size: 12px;
}

.cart-layout {
  margin-top: 28px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 48px;
  align-items: start;
}

.cart-items {
  min-width: 0;
}

.cart-item {
  padding: 22px 0;
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr) 118px 120px;
  gap: 22px;
  align-items: center;
  border-bottom: 1px solid var(--line);
}

.cart-item-image {
  aspect-ratio: 1;
  overflow: hidden;
  background: #f5f5f5;
}

.cart-item-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.cart-item-info > span {
  color: #666;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.cart-item-info h2 {
  margin: 5px 0 8px;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.35;
}

.cart-item-info p {
  margin-bottom: 12px;
  color: #666;
  font-size: 12px;
}

.cart-item-info button {
  padding: 0;
  color: var(--red);
  background: transparent;
  border: 0;
  font-size: 11px;
  text-decoration: underline;
}

.quantity-control {
  height: 40px;
  display: grid;
  grid-template-columns: 36px 1fr 36px;
  align-items: center;
  border: 1px solid #bbb;
}

.quantity-control button {
  height: 100%;
  padding: 0;
  background: #fff;
  border: 0;
  font-size: 20px;
}

.quantity-control span {
  text-align: center;
  font-size: 13px;
}

.cart-item-price {
  display: grid;
  justify-items: end;
}

.cart-item-price strong {
  font-size: 17px;
}

.cart-item-price del {
  color: #888;
  font-size: 11px;
}

.order-summary,
.checkout-summary {
  padding: 28px;
  background: #f5f6f8;
}

.order-summary {
  position: sticky;
  top: 174px;
}

.order-summary h2,
.checkout-summary h2 {
  margin-bottom: 24px;
  font-size: 21px;
}

.order-summary dl,
.checkout-summary dl {
  margin: 0 0 22px;
}

.order-summary dl > div,
.checkout-summary dl > div {
  padding: 8px 0;
  display: flex;
  justify-content: space-between;
  color: #555;
  font-size: 13px;
}

.order-summary dd,
.checkout-summary dd {
  margin: 0;
  color: var(--ink);
  font-weight: 600;
}

.order-summary .summary-total,
.checkout-summary .summary-total {
  margin-top: 10px;
  padding-top: 18px;
  color: var(--ink);
  border-top: 1px solid #cfcfcf;
  font-size: 18px;
  font-weight: 800;
}

.order-summary > p {
  margin-top: -12px;
  color: #777;
  font-size: 10px;
}

.continue-shopping {
  margin-top: 18px;
  display: block;
  color: var(--blue);
  font-size: 12px;
  text-align: center;
  text-decoration: underline;
}

.coupon-box {
  max-width: calc(100% - 438px);
  margin-top: 22px;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: #fafafa;
  border: 1px solid var(--line);
}

.coupon-box strong {
  font-size: 13px;
}

.coupon-box > div {
  display: flex;
}

.coupon-box input {
  height: 40px;
  padding: 0 12px;
  border: 1px solid #bbb;
}

.coupon-box button {
  padding: 0 18px;
  color: #fff;
  background: #111;
  border: 0;
  font-size: 11px;
  font-weight: 700;
}

.empty-cart,
.empty-state {
  min-height: 380px;
  padding: 48px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background: #fafafa;
  text-align: center;
}

.empty-cart > img {
  width: 64px;
  height: 64px;
  margin-bottom: 14px;
  object-fit: contain;
}

.empty-cart h2,
.empty-state h2 {
  margin-bottom: 8px;
  font-size: 24px;
}

.empty-cart p,
.empty-state p {
  color: #666;
}

.empty-cart .primary-button,
.empty-state .primary-button {
  width: max-content;
  min-height: 44px;
  margin-top: 10px;
  font-size: 11px;
}

.checkout-body {
  min-height: 100vh;
  background: #f5f6f8;
}

.checkout-header {
  min-height: 86px;
  padding: 16px max(24px, calc((100vw - 1180px) / 2));
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.checkout-header .marti-logo-image {
  width: 100px;
}

.secure-label {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #555;
  font-size: 12px;
  font-weight: 700;
}

.secure-label .ui-icon {
  width: 22px;
  height: 22px;
  color: var(--success);
  border: 1px solid var(--success);
  border-radius: 50%;
  font-size: 13px;
}

.checkout-page {
  max-width: 1180px;
  padding: 36px 0 80px;
}

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

.checkout-form {
  display: grid;
  gap: 18px;
}

.checkout-panel {
  padding: 28px;
  background: #fff;
  border: 1px solid var(--line);
  transition: opacity 150ms ease;
}

.checkout-panel.is-locked {
  opacity: 0.45;
  pointer-events: none;
}

.checkout-panel.is-locked .panel-title > span {
  color: #999;
  background: transparent;
  border: 1px solid #ccc;
}

.panel-title {
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.panel-title > span {
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--blue);
  border-radius: 50%;
  font-size: 13px;
  font-weight: 800;
}

.panel-title > div {
  flex: 1 1 auto;
  min-width: 0;
}

.panel-title h1,
.panel-title h2 {
  margin: 0 0 3px;
  font-size: 21px;
}

.panel-title p {
  margin: 0;
  color: #777;
  font-size: 11px;
}

.panel-edit {
  flex: 0 0 auto;
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  color: var(--blue);
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 50%;
  font-size: 14px;
}

.checkout-panel:has([data-step-body][hidden]) {
  padding-bottom: 20px;
}

.panel-summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 4px 16px;
  color: var(--ink);
  font-size: 13px;
  line-height: 1.6;
}

.panel-summary p {
  margin: 0;
  grid-column: 1;
}

.panel-summary .summary-badge {
  grid-column: 2;
  grid-row: 1;
  color: var(--success);
  font-weight: 700;
  white-space: nowrap;
}

.step-continue {
  margin-top: 18px;
  width: 100%;
  min-height: 44px;
  color: #fff;
  background: var(--blue);
  border: 0;
  font-size: 12px;
  font-weight: 700;
}

.form-grid.cp-grid {
  grid-template-columns: 1fr;
}

.cp-hint {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.cp-hint.is-error {
  color: var(--red);
}

.cp-hint.is-notice {
  padding: 10px 12px;
  color: #574600;
  background: #fff9dc;
  border: 1px solid #f1de82;
  border-radius: 3px;
}

.cp-help {
  margin-top: 8px;
}

.address-reveal {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.address-state-line {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 12px;
}

.link-button {
  padding: 0;
  color: var(--blue);
  background: transparent;
  border: 0;
  font-size: 12px;
  text-decoration: underline;
}

.delivery-method-row {
  margin-top: 6px;
  padding: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--soft);
  border: 1px solid var(--line);
  font-size: 12px;
}

.delivery-radio {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  display: grid;
  place-items: center;
  background: #fff;
  border: 2px solid var(--blue);
  border-radius: 50%;
}

.delivery-radio::after {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--blue);
  border-radius: 50%;
}

.delivery-method-row img {
  flex-shrink: 0;
}

.delivery-method-row strong {
  display: block;
  font-size: 13px;
}

.delivery-method-row small {
  color: var(--muted);
}

.delivery-method-row b {
  margin-left: auto;
  color: var(--success);
}

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

.form-grid label {
  display: grid;
  gap: 6px;
  color: #333;
  font-size: 11px;
  font-weight: 700;
}

.form-grid label.full {
  grid-column: 1 / -1;
}

.form-grid input {
  width: 100%;
  height: 44px;
  padding: 0 12px;
  color: var(--ink);
  background: #fff;
  border: 1px solid #bbb;
  border-radius: 2px;
  outline: 0;
}

.form-grid input:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 2px rgba(0, 51, 255, 0.1);
}

.form-grid select {
  width: 100%;
  height: 44px;
  padding: 0 36px 0 12px;
  color: var(--ink);
  background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M6 9l6 6 6-6' stroke='%23555555' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat right 10px center;
  background-size: 16px;
  border: 1px solid #bbb;
  border-radius: 2px;
  outline: 0;
  appearance: none;
}

.form-grid select:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 2px rgba(0, 51, 255, 0.1);
}

.payment-options {
  display: grid;
  gap: 10px;
}

.payment-method-card {
  overflow: hidden;
  background: #fff;
  border: 1px solid #222;
  border-radius: 8px;
}

.payment-method-card > label {
  position: relative;
  display: block;
  cursor: pointer;
}

.payment-method-card > label input {
  position: absolute;
  top: 50%;
  left: 17px;
  width: 17px;
  height: 17px;
  margin: 0;
  accent-color: var(--blue);
  transform: translateY(-50%);
}

.payment-option-row {
  min-height: 58px;
  padding: 11px 14px 11px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: #fff;
  transition: background 160ms ease;
}

.payment-method-card > label.selected .payment-option-row {
  background: #f2f2f2;
}

.payment-option-copy {
  min-width: 0;
  display: grid;
  gap: 2px;
}

.payment-option-copy b {
  font-size: 12px;
}

.payment-option-copy small {
  color: #777;
  font-size: 10px;
}

.payment-method-logos {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 5px;
}

.payment-method-logos img {
  width: 32px;
  height: 24px;
  display: block;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.payment-method-logos-spei img {
  width: 62px;
  height: 26px;
}

.payment-method-logos-oxxo img {
  width: 58px;
  height: 30px;
}

.card-element-wrap {
  padding: 18px;
  background: #fff;
  border-top: 1px solid var(--line);
}

.voucher-payment-info {
  padding: 16px 18px;
  color: #4f535c;
  background: #fff;
  border-top: 1px solid var(--line);
}

.voucher-payment-info strong {
  color: var(--ink);
  font-size: 12px;
}

.voucher-payment-info p {
  margin: 6px 0 0;
  font-size: 11px;
  line-height: 1.45;
}

[data-pagou-card] {
  min-height: 44px;
}

.card-error {
  margin: 10px 0 0;
  color: var(--red);
  font-size: 12px;
}

.checkout-form-message {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 12px;
  text-align: center;
}

.checkout-form-message.is-error {
  color: var(--red);
}

.terms {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  color: #555;
  font-size: 11px;
}

.place-order {
  width: 100%;
}

.checkout-summary {
  position: sticky;
  top: 20px;
  background: #fff;
  border: 1px solid var(--line);
}

.checkout-item {
  padding: 12px 0;
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  border-bottom: 1px solid var(--line);
}

.checkout-item > div {
  position: relative;
  width: 58px;
  height: 58px;
  background: #f5f5f5;
}

.checkout-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.checkout-item > div b {
  position: absolute;
  top: -5px;
  right: -5px;
  width: 18px;
  height: 18px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--blue);
  border-radius: 50%;
  font-size: 9px;
}

.checkout-item > span {
  min-width: 0;
  display: grid;
}

.checkout-item strong {
  overflow: hidden;
  font-size: 11px;
  font-weight: 600;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.checkout-item small {
  color: #777;
  font-size: 9px;
}

.checkout-item em {
  font-size: 11px;
  font-style: normal;
  font-weight: 700;
}

.checkout-summary dl {
  margin-top: 20px;
}

.secure-note {
  padding: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #555;
  background: #f3f7f3;
  font-size: 10px;
}

.secure-note .ui-icon {
  color: var(--success);
  font-size: 16px;
}

.checkout-limit-note {
  padding: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #5e4a00;
  background: #fff8d9;
  border: 1px solid #ead887;
  font-size: 10px;
}

.checkout-limit-note > span {
  flex: 0 0 22px;
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  color: #fff;
  background: #bf8b00;
  border-radius: 50%;
  font-size: 13px;
  font-weight: 800;
}

.checkout-limit-note p {
  margin: 0;
  display: grid;
  gap: 2px;
}

.checkout-limit-note strong {
  color: #342900;
  font-size: 11px;
}

.checkout-limit-note.is-exceeded {
  color: #8a1020;
  background: #fff0f2;
  border-color: #e6aab3;
}

.checkout-limit-note.is-exceeded > span {
  background: var(--red);
}

.checkout-empty {
  padding: 20px;
  color: #666;
  background: #f5f5f5;
  font-size: 12px;
  text-align: center;
}

.checkout-empty a {
  color: var(--blue);
  text-decoration: underline;
}

.order-success {
  position: fixed;
  inset: 0;
  z-index: 100;
  padding: 24px;
  place-items: center;
  background: rgba(0, 0, 0, 0.6);
}

.order-success:not([hidden]) {
  display: grid;
}

.order-success > div {
  width: min(100%, 480px);
  max-height: calc(100vh - 48px);
  padding: 48px 32px;
  overflow-y: auto;
  background: #fff;
  text-align: center;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.26);
}

.order-success > div > span {
  width: 58px;
  height: 58px;
  margin: 0 auto 18px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--success);
  border-radius: 50%;
  font-size: 28px;
}

.order-success h2 {
  margin-bottom: 10px;
}

.order-success p {
  color: #666;
  font-size: 13px;
}

.order-success a {
  width: max-content;
  margin: 24px auto 0;
  padding: 12px 24px;
  display: block;
  color: #fff;
  background: var(--blue);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.voucher-result {
  margin-top: 22px;
  padding: 18px;
  background: #f6f7fb;
  border: 1px solid var(--line);
  text-align: left;
}

.voucher-result dl {
  margin: 0;
  display: grid;
  gap: 12px;
}

.voucher-result dl > div {
  min-width: 0;
  display: grid;
  gap: 3px;
}

.voucher-result dt {
  color: #777;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.voucher-result dd {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  overflow-wrap: anywhere;
  color: var(--ink);
  font-size: 12px;
  font-weight: 700;
}

.voucher-result dd > span {
  overflow-wrap: anywhere;
}

.copy-button {
  flex: none;
  padding: 5px 10px;
  color: var(--blue);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  background: #fff;
  border: 1px solid var(--blue);
  border-radius: 4px;
  cursor: pointer;
}

.copy-button:disabled {
  color: var(--success);
  border-color: var(--success);
  cursor: default;
}

.voucher-result a.primary-button {
  width: 100%;
  margin-top: 16px;
  text-align: center;
}

.content-page {
  min-height: 480px;
  padding-bottom: 70px;
}

.content-card {
  min-height: 340px;
  padding: 48px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  background: #f4f5f7;
}

.content-card h1 {
  margin: 4px 0 12px;
  font-size: clamp(36px, 5vw, 62px);
  letter-spacing: -0.05em;
}

.content-card p {
  max-width: 600px;
  color: #666;
}

.content-card .primary-button {
  width: max-content;
  min-height: 44px;
  margin-top: 14px;
  font-size: 11px;
}

.faq-header {
  margin: 8px 0 32px;
}

.faq-header h1 {
  margin: 0 0 6px;
  font-size: clamp(28px, 4vw, 40px);
  letter-spacing: -0.03em;
}

.faq-header h2 {
  margin: 0;
  font-size: clamp(17px, 2.2vw, 22px);
  font-weight: 800;
}

.faq-list {
  max-width: 760px;
}

.faq-item {
  padding: 22px 0;
}

.faq-item summary {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  cursor: pointer;
  list-style: none;
}

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

.faq-item summary::after {
  flex-shrink: 0;
  content: '+';
  color: #b3b5ba;
  font-size: 18px;
  font-weight: 400;
  text-transform: none;
}

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

.faq-item[open] summary::after {
  content: '−';
}

.faq-answer {
  margin-top: 18px;
  color: var(--ink);
  font-size: 15px;
  line-height: 1.65;
}

.faq-answer p {
  margin: 0 0 14px;
}

.faq-answer ul,
.faq-answer ol {
  margin: 0 0 14px;
  padding-left: 20px;
}

.faq-answer li {
  margin-bottom: 6px;
}

.faq-answer p:last-child,
.faq-answer ul:last-child,
.faq-answer ol:last-child {
  margin-bottom: 0;
}

.faq-answer a {
  color: var(--blue);
}

.toast {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 90;
  padding: 14px 20px;
  color: #fff;
  background: #111;
  border-left: 4px solid var(--success);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
  font-size: 12px;
  font-weight: 700;
  opacity: 0;
  pointer-events: none;
  transform: translateY(18px);
  transition: opacity 180ms ease, transform 180ms ease;
}

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

.cart-loading {
  padding: 40px;
  color: #777;
  background: #f7f7f7;
  text-align: center;
}

@media (max-width: 1180px) {
  .header-main {
    grid-template-columns: 128px minmax(220px, 1fr) auto;
    gap: 22px;
  }

  .header-actions {
    gap: 14px;
  }

  .header-actions a > span:not(.ui-icon) {
    display: none;
  }

  .category-nav-inner {
    justify-content: flex-start;
  }

  .product-rail {
    grid-template-columns: none;
    grid-auto-columns: calc((100% - 30px) / 4);
  }

  .brand-rail {
    grid-auto-columns: calc((100% - 30px) / 4);
  }

  .launch-rail {
    grid-auto-columns: 24%;
  }

  .discount-rail {
    grid-auto-columns: 26%;
  }

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

  .product-detail {
    gap: 48px;
  }

  .cart-layout {
    grid-template-columns: minmax(0, 1fr) 330px;
    gap: 30px;
  }

  .cart-item {
    grid-template-columns: 118px minmax(0, 1fr) 108px;
  }

  .cart-item-price {
    grid-column: 3;
  }

  .quantity-control {
    grid-column: 2;
    grid-row: 2;
    width: 108px;
  }
}

@media (max-width: 900px) {
  .top-message {
    justify-content: space-between;
    gap: 16px;
  }

  .top-message .desktop-message-2 {
    display: none;
  }

  .header-main {
    width: min(calc(100% - 30px), var(--page));
    min-height: 72px;
    grid-template-columns: auto 100px minmax(0, 1fr) auto;
    gap: 14px;
  }

  .mobile-menu {
    padding: 4px;
    display: block;
    background: transparent;
    border: 0;
    font-size: 23px;
  }

  .marti-logo-image {
    width: 88px;
  }

  .header-actions a:not(.cart-action) {
    display: none;
  }

  .header-actions {
    gap: 0;
  }

  .category-nav {
    display: none;
  }

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

  .category-nav-inner {
    width: 100%;
    max-height: calc(100vh - 106px);
    padding: 16px 24px;
    display: grid;
    overflow-y: auto;
  }

  .category-nav a {
    padding: 10px 0;
  }

  .product-rail {
    grid-auto-columns: calc((100% - 20px) / 3);
  }

  .brand-rail {
    grid-auto-columns: calc((100% - 20px) / 3);
  }

  .launch-rail {
    grid-auto-columns: 32%;
  }

  .discount-rail {
    grid-auto-columns: 34%;
  }

  .product-carousel-arrow.previous {
    left: -12px;
  }

  .product-carousel-arrow.next {
    right: -12px;
  }

  .benefit-cards,
  .quick-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .newsletter-banner {
    padding-inline: 40px;
  }

  .carousel-track {
    aspect-ratio: 768 / 850;
  }

  .category-tiles {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
  }

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

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

  .catalog-layout {
    grid-template-columns: 1fr;
  }

  .filters {
    position: static;
    display: none;
  }

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

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

  .product-buybox {
    position: static;
  }

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

  .order-summary,
  .checkout-summary {
    position: static;
  }

  .coupon-box {
    max-width: 100%;
  }

  .checkout-summary {
    grid-row: 1;
  }
}

@media (max-width: 680px) {
  .page-width,
  .home-section,
  .footer-grid,
  .footer-bottom {
    width: min(calc(100% - 28px), var(--page));
  }

  .top-message {
    min-height: 58px;
    padding: 7px 6px;
    display: grid;
    grid-template-columns: 24px minmax(0, 1fr) 24px;
    gap: 4px;
    font-size: 11px;
    line-height: 1.25;
    text-transform: none;
  }

  .top-message .desktop-top {
    display: none;
  }

  .mobile-top-arrow {
    display: grid;
    place-items: center;
    color: #fff;
    font-size: 34px;
    font-weight: 300;
    line-height: 1;
  }

  .mobile-top-newsletter {
    display: grid;
    justify-items: center;
    align-content: center;
    color: #fff;
    font-weight: 600;
    text-align: center;
  }

  .mobile-top-newsletter strong {
    display: inline;
    font-weight: 900;
  }

  .mobile-top-newsletter u {
    display: block;
    font-weight: 800;
  }

  .header-main {
    width: 100%;
    min-height: 108px;
    padding: 0 9px 9px;
    grid-template-columns: 52px minmax(0, 1fr) 52px;
    grid-template-rows: 58px 41px;
    gap: 0;
  }

  .mobile-menu {
    grid-column: 1;
    grid-row: 1;
    justify-self: start;
    font-size: 27px;
  }

  .header-logo {
    grid-column: 2;
    grid-row: 1;
    justify-self: center;
  }

  .header-actions {
    grid-column: 3;
    grid-row: 1;
    justify-self: end;
  }

  .header-actions .cart-action {
    min-width: 42px;
  }

  .search-form {
    width: 100%;
    height: 41px;
    grid-column: 1 / -1;
    grid-row: 2;
    background: #fff;
    border-color: #aaa;
    border-radius: 22px;
  }

  .header-main .marti-logo-image {
    width: 88px;
  }

  .search-form input {
    padding-left: 16px;
    font-size: 12px;
  }

  .search-form button {
    width: 46px;
    color: #999;
  }

  .cart-action .ui-icon {
    width: 28px;
    height: 28px;
    font-size: 21px;
  }

  .cart-action .ui-icon svg {
    width: 27px;
    height: 27px;
  }

  .cart-count {
    top: -10px;
    right: -3px;
    background: var(--blue);
  }

  .category-nav-inner {
    max-height: calc(100vh - 166px);
  }

  .carousel-arrow {
    width: 34px;
    height: 44px;
    font-size: 30px;
  }

  .banner-carousel {
    width: 100%;
    border-radius: 0;
  }

  .carousel-arrow.previous {
    left: 8px;
  }

  .carousel-arrow.next {
    right: 8px;
  }

  .home-section {
    margin-top: 52px;
    margin-bottom: 52px;
  }

  .section-heading {
    margin-bottom: 20px;
  }

  .section-heading h2 {
    font-size: 27px;
  }

  .section-heading > a {
    font-size: 11px;
  }

  .category-tiles {
    gap: 18px 12px;
  }

  .category-tile {
    gap: 8px;
  }

  .category-tile strong {
    font-size: 11px;
  }

  .product-rail {
    width: 100%;
    grid-template-columns: none;
    grid-auto-columns: 78%;
    gap: 12px;
  }

  .product-carousel .product-card {
    min-height: 480px;
  }

  .product-carousel-arrow {
    width: 42px;
    height: 42px;
    font-size: 28px;
  }

  .product-card-info h3 {
    font-size: 12px;
  }

  .product-pricing strong {
    font-size: 16px;
  }

  .favorite-categories-section {
    margin-top: 58px;
    margin-bottom: 48px;
  }

  .brands-section {
    margin-top: 0;
    margin-bottom: 24px;
  }

  .brand-rail {
    grid-auto-columns: 40%;
    gap: 12px;
  }

  .launch-section {
    margin-top: 38px;
    margin-bottom: 28px;
  }

  .launch-rail {
    grid-auto-columns: 78%;
    gap: 12px;
  }

  .launch-card {
    gap: 10px;
  }

  .discount-section {
    margin-top: 24px;
    margin-bottom: 48px;
  }

  .discount-rail {
    grid-auto-columns: 82%;
    gap: 12px;
  }

  .discount-card {
    height: 124px;
  }

  .brand-card {
    gap: 13px;
  }

  .brand-card strong {
    font-size: 10px;
  }

  .brand-carousel-arrow,
  .middle-banner-arrow {
    width: 42px;
    height: 42px;
    font-size: 30px;
  }

  .brand-carousel-arrow.previous,
  .middle-banner-arrow.previous {
    left: -10px;
  }

  .brand-carousel-arrow.next,
  .middle-banner-arrow.next {
    right: -10px;
  }

  .middle-banner-carousel {
    width: min(calc(100% - 28px), 1510px);
    margin-top: 12px;
    margin-bottom: 0;
  }

  .middle-banner-track {
    aspect-ratio: 3 / 2;
    border-radius: 7px;
  }

  .adidas-catalog {
    margin-top: 40px;
  }

  .benefits-bar {
    padding: 24px 20px;
  }

  .benefits-bar > div {
    justify-content: flex-start;
  }

  .store-benefits,
  .newsletter-area {
    width: min(calc(100% - 28px), 1510px);
  }

  .store-benefits {
    margin-top: 56px;
  }

  .benefit-cards {
    grid-template-columns: 1fr;
  }

  .benefit-card {
    min-height: 205px;
  }

  .newsletter-banner {
    padding: 28px 24px;
    align-items: flex-start;
    flex-direction: column;
    gap: 22px;
  }

  .newsletter-banner button {
    width: 100%;
  }

  .quick-links {
    grid-template-columns: 1fr;
  }

  .quick-links a {
    justify-content: flex-start;
  }

  .newsletter-signup {
    padding: 22px 18px;
  }

  .newsletter-signup > div {
    display: grid;
    gap: 8px;
  }

  .newsletter-signup input,
  .newsletter-signup button {
    width: 100%;
    min-width: 0;
    height: 46px;
    border-radius: 23px;
  }

  .footer-grid {
    padding: 44px 0;
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .footer-bottom {
    padding: 18px 0;
    display: grid;
    gap: 6px;
  }

  .breadcrumb {
    padding: 16px 0;
  }

  .catalog-title-row {
    padding-top: 8px;
    align-items: start;
    flex-direction: column;
  }

  .catalog-title-row h1 {
    font-size: 36px;
  }

  .sort-form {
    width: 100%;
    justify-content: space-between;
  }

  .sort-form select {
    min-width: 0;
    width: 190px;
  }

  .subcategories {
    padding: 16px 0;
  }

  .catalog-results .product-grid,
  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px 10px;
  }

  .catalog-results .product-card-image {
    aspect-ratio: 1;
  }

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

  .gallery-main {
    grid-row: 1;
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .gallery-main::-webkit-scrollbar {
    display: none;
  }

  .gallery-slide {
    display: block;
    flex: 0 0 100%;
    scroll-snap-align: start;
  }

  .gallery-thumbs {
    display: none;
  }

  .product-buybox h1 {
    font-size: 28px;
  }

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

  .buybox-benefits {
    justify-content: flex-start;
  }

  .cart-title h1 {
    font-size: 34px;
  }

  .cart-item {
    position: relative;
    grid-template-columns: 94px minmax(0, 1fr);
    gap: 14px;
    align-items: start;
  }

  .quantity-control {
    grid-column: 2;
    grid-row: auto;
  }

  .cart-item-price {
    position: absolute;
    right: 0;
    bottom: 26px;
    grid-column: auto;
  }

  .order-summary,
  .checkout-summary,
  .checkout-panel {
    padding: 20px;
  }

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

  .coupon-box > div,
  .coupon-box input {
    width: 100%;
  }

  .checkout-header {
    min-height: 70px;
  }

  .checkout-header .marti-logo-image {
    width: 86px;
  }

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

  .form-grid label.full {
    grid-column: auto;
  }

  .panel-title h1,
  .panel-title h2 {
    font-size: 18px;
  }

  .content-card {
    padding: 30px 22px;
  }

  .toast {
    right: 14px;
    bottom: 14px;
    left: 14px;
    text-align: center;
  }
}
