:root {
  --black: #050505;
  --ink: #0b0b0b;
  --panel: #111111;
  --panel-soft: #171717;
  --smoke: #9b9b96;
  --smoke-soft: #d8d8d2;
  --white: #f7f7f2;
  --muted: #b7b7b2;
  --line: rgba(255, 255, 255, 0.14);
  --line-dark: rgba(0, 0, 0, 0.15);
  --shadow: 0 22px 80px rgba(0, 0, 0, 0.38);
  --radius: 8px;
  --header-h: 76px;
}

* {
  box-sizing: border-box;
  letter-spacing: 0;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--black);
  color: var(--white);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  line-height: 1.5;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

code {
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  padding: 0.12rem 0.3rem;
  border-radius: 4px;
  font-size: 0.9em;
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  height: var(--header-h);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1.25rem;
  padding: 0 2rem;
  background: transparent;
  border-bottom: 1px solid transparent;
  color: var(--white);
  backdrop-filter: none;
  transition: background 220ms ease, border-color 220ms ease, backdrop-filter 220ms ease, box-shadow 220ms ease;
}

.site-header.is-scrolled {
  background: rgba(5, 5, 5, 0.84);
  border-bottom-color: var(--line);
  backdrop-filter: blur(18px);
  box-shadow: 0 14px 46px rgba(0, 0, 0, 0.22);
}

.brand {
  width: 154px;
  min-width: 132px;
}

.brand img {
  width: 100%;
  height: 42px;
  object-fit: contain;
  object-position: left center;
}

.site-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.65rem;
  color: rgba(247, 247, 242, 0.88);
  font-size: 0.94rem;
  transition: color 220ms ease;
}

.site-header.is-scrolled .site-nav {
  color: var(--muted);
}

.site-nav a,
.language-trigger {
  position: relative;
  padding: 0.4rem 0;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: var(--white);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.language-trigger:hover,
.language-trigger:focus-visible,
.language-nav.is-open .language-trigger {
  color: var(--white);
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

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

.icon-button,
.cart-trigger,
.account-trigger {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  color: var(--white);
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  cursor: pointer;
  backdrop-filter: blur(10px);
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.site-header.is-scrolled .icon-button,
.site-header.is-scrolled .cart-trigger,
.site-header.is-scrolled .account-trigger {
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--line);
}

.icon-button svg,
.cart-trigger svg,
.account-trigger svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.icon-button:hover,
.cart-trigger:hover,
.account-trigger:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.34);
}

.icon-button:focus-visible,
.cart-trigger:focus-visible,
.account-trigger:focus-visible,
.button:focus-visible,
.cart-empty-browse:focus-visible,
.qty-controls button:focus-visible,
.remove-item:focus-visible {
  outline: 2px solid rgba(247, 247, 242, 0.92);
  outline-offset: 3px;
}

.account-trigger {
  width: auto;
  min-width: 42px;
  grid-auto-flow: column;
  gap: 0.46rem;
  padding: 0 0.85rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 850;
}

.cart-trigger {
  position: relative;
}

.cart-trigger span {
  position: absolute;
  top: -5px;
  right: -5px;
  min-width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  padding: 0 0.25rem;
  border-radius: 999px;
  background: var(--white);
  color: var(--black);
  border: 1px solid var(--black);
  font-size: 0.72rem;
  font-weight: 800;
}

.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: 84vh;
  overflow: hidden;
  isolation: isolate;
  display: grid;
  align-items: center;
  padding: 8rem clamp(2rem, 6vw, 6.5rem) 4.4rem;
  border-bottom: 1px solid var(--line);
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.96;
  filter: brightness(1.22) contrast(1.04) saturate(1.04);
  transform: scale(1.01);
  backface-visibility: hidden;
  will-change: opacity, transform, filter;
}

.hero-image-current {
  z-index: -3;
}

.hero-image-next {
  z-index: -2;
  opacity: 0;
  pointer-events: none;
  transform-origin: center;
  will-change: clip-path, opacity, transform, filter;
}

.hero-shade {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 18% 52%, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.54) 58%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.62), rgba(0, 0, 0, 0.16) 48%, rgba(0, 0, 0, 0.48)),
    linear-gradient(0deg, rgba(0, 0, 0, 0.62), rgba(0, 0, 0, 0) 46%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: -14% -32%;
  z-index: 0;
  pointer-events: none;
  opacity: 0;
  background:
    linear-gradient(108deg, transparent 28%, rgba(255, 255, 255, 0.12) 45%, rgba(255, 255, 255, 0.035) 50%, transparent 62%),
    radial-gradient(circle at 26% 50%, rgba(247, 247, 242, 0.1), transparent 32%);
  mix-blend-mode: screen;
  transform: translateX(-58%) skewX(-8deg);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(640px, 100%);
  align-self: center;
}

.hero-editorial {
  display: grid;
  justify-items: start;
  gap: 0.95rem;
  max-width: 500px;
  color: var(--white);
  text-shadow: 0 3px 20px rgba(0, 0, 0, 0.38);
}

.hero-editorial-kicker {
  margin: 0;
  font-family: "Cormorant Garamond", Garamond, Georgia, serif;
  font-size: clamp(2.45rem, 4.6vw, 4.5rem);
  font-weight: 300;
  line-height: 0.98;
}

.hero-editorial-title {
  margin: 0.28rem 0 0;
  max-width: 460px;
  color: rgba(247, 247, 242, 0.92);
  font-size: clamp(0.9rem, 1.2vw, 1.08rem);
  font-weight: 680;
  line-height: 1.28;
  text-transform: uppercase;
}

.hero-shop-button {
  margin-top: 0.78rem;
  min-width: 142px;
  min-height: 44px;
  padding: 0.62rem 1.28rem;
  border-radius: 999px;
  background: rgba(247, 247, 242, 0.94);
  color: var(--black);
  border-color: rgba(247, 247, 242, 0.94);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.28);
  font-size: 0.92rem;
  font-weight: 720;
}

.hero-shop-button:hover,
.hero-shop-button:focus-visible {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
}

@keyframes heroImageEntrance {
  from {
    opacity: 0;
    filter: brightness(0.88) contrast(1.02) saturate(0.92) blur(8px);
    transform: scale(1.055);
  }

  to {
    opacity: 0.96;
    filter: brightness(1.22) contrast(1.04) saturate(1.04) blur(0);
    transform: scale(1.01);
  }
}

@keyframes heroTextEntrance {
  from {
    opacity: 0;
    filter: blur(8px);
    transform: translateY(18px);
  }

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

@keyframes heroButtonEntrance {
  from {
    opacity: 0;
    transform: translateY(12px) scale(0.96);
  }

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

@keyframes heroLightSweep {
  0% {
    opacity: 0;
    transform: translateX(-62%) skewX(-8deg);
  }

  28% {
    opacity: 0.5;
  }

  100% {
    opacity: 0;
    transform: translateX(72%) skewX(-8deg);
  }
}

@keyframes heroSilkSweepReveal {
  0% {
    opacity: 0.88;
    clip-path: polygon(
      0 0, -5% 0,
      -1% 16%, -4% 32%,
      1% 50%, -3% 68%,
      0 84%, -5% 100%,
      0 100%
    );
    filter: brightness(1.34) contrast(1.06) saturate(0.9) blur(2px) drop-shadow(16px 0 22px rgba(247, 247, 242, 0.14));
    transform: scale(1.035);
  }

  100% {
    opacity: 0.96;
    clip-path: polygon(
      0 0, 100% 0,
      100% 16%, 100% 32%,
      100% 50%, 100% 68%,
      100% 84%, 100% 100%,
      0 100%
    );
    filter: brightness(1.22) contrast(1.04) saturate(1.04) blur(0) drop-shadow(0 0 0 transparent);
    transform: scale(1.01);
  }
}

@keyframes luxuryRevealIn {
  from {
    opacity: 0;
    filter: blur(8px);
    transform: translateY(24px) scale(0.985);
  }

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

@keyframes luxuryCardRevealIn {
  from {
    opacity: 0;
    clip-path: inset(0 0 12% 0 round 8px);
    filter: blur(9px);
    transform: translateY(30px) scale(0.975);
  }

  62% {
    opacity: 1;
    filter: blur(0);
  }

  to {
    opacity: 1;
    clip-path: inset(0 0 0 0 round 8px);
    filter: blur(0);
    transform: translateY(0) scale(1);
  }
}

@keyframes luxuryCardSheen {
  0% {
    opacity: 0;
    transform: translateX(-118%);
  }

  34% {
    opacity: 0.34;
  }

  100% {
    opacity: 0;
    transform: translateX(118%);
  }
}

@media (prefers-reduced-motion: no-preference) {
  body.hero-entrance-ready .hero-image-current {
    animation: heroImageEntrance 1450ms cubic-bezier(0.2, 0.8, 0.2, 1) backwards;
  }

  body.hero-entrance-ready .hero::after {
    animation: heroLightSweep 1800ms 520ms ease-out both;
  }

  .hero.is-changing .hero-image-next {
    animation: heroSilkSweepReveal 960ms cubic-bezier(0.22, 0.68, 0.24, 1) both;
  }

  body.hero-entrance-ready .site-header {
    animation: heroTextEntrance 620ms 180ms ease-out backwards;
  }

  body.hero-entrance-ready .hero-editorial-kicker {
    animation: heroTextEntrance 760ms 520ms cubic-bezier(0.2, 0.8, 0.2, 1) backwards;
  }

  body.hero-entrance-ready .hero-editorial-title {
    animation: heroTextEntrance 760ms 680ms cubic-bezier(0.2, 0.8, 0.2, 1) backwards;
  }

  body.hero-entrance-ready .hero-shop-button {
    animation: heroButtonEntrance 680ms 840ms cubic-bezier(0.2, 0.8, 0.2, 1) backwards;
  }

  .reveal-luxury {
    opacity: 0;
  }

  .reveal-luxury.is-visible {
    opacity: 1;
    animation: luxuryRevealIn 760ms cubic-bezier(0.2, 0.8, 0.2, 1) var(--reveal-delay, 0ms) backwards;
  }

  .reveal-luxury.product-card.is-visible,
  .reveal-luxury.reseller-stock-card.is-visible {
    animation: luxuryCardRevealIn 840ms cubic-bezier(0.2, 0.8, 0.2, 1) var(--reveal-delay, 0ms) backwards;
  }

  .reveal-luxury.product-card.is-visible::before,
  .reveal-luxury.reseller-stock-card.is-visible::before {
    animation: luxuryCardSheen 620ms ease-out calc(var(--reveal-delay, 0ms) + 140ms) both;
  }
}

.hero-kicker,
.eyebrow {
  margin: 0 0 0.75rem;
  color: var(--smoke-soft);
  font-size: 0.82rem;
  text-transform: uppercase;
  font-weight: 700;
}

.hero-logo {
  width: min(500px, 82vw);
  height: auto;
  max-height: 168px;
  object-fit: contain;
  object-position: left center;
  margin: 0 0 1.2rem;
}

.hero-kicker {
  margin-bottom: 0.5rem;
}

.hero-copy {
  max-width: 620px;
  margin: 0;
  color: rgba(247, 247, 242, 0.86);
  font-family: "Cormorant Garamond", Garamond, Georgia, serif;
  font-weight: 400;
  letter-spacing: 0.012em;
  font-size: 1.58rem;
  line-height: 1.35;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.7rem;
}

.button {
  position: relative;
  overflow: hidden;
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.78rem 1.08rem;
  border-radius: 4px;
  border: 1px solid transparent;
  font-weight: 800;
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, color 180ms ease, opacity 180ms ease, box-shadow 180ms ease;
  will-change: transform;
}

.button::before,
.add-button::before,
.reseller-inline-button::before,
.cart-empty-browse::before {
  content: "";
  position: absolute;
  inset: -1px;
  background: linear-gradient(110deg, transparent 28%, rgba(255, 255, 255, 0.22), transparent 62%);
  opacity: 0;
  transform: translateX(-120%);
  transition: opacity 180ms ease, transform 520ms ease;
  pointer-events: none;
}

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

.button:hover::before,
.button:focus-visible::before,
.add-button:hover::before,
.add-button:focus-visible::before,
.reseller-inline-button:hover::before,
.reseller-inline-button:focus-visible::before,
.cart-empty-browse:hover::before,
.cart-empty-browse:focus-visible::before {
  opacity: 0.72;
  transform: translateX(120%);
}

.button:active,
.icon-button:active,
.cart-trigger:active,
.account-trigger:active,
.add-button:active,
.reseller-inline-button:active,
.cart-empty-browse:active {
  transform: translateY(0) scale(0.98);
}

.button:disabled,
.button[aria-disabled="true"],
.icon-button:disabled,
.cart-trigger:disabled,
.account-trigger:disabled {
  cursor: not-allowed;
  opacity: 0.56;
  transform: none;
}

.button[aria-busy="true"] {
  position: relative;
  overflow: hidden;
}

.button[aria-busy="true"]::after {
  content: "";
  position: absolute;
  inset: 0;
  transform: translateX(-120%);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.22), transparent);
  animation: buttonBusySweep 1.15s ease-in-out infinite;
  pointer-events: none;
}

@keyframes buttonBusySweep {
  to {
    transform: translateX(120%);
  }
}

.button svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.mobile-label {
  display: none;
}

.button-light {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
}

.button-light:hover,
.button-light:focus-visible {
  background: transparent;
  color: var(--white);
}

.button-ghost {
  background: rgba(255, 255, 255, 0.04);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.28);
}

.button-ghost:hover,
.button-ghost:focus-visible {
  background: rgba(255, 255, 255, 0.11);
}

.full {
  width: 100%;
}

.hero-controls {
  display: none;
}

.hero-dot {
  width: 34px;
  height: 4px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.32);
  cursor: pointer;
}

.hero-dot.is-active {
  background: var(--white);
}

.signal-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid var(--line);
  background: #0b0b0b;
}

.signal-bar a {
  min-height: 74px;
  display: grid;
  place-items: center;
  padding: 1rem;
  color: var(--smoke-soft);
  border-right: 1px solid var(--line);
  text-align: center;
  font-size: 0.95rem;
  font-weight: 750;
  text-decoration: none;
  transition:
    color 220ms ease,
    background-color 220ms ease,
    box-shadow 220ms ease;
}

.signal-bar a:hover,
.signal-bar a:focus-visible {
  color: var(--white);
  background: rgba(255, 255, 255, 0.055);
  box-shadow: inset 0 -2px 0 rgba(247, 247, 242, 0.72);
}

.signal-bar a:active {
  background: rgba(255, 255, 255, 0.085);
}

.signal-bar a:last-child {
  border-right: 0;
}

.section-anchor {
  height: 0;
  scroll-margin-top: 84px;
}

.upcoming-drop-section {
  scroll-margin-top: var(--header-h);
  padding: 0;
  background: #050505;
}

.upcoming-drop-heading {
  width: min(1180px, 100%);
  margin: 0 auto 2.25rem;
  text-align: center;
}

.upcoming-drop-heading h2 {
  margin: 0.4rem 0 0.75rem;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.75rem, 6vw, 5.6rem);
  font-weight: 400;
  line-height: 0.96;
}

.upcoming-drop-heading > p:last-child {
  max-width: 620px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.55;
}

.upcoming-drop-media {
  position: relative;
  width: 100%;
  height: clamp(560px, 78svh, 900px);
  overflow: hidden;
  background: #000;
  border-bottom: 1px solid var(--line);
  isolation: isolate;
}

.upcoming-drop-media video {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 45%;
  background: #000;
  opacity: 1;
  filter: none;
}

.upcoming-drop-media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.34) 34%, transparent 66%);
}

.upcoming-drop-overlay {
  position: absolute;
  top: 50%;
  left: clamp(1.5rem, 7vw, 8rem);
  z-index: 2;
  width: min(620px, calc(100% - 3rem));
  color: #fff;
  transform: translateY(-50%);
  text-align: left;
}

.upcoming-drop-eyebrow,
.upcoming-drop-status {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
}

.upcoming-drop-overlay h2 {
  margin: 0.35rem 0 0.7rem;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(4.5rem, 8vw, 8rem);
  font-weight: 400;
  line-height: 0.84;
  white-space: nowrap;
}

.upcoming-drop-tagline {
  max-width: 520px;
  margin: 0;
  font-size: clamp(1rem, 1.4vw, 1.25rem);
  line-height: 1.5;
}

.upcoming-drop-status {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1.75rem;
}

.upcoming-drop-status::before {
  content: "";
  width: 2.5rem;
  height: 1px;
  background: currentColor;
}

.hero-ticker {
  position: relative;
  display: block;
  min-height: 38px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: #050505;
  color: var(--white);
}

.hero-ticker-track {
  width: max-content;
  min-width: max-content;
  min-height: 38px;
  display: flex;
  align-items: center;
  gap: 2.4rem;
  padding: 0.52rem 0;
  animation: heroTicker 58s linear infinite;
  transform: translate3d(0, 0, 0);
  will-change: transform;
}

.hero-ticker-item {
  flex: 0 0 auto;
  white-space: nowrap;
  font-size: 0.82rem;
  line-height: 1;
  letter-spacing: 0.01em;
}

.hero-ticker-item strong {
  flex: 0 0 auto;
  font-size: inherit;
  line-height: inherit;
  font-weight: 850;
  text-transform: uppercase;
}

.hero-ticker-item span {
  flex: 0 0 auto;
  font-size: inherit;
  line-height: inherit;
  font-weight: 520;
}

@keyframes heroTicker {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.catalog-section,
.quality-section,
.size-section,
.contact-section {
  padding: 6rem 2rem;
}

#catalogo {
  padding-bottom: 3.75rem;
}

.blanks-section {
  padding-top: 3.25rem;
}

.section-heading {
  width: min(920px, 100%);
  margin: 0 auto 2rem;
  text-align: center;
}

.section-heading.compact {
  margin-bottom: 1.2rem;
}

.section-heading h2,
.quality-copy h2,
.contact-section h2,
.cart-header h2,
.modal-header h2 {
  margin: 0;
  font-family: "Cormorant Garamond", Garamond, Georgia, serif;
  font-weight: 300;
  letter-spacing: 0.018em;
  line-height: 1.08;
}

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

.section-heading p:not(.eyebrow) {
  max-width: 720px;
  margin: 1rem auto 0;
  color: var(--muted);
}

.catalog-toolbar {
  width: min(1180px, 100%);
  margin: 0 auto 1.2rem;
  display: grid;
  grid-template-columns: minmax(260px, 420px) 1fr;
  align-items: center;
  gap: 1rem;
}

.blank-filter-toolbar {
  grid-template-columns: 1fr;
  margin-top: -0.1rem;
}

.blanks-section .section-heading {
  margin-bottom: 1.35rem;
}

.blank-filter-toolbar .filter-group {
  justify-content: center;
}

.search-field {
  min-height: 48px;
  display: flex;
  align-items: center;
  gap: 0.72rem;
  padding: 0 0.9rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.05);
  color: var(--muted);
}

.search-field svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.search-field input {
  width: 100%;
  color: var(--white);
  background: transparent;
  border: 0;
  outline: 0;
}

.search-field input::placeholder {
  color: rgba(247, 247, 242, 0.5);
}

.search-field:focus-within {
  border-color: rgba(255, 255, 255, 0.72);
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.24);
}

.filter-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.55rem;
}

.filter-button {
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  padding: 0.52rem 0.85rem;
  cursor: pointer;
}

.filter-button.is-active,
.filter-button:hover,
.filter-button:focus-visible {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
}

.catalog-meta {
  width: min(1180px, 100%);
  margin: 0 auto 1.1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--muted);
  font-size: 0.92rem;
}

.catalog-meta a {
  border-bottom: 1px solid currentColor;
}

.product-grid {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(245px, 1fr));
  gap: 1rem;
}

.product-card {
  position: relative;
  min-width: 0;
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, #151515, #0d0d0d);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.22);
  transform: translateY(0);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease, background 220ms ease;
  will-change: transform;
}

.product-card::before,
.reseller-stock-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  opacity: 0;
  background: linear-gradient(112deg, transparent 10%, rgba(255, 255, 255, 0.13) 40%, rgba(255, 255, 255, 0.035) 48%, transparent 62%);
  transform: translateX(-118%);
}

.product-card:hover,
.product-card:focus-within {
  z-index: 3;
  border-color: rgba(255, 255, 255, 0.3);
  background: linear-gradient(180deg, #191919, #101010);
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.32);
  transform: translateY(-3px) scale(1.018);
}

.product-media {
  position: relative;
  aspect-ratio: 4 / 5;
  background: #ecece8;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
}

.product-media::before,
.reseller-stock-media::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(110deg, transparent 22%, rgba(255, 255, 255, 0.22), transparent 48%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(0, 0, 0, 0.04));
  transform: translateX(-120%);
  animation: productMediaSkeleton 1.4s ease-in-out infinite;
  opacity: 0.38;
  pointer-events: none;
}

.product-media.is-image-ready::before,
.product-media.is-showing-hover-image::before,
.product-media.has-hover-loaded::before {
  opacity: 0;
  animation: none;
}

@keyframes productMediaSkeleton {
  to {
    transform: translateX(120%);
  }
}

.blanks-section .product-media {
  aspect-ratio: 1 / 1;
  background: #151515;
}

.product-media img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform: scale(1.01);
  transition: transform 260ms ease, opacity 220ms ease;
}

.product-card:hover .product-media img,
.product-card:focus-within .product-media img {
  transform: scale(1.024);
}

.blanks-section .product-media img {
  object-position: center;
  padding: 0.35rem;
}

.product-badge {
  position: absolute;
  left: 0.58rem;
  top: 0.58rem;
  z-index: 4;
  padding: 0.18rem 0.42rem;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  background: rgba(5, 5, 5, 0.46);
  color: rgba(247, 247, 242, 0.88);
  font-size: 0.58rem;
  font-weight: 560;
  line-height: 1;
  letter-spacing: 0.045em;
  text-transform: uppercase;
  backdrop-filter: blur(6px);
  pointer-events: none;
}

.product-badge--limited {
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(0, 0, 0, 0.68);
  color: #fff;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
}

.quick-view-pill {
  position: absolute;
  right: 0.65rem;
  bottom: 0.65rem;
  z-index: 4;
  padding: 0.34rem 0.62rem;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.58);
  color: rgba(247, 247, 242, 0.92);
  font-size: 0.68rem;
  font-weight: 760;
  line-height: 1;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 180ms ease, transform 180ms ease;
  backdrop-filter: blur(10px);
  pointer-events: none;
}

.product-card--quick:hover .quick-view-pill,
.product-card--quick:focus-within .quick-view-pill {
  opacity: 1;
  transform: translateY(0);
}

.product-body {
  display: grid;
  gap: 0.9rem;
  padding: 1rem;
}

.product-top {
  display: flex;
  justify-content: space-between;
  gap: 0.8rem;
}

.product-top h3 {
  margin: 0;
  font-size: 1rem;
  line-height: 1.25;
}

.product-card--exclusive .product-top h3 {
  font-weight: 620;
}

.product-card--exclusive .price,
.product-card--exclusive .price-current {
  font-weight: 680;
}

.product-card--exclusive .price-original {
  font-weight: 500;
}

.price {
  white-space: nowrap;
  color: var(--white);
  font-weight: 850;
  text-align: right;
}

.price-sale {
  display: inline-grid;
  justify-items: end;
  gap: 0.12rem;
  line-height: 1.05;
}

.price-original {
  color: var(--muted);
  font-size: 0.78em;
  font-weight: 650;
  text-decoration: line-through;
  text-decoration-thickness: 1px;
}

.price-current {
  color: var(--white);
  font-weight: 900;
}

.price-discount {
  margin-top: 0.12rem;
  padding: 0.18rem 0.36rem;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 999px;
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.product-description {
  min-height: 3.1em;
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.swatch {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1px solid transparent;
}

.swatch.has-contrast-ring {
  border-color: rgba(255, 255, 255, 0.72);
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.3);
}

.product-options {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 0.65rem;
  align-items: end;
}

.option-field,
.product-options label,
.checkout-delivery-choice,
.checkout-grid label,
.size-finder-grid label {
  display: grid;
  gap: 0.35rem;
}

.option-label,
.product-options label,
.checkout-delivery-choice,
.checkout-grid label,
.size-finder-grid label {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 760;
}

.color-options {
  display: flex;
  flex-wrap: wrap;
  gap: 0.32rem;
  min-height: 32px;
}

.color-button {
  min-height: 32px;
  width: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 5px;
  background: #0c0c0c;
  color: var(--white);
  padding: 0;
  font: inherit;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.color-button .swatch {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
}

.color-button:hover,
.color-button.is-selected {
  border-color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.1);
}

.color-button:focus-visible {
  outline: 2px solid var(--white);
  outline-offset: 3px;
}

.color-button.is-selected {
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.2);
}

.color-button:active {
  transform: translateY(1px);
}

select,
input {
  min-height: 42px;
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 6px;
  background: #0c0c0c;
  color: var(--white);
  padding: 0 0.75rem;
}

.add-button {
  position: relative;
  overflow: hidden;
  min-height: 44px;
  border: 1px solid var(--white);
  border-radius: 4px;
  background: var(--white);
  color: var(--black);
  font-weight: 850;
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.add-button:hover,
.add-button:focus-visible {
  background: transparent;
  color: var(--white);
}

.add-button.is-added,
.button.is-added,
.reseller-inline-button.is-added {
  border-color: rgba(143, 240, 176, 0.72);
  background: rgba(143, 240, 176, 0.12);
  color: #effff3;
  box-shadow: 0 0 0 1px rgba(143, 240, 176, 0.12), 0 12px 28px rgba(0, 0, 0, 0.28);
}

.exclusive-detail-section {
  padding: 2rem 1rem 4rem;
  background: #050505;
  border-top: 1px solid var(--line);
  scroll-margin-top: var(--header-h);
}

.exclusive-detail-section[hidden] {
  display: none;
}

body.exclusive-detail-view main > section:not(#exclusiveProductDetail) {
  display: none !important;
}

body.exclusive-detail-view main {
  min-height: calc(100vh - var(--header-h));
  background: #050505;
}

body.exclusive-detail-view #exclusiveProductDetail {
  min-height: calc(100vh - var(--header-h));
}

body.exclusive-detail-view .site-nav,
body.exclusive-detail-view .menu-toggle {
  display: none !important;
}

body.exclusive-detail-view .site-header {
  grid-template-columns: auto 1fr auto;
}

body.exclusive-detail-view .brand {
  grid-column: 1;
  justify-self: start;
}

body.exclusive-detail-view .header-actions {
  grid-column: 3;
  justify-self: end;
  margin-left: auto;
}

.exclusive-detail-wrap {
  --exclusive-detail-height: clamp(500px, calc(100vh - var(--header-h) - 4rem), 620px);
  width: min(1040px, calc(100% - 8rem));
  height: auto;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 540px) minmax(470px, 500px);
  align-items: stretch;
  justify-content: center;
  overflow: visible;
  border: 1px solid var(--line);
  background: transparent;
}

.exclusive-detail-gallery {
  display: grid;
  grid-template-columns: 1fr;
  min-width: 0;
  min-height: 0;
  background: transparent;
}

.exclusive-detail-media {
  box-sizing: border-box;
  height: var(--exclusive-detail-height);
  min-height: 0;
  margin: 0;
  display: grid;
  place-items: center;
  padding: 0.9rem;
  background: transparent;
  overflow: visible;
}

.exclusive-detail-media img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center center;
}

.exclusive-detail-info {
  box-sizing: border-box;
  position: static;
  align-self: stretch;
  display: grid;
  align-content: start;
  gap: 0.85rem;
  min-width: 0;
  min-height: 0;
  height: var(--exclusive-detail-height);
  max-height: var(--exclusive-detail-height);
  overflow-y: auto;
  padding: 1.2rem;
  background: #0b0b0b;
  border-left: 1px solid var(--line);
  overflow-anchor: none;
}

.exclusive-detail-back {
  width: fit-content;
  min-height: 34px;
  border: 0;
  border-bottom: 1px solid currentColor;
  background: transparent;
  color: var(--muted);
  padding: 0;
  cursor: pointer;
  font: inherit;
}

.exclusive-detail-heading {
  display: grid;
  gap: 0.35rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line);
}

.exclusive-detail-heading h2 {
  margin: 0;
  color: var(--white);
  font-size: clamp(1.45rem, 2vw, 2.2rem);
  font-weight: 620;
  line-height: 1.05;
}

.exclusive-detail-heading strong {
  color: var(--white);
  font-size: 1.2rem;
  font-weight: 680;
}

.exclusive-detail-price .price-current {
  font-weight: 680;
}

.exclusive-detail-price .price-sale {
  justify-items: start;
}

.exclusive-detail-type {
  margin: 0;
  color: var(--muted);
}

.exclusive-detail-option {
  display: grid;
  gap: 0.65rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line);
}

.exclusive-detail-option > span {
  color: var(--white);
  font-weight: 820;
}

.exclusive-purchase-panel {
  position: sticky;
  top: 0;
  z-index: 5;
  display: grid;
  gap: 0.85rem;
  margin: 0 -0.2rem;
  padding: 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.055), transparent 42%),
    rgba(8, 8, 8, 0.92);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(14px);
}

.exclusive-purchase-panel .exclusive-detail-option {
  padding-bottom: 0.8rem;
}

.exclusive-detail-quantity {
  display: grid;
  gap: 0.5rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 760;
}

.exclusive-detail-quantity input {
  min-height: 44px;
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #050505;
  color: var(--white);
  padding: 0 0.85rem;
  font: inherit;
  font-weight: 760;
}

.exclusive-size-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(52px, 1fr));
  gap: 0.4rem;
  min-width: 0;
}

.exclusive-size-button {
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: transparent;
  color: var(--white);
  cursor: pointer;
  font-weight: 760;
}

.exclusive-size-button:hover,
.exclusive-size-button.is-selected {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
}

.exclusive-detail-add {
  width: 100%;
}

.exclusive-detail-accordion {
  min-width: 0;
  border-top: 1px solid var(--line);
  overflow-anchor: none;
}

.exclusive-detail-accordion:last-child {
  border-bottom: 1px solid var(--line);
}

.exclusive-detail-accordion summary {
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  cursor: pointer;
  color: var(--white);
  font-weight: 820;
  list-style: none;
}

.exclusive-detail-accordion summary::-webkit-details-marker {
  display: none;
}

.exclusive-detail-accordion summary::after {
  content: "+";
  font-size: 1.2rem;
}

.exclusive-detail-accordion[open] summary::after {
  content: "-";
}

.exclusive-detail-accordion[open] > summary {
  position: relative;
  z-index: 1;
  background: #0b0b0b;
}

.exclusive-detail-accordion p {
  margin: 0 0 1rem;
  color: var(--muted);
  line-height: 1.55;
}

.exclusive-detail-care-list {
  margin: 0 0 1rem;
  padding-left: 1.3rem;
  color: var(--muted);
  line-height: 1.55;
}

.exclusive-detail-care-list li {
  padding-left: 0.15rem;
}

.exclusive-detail-care-list li + li {
  margin-top: 0.28rem;
}

.exclusive-related {
  width: min(1280px, 100%);
  margin: 0 auto;
  padding: 4rem clamp(1rem, 3vw, 2rem) 5rem;
  background: #050505;
}

.exclusive-related-heading {
  display: grid;
  gap: 0.4rem;
  margin-bottom: 1.4rem;
}

.exclusive-related-heading p,
.exclusive-related-heading h2 {
  margin: 0;
}

.exclusive-related-heading h2 {
  color: var(--white);
  font-size: clamp(1.65rem, 3vw, 2.8rem);
}

.exclusive-related-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

@media (max-width: 980px) {
  .exclusive-related-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .upcoming-drop-section {
    padding: 0;
  }

  .upcoming-drop-media {
    height: clamp(520px, 70svh, 720px);
  }

  .upcoming-drop-overlay {
    top: auto;
    bottom: clamp(2.25rem, 8vh, 4.5rem);
    left: 1.25rem;
    width: calc(100% - 2.5rem);
    transform: none;
  }

  .upcoming-drop-overlay h2 {
    margin-top: 0.45rem;
    font-size: clamp(3.5rem, 17vw, 5rem);
    line-height: 0.88;
  }

  .upcoming-drop-tagline {
    max-width: 20rem;
    font-size: 0.98rem;
  }

  .upcoming-drop-status {
    margin-top: 1.25rem;
  }

  .exclusive-related {
    padding: 3rem 0.75rem 4rem;
  }

  .exclusive-related-grid {
    grid-template-columns: 1fr;
  }
}

.exclusive-detail-size-wrap {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  overflow-x: hidden;
  margin-bottom: 0.75rem;
}

.exclusive-detail-size-table {
  width: 100%;
  min-width: 0;
  table-layout: fixed;
  border-collapse: collapse;
  color: var(--white);
  font-size: 0.78rem;
}

.exclusive-detail-size-table th,
.exclusive-detail-size-table td {
  padding: 0.48rem 0.3rem;
  border-bottom: 1px solid var(--line);
  text-align: left;
}

.exclusive-detail-size-table th {
  color: var(--white);
}

.exclusive-detail-note {
  font-size: 0.82rem;
}

.product-media.is-clickable,
.product-title-button {
  cursor: pointer;
}

.product-media.is-clickable:focus-visible {
  outline: 2px solid var(--white);
  outline-offset: -6px;
}

.product-title-button {
  border: 0;
  background: transparent;
  color: inherit;
  padding: 0;
  font: inherit;
  font-weight: inherit;
  text-align: left;
}

.product-title-button:hover,
.product-title-button:focus-visible {
  color: var(--muted);
}

.empty-state {
  grid-column: 1 / -1;
  min-height: 180px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--muted);
  text-align: center;
}

.quality-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  gap: 2rem;
  align-items: center;
  background: #f0f0ec;
  color: var(--black);
}

.quality-copy {
  max-width: 780px;
}

.quality-copy .eyebrow {
  color: #555;
}

.quality-copy h2 {
  font-size: 3rem;
  font-weight: 400;
}

.quality-copy > p {
  color: #353535;
  font-size: 1.08rem;
}

.quality-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.8rem;
  margin-top: 2rem;
}

.quality-points article {
  min-height: 172px;
  padding: 1rem;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.45);
}

.quality-points span {
  display: inline-block;
  margin-bottom: 0.75rem;
  color: #686865;
  font-weight: 850;
}

.quality-points h3 {
  margin: 0 0 0.45rem;
  font-size: 1rem;
}

.quality-points p {
  margin: 0;
  color: #444;
  font-size: 0.92rem;
}

.quality-image {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #111;
}

.quality-image img,
.quality-image video {
  width: 100%;
  aspect-ratio: 4 / 4.4;
  object-fit: cover;
  display: block;
}

.size-section {
  background: #0a0a0a;
}

.size-guide {
  width: min(1040px, 100%);
  margin: 0 auto 0.85rem;
}

.size-guide:last-child {
  margin-bottom: 0;
}

.size-subheading {
  margin-top: 1.55rem;
  margin-bottom: 0.65rem;
}

.size-guide-title {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 0.8rem;
  margin-bottom: 0.45rem;
}

.size-guide-title h3 {
  margin: 0;
  color: var(--white);
  font-size: 0.98rem;
  text-transform: uppercase;
}

.size-guide-title span {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 760;
}

.size-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.size-table {
  width: 100%;
  min-width: 780px;
  border-collapse: collapse;
}

.size-table-compact {
  min-width: 650px;
}

.size-table th,
.size-table td {
  padding: 0.62rem 0.85rem;
  text-align: left;
  line-height: 1.18;
  border-bottom: 1px solid var(--line);
}

.size-table th {
  background: rgba(255, 255, 255, 0.07);
}

.size-table tbody th {
  min-width: 180px;
  position: sticky;
  left: 0;
  color: var(--white);
  background: #121212;
  z-index: 1;
}

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

.size-table tr:last-child th {
  border-bottom: 0;
}

.size-placeholder {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.2rem;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.04);
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 2rem;
  border-top: 1px solid var(--line);
  background: #101010;
}

.contact-section h2 {
  font-size: 2.7rem;
}

.contact-section p:not(.eyebrow) {
  max-width: 620px;
  color: var(--muted);
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.7rem;
}

.contact-icon-button {
  width: 58px;
  min-height: 58px;
  padding: 0;
  border-radius: 50%;
}

.contact-icon-button svg {
  width: 38px;
  height: 38px;
}

.contact-icon-button .brand-icon-fill {
  fill: currentColor;
  stroke: none;
}

.contact-icon-button .whatsapp-icon {
  width: 48px;
  height: 48px;
  transform: translateX(1px);
}

.language-nav {
  position: relative;
}

.language-trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.42rem;
  border: 0;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font: inherit;
  transition: color 180ms ease;
}

.site-header:not(.is-scrolled) .language-trigger {
  color: rgba(247, 247, 242, 0.88);
}

.site-header.is-scrolled .language-trigger {
  color: var(--muted);
}

.language-trigger > svg:first-child {
  width: 15px;
  height: 15px;
}

.language-trigger svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.55;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.language-chevron {
  width: 13px;
  height: 13px;
  transition: transform 180ms ease;
}

.language-nav.is-open .language-chevron {
  transform: rotate(180deg);
}

.language-menu {
  position: absolute;
  top: calc(100% + 1rem);
  left: 50%;
  z-index: 70;
  width: 360px;
  max-height: min(480px, calc(100vh - var(--header-h) - 2rem));
  overflow-y: auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.3rem;
  padding: 0.65rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(8, 8, 8, 0.98);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.48);
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.34) transparent;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate(-50%, -6px);
  transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
}

.language-nav.is-open .language-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.language-menu button {
  position: relative;
  display: grid;
  grid-template-columns: 1.5rem minmax(0, 1fr);
  align-items: center;
  gap: 0.55rem;
  min-height: 42px;
  padding: 0.35rem 0.7rem;
  border: 1px solid transparent;
  border-radius: 6px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font: inherit;
  font-size: 0.82rem;
  text-align: left;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease;
}

.language-flag {
  display: block;
  width: 24px;
  height: 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 2px;
  object-fit: cover;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

.language-name {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.language-menu button:hover,
.language-menu button:focus-visible {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.07);
  color: var(--white);
}

.language-menu button.is-active {
  padding-right: 1.4rem;
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}

.language-menu button.is-active::after {
  content: "";
  position: absolute;
  right: 0.6rem;
  top: 50%;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.1);
  transform: translateY(-50%);
}

.language-menu::-webkit-scrollbar {
  width: 6px;
}

.language-menu::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.34);
}

.translate-widget,
.skiptranslate,
.goog-te-banner-frame,
.goog-te-balloon-frame,
#goog-gt-tt {
  display: none !important;
}

body {
  top: 0 !important;
}

.cart-drawer,
.checkout-modal,
.size-finder-modal,
.account-modal,
.reseller-modal,
.product-quickview-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  pointer-events: none;
  visibility: hidden;
}

.cart-drawer.is-open,
.checkout-modal.is-open,
.size-finder-modal.is-open,
.account-modal.is-open,
.reseller-modal.is-open,
.product-quickview-modal.is-open {
  pointer-events: auto;
  visibility: visible;
}

.drawer-scrim,
.modal-scrim {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.62);
  opacity: 0;
  transition: opacity 180ms ease;
}

.cart-drawer.is-open .drawer-scrim,
.checkout-modal.is-open .modal-scrim,
.size-finder-modal.is-open .modal-scrim,
.account-modal.is-open .modal-scrim,
.reseller-modal.is-open .modal-scrim,
.product-quickview-modal.is-open .modal-scrim {
  opacity: 1;
}

.cart-panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(440px, 100vw);
  height: 100%;
  display: grid;
  grid-template-rows: auto 1fr auto;
  background: #0b0b0b;
  border-left: 1px solid var(--line);
  transform: translateX(100%);
  transition: transform 220ms ease;
  box-shadow: var(--shadow);
}

.cart-drawer.is-open .cart-panel {
  transform: translateX(0);
}

.product-quickview-modal {
  z-index: 104;
}

.product-quickview-panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(560px, 100vw);
  height: 100%;
  display: grid;
  grid-template-rows: auto 1fr;
  overflow-y: auto;
  background:
    radial-gradient(circle at 80% 12%, rgba(255, 255, 255, 0.08), transparent 28%),
    linear-gradient(180deg, rgba(18, 18, 18, 0.98), rgba(5, 5, 5, 0.99));
  border-left: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: -34px 0 90px rgba(0, 0, 0, 0.55);
  transform: translateX(100%);
  transition: transform 260ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.product-quickview-modal.is-open .product-quickview-panel {
  transform: translateX(0);
}

.product-quickview-header {
  min-height: 92px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.35rem;
  border-bottom: 1px solid var(--line);
}

.product-quickview-header h2 {
  margin: 0;
  color: var(--white);
  font-size: clamp(1.35rem, 5vw, 2rem);
  font-weight: 620;
  line-height: 1.02;
}

.product-quickview-body {
  display: grid;
  gap: 1.1rem;
  padding: 1.35rem;
}

.product-quickview-media {
  display: block;
}

.product-quickview-main {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
  background: #171717;
  border: 1px solid var(--line);
}

.product-quickview-info {
  display: grid;
  gap: 0.9rem;
}

.product-quickview-price {
  color: var(--white);
  font-size: 1.2rem;
}

.product-quickview-info p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.product-quickview-field {
  display: grid;
  gap: 0.5rem;
  color: var(--muted);
  font-weight: 760;
}

.product-quickview-field select,
.product-quickview-field input {
  min-height: 44px;
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #060606;
  color: var(--white);
  padding: 0 0.85rem;
  font: inherit;
  font-weight: 700;
}

.product-quickview-customize {
  margin-top: 0.15rem;
}

.cart-header,
.modal-header {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.2rem;
  border-bottom: 1px solid var(--line);
}

.cart-header h2,
.modal-header h2 {
  font-size: 1.75rem;
}

.cart-header h2 {
  font-weight: 300;
  color: var(--white);
}

.cart-items {
  overflow: auto;
  padding: 1rem;
}

.cart-empty {
  min-height: 300px;
  display: grid;
  place-items: center;
  padding: 1.2rem;
  color: var(--muted);
  text-align: center;
}

.cart-empty-state {
  width: min(290px, 100%);
  display: grid;
  justify-items: center;
  gap: 0.8rem;
}

.cart-empty-mark {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--white);
  font-weight: 900;
}

.cart-empty h3 {
  margin: 0;
  color: var(--white);
  font-size: 1.1rem;
}

.cart-empty p {
  max-width: 260px;
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.cart-empty-browse {
  position: relative;
  overflow: hidden;
  min-height: 38px;
  border: 1px solid var(--white);
  border-radius: 999px;
  background: var(--white);
  color: var(--black);
  padding: 0 0.9rem;
  font-weight: 850;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease, border-color 160ms ease;
}

.cart-empty-browse:hover {
  transform: translateY(-1px);
}

.cart-item {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 0.85rem;
  padding: 0.8rem 0;
  border-bottom: 1px solid var(--line);
}

.cart-item img {
  width: 72px;
  height: 88px;
  object-fit: cover;
  border-radius: 6px;
  background: #eee;
}

.cart-item h3 {
  margin: 0 0 0.25rem;
  font-size: 0.98rem;
}

.cart-item p {
  margin: 0;
  color: var(--muted);
  font-size: 0.85rem;
}

.cart-line {
  display: flex;
  justify-content: space-between;
  gap: 0.7rem;
  margin-top: 0.6rem;
}

.qty-controls {
  display: inline-flex;
  align-items: center;
  gap: 0.42rem;
}

.qty-controls button,
.remove-item {
  min-width: 30px;
  height: 30px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  color: var(--white);
  cursor: pointer;
}

.remove-item {
  border-radius: 4px;
  width: auto;
  padding: 0 0.55rem;
  color: var(--muted);
}

.qty-controls button,
.remove-item {
  transition: transform 150ms ease, border-color 150ms ease, background 150ms ease, color 150ms ease;
}

.qty-controls button:hover,
.remove-item:hover {
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  transform: translateY(-1px);
}

.cart-footer {
  padding: 1rem;
  border-top: 1px solid var(--line);
  background: #0f0f0f;
}

.cart-reseller-progress {
  display: grid;
  gap: 0.52rem;
  margin-bottom: 0.85rem;
  padding: 0.82rem;
  border: 1px solid rgba(247, 247, 242, 0.16);
  border-radius: 8px;
  background:
    radial-gradient(circle at 14% 0%, rgba(247, 247, 242, 0.12), transparent 34%),
    linear-gradient(135deg, rgba(247, 247, 242, 0.07), rgba(247, 247, 242, 0.025));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.cart-reseller-progress[hidden] {
  display: none;
}

.cart-progress-head {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  align-items: center;
}

.cart-progress-head span,
.cart-progress-head strong {
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.055em;
  text-transform: uppercase;
}

.cart-progress-track {
  height: 5px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(247, 247, 242, 0.12);
}

.cart-progress-track span {
  display: block;
  width: 3%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, rgba(247, 247, 242, 0.68), #fff);
  box-shadow: 0 0 18px rgba(247, 247, 242, 0.28);
  transition: width 300ms ease;
}

.cart-footer .cart-reseller-progress p {
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.4;
}

.cart-footer .cart-profit-estimate {
  color: rgba(247, 247, 242, 0.84) !important;
  font-weight: 800;
}

.cart-summary {
  display: grid;
  gap: 0.48rem;
}

.cart-footer p {
  margin: 0.75rem 0 1rem;
  color: var(--muted);
  font-size: 0.86rem;
}

.total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.cart-summary .total-row {
  color: var(--muted);
  font-size: 0.9rem;
}

.cart-summary .total-row strong {
  color: var(--white);
  font-size: 0.95rem;
  text-align: right;
}

.cart-discount-row strong {
  color: #d8f0df;
}

.cart-total-preview {
  margin-top: 0.35rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--line);
}

.cart-total-preview span,
.cart-total-preview strong {
  color: var(--white);
}

.cart-total-preview strong {
  font-size: 1.14rem;
}

.checkout-modal,
.size-finder-modal,
.account-modal,
.reseller-modal {
  display: grid;
  place-items: center;
  padding: 1rem;
}

.checkout-card,
.size-finder-card,
.account-card,
.reseller-card {
  position: relative;
  width: min(720px, 100%);
  max-height: min(820px, 92vh);
  overflow: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #101010;
  transform: translateY(18px);
  opacity: 0;
  transition: transform 200ms ease, opacity 200ms ease;
  box-shadow: var(--shadow);
}

.checkout-card.is-card-payment {
  width: min(1120px, calc(100vw - 2rem));
}

.checkout-modal.is-open .checkout-card,
.size-finder-modal.is-open .size-finder-card,
.account-modal.is-open .account-card,
.reseller-modal.is-open .reseller-card {
  transform: translateY(0);
  opacity: 1;
}

.account-card {
  width: min(560px, 100%);
}

.reseller-card {
  width: min(1480px, calc(100vw - 1.5rem));
  max-height: calc(100vh - 1.5rem);
}

body.reseller-page-open .reseller-modal {
  padding: 0;
  place-items: stretch;
  background: #050505;
}

body.reseller-page-open .reseller-modal .modal-scrim {
  display: none;
}

body.reseller-page-open .reseller-card {
  width: 100vw;
  height: 100vh;
  max-height: none;
  overflow: auto;
  border: 0;
  border-radius: 0;
  background:
    radial-gradient(circle at 15% 0%, rgba(247, 247, 242, 0.08), transparent 32%),
    linear-gradient(180deg, #0a0a0a, #050505 48%, #000);
  box-shadow: none;
}

.reseller-page-toolbar {
  position: sticky;
  top: 0;
  z-index: 6;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem clamp(1rem, 3vw, 2rem);
  border-bottom: 1px solid rgba(247, 247, 242, 0.12);
  background: rgba(5, 5, 5, 0.88);
  backdrop-filter: blur(16px);
}

.reseller-back-link,
.reseller-cart-trigger {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: 1px solid rgba(247, 247, 242, 0.24);
  border-radius: 999px;
  padding: 0 0.95rem;
  color: #f7f7f2;
  background: rgba(247, 247, 242, 0.04);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.035em;
  text-decoration: none;
  cursor: pointer;
}

.reseller-cart-trigger span {
  min-width: 1.55rem;
  height: 1.55rem;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: #f7f7f2;
  color: #050505;
  font-size: 0.72rem;
}

.reseller-back-link:hover,
.reseller-back-link:focus-visible,
.reseller-cart-trigger:hover,
.reseller-cart-trigger:focus-visible {
  background: #f7f7f2;
  color: #050505;
}

.reseller-close-button {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 2;
}

body.reseller-page-open .reseller-close-button {
  top: 4.75rem;
  right: clamp(1rem, 3vw, 2rem);
  z-index: 5;
}

.account-body {
  display: grid;
  gap: 1rem;
  padding: 1.1rem 1.2rem 1.25rem;
}

.account-profile {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 0.9rem;
  padding: 0.95rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
}

.account-avatar {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 50%;
  color: var(--white);
}

.account-avatar svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.account-profile strong,
.account-profile span {
  display: block;
  overflow-wrap: anywhere;
}

.account-profile strong {
  color: var(--white);
  font-size: 1.02rem;
}

.account-profile span {
  color: var(--muted);
  font-size: 0.88rem;
}

.account-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.account-actions .button {
  min-height: 42px;
  padding-inline: 1rem;
}

.account-section-head {
  display: grid;
  gap: 0.18rem;
  margin-bottom: 0.7rem;
}

.account-section-head strong {
  color: var(--white);
}

.account-section-head span,
.account-status,
.account-empty {
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.45;
}

.account-orders {
  display: grid;
  gap: 0.7rem;
}

.account-order {
  display: grid;
  gap: 0.55rem;
  padding: 0.85rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
  transform: translateY(0);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.account-order:hover,
.account-order:focus-within {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.055);
  transform: translateY(-1px);
}

.account-order-head,
.account-order-meta {
  display: flex;
  justify-content: space-between;
  gap: 0.85rem;
}

.account-order-head strong {
  color: var(--white);
}

.account-order-head span,
.account-order-meta span {
  color: var(--muted);
  font-size: 0.82rem;
}

.account-order-status {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.account-order-status span,
.account-tracking-link {
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0 0.62rem;
  color: var(--smoke-soft);
  font-size: 0.76rem;
  font-weight: 800;
}

.account-tracking-link {
  border-color: rgba(255, 255, 255, 0.34);
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.account-status {
  min-height: 1.2em;
  margin: 0.75rem 0 0;
}

.account-status.is-error {
  color: #ff9a9a;
}

.account-status.is-success {
  color: #8ff0b0;
}

.account-skeleton-list {
  display: grid;
  gap: 0.7rem;
}

.account-skeleton-card,
.shipping-skeleton-card {
  display: grid;
  gap: 0.62rem;
  padding: 0.85rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
}

.shipping-skeleton-list {
  display: grid;
  gap: 0.55rem;
}

.skeleton-line {
  position: relative;
  display: block;
  height: 0.78rem;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.skeleton-line::after {
  content: "";
  position: absolute;
  inset: 0;
  transform: translateX(-100%);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.16), transparent);
  animation: skeletonSweep 1.2s ease-in-out infinite;
}

.skeleton-line.short {
  width: 38%;
}

.skeleton-line.medium {
  width: 62%;
}

.skeleton-line.long {
  width: 86%;
}

@keyframes skeletonSweep {
  to {
    transform: translateX(100%);
  }
}

.checkout-grid,
.size-finder-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.9rem;
  padding: 1rem 1.2rem;
}

.checkout-delivery-choice {
  margin: 0 1.2rem 1rem;
}

.discount-panel {
  display: grid;
  gap: 0.8rem;
  margin: 0 1.2rem 1rem;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
}

.discount-panel-head {
  display: grid;
  gap: 0.24rem;
}

.discount-panel-head strong {
  color: var(--white);
  font-size: 1rem;
  line-height: 1.25;
}

.discount-panel-head span,
.discount-status {
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.45;
}

.discount-code-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.65rem;
  align-items: center;
}

.discount-code-row input {
  width: 100%;
  min-height: 44px;
  padding: 0.75rem 0.85rem;
}

.discount-status {
  min-height: 1.25rem;
  margin: 0;
}

.discount-status.is-success {
  color: #a7efbd;
}

.discount-status.is-error {
  color: #ffaaaa;
}

.shipping-panel {
  display: grid;
  gap: 0.75rem;
  margin: 0 1.2rem 1rem;
  padding: 0.9rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
}

.shipping-panel[hidden] {
  display: none;
}

.shipping-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.shipping-panel-head div {
  display: grid;
  gap: 0.2rem;
}

.shipping-panel-head strong {
  color: var(--white);
  font-size: 1rem;
}

.shipping-panel-head span,
.shipping-status {
  color: var(--muted);
  font-size: 0.86rem;
}

.small-button {
  min-height: 40px;
  padding: 0.65rem 0.9rem;
  font-size: 0.82rem;
}

.shipping-status.is-success {
  color: #a7efbd;
}

.shipping-status.is-error {
  color: #ffaaaa;
}

.shipping-status.is-loading::after,
.account-status.is-loading::after,
.discount-status.is-loading::after,
.mp-payment-status.is-loading::after,
.newsletter-status.is-loading::after {
  content: "";
  display: inline-block;
  width: 1.35em;
  text-align: left;
  animation: loadingDots 1.1s steps(4, end) infinite;
}

@keyframes loadingDots {
  0% {
    content: "";
  }

  25% {
    content: ".";
  }

  50% {
    content: "..";
  }

  75%,
  100% {
    content: "...";
  }
}

.shipping-options {
  display: grid;
  gap: 0.55rem;
}

.shipping-option {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: rgba(0, 0, 0, 0.2);
  color: var(--smoke-soft);
  cursor: pointer;
  transform: translateY(0);
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease, color 160ms ease, box-shadow 160ms ease;
}

.shipping-option:hover {
  border-color: rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-1px);
}

.shipping-option:focus-within {
  outline: 2px solid rgba(247, 247, 242, 0.92);
  outline-offset: 3px;
}

.shipping-option.is-selected {
  border-color: var(--white);
  background: var(--white);
  color: var(--black);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.22);
}

.shipping-option input {
  appearance: none;
  width: 20px;
  height: 20px;
  min-height: 20px;
  display: grid;
  place-content: center;
  border: 2px solid rgba(255, 255, 255, 0.72);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  transition: border-color 160ms ease, background 160ms ease;
}

.shipping-option input::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--black);
  transform: scale(0);
  transition: transform 140ms ease;
}

.shipping-option input:checked {
  border-color: var(--black);
  background: var(--white);
}

.shipping-option input:checked::before {
  transform: scale(1);
}

.shipping-option input:focus-visible {
  outline: 2px solid var(--white);
  outline-offset: 3px;
}

.shipping-option span {
  min-width: 0;
  display: grid;
  gap: 0.18rem;
}

.shipping-option small {
  color: var(--muted);
  line-height: 1.35;
}

.shipping-option b,
.shipping-option-price {
  color: var(--white);
  white-space: nowrap;
}

.shipping-option.is-selected small,
.shipping-option.is-selected b,
.shipping-option.is-selected .shipping-option-price {
  color: var(--black);
}

.shipping-option-price {
  display: grid;
  justify-items: end;
  gap: 0.08rem;
}

.shipping-option-price span {
  display: inline-block;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 800;
  text-decoration: line-through;
}

.shipping-option-price strong {
  font-size: 0.98rem;
  color: inherit;
}

.shipping-option-discount {
  color: #f7f7f2;
  font-weight: 850;
}

.shipping-option.is-selected .shipping-option-price span,
.shipping-option.is-selected .shipping-option-discount {
  color: rgba(0, 0, 0, 0.68);
}

.shipping-option.is-selected input:focus-visible {
  outline-color: var(--black);
}

.checkout-total-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 0.65rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.checkout-total-row strong {
  color: var(--white);
  font-size: 1.15rem;
}

.payment-options {
  display: grid;
  gap: 0.65rem;
  margin: 0;
  padding: 1rem 1.2rem;
  border: 0;
  border-top: 1px solid var(--line);
}

.payment-options legend {
  padding: 0;
  margin-bottom: 0.5rem;
  font-weight: 850;
}

.payment-options label {
  min-height: 44px;
  display: flex;
  align-items: center;
  gap: 0.62rem;
  padding: 0.65rem 0.75rem;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--smoke-soft);
}

.payment-options input {
  width: 18px;
  min-height: 18px;
  accent-color: var(--white);
}

.payment-note,
.order-result {
  margin: 0 1.2rem 1rem;
  padding: 0.9rem;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--muted);
  font-size: 0.93rem;
}

.order-result:empty {
  display: none;
}

.order-warning {
  display: inline-block;
  margin: 0.35rem 0;
  color: #ffd08a;
}

.card-payment-panel {
  margin: 0 0.65rem 1rem;
  padding: 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025)),
    #111111;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 16px 44px rgba(0, 0, 0, 0.26);
}

#cardPaymentBrick_container {
  min-width: 0;
  overflow: visible;
  --bils-mp-radio-size: 28px;
}

#cardPaymentBrick_container label,
#cardPaymentBrick_container [role="radio"] {
  gap: 0.78rem !important;
}

#cardPaymentBrick_container .andes-list__item {
  gap: 0.85rem !important;
}

#cardPaymentBrick_container .andes-list__item-secondary,
#cardPaymentBrick_container .andes-list__item-tertiary {
  min-width: max-content !important;
  flex: 0 0 max-content !important;
  text-align: right !important;
  white-space: nowrap !important;
}

#cardPaymentBrick_container .andes-radio {
  align-items: center !important;
  gap: 0.8rem !important;
  padding-left: 0.75rem !important;
}

#cardPaymentBrick_container input[type="radio"] {
  width: var(--bils-mp-radio-size) !important;
  height: var(--bils-mp-radio-size) !important;
  min-width: var(--bils-mp-radio-size) !important;
  min-height: var(--bils-mp-radio-size) !important;
  aspect-ratio: 1 / 1 !important;
  flex: 0 0 var(--bils-mp-radio-size) !important;
  margin-right: 0.78rem !important;
  border-radius: 999px !important;
}

#cardPaymentBrick_container [class*="radio"][class*="circle"]:not([class*="inner"]):not([class*="Inner"]),
#cardPaymentBrick_container [class*="Radio"][class*="circle"]:not([class*="inner"]):not([class*="Inner"]),
#cardPaymentBrick_container [class*="radio"][class*="background"],
#cardPaymentBrick_container [class*="Radio"][class*="background"] {
  width: var(--bils-mp-radio-size) !important;
  height: var(--bils-mp-radio-size) !important;
  min-width: var(--bils-mp-radio-size) !important;
  min-height: var(--bils-mp-radio-size) !important;
  aspect-ratio: 1 / 1 !important;
  border-radius: 999px !important;
  flex: 0 0 var(--bils-mp-radio-size) !important;
}

#cardPaymentBrick_container [class*="money-amount"],
#cardPaymentBrick_container [class*="MoneyAmount"],
#cardPaymentBrick_container .andes-money-amount {
  min-width: max-content !important;
  display: inline-flex !important;
  align-items: baseline !important;
  flex-wrap: nowrap !important;
  gap: 0.12rem !important;
  white-space: nowrap !important;
}

#cardPaymentBrick_container .andes-list__item-secondary,
#cardPaymentBrick_container .andes-list__item-tertiary {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  justify-content: flex-end !important;
  gap: 0.14rem !important;
  line-height: 1 !important;
}

#cardPaymentBrick_container .andes-list__item-secondary [class*="money-amount"],
#cardPaymentBrick_container .andes-list__item-tertiary [class*="money-amount"],
#cardPaymentBrick_container .andes-list__item-secondary [class*="MoneyAmount"],
#cardPaymentBrick_container .andes-list__item-tertiary [class*="MoneyAmount"],
#cardPaymentBrick_container .andes-list__item-secondary .andes-money-amount,
#cardPaymentBrick_container .andes-list__item-tertiary .andes-money-amount {
  display: inline-flex !important;
  flex-direction: row !important;
  align-items: baseline !important;
  justify-content: flex-end !important;
  width: auto !important;
  max-width: none !important;
  line-height: 1 !important;
  text-align: right !important;
}

#cardPaymentBrick_container [class*="money-amount"] *,
#cardPaymentBrick_container [class*="MoneyAmount"] *,
#cardPaymentBrick_container .andes-money-amount *,
#cardPaymentBrick_container .andes-money-amount__currency-symbol,
#cardPaymentBrick_container .andes-money-amount__fraction,
#cardPaymentBrick_container .andes-money-amount__decimal-separator,
#cardPaymentBrick_container .andes-money-amount__cents {
  display: inline-block !important;
  width: auto !important;
  min-width: 0 !important;
  max-width: none !important;
  line-height: 1 !important;
  white-space: nowrap !important;
  vertical-align: baseline !important;
}

#cardPaymentBrick_container .andes-money-amount__currency-symbol {
  margin-right: 0.16rem !important;
}

#cardPaymentBrick_container .andes-list__item-secondary br,
#cardPaymentBrick_container .andes-list__item-tertiary br,
#cardPaymentBrick_container .andes-money-amount br {
  display: none !important;
}

.card-payment-panel[hidden],
.checkout-card.is-card-payment #checkoutSubmitButton {
  display: none;
}

.mp-payment-status {
  color: var(--muted);
  font-size: 0.9rem;
}

.mp-payment-status {
  min-height: 1.25rem;
  margin-top: 0.85rem;
  font-weight: 650;
}

.mp-payment-status.is-success {
  color: #8ff0b0;
}

.mp-payment-status.is-error {
  color: #ff9a9a;
}

.mp-payment-status.is-loading {
  color: var(--smoke-soft);
}

.checkout-card > .button {
  width: calc(100% - 2.4rem);
  margin: 0 1.2rem 1.2rem;
}

.size-finder-card {
  width: min(760px, 100%);
}

.size-finder-intro {
  margin: 0;
  padding: 1rem 1.2rem 0;
  color: var(--muted);
  font-size: 0.93rem;
  line-height: 1.55;
}

.size-finder-segment {
  margin: 0;
  padding: 1rem 1.2rem 0;
  border: 0;
}

.size-finder-segment legend {
  margin-bottom: 0.45rem;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 760;
}

.size-finder-segment-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.55rem;
}

.size-finder-segment-options label {
  cursor: pointer;
}

.size-finder-segment-options input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.size-finder-segment-options span {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.045);
  color: var(--white);
  font-weight: 820;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.size-finder-segment-options input:checked + span {
  background: var(--white);
  border-color: var(--white);
  color: var(--black);
}

.size-finder-segment-options input:focus-visible + span {
  outline: 2px solid var(--white);
  outline-offset: 3px;
}

.size-finder-grid {
  grid-template-columns: 1.45fr 0.78fr 0.78fr;
}

.size-finder-field-wide {
  min-width: 0;
}

.size-finder-actions {
  padding: 0 1.2rem 1rem;
}

.size-finder-result {
  margin: 0 1.2rem 1rem;
  padding: 0.9rem;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--muted);
  font-size: 0.93rem;
}

.size-finder-result.is-ready {
  display: grid;
  gap: 0.85rem;
}

.size-finder-result-head {
  display: grid;
  gap: 0.2rem;
}

.size-finder-result-head span,
.size-finder-pick span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.size-finder-result-head strong {
  color: var(--white);
}

.size-finder-result-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.size-finder-pick {
  margin: 0;
  padding: 0.85rem;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.2);
}

.size-finder-pick strong {
  display: block;
  margin: 0.22rem 0 0.35rem;
  color: var(--white);
  font-size: 2rem;
  line-height: 1;
}

.size-finder-pick p {
  margin: 0;
  color: var(--smoke-soft);
  font-size: 0.86rem;
}

.size-finder-disclaimer {
  margin: -0.2rem 1.2rem 1.2rem;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.45;
}

.launch-celebration-canvas {
  position: fixed;
  z-index: 10000;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 1rem;
  z-index: 120;
  display: grid;
  gap: 0.22rem;
  min-width: min(320px, calc(100vw - 2rem));
  max-width: 520px;
  padding: 0.82rem 0.95rem;
  border: 1px solid rgba(247, 247, 242, 0.18);
  border-radius: 8px;
  background:
    radial-gradient(circle at 16% 0%, rgba(247, 247, 242, 0.12), transparent 36%),
    rgba(12, 12, 12, 0.96);
  color: var(--white);
  box-shadow: var(--shadow);
  transform: translate(-50%, 20px);
  opacity: 0;
  pointer-events: none;
  backdrop-filter: blur(14px);
  transition: opacity 220ms ease, transform 220ms ease, background 180ms ease, border-color 180ms ease;
}

.toast-mark {
  color: rgba(247, 247, 242, 0.58);
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.toast strong {
  color: var(--white);
  font-size: 0.9rem;
  line-height: 1.35;
}

.toast.is-success {
  border-color: rgba(143, 240, 176, 0.34);
  background:
    radial-gradient(circle at 16% 0%, rgba(143, 240, 176, 0.14), transparent 38%),
    rgba(12, 20, 15, 0.96);
}

.toast.is-error {
  border-color: rgba(255, 154, 154, 0.5);
  background:
    radial-gradient(circle at 16% 0%, rgba(255, 154, 154, 0.14), transparent 38%),
    rgba(30, 12, 12, 0.96);
}

.toast.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
}

body.cart-open,
body.modal-open {
  overflow: hidden;
}

@media (max-width: 980px) {
  .site-header {
    padding: 0 1rem;
  }

  .site-nav {
    position: fixed;
    left: 1rem;
    right: 1rem;
    top: calc(var(--header-h) + 0.6rem);
    display: none;
    padding: 1rem;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(10, 10, 10, 0.96);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: grid;
    justify-content: stretch;
    gap: 0.4rem;
  }

  .site-nav a,
  .language-trigger {
    width: 100%;
    padding: 0.75rem;
  }

  .language-trigger {
    justify-content: flex-start;
  }

  .language-chevron {
    margin-left: auto;
  }

  .language-nav {
    border-bottom: 1px solid var(--line);
    padding-bottom: 0.4rem;
    margin-bottom: 0.15rem;
  }

  .language-menu {
    position: static;
    width: 100%;
    max-height: min(280px, 46vh);
    margin-top: 0;
    overflow-y: auto;
    overscroll-behavior: contain;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border: 0;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.035);
    box-shadow: none;
    display: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
  }

  .language-nav.is-open .language-menu {
    display: grid;
    transform: none;
  }

  .menu-toggle {
    display: inline-grid;
  }

  .hero {
    min-height: 80vh;
    padding: 6.5rem 1.2rem 3rem;
  }

  .hero-editorial {
    max-width: 420px;
    gap: 0.8rem;
  }

  .hero-shop-button {
    min-width: 136px;
    min-height: 42px;
  }

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

  .signal-bar a:nth-child(2) {
    border-right: 0;
  }

  .catalog-toolbar,
  .quality-section,
  .contact-section,
  .exclusive-detail-wrap {
    grid-template-columns: 1fr;
  }

  .exclusive-detail-info {
    position: static;
    min-height: auto;
    height: auto;
    max-height: none;
    overflow: visible;
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .exclusive-detail-wrap {
    width: min(860px, calc(100% - 2rem));
    height: auto;
    min-height: 0;
    overflow: visible;
  }

  .exclusive-detail-media {
    height: min(500px, calc(100vh - var(--header-h) - 4rem));
    min-height: 360px;
  }

  .filter-group,
  .contact-actions {
    justify-content: flex-start;
  }

  .quality-points {
    grid-template-columns: 1fr;
  }

  .size-guide-title {
    align-items: start;
    flex-direction: column;
    gap: 0.35rem;
  }

  .quality-copy h2,
  .contact-section h2 {
    font-size: 2.35rem;
  }
}

@media (max-width: 640px) {
  :root {
    --header-h: 68px;
  }

  .brand {
    width: 124px;
  }

  .brand img {
    height: 36px;
  }

  .header-actions {
    gap: 0.45rem;
  }

  .icon-button,
  .cart-trigger,
  .account-trigger {
    width: 38px;
    height: 38px;
  }

  .account-trigger {
    padding: 0;
  }

  .account-trigger span {
    display: none;
  }

  .account-order-head,
  .account-order-meta {
    display: grid;
    gap: 0.18rem;
  }

  .hero {
    min-height: 78vh;
    align-items: end;
    padding-bottom: 3.65rem;
  }

  .hero-content {
    align-self: end;
    width: 100%;
  }

  .hero-editorial-kicker {
    font-size: clamp(2.25rem, 11vw, 3.35rem);
  }

  .hero-editorial-title {
    max-width: 290px;
    font-size: 0.82rem;
  }

  .hero-shop-button {
    margin-top: 0.42rem;
    min-width: 130px;
    font-size: 0.86rem;
  }

  .hero-logo {
    display: block;
    width: min(330px, 76vw);
    max-height: 118px;
    margin: 0 0 1rem;
  }

  .desktop-label {
    display: none;
  }

  .mobile-label {
    display: inline;
  }

  .hero-controls {
    left: 1rem;
    right: auto;
    bottom: 1rem;
  }

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

  .signal-bar a {
    min-height: 50px;
    padding: 0.72rem 0.55rem;
    border-right: 1px solid var(--line);
    font-size: 0.78rem;
    line-height: 1.2;
  }

  .signal-bar a:nth-child(2),
  .signal-bar a:last-child {
    border-right: 0;
  }

  .hero-ticker {
    min-height: 44px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

  .hero-ticker::before,
  .hero-ticker::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    z-index: 1;
    width: 26px;
    pointer-events: none;
  }

  .hero-ticker::before {
    left: 0;
    background: linear-gradient(90deg, #050505, rgba(5, 5, 5, 0));
  }

  .hero-ticker::after {
    right: 0;
    background: linear-gradient(270deg, #050505, rgba(5, 5, 5, 0));
  }

  .hero-ticker-track {
    min-height: 44px;
    gap: 1.55rem;
    padding: 0.58rem 1rem;
    animation-duration: 64s;
  }

  .hero-ticker-item {
    display: inline-flex;
    align-items: baseline;
    gap: 0.26rem;
    white-space: nowrap;
    font-size: 0.79rem;
    line-height: 1.15;
  }

  .hero-ticker-item strong,
  .hero-ticker-item span {
    line-height: 1.15;
    letter-spacing: 0;
    white-space: nowrap;
  }

  .hero-ticker-item strong {
    font-size: 0.79rem;
    font-weight: 850;
  }

  .hero-ticker-item span {
    font-size: 0.79rem;
    font-weight: 500;
  }

  .catalog-section,
  .quality-section,
  .size-section,
  .contact-section {
    padding: 4rem 1rem;
  }

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

  .catalog-toolbar {
    gap: 0.8rem;
  }

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

  .exclusive-detail-section {
    padding: 1rem 0.75rem 3.4rem;
  }

  .exclusive-detail-media {
    height: auto;
    min-height: 0;
  }

  .exclusive-detail-media img {
    width: 100%;
    height: auto;
    max-width: 100%;
    max-height: none;
    object-fit: contain;
  }

  .exclusive-detail-wrap {
    width: 100%;
  }

  .exclusive-detail-info {
    overflow: visible;
    padding: 1rem;
  }

  .product-options,
  .checkout-grid,
  .size-finder-grid {
    grid-template-columns: 1fr;
  }

  .checkout-modal,
  .size-finder-modal,
  .account-modal {
    padding: 0.5rem;
  }

  .checkout-card,
  .checkout-card.is-card-payment,
  .size-finder-card,
  .account-card {
    width: 100%;
    max-height: calc(100vh - 1rem);
  }

  .card-payment-panel {
    margin-inline: 0.75rem;
    padding: 0.75rem;
  }
  .discount-code-row,
  .size-finder-result-grid {
    grid-template-columns: 1fr;
  }

  .discount-code-row .small-button {
    justify-self: start;
  }

  .shipping-panel-head,
  .shipping-option,
  .checkout-total-row {
    align-items: start;
  }

  .shipping-panel-head {
    flex-direction: column;
  }

  .shipping-option {
    grid-template-columns: auto 1fr;
  }

  .shipping-option b {
    grid-column: 2;
  }

  .size-table-wrap {
    overflow-x: visible;
  }

  .size-table,
  .size-table-compact {
    width: 100%;
    min-width: 0;
    table-layout: fixed;
  }

  .size-table th,
  .size-table td {
    padding: 0.62rem 0.2rem;
    font-size: 0.66rem;
    line-height: 1.2;
    text-align: center;
    overflow-wrap: anywhere;
  }

  .size-table thead th {
    font-size: 0.58rem;
    white-space: nowrap;
  }

  .size-table th:first-child,
  .size-table tbody th {
    width: 28%;
    min-width: 0;
    position: static;
    text-align: left;
  }

  .size-table tbody th {
    font-size: 0.72rem;
  }

}

@media (prefers-reduced-motion: reduce) {
  .hero-ticker-track {
    animation: none;
    transform: none;
  }

  .hero-ticker {
    overflow-x: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
    animation: none !important;
  }
}

/* =========================
   PIE LEGAL
   ========================= */
.legal-footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto auto auto;
  align-items: center;
  gap: 2rem;
  min-height: 150px;
  padding: 2.1rem max(2rem, calc((100vw - 1320px) / 2));
  background: #f7f7f2;
  color: #15110f;
  border-top: 1px solid rgba(0, 0, 0, 0.12);
}

.legal-footer-brand {
  display: inline-flex;
  align-items: center;
  justify-self: start;
}

.legal-footer-brand img {
  width: min(230px, 54vw);
  height: auto;
  max-height: 76px;
  object-fit: contain;
  object-position: left center;
}

.legal-footer-links {
  display: grid;
  justify-items: end;
  align-self: start;
  gap: 0.42rem;
  min-width: 190px;
}

.legal-footer-title {
  margin: 0 0 0.18rem;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.065em;
}

.privacy-link-button {
  display: inline;
  padding: 0.08rem 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #15110f;
  font-size: 0.8rem;
  font-weight: 700;
  line-height: 1.35;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
  transition: color 180ms ease, opacity 180ms ease;
}

.privacy-link-button:hover,
.privacy-link-button:focus-visible {
  color: #5b514b;
  opacity: 0.78;
}

.footer-wholesale-button {
  text-decoration-line: underline;
}

.footer-reseller-button {
  cursor: pointer;
  text-decoration-line: underline;
}

.reseller-card .reseller-program {
  grid-column: auto;
  width: 100%;
  margin: 0;
  padding: clamp(1rem, 2vw, 1.4rem);
  border: 0;
  border-radius: 0;
  background: transparent;
}

.reseller-program {
  grid-column: 1 / -1;
  width: min(1180px, 100%);
  justify-self: center;
  display: grid;
  gap: 1rem;
  margin-top: 0.8rem;
  padding: clamp(1rem, 2vw, 1.4rem);
  border: 1px solid rgba(21, 17, 15, 0.18);
  border-radius: 8px;
  background: #111;
  color: #f7f7f2;
  text-align: left;
}

.reseller-program .eyebrow,
.reseller-program h2,
.reseller-program p {
  margin: 0;
}

.reseller-program-head {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: grid;
  gap: 0.45rem;
  padding: clamp(1rem, 1.8vw, 1.35rem) clamp(1rem, 2vw, 1.55rem);
  padding-right: clamp(2rem, 27vw, 25rem);
  border: 1px solid rgba(247, 247, 242, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(247, 247, 242, 0.08), rgba(247, 247, 242, 0.02) 48%, rgba(0, 0, 0, 0.1)),
    rgba(247, 247, 242, 0.035);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.055),
    0 14px 34px rgba(0, 0, 0, 0.22);
}

.reseller-program-head::after {
  content: "";
  position: absolute;
  z-index: -1;
  right: clamp(0.8rem, 2.5vw, 2rem);
  top: 50%;
  width: min(31vw, 380px);
  aspect-ratio: 2.8;
  background: url("assets/logo/bils-logo-white.png") center / contain no-repeat;
  opacity: 0.2;
  transform: translateY(-50%);
  pointer-events: none;
}

.reseller-program-head h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 400;
  line-height: 1.05;
}

.reseller-program-head strong {
  color: #fff;
  font-size: clamp(1.35rem, 2.8vw, 2.25rem);
  line-height: 1.08;
}

.reseller-program-head p,
.reseller-catalog-head p,
.reseller-commission-card p,
.reseller-stock-summary p,
.reseller-terms-body p,
.reseller-terms-body li {
  color: rgba(247, 247, 242, 0.74);
  line-height: 1.55;
}

.reseller-mode-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.reseller-mode-button {
  min-height: 42px;
  border: 1px solid rgba(247, 247, 242, 0.24);
  border-radius: 6px;
  padding: 0.7rem 0.9rem;
  background: transparent;
  color: #f7f7f2;
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.035em;
}

.reseller-mode-button.is-active,
.reseller-mode-button:hover,
.reseller-mode-button:focus-visible {
  background: #f7f7f2;
  color: #111;
}

.reseller-mode-panel[hidden] {
  display: none;
}

.reseller-mode-panel {
  display: grid;
  gap: 1rem;
}

.reseller-stock-flow {
  isolation: isolate;
  position: relative;
  min-height: min(820px, calc(100vh - 9rem));
  overflow: hidden;
  align-content: start;
  gap: clamp(1rem, 2vw, 1.35rem);
  padding: clamp(0.8rem, 1.5vw, 1.1rem);
  border: 1px solid rgba(247, 247, 242, 0.2);
  border-radius: 12px;
  background: #050505;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 24px 80px rgba(0, 0, 0, 0.32);
}

.reseller-stock-flow::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.96) 0%, rgba(5, 5, 5, 0.88) 48%, rgba(5, 5, 5, 0.78) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.14), rgba(0, 0, 0, 0.72)),
    radial-gradient(circle at 18% 0%, rgba(247, 247, 242, 0.12), transparent 36%);
  pointer-events: none;
}

.reseller-stock-flow::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: url("assets/reseller/revendedor-bils-bg.png") center / cover no-repeat;
  opacity: 0.62;
  filter: saturate(0.8) contrast(1.04);
  transform: scale(1.01);
  pointer-events: none;
}

.reseller-stock-flow > * {
  position: relative;
  z-index: 2;
}

.reseller-stock-flow:not(.is-approved) [data-reseller-approved-content] {
  display: none !important;
  visibility: hidden !important;
  pointer-events: none;
}

.reseller-stock-flow.is-approved {
  min-height: 0;
  overflow: visible;
  padding: 0;
  border: 0;
  background: transparent;
}

.reseller-stock-flow.is-approved::before {
  display: none;
}

.reseller-stock-flow.is-approved::after {
  display: none;
}

.reseller-stock-flow.has-pending-status {
  min-height: 0;
  gap: 0;
  padding: clamp(0.55rem, 1vw, 0.75rem);
  border-radius: 10px;
  background:
    linear-gradient(135deg, rgba(247, 247, 242, 0.055), rgba(247, 247, 242, 0.01) 44%),
    #050505;
}

.reseller-stock-flow:has(.reseller-access-gate:not([hidden])),
.reseller-stock-flow:has(.reseller-flow-status.is-error:not([hidden])) {
  min-height: 0;
  gap: 0.65rem;
  padding: clamp(0.55rem, 1vw, 0.75rem);
}

.reseller-stock-flow.has-pending-status::before {
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.97) 0%, rgba(5, 5, 5, 0.9) 55%, rgba(5, 5, 5, 0.76) 100%),
    radial-gradient(circle at 16% 0%, rgba(247, 247, 242, 0.12), transparent 34%);
}

.reseller-stock-flow.has-pending-status::after {
  display: none;
}

.reseller-stock-flow .reseller-customization-gate,
.reseller-stock-flow .reseller-application-form,
.reseller-stock-flow .reseller-flow-status,
.reseller-stock-flow .reseller-access-gate {
  width: 100%;
  max-width: none;
}

.reseller-stock-flow .reseller-customization-gate,
.reseller-stock-flow .reseller-form-head,
.reseller-stock-flow .reseller-form-section,
.reseller-stock-flow .reseller-flow-status,
.reseller-stock-flow .reseller-access-gate {
  background:
    linear-gradient(180deg, rgba(11, 11, 11, 0.88), rgba(5, 5, 5, 0.8));
  border-color: rgba(247, 247, 242, 0.2);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 18px 50px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(14px);
}

.reseller-stock-summary {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) repeat(2, minmax(0, 0.78fr));
  gap: 0.65rem;
}

.reseller-stock-summary article,
.reseller-commission-card {
  display: grid;
  gap: 0.38rem;
  padding: 0.9rem;
  border: 1px solid rgba(247, 247, 242, 0.14);
  border-radius: 8px;
  background: rgba(247, 247, 242, 0.045);
}

.reseller-tier-board {
  align-content: start;
}

.reseller-tier-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.45rem;
  margin: 0.34rem 0 0.12rem;
}

.reseller-tier-list div {
  min-height: 72px;
  display: grid;
  align-content: space-between;
  gap: 0.42rem;
  padding: 0.62rem;
  border: 1px solid rgba(247, 247, 242, 0.16);
  border-radius: 7px;
  background: linear-gradient(180deg, rgba(247, 247, 242, 0.08), rgba(247, 247, 242, 0.025));
}

.reseller-tier-list b,
.reseller-tier-list em {
  display: block;
  font-style: normal;
}

.reseller-tier-list b {
  color: rgba(247, 247, 242, 0.72);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.035em;
  text-transform: uppercase;
}

.reseller-tier-list em {
  color: #fff;
  font-size: clamp(1.28rem, 2vw, 1.8rem);
  font-weight: 950;
  line-height: 1;
}

.reseller-stock-summary span,
.reseller-catalog-head span,
.reseller-commission-card span,
.reseller-terms summary span {
  color: rgba(247, 247, 242, 0.64);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.reseller-stock-summary strong,
.reseller-catalog-head strong,
.reseller-commission-card strong,
.reseller-terms summary strong {
  color: #fff;
  font-size: 1.05rem;
}

.reseller-stock-summary article > strong {
  font-size: clamp(1.45rem, 3vw, 2.2rem);
  line-height: 1;
}

.reseller-tier-board > strong {
  font-size: clamp(1.08rem, 1.8vw, 1.45rem);
}

.reseller-dashboard {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.65rem;
}

.reseller-dashboard[hidden] {
  display: none;
}

.reseller-dashboard article {
  display: grid;
  align-content: start;
  gap: 0.28rem;
  min-height: 118px;
  padding: 0.82rem;
  border: 1px solid rgba(247, 247, 242, 0.14);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(247, 247, 242, 0.07), rgba(247, 247, 242, 0.02) 58%),
    rgba(0, 0, 0, 0.22);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.045);
}

.reseller-dashboard span {
  color: rgba(247, 247, 242, 0.58);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.reseller-dashboard strong {
  color: #fff;
  font-size: clamp(1.02rem, 1.35vw, 1.24rem);
  line-height: 1.08;
}

.reseller-dashboard p {
  margin: 0;
  color: rgba(247, 247, 242, 0.64);
  font-size: 0.78rem;
  line-height: 1.42;
}

.reseller-catalog-head {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 1fr) auto;
  gap: 1rem;
  align-items: center;
}

.reseller-catalog-head div,
.reseller-terms summary {
  display: grid;
  gap: 0.22rem;
}

.reseller-catalog-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.45rem;
}

.reseller-catalog-actions .reseller-inline-button {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.reseller-catalog-table-wrap {
  max-height: 360px;
  overflow: auto;
  border: 1px solid rgba(247, 247, 242, 0.14);
  border-radius: 8px;
}

.reseller-catalog-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 680px;
}

.reseller-catalog-table th,
.reseller-catalog-table td {
  padding: 0.72rem 0.8rem;
  border-bottom: 1px solid rgba(247, 247, 242, 0.1);
  text-align: left;
  font-size: 0.82rem;
}

.reseller-catalog-table th {
  position: sticky;
  top: 0;
  z-index: 1;
  background: #151515;
  color: #fff;
  font-size: 0.72rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.reseller-catalog-table td {
  color: rgba(247, 247, 242, 0.82);
}

.reseller-catalog-table td:first-child {
  color: #fff;
  font-weight: 850;
}

.reseller-catalog-table td:first-child strong,
.reseller-catalog-table td:first-child span {
  display: block;
}

.reseller-catalog-table td:first-child span {
  margin-top: 0.18rem;
  color: rgba(247, 247, 242, 0.56);
  font-size: 0.72rem;
  font-weight: 760;
}

.reseller-stock-showcase {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.85rem;
}

.reseller-stock-card {
  position: relative;
  min-width: 0;
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  border: 1px solid rgba(247, 247, 242, 0.14);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(247, 247, 242, 0.06), rgba(247, 247, 242, 0.028));
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.22);
  transform: translateY(0);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease, background 220ms ease;
  will-change: transform;
}

.reseller-stock-card:hover,
.reseller-stock-card:focus-within {
  border-color: rgba(255, 255, 255, 0.3);
  background: linear-gradient(180deg, rgba(247, 247, 242, 0.08), rgba(247, 247, 242, 0.036));
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.32);
  transform: translateY(-3px);
}

.reseller-stock-media {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #e7e5df;
  border-bottom: 1px solid rgba(247, 247, 242, 0.1);
}

.reseller-stock-media.is-clickable {
  cursor: pointer;
}

.reseller-stock-media img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.01);
  transition: transform 260ms ease, opacity 220ms ease;
}

.reseller-stock-media.has-hover-image .reseller-stock-image {
  position: absolute;
  inset: 0;
}

.reseller-stock-hover {
  opacity: 0;
  object-fit: cover;
  object-position: center;
}

.reseller-stock-media.has-hover-image.has-hover-loaded:hover .reseller-stock-primary,
.reseller-stock-media.has-hover-image.has-hover-loaded:focus-visible .reseller-stock-primary {
  opacity: 0;
}

.reseller-stock-media.has-hover-image.has-hover-loaded:hover .reseller-stock-hover,
.reseller-stock-media.has-hover-image.has-hover-loaded:focus-visible .reseller-stock-hover {
  opacity: 1;
}

.reseller-stock-card:hover .reseller-stock-media img,
.reseller-stock-card:focus-within .reseller-stock-media img {
  transform: scale(1.024);
}

.reseller-stock-body {
  display: grid;
  gap: 0.68rem;
  padding: 0.7rem 0.72rem 0.75rem;
}

.reseller-stock-card-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.12rem 0.55rem;
  align-items: start;
}

.reseller-stock-card-head .reseller-stock-card-type {
  grid-column: 1 / -1;
  color: rgba(247, 247, 242, 0.58);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.reseller-stock-card h3 {
  margin: 0;
  color: #fff;
  font-size: 0.96rem;
  line-height: 1.12;
}

.reseller-stock-card-head em {
  justify-self: end;
  color: #fff;
  font-size: clamp(0.78rem, 0.72vw, 0.9rem);
  font-style: normal;
  font-weight: 950;
  line-height: 1.05;
  white-space: nowrap;
}

.reseller-stock-options {
  display: grid;
  grid-template-columns: minmax(74px, 0.72fr) minmax(82px, 0.72fr) minmax(74px, 0.58fr);
  gap: 0.5rem;
  align-items: end;
}

.reseller-stock-options label,
.reseller-stock-options .option-field {
  display: grid;
  gap: 0.28rem;
  color: rgba(247, 247, 242, 0.72);
  font-size: 0.69rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.reseller-stock-options select,
.reseller-stock-options input {
  width: 100%;
  min-height: 42px;
  border: 1px solid rgba(247, 247, 242, 0.16);
  border-radius: 6px;
  padding: 0.52rem 0.62rem;
  background: rgba(0, 0, 0, 0.34);
  color: #fff;
  font: inherit;
  letter-spacing: 0;
  text-transform: none;
}

.reseller-stock-options .color-options {
  gap: 0.3rem;
}

.reseller-stock-actions {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0.35rem;
}

.reseller-stock-actions .add-button,
.reseller-stock-actions .reseller-inline-button {
  width: 100%;
  align-self: stretch;
}

.reseller-size-matrix {
  border: 1px solid rgba(247, 247, 242, 0.12);
  border-radius: 7px;
  background: rgba(0, 0, 0, 0.24);
}

.reseller-size-matrix summary {
  cursor: pointer;
  list-style: none;
  padding: 0.62rem 0.68rem;
  color: rgba(247, 247, 242, 0.72);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.055em;
  text-transform: uppercase;
}

.reseller-size-matrix summary::-webkit-details-marker {
  display: none;
}

.reseller-size-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.34rem;
  padding: 0 0.62rem 0.62rem;
}

.reseller-size-grid label {
  display: grid;
  gap: 0.24rem;
  color: rgba(247, 247, 242, 0.68);
  font-size: 0.66rem;
  font-weight: 900;
  text-align: center;
}

.reseller-size-grid input {
  min-height: 34px;
  padding: 0 0.25rem;
  text-align: center;
}

.reseller-size-matrix .reseller-inline-button {
  width: calc(100% - 1.24rem);
  margin: 0 0.62rem 0.62rem;
}

.reseller-stock-detail[hidden] {
  display: none;
}

.reseller-stock-detail {
  display: block;
}

.reseller-stock-detail .exclusive-detail-wrap {
  width: 100%;
  margin: 0 0 1rem;
}

.reseller-stock-detail .exclusive-detail-wrap.has-multiple-images {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(390px, 0.92fr);
  align-items: start;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.reseller-stock-detail .exclusive-detail-wrap.has-multiple-images .exclusive-detail-gallery.is-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 3px;
  padding: 0;
  background: #050505;
}

.reseller-stock-detail .exclusive-detail-wrap.has-multiple-images .exclusive-detail-media {
  aspect-ratio: 3 / 4;
  height: auto;
  overflow: hidden;
  border: 0;
  background: #101010;
}

.reseller-stock-detail .exclusive-detail-wrap.has-multiple-images .exclusive-detail-media img {
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  object-fit: cover;
}

.reseller-detail-wrap {
  border-color: rgba(247, 247, 242, 0.2);
  background:
    radial-gradient(circle at 8% 4%, rgba(247, 247, 242, 0.075), transparent 32%),
    linear-gradient(180deg, rgba(247, 247, 242, 0.052), rgba(247, 247, 242, 0.018));
  box-shadow: 0 22px 62px rgba(0, 0, 0, 0.32);
}

.reseller-detail-price-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.48rem;
}

.reseller-detail-price-grid span {
  display: grid;
  gap: 0.16rem;
  padding: 0.58rem 0.62rem;
  border: 1px solid rgba(247, 247, 242, 0.14);
  border-radius: 7px;
  color: rgba(247, 247, 242, 0.58);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.reseller-detail-price-grid strong {
  color: #fff;
  font-size: 1rem;
  letter-spacing: 0;
  text-transform: none;
}

.reseller-detail-tier-note {
  display: grid;
  gap: 0.32rem;
  padding: 0.72rem 0.78rem;
  border: 1px solid rgba(247, 247, 242, 0.14);
  border-radius: 7px;
  background: rgba(247, 247, 242, 0.045);
}

.reseller-detail-tier-note span {
  color: rgba(247, 247, 242, 0.58);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.reseller-detail-tier-note strong {
  color: #fff;
  font-size: 1rem;
}

.reseller-detail-tier-note p {
  margin: 0;
  color: rgba(247, 247, 242, 0.72);
  font-size: 0.86rem;
  line-height: 1.45;
}

.reseller-detail-qty {
  display: grid;
  gap: 0.34rem;
  color: rgba(247, 247, 242, 0.72);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.reseller-detail-qty input {
  width: 100%;
  min-height: 42px;
  border: 1px solid rgba(247, 247, 242, 0.16);
  border-radius: 7px;
  padding: 0.62rem 0.7rem;
  background: rgba(0, 0, 0, 0.34);
  color: #fff;
  font: inherit;
  letter-spacing: 0;
  text-transform: none;
}

@media (max-width: 1500px) {
  .reseller-stock-showcase {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 1120px) {
  .reseller-dashboard,
  .reseller-catalog-head {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .reseller-catalog-actions {
    justify-content: flex-start;
  }

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

@media (max-width: 780px) {
  .reseller-dashboard,
  .reseller-catalog-head {
    grid-template-columns: 1fr;
  }

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

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

  .reseller-stock-options label:last-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 560px) {
  .reseller-stock-showcase,
  .reseller-detail-price-grid {
    grid-template-columns: 1fr;
  }

  .reseller-stock-options {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }
}

@media (max-width: 980px) {
  .reseller-stock-detail .exclusive-detail-wrap.has-multiple-images {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .reseller-stock-detail .exclusive-detail-wrap.has-multiple-images .exclusive-detail-gallery.is-grid {
    grid-template-columns: 1fr;
  }
}

.cart-item-note {
  display: block;
  margin-top: 0.16rem;
  color: rgba(247, 247, 242, 0.58);
  font-size: 0.72rem;
}

.reseller-terms {
  border: 1px solid rgba(247, 247, 242, 0.14);
  border-radius: 8px;
  background: rgba(247, 247, 242, 0.035);
}

.reseller-terms summary {
  cursor: pointer;
  padding: 0.9rem;
  list-style: none;
}

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

.reseller-terms-body {
  max-height: 440px;
  overflow: auto;
  padding: 0 0.9rem 1rem;
}

.reseller-terms-body h3,
.reseller-terms-body h4 {
  margin: 1rem 0 0.35rem;
  color: #fff;
}

.reseller-terms-body p,
.reseller-terms-body ul {
  margin: 0.45rem 0;
}

.reseller-terms-body a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.reseller-customization-gate {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(1rem, 2vw, 1.4rem);
  align-items: center;
  padding: clamp(1rem, 2vw, 1.35rem);
  border: 1px solid rgba(247, 247, 242, 0.18);
  border-radius: 10px;
  background: rgba(247, 247, 242, 0.05);
}

.reseller-customization-gate > div:first-child {
  display: grid;
  gap: 0.25rem;
}

.reseller-customization-gate span,
.reseller-form-head span {
  color: rgba(247, 247, 242, 0.58);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.reseller-customization-gate strong {
  color: #fff;
  font-size: clamp(1rem, 1.45vw, 1.22rem);
  line-height: 1.35;
}

.reseller-customization-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: flex-end;
}

.reseller-application-form[hidden] {
  display: none;
}

.reseller-application-form {
  display: grid;
  gap: 0;
}

.reseller-form-page[hidden] {
  display: none;
}

.reseller-form-page {
  position: relative;
  min-height: min(780px, calc(100vh - 10rem));
  overflow: hidden;
  border: 1px solid rgba(247, 247, 242, 0.18);
  border-radius: 12px;
  background:
    linear-gradient(90deg, rgba(3, 3, 3, 0.92) 0%, rgba(3, 3, 3, 0.72) 50%, rgba(3, 3, 3, 0.38) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.72)),
    var(--reseller-desktop-bg) center / cover no-repeat;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.36);
}

.reseller-form-page::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.18), transparent 42%),
    radial-gradient(circle at 26% 12%, rgba(247, 247, 242, 0.1), transparent 32%);
  pointer-events: none;
}

.reseller-form-page-shell {
  position: relative;
  z-index: 1;
  width: min(820px, 100%);
  min-height: inherit;
  display: grid;
  align-content: center;
  gap: clamp(0.85rem, 1.4vw, 1.05rem);
  padding: clamp(1.1rem, 3vw, 3rem);
}

.reseller-form-step-head {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #fff;
}

.reseller-form-step-head span {
  display: inline-grid;
  place-items: center;
  min-width: 2.45rem;
  min-height: 1.75rem;
  border-radius: 999px;
  background: rgba(247, 247, 242, 0.92);
  color: #050505;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.reseller-form-step-head strong {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.85rem, 3vw, 2.8rem);
  font-weight: 400;
  line-height: 1;
}

.reseller-form-head,
.reseller-form-section {
  display: grid;
  gap: clamp(0.7rem, 1.2vw, 0.95rem);
  padding: clamp(1rem, 2vw, 1.35rem);
  border: 1px solid rgba(247, 247, 242, 0.16);
  border-radius: 10px;
  background: rgba(247, 247, 242, 0.04);
}

.reseller-form-head h3,
.reseller-form-section legend {
  margin: 0;
  color: #fff;
  font-size: clamp(1rem, 1.4vw, 1.16rem);
  font-weight: 900;
}

.reseller-form-head h3 {
  font-size: clamp(1.35rem, 2.1vw, 1.75rem);
  line-height: 1.08;
}

.reseller-form-head p,
.reseller-form-section p {
  max-width: 88ch;
  color: rgba(247, 247, 242, 0.8);
}

.reseller-form-section {
  border-top: 1px solid rgba(247, 247, 242, 0.22);
}

.reseller-form-section legend {
  width: 100%;
  padding: 0 0 0.15rem;
}

.reseller-form-grid,
.reseller-choice-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(0.72rem, 1.4vw, 1rem);
}

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

.reseller-form-section label,
.reseller-check {
  display: grid;
  gap: 0.42rem;
  color: rgba(247, 247, 242, 0.82);
  font-size: 0.86rem;
  line-height: 1.45;
}

.reseller-choice-grid label:has(> input[type="radio"]),
.reseller-choice-grid label:has(> input[type="checkbox"]),
.reseller-check {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  min-height: 42px;
  padding: 0.68rem 0.72rem;
  border: 1px solid rgba(247, 247, 242, 0.12);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.18);
  transition: border-color 160ms ease, background 160ms ease, box-shadow 160ms ease, color 160ms ease;
}

.reseller-form-section input[type="text"],
.reseller-form-section input[type="email"],
.reseller-form-section input[type="tel"],
.reseller-form-section input[type="number"],
.reseller-form-section input[type="date"],
.reseller-form-section input[type="file"],
.reseller-form-section textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid rgba(247, 247, 242, 0.18);
  border-radius: 8px;
  padding: 0.72rem 0.82rem;
  background: rgba(0, 0, 0, 0.34);
  color: #fff;
  font: inherit;
  outline: none;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
  transition: border-color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.reseller-form-section input[type="text"]:focus,
.reseller-form-section input[type="email"]:focus,
.reseller-form-section input[type="tel"]:focus,
.reseller-form-section input[type="number"]:focus,
.reseller-form-section input[type="date"]:focus,
.reseller-form-section input[type="file"]:focus,
.reseller-form-section textarea:focus {
  border-color: rgba(247, 247, 242, 0.56);
  background: rgba(0, 0, 0, 0.48);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 0 0 3px rgba(247, 247, 242, 0.08);
}

.reseller-form-section input[readonly] {
  color: rgba(247, 247, 242, 0.78);
  background: rgba(247, 247, 242, 0.08);
}

.reseller-form-section textarea {
  resize: vertical;
}

.reseller-form-section input[type="radio"],
.reseller-form-section input[type="checkbox"] {
  flex: 0 0 auto;
  width: 1.08rem;
  height: 1.08rem;
  margin: 0;
  accent-color: #f7f7f2;
  cursor: pointer;
}

.reseller-form-section input[type="radio"]:checked,
.reseller-form-section input[type="checkbox"]:checked {
  filter: drop-shadow(0 0 4px rgba(247, 247, 242, 0.42));
}

.reseller-form-section input[type="radio"]:focus-visible,
.reseller-form-section input[type="checkbox"]:focus-visible {
  outline: 2px solid rgba(247, 247, 242, 0.8);
  outline-offset: 3px;
}

.reseller-inline-button {
  position: relative;
  overflow: hidden;
  min-height: 42px;
  align-self: end;
  border: 1px solid rgba(247, 247, 242, 0.22);
  border-radius: 6px;
  padding: 0.7rem 0.78rem;
  background: transparent;
  color: #f7f7f2;
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 900;
  transition: transform 170ms ease, border-color 170ms ease, background 170ms ease, color 170ms ease;
}

.reseller-inline-button:hover,
.reseller-inline-button:focus-visible {
  background: #f7f7f2;
  color: #111;
}

.reseller-form-page-actions {
  display: flex;
  justify-content: flex-end;
  gap: 0.65rem;
  margin-top: 0.15rem;
}

.reseller-step-ok,
.reseller-form-page-actions .reseller-submit-button {
  min-width: 132px;
}

.reseller-form-note {
  padding: 0.85rem 1rem;
  border: 1px solid rgba(247, 247, 242, 0.14);
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.38);
  color: rgba(247, 247, 242, 0.78);
  font-size: 0.86rem;
  line-height: 1.55;
}

.reseller-flow-status,
.reseller-access-gate {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 0.58rem;
  padding: 0.82rem 0.95rem;
  border: 1px solid rgba(247, 247, 242, 0.16);
  border-radius: 8px;
  background: rgba(247, 247, 242, 0.05);
}

.reseller-access-gate {
  align-content: start;
}

.reseller-access-gate > div {
  display: grid;
  gap: 0.22rem;
}

.reseller-flow-status.is-pending {
  min-height: 0;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.58rem 1rem;
  padding: clamp(1rem, 1.8vw, 1.25rem);
  border-color: rgba(247, 247, 242, 0.2);
  background:
    linear-gradient(135deg, rgba(247, 247, 242, 0.08), rgba(247, 247, 242, 0.02) 42%, rgba(0, 0, 0, 0.24)),
    rgba(0, 0, 0, 0.42);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 18px 44px rgba(0, 0, 0, 0.26);
}

.reseller-flow-status.is-pending > * {
  position: relative;
  z-index: 1;
}

.reseller-flow-status.is-pending strong {
  font-size: clamp(1rem, 1.35vw, 1.28rem);
  line-height: 1.08;
}

.reseller-flow-status.is-pending p {
  max-width: 74ch;
  color: rgba(247, 247, 242, 0.72);
  font-size: 0.94rem;
  line-height: 1.45;
}

.reseller-flow-status.is-pending .reseller-inline-button {
  grid-column: 2;
  grid-row: 1 / span 3;
  align-self: center;
  min-width: 190px;
  min-height: 38px;
  padding: 0.62rem 0.95rem;
  background: #f7f7f2;
  color: #090909;
}

.reseller-flow-status.is-pending > span {
  width: fit-content;
  border: 1px solid rgba(247, 247, 242, 0.16);
  border-radius: 999px;
  padding: 0.34rem 0.58rem;
  background: rgba(247, 247, 242, 0.06);
}

.reseller-flow-status.is-pending small {
  grid-column: 1 / -1;
  color: rgba(247, 247, 242, 0.52);
  font-size: 0.74rem;
  letter-spacing: 0.02em;
}

.reseller-stock-flow.has-pending-status .reseller-flow-status.is-pending {
  min-height: 0;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.85rem;
  align-items: center;
  padding: clamp(0.82rem, 1.25vw, 1rem);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(247, 247, 242, 0.11), rgba(247, 247, 242, 0.03) 42%, rgba(0, 0, 0, 0.1)),
    rgba(5, 5, 5, 0.58);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 12px 32px rgba(0, 0, 0, 0.26);
}

.reseller-pending-copy {
  display: grid;
  gap: 0.32rem;
  max-width: 760px;
}

.reseller-pending-copy strong {
  font-size: clamp(1.02rem, 1.35vw, 1.26rem);
}

.reseller-pending-copy p {
  max-width: 68ch;
  font-size: 0.92rem;
}

.reseller-pending-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.36rem 0.48rem;
  align-items: center;
  margin-top: 0.08rem;
}

.reseller-pending-meta span {
  width: fit-content;
  border: 1px solid rgba(247, 247, 242, 0.18);
  border-radius: 999px;
  padding: 0.3rem 0.54rem;
  background: rgba(247, 247, 242, 0.08);
  color: rgba(247, 247, 242, 0.62);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.reseller-pending-meta small {
  color: rgba(247, 247, 242, 0.54);
  font-size: 0.72rem;
}

.reseller-stock-flow.has-pending-status .reseller-flow-status.is-pending .reseller-inline-button {
  grid-column: auto;
  grid-row: auto;
  min-width: 182px;
  min-height: 38px;
  align-self: center;
  padding: 0.62rem 0.9rem;
}

.reseller-customization-gate[hidden],
.reseller-flow-status[hidden],
.reseller-access-gate[hidden] {
  display: none;
}

.reseller-flow-status strong,
.reseller-access-gate h3 {
  margin: 0;
  color: #fff;
}

.reseller-access-gate h3 {
  font-size: clamp(1.05rem, 1.35vw, 1.28rem);
  line-height: 1.12;
}

.reseller-flow-status p,
.reseller-access-gate p {
  margin: 0;
  color: rgba(247, 247, 242, 0.74);
  line-height: 1.42;
}

.reseller-access-gate p {
  max-width: 112ch;
  font-size: 0.92rem;
}

.reseller-flow-status > span,
.reseller-access-gate span {
  color: rgba(247, 247, 242, 0.58);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.reseller-flow-status.is-loading {
  border-color: rgba(247, 247, 242, 0.26);
}

.reseller-flow-status.is-error {
  border-color: rgba(255, 154, 154, 0.42);
  gap: 0.38rem;
  min-height: 0;
  padding: 0.78rem 0.95rem;
}

.reseller-access-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: end;
  gap: 0.54rem 0.65rem;
}

.reseller-access-form label {
  display: grid;
  gap: 0.28rem;
  color: rgba(247, 247, 242, 0.84);
  font-size: 0.86rem;
}

.reseller-access-form input {
  width: 100%;
  min-height: 40px;
  border: 1px solid rgba(247, 247, 242, 0.18);
  border-radius: 6px;
  padding: 0.6rem 0.74rem;
  background: rgba(0, 0, 0, 0.2);
  color: #fff;
  font: inherit;
}

.reseller-access-form .reseller-submit-button,
.reseller-access-form .reseller-inline-button {
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: stretch;
  width: 100%;
  min-height: 46px;
  padding: 0.68rem 0.9rem;
}

.reseller-submit-button {
  width: fit-content;
}

.reseller-commission-card {
  max-width: 620px;
}

.reseller-commission-card .button {
  width: fit-content;
}

.cart-item-price {
  display: inline-grid;
  justify-items: end;
  gap: 0.12rem;
  white-space: nowrap;
}

.privacy-link-button:focus-visible {
  outline: 2px solid #15110f;
  outline-offset: 3px;
}

@media (max-width: 780px) {
  .reseller-modal {
    padding: 0.55rem;
  }

  .reseller-card {
    width: calc(100vw - 1.1rem);
    max-height: calc(100vh - 1.1rem);
  }

  .legal-footer {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    align-items: start;
    gap: 1rem;
    min-height: 116px;
    padding: 1.5rem 1rem;
  }

  .legal-footer-brand {
    grid-column: 1 / -1;
  }

  .legal-footer-brand img {
    width: min(160px, 42vw);
    max-height: 58px;
  }

  .legal-footer-links {
    min-width: 0;
    justify-items: start;
  }

  .reseller-program {
    padding: 0.8rem;
  }

  .reseller-stock-flow {
    min-height: calc(100vh - 8rem);
    padding: 0.65rem;
  }

  .reseller-stock-flow.has-pending-status {
    min-height: 0;
    padding: 0.5rem;
  }

  .reseller-stock-flow::after {
    background: url("assets/reseller/revendedor-bils-bg.png") center / cover no-repeat;
  }

  .reseller-program-head {
    padding: 1rem;
    padding-right: 1rem;
  }

  .reseller-program-head::after {
    right: -1.8rem;
    top: 0.55rem;
    width: min(58vw, 230px);
    opacity: 0.12;
    transform: none;
  }

  .reseller-form-page {
    min-height: calc(100vh - 8.6rem);
    background:
      linear-gradient(180deg, rgba(3, 3, 3, 0.88) 0%, rgba(3, 3, 3, 0.78) 46%, rgba(3, 3, 3, 0.9) 100%),
      var(--reseller-mobile-bg) center / cover no-repeat;
  }

  .reseller-form-page-shell {
    width: 100%;
    align-content: start;
    padding: 1rem;
  }

  .reseller-form-step-head {
    align-items: flex-start;
  }

  .reseller-form-step-head strong {
    font-size: clamp(1.55rem, 9vw, 2.25rem);
  }

  .reseller-stock-summary {
    grid-template-columns: 1fr;
  }

  .reseller-tier-list {
    grid-template-columns: 1fr;
  }

  .reseller-catalog-head {
    display: grid;
    align-items: start;
  }

  .reseller-customization-gate,
  .reseller-form-grid,
  .reseller-choice-grid,
  .reseller-choice-grid.compact,
  .reseller-flow-status.is-pending,
  .reseller-access-form {
    grid-template-columns: 1fr;
  }

  .reseller-flow-status.is-pending .reseller-inline-button {
    grid-column: auto;
    grid-row: auto;
    width: 100%;
  }

  .reseller-stock-flow.has-pending-status .reseller-flow-status.is-pending {
    padding: 0.82rem;
    gap: 0.7rem;
  }

  .reseller-customization-actions {
    justify-content: flex-start;
  }

  .reseller-submit-button,
  .reseller-step-ok,
  .reseller-commission-card .button {
    width: 100%;
  }

  .reseller-form-page-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .legal-footer-links--support {
    justify-items: center;
    text-align: center;
  }

  .legal-footer-links--legal {
    justify-items: end;
    text-align: right;
  }

  .legal-footer-title {
    font-size: 0.7rem;
  }

  .privacy-link-button {
    padding: 0.06rem 0;
    font-size: 0.72rem;
  }

}

@media (max-width: 520px) {
  .legal-footer {
    grid-template-columns: 1fr;
  }

  .legal-footer-brand,
  .legal-footer-links {
    grid-column: 1;
    justify-self: start;
    justify-items: start;
    text-align: left;
  }
}
.availability-note,
.checkout-availability-note {
  margin: 0.9rem 0 0;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-left: 3px solid rgba(247, 247, 242, 0.58);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.045);
  color: var(--smoke-soft);
  font-size: 0.92rem;
  line-height: 1.58;
}

.checkout-availability-note {
  margin: 0 0 1rem;
  color: var(--muted);
}

@media (max-width: 720px) {
  .availability-note,
  .checkout-availability-note {
    font-size: 0.86rem;
  }
}

/* Galería especial de OVERSIZE BILAN STYLE. */
.product-card-image {
  display: block;
  transition: opacity 180ms ease;
}

.product-card-hover {
  display: none;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  opacity: 0;
  background: #111;
  filter: none;
}

.product-media .product-card-hover {
  object-fit: cover;
  object-position: center;
}

.product-media.is-showing-hover-image .product-card-primary {
  object-fit: cover;
  object-position: center;
}

@media (hover: hover) {
  .product-media.has-hover-image.has-hover-loaded:hover .product-card-primary,
  .product-media.has-hover-image.has-hover-loaded:focus-visible .product-card-primary {
    opacity: 1;
  }

  .product-media.has-hover-image.has-hover-loaded:hover .product-card-hover,
  .product-media.has-hover-image.has-hover-loaded:focus-visible .product-card-hover {
    opacity: 0;
  }
}

.exclusive-detail-gallery.is-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-content: start;
  gap: 0.55rem;
  padding: 0.9rem;
}

.exclusive-detail-gallery.is-grid .exclusive-detail-media {
  height: auto;
  min-height: 0;
  padding: 0;
  overflow: visible;
  border: 1px solid var(--line);
}

.exclusive-detail-gallery.is-grid .exclusive-detail-media img {
  width: 100%;
  height: auto;
  max-width: 100%;
  max-height: none;
  object-fit: contain;
}

body.exclusive-detail-view .exclusive-detail-section:not(.has-multiple-images) {
  padding-top: calc(var(--header-h) + 0.85rem);
  padding-right: 0;
  padding-bottom: 5rem;
  padding-left: 0;
}

.exclusive-detail-wrap.has-two-images {
  --exclusive-detail-height: auto;
  width: 100%;
  margin: 0;
  grid-template-columns: minmax(0, 1.84fr) minmax(420px, 0.72fr);
  align-items: start;
  border: 0;
  background: transparent;
}

body.exclusive-detail-view .exclusive-detail-section.has-two-images {
  padding-top: calc(var(--header-h) + 0.85rem);
  padding-right: 0;
  padding-bottom: 5rem;
  padding-left: 0;
}

.exclusive-detail-gallery.is-paired {
  height: auto;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-content: start;
  gap: 0;
  padding: 0;
  background: #050505;
}

.exclusive-detail-gallery.is-paired .exclusive-detail-media {
  position: relative;
  aspect-ratio: 4 / 5;
  height: auto;
  min-height: 0;
  padding: 0;
  overflow: hidden;
  border: 0;
  background: #080808;
}

.exclusive-detail-gallery.is-paired .exclusive-detail-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  object-fit: cover;
  object-position: center;
}

.exclusive-detail-gallery.is-paired .exclusive-detail-media.is-primary {
  background: #080808;
}

.exclusive-detail-gallery.is-paired .exclusive-detail-media.is-primary img {
  object-fit: contain;
  transform: none;
}

@media (min-width: 981px) {
  body.exclusive-detail-view .exclusive-detail-wrap:not(.has-two-images):not(.has-multiple-images) {
    align-items: stretch;
  }

  body.exclusive-detail-view .exclusive-detail-wrap:not(.has-two-images):not(.has-multiple-images) .exclusive-detail-gallery {
    align-self: stretch;
    height: var(--exclusive-detail-height);
    min-height: var(--exclusive-detail-height);
    background: #050505;
  }

  body.exclusive-detail-view .exclusive-detail-wrap:not(.has-two-images):not(.has-multiple-images) .exclusive-detail-media {
    height: var(--exclusive-detail-height);
    min-height: var(--exclusive-detail-height);
    overflow: hidden;
    background: #080808;
  }

  body.exclusive-detail-view .exclusive-detail-wrap:not(.has-two-images):not(.has-multiple-images) .exclusive-detail-info {
    align-self: stretch;
    height: var(--exclusive-detail-height);
    min-height: var(--exclusive-detail-height);
    max-height: var(--exclusive-detail-height);
    overflow-x: hidden;
    overflow-y: auto;
  }

  body.exclusive-detail-view .exclusive-detail-wrap.has-two-images {
    --exclusive-detail-height: calc(100vh - var(--header-h) - 0.85rem);
    width: 100%;
    margin: 0;
    grid-template-columns: minmax(0, 1.84fr) minmax(420px, 0.72fr);
    align-items: start;
    border: 0;
    background: transparent;
  }

  body.exclusive-detail-view .exclusive-detail-wrap.has-two-images .exclusive-detail-gallery {
    position: sticky;
    top: calc(var(--header-h) + 0.85rem);
    align-self: start;
    height: var(--exclusive-detail-height);
    background: #050505;
  }

  body.exclusive-detail-view .exclusive-detail-wrap.has-two-images .exclusive-detail-gallery.is-paired {
    height: var(--exclusive-detail-height);
    gap: 0;
    grid-auto-rows: minmax(0, 1fr);
  }

  body.exclusive-detail-view .exclusive-detail-wrap.has-two-images .exclusive-detail-gallery.is-paired .exclusive-detail-media {
    height: var(--exclusive-detail-height);
    aspect-ratio: auto;
  }

  .exclusive-detail-wrap.has-two-images .exclusive-detail-info {
    position: static;
    align-self: start;
    height: auto;
    min-height: var(--exclusive-detail-height);
    max-height: none;
    overflow: visible;
    padding: 1.55rem;
    border-left: 1px solid var(--line);
    background: #080808;
  }
}

@media (max-width: 640px) {
  .exclusive-detail-gallery.is-grid {
    gap: 0.4rem;
    padding: 0.55rem;
  }
}

/* Detalle editorial para cualquier producto con dos o más imágenes. */
.exclusive-detail-section.has-multiple-images {
  padding: 0;
  background: #050505;
}

.exclusive-detail-wrap.has-multiple-images {
  width: 100%;
  margin: 0;
  align-items: start;
  border: 0;
  background: transparent;
}

.exclusive-detail-wrap.has-multiple-images .exclusive-detail-gallery.is-grid {
  gap: 3px;
  padding: 0;
  background: #050505;
}

.exclusive-detail-wrap.has-multiple-images .exclusive-detail-media {
  aspect-ratio: 3 / 4;
  height: auto;
  min-height: 0;
  padding: 0;
  overflow: hidden;
  border: 0;
  background: #101010;
}

.exclusive-detail-wrap.has-multiple-images .exclusive-detail-media img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  object-fit: cover;
  object-position: center;
}

.exclusive-detail-buy {
  width: 100%;
  min-height: 56px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.07);
  color: var(--white);
  font: inherit;
  font-weight: 850;
  cursor: pointer;
}

.exclusive-detail-buy:hover,
.exclusive-detail-buy:focus-visible {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
}

@media (min-width: 981px) {
  .exclusive-detail-wrap.has-multiple-images {
    grid-template-columns: minmax(0, 2fr) minmax(380px, 0.92fr);
  }

  .exclusive-detail-wrap.has-multiple-images .exclusive-detail-info {
    position: sticky;
    top: var(--header-h);
    align-self: start;
    height: auto;
    min-height: calc(100vh - var(--header-h));
    max-height: none;
    overflow: visible;
    padding: 1.6rem;
    border-left: 1px solid var(--line);
    border-top: 0;
    background: #080808;
  }
}

@media (max-width: 980px) {
  .exclusive-detail-wrap.has-two-images {
    width: min(860px, calc(100% - 2rem));
    grid-template-columns: 1fr;
    margin: 0 auto;
    border: 1px solid var(--line);
  }

  .exclusive-detail-gallery.is-paired {
    height: auto;
    grid-template-columns: 1fr;
    gap: 0.55rem;
    padding: 0.55rem;
  }

  .exclusive-detail-gallery.is-paired .exclusive-detail-media {
    height: min(560px, calc(100vh - var(--header-h) - 4rem));
    min-height: 320px;
  }

  .exclusive-detail-wrap.has-multiple-images {
    grid-template-columns: 1fr;
  }

  .exclusive-detail-wrap.has-multiple-images .exclusive-detail-info {
    position: static;
    min-height: auto;
    border-left: 0;
    border-top: 1px solid var(--line);
  }
}

@media (max-width: 640px) {
  body.exclusive-detail-view .exclusive-detail-section,
  body.exclusive-detail-view .exclusive-detail-section:not(.has-multiple-images),
  body.exclusive-detail-view .exclusive-detail-section.has-two-images,
  body.exclusive-detail-view .exclusive-detail-section.has-multiple-images {
    padding-right: 0;
    padding-left: 0;
  }

  body.exclusive-detail-view .exclusive-detail-wrap,
  body.exclusive-detail-view .exclusive-detail-wrap.has-two-images,
  body.exclusive-detail-view .exclusive-detail-wrap.has-multiple-images {
    width: 100%;
    margin-right: 0;
    margin-left: 0;
    border-right: 0;
    border-left: 0;
  }

  body.exclusive-detail-view .exclusive-detail-gallery.is-grid,
  body.exclusive-detail-view .exclusive-detail-gallery.is-paired {
    gap: 3px;
    padding: 0;
  }

  body.exclusive-detail-view .exclusive-detail-media {
    padding: 0;
    border-right: 0;
    border-left: 0;
  }

  body.exclusive-detail-view .exclusive-detail-info {
    width: 100%;
    padding: 1.15rem 1rem;
    border-right: 0;
    border-left: 0;
  }

  .exclusive-detail-wrap.has-multiple-images .exclusive-detail-gallery.is-grid {
    grid-template-columns: 1fr;
    gap: 3px;
    padding: 0;
  }

  .exclusive-detail-wrap.has-multiple-images .exclusive-detail-media.is-primary {
    order: 999;
  }
}

/* Mantiene cada fotografía centrada dentro del mismo marco 3:4. */
.exclusive-detail-wrap.has-multiple-images .exclusive-detail-media {
  position: relative;
}

.exclusive-detail-wrap.has-multiple-images .exclusive-detail-media img {
  position: absolute;
  inset: 0;
}

/* El hover también funciona en computadoras con pantalla táctil o entrada híbrida. */
.product-media.has-hover-image.has-hover-loaded:hover .product-card-primary,
.product-media.has-hover-image.has-hover-loaded:focus-visible .product-card-primary {
  opacity: 1;
}

.product-media.has-hover-image.has-hover-loaded:hover .product-card-hover,
.product-media.has-hover-image.has-hover-loaded:focus-visible .product-card-hover {
  opacity: 0;
}

@media (max-width: 640px) {
  .exclusive-purchase-panel {
    position: static;
    margin: 0;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
  }

  .quick-view-pill {
    display: none;
  }

  .product-quickview-header,
  .product-quickview-body {
    padding: 1rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .button[aria-busy="true"]::after,
  .skeleton-line::after {
    animation: none;
  }
}


.exclusive-detail-media[data-product-zoom] {
  position: relative;
  cursor: zoom-in;
  outline: 0;
}

.exclusive-detail-media[data-product-zoom]:focus-visible {
  box-shadow: inset 0 0 0 1px rgba(247, 247, 242, 0.72);
}

.exclusive-detail-image {
  transition: transform 520ms ease, filter 520ms ease;
  transform-origin: var(--zoom-x, 50%) var(--zoom-y, 50%);
  will-change: transform;
}

@media (hover: hover) and (pointer: fine) {
  .exclusive-detail-media[data-product-zoom]:hover .exclusive-detail-image,
  .exclusive-detail-media[data-product-zoom]:focus-visible .exclusive-detail-image {
    transform: scale(1.08);
    filter: contrast(1.03);
  }
}

.exclusive-detail-editorial {
  display: grid;
  gap: 0.55rem;
  padding: 0.95rem 0 1rem;
  border-bottom: 1px solid var(--line);
}

.exclusive-detail-editorial p {
  margin: 0;
}

.exclusive-detail-editorial p:not(.eyebrow) {
  color: var(--smoke-soft);
  line-height: 1.58;
}

.exclusive-detail-spec-grid {
  display: grid;
  gap: 1rem;
  padding: 0.15rem 0 1rem;
  border-bottom: 1px solid var(--line);
}

.exclusive-detail-spec {
  min-width: 0;
  display: grid;
  gap: 0.35rem;
  padding: 0;
}

.exclusive-detail-spec span {
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.exclusive-detail-spec p {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.45;
}

.account-order-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.account-order-badges span,
.account-tracking-link,
.account-help-link {
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0 0.62rem;
  color: var(--smoke-soft);
  font-size: 0.76rem;
  font-weight: 800;
}

.account-order-timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.35rem;
  margin: 0.15rem 0 0.05rem;
  padding: 0;
  list-style: none;
}

.account-timeline-step {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 0.35rem;
  min-width: 0;
  color: rgba(247, 247, 242, 0.42);
  text-align: center;
}

.account-timeline-step::before {
  content: "";
  position: absolute;
  top: 7px;
  left: calc(-50% + 11px);
  width: calc(100% - 22px);
  height: 1px;
  background: rgba(255, 255, 255, 0.14);
}

.account-timeline-step:first-child::before {
  display: none;
}

.account-timeline-step span {
  position: relative;
  z-index: 1;
  width: 15px;
  height: 15px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  background: #0b0b0b;
}

.account-timeline-step strong {
  max-width: 100%;
  color: currentColor;
  font-size: 0.68rem;
  font-weight: 820;
  line-height: 1.2;
}

.account-timeline-step.is-complete,
.account-timeline-step.is-active {
  color: var(--white);
}

.account-timeline-step.is-complete::before,
.account-timeline-step.is-active::before {
  background: rgba(247, 247, 242, 0.62);
}

.account-timeline-step.is-complete span,
.account-timeline-step.is-active span {
  border-color: var(--white);
  background: var(--white);
}

.account-timeline-step.is-active span {
  box-shadow: 0 0 0 4px rgba(247, 247, 242, 0.1);
}

.account-tracking {
  display: grid;
  gap: 0.22rem;
  padding: 0.65rem 0.72rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.025);
}

.account-tracking span {
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.account-tracking strong {
  color: var(--white);
  font-size: 0.83rem;
  line-height: 1.35;
}

.account-tracking.is-pending strong {
  color: var(--muted);
}

.account-help-link {
  width: fit-content;
  border-color: rgba(255, 255, 255, 0.34);
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

@media (max-width: 520px) {
  .exclusive-detail-spec-grid {
    grid-template-columns: 1fr;
  }

  .account-order-timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 0.7rem;
  }

  .account-timeline-step:nth-child(3)::before {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .exclusive-detail-image {
    transition: none;
  }

  .exclusive-detail-media[data-product-zoom]:hover .exclusive-detail-image,
  .exclusive-detail-media[data-product-zoom]:focus-visible .exclusive-detail-image {
    transform: none;
  }
}


.account-order-visual {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.8rem;
}

.account-order-thumbs {
  display: flex;
  align-items: center;
  min-width: 74px;
}

.account-order-thumb {
  position: relative;
  display: grid;
  place-items: center;
  width: 48px;
  height: 58px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 6px;
  background: #111;
  box-shadow: 0 12px 22px rgba(0, 0, 0, 0.25);
}

.account-order-thumb + .account-order-thumb {
  margin-left: -18px;
}

.account-order-thumb img {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.account-order-thumb-fallback {
  color: rgba(247, 247, 242, 0.72);
  font-size: 0.55rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.account-order-thumb small {
  position: absolute;
  right: 4px;
  bottom: 4px;
  z-index: 2;
  display: inline-flex;
  min-width: 20px;
  height: 20px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(247, 247, 242, 0.92);
  color: #050505;
  font-size: 0.62rem;
  font-style: normal;
  font-weight: 900;
}

.account-order-thumb-more {
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 900;
}

.account-order-summary {
  display: grid;
  min-width: 0;
  gap: 0.15rem;
}

.account-order-summary span {
  overflow: hidden;
  color: var(--white);
  font-size: 0.94rem;
  font-weight: 900;
  line-height: 1.15;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.account-order-summary strong,
.account-order-summary em {
  color: var(--muted);
  font-size: 0.76rem;
  font-style: normal;
  line-height: 1.25;
}

.account-delivered-badge,
.account-status-pill {
  justify-self: end;
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(247, 247, 242, 0.28);
  border-radius: 999px;
  padding: 0 0.7rem;
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 950;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
}

.account-delivered-badge {
  border-color: rgba(154, 255, 188, 0.34);
  background: rgba(58, 171, 96, 0.18);
  color: #caffd8;
}

.account-order-details {
  display: grid;
  gap: 0.55rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 0.15rem;
}

.account-order-details summary {
  display: flex;
  min-height: 38px;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  color: var(--white);
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  list-style: none;
  text-transform: uppercase;
}

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

.account-order-details summary::after {
  content: "+";
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  color: var(--smoke-soft);
}

.account-order-details[open] summary::after {
  content: "-";
}

.account-order-detail-body {
  display: grid;
  gap: 0.55rem;
  padding-top: 0.05rem;
}

@media (max-width: 520px) {
  .account-order-visual {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .account-delivered-badge,
  .account-status-pill {
    grid-column: 1 / -1;
    justify-self: start;
  }

  .account-order-summary span {
    white-space: normal;
  }
}


.size-fit-preference {
  margin-top: 0.9rem;
}

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

.size-finder-result.is-pro {
  display: grid;
  gap: 0.72rem;
}

.size-pro-head {
  display: grid;
  gap: 0.18rem;
}

.size-pro-head span,
.size-pro-hero span,
.size-pro-compare small {
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.size-pro-head strong {
  color: var(--white);
  font-size: 0.95rem;
}

.size-pro-hero {
  display: grid;
  gap: 0.25rem;
  padding: 0.85rem;
  border: 1px solid rgba(247, 247, 242, 0.22);
  border-radius: 8px;
  background: rgba(247, 247, 242, 0.055);
}

.size-pro-hero strong {
  color: var(--white);
  font-size: clamp(2.8rem, 8vw, 4.4rem);
  font-weight: 900;
  line-height: 0.9;
}

.size-pro-hero p {
  margin: 0;
  color: var(--smoke-soft);
  font-size: 0.84rem;
  line-height: 1.45;
}

.size-pro-compare {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.45rem;
}

.size-pro-compare span {
  display: grid;
  gap: 0.25rem;
  min-height: 74px;
  align-content: center;
  padding: 0.65rem;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.025);
  text-align: center;
}

.size-pro-compare span.is-selected {
  border-color: rgba(247, 247, 242, 0.7);
  background: rgba(247, 247, 242, 0.09);
}

.size-pro-compare b {
  color: var(--white);
  font-size: 1.25rem;
  font-weight: 900;
}

.checkout-trust-panel {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.55rem;
  margin-bottom: 1rem;
}

.checkout-trust-panel span {
  display: grid;
  gap: 0.2rem;
  min-width: 0;
  padding: 0.68rem;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.03);
}

.checkout-trust-panel strong {
  color: var(--white);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.checkout-trust-panel small {
  color: var(--muted);
  font-size: 0.74rem;
  line-height: 1.35;
}

.mp-payment-status.has-message {
  display: grid;
  gap: 0.25rem;
  padding: 0.72rem 0.8rem;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.035);
}

.mp-payment-status.has-message::before {
  content: "Estado del pago";
  color: var(--muted);
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mp-payment-status.is-loading.has-message::before {
  content: "Procesando";
}

.mp-payment-status.is-success.has-message::before {
  content: "Listo";
}

.mp-payment-status.is-error.has-message::before {
  content: "Revisar";
}

.order-result.is-enhanced {
  display: grid;
  gap: 0.65rem;
  padding: 0.85rem;
  border-color: rgba(154, 255, 188, 0.28);
  background: rgba(58, 171, 96, 0.09);
}

.checkout-result-mark {
  display: grid;
  gap: 0.22rem;
  padding-bottom: 0.55rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.checkout-result-mark span {
  width: fit-content;
  padding: 0.18rem 0.46rem;
  border: 1px solid rgba(154, 255, 188, 0.35);
  border-radius: 999px;
  color: #caffd8;
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.checkout-result-mark strong {
  color: var(--white);
  font-size: 1rem;
}

.checkout-result-mark small {
  color: var(--smoke-soft);
  font-size: 0.8rem;
  line-height: 1.4;
}

@media (max-width: 760px) {
  .checkout-trust-panel {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .size-fit-options,
  .size-pro-compare {
    grid-template-columns: 1fr;
  }
}


/* =========================
   DETALLES DE MARCA
   ========================= */
.button,
.filter-button,
.add-button,
.exclusive-size-button,
.cart-empty-browse,
.privacy-link-button,
.payment-options label,
.checkout-delivery-choice,
.checkout-grid label,
.size-finder-grid label {
  letter-spacing: 0.035em;
}

.button,
.filter-button,
.add-button,
.exclusive-size-button,
.cart-empty-browse {
  font-weight: 900;
}

.checkout-grid label,
.checkout-delivery-choice,
.size-finder-grid label,
.payment-options legend,
.discount-panel-head strong,
.shipping-panel-head strong,
.legal-footer-title {
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.privacy-link-button {
  font-weight: 800;
  letter-spacing: 0.015em;
}

.brand-empty-state {
  display: grid;
  justify-items: center;
  gap: 0.42rem;
  padding: 1rem;
  text-align: center;
}

.product-grid > .brand-empty-state {
  grid-column: 1 / -1;
  width: min(520px, 100%);
  margin: 0 auto;
}

.brand-empty-mark {
  display: inline-grid;
  min-width: 46px;
  min-height: 46px;
  place-items: center;
  border: 1px solid rgba(247, 247, 242, 0.22);
  border-radius: 50%;
  color: var(--white);
  font-size: 0.66rem;
  font-weight: 950;
  letter-spacing: 0.08em;
}

.brand-empty-state h3,
.brand-empty-state strong {
  margin: 0;
  color: var(--white);
  font-size: 1rem;
  font-weight: 900;
  line-height: 1.2;
}

.brand-empty-state p {
  max-width: 34rem;
  margin: 0;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.45;
}

.account-empty-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
}

.mp-payment-status .brand-status-copy {
  display: block;
  margin-top: 0.18rem;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.4;
}

.product-media::after,
.exclusive-detail-media::after,
.reseller-stock-media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  background: linear-gradient(115deg, transparent 42%, rgba(255, 255, 255, 0.11), transparent 58%);
  opacity: 0;
  transform: translateX(-45%);
  transition: opacity 260ms ease, transform 520ms ease;
  pointer-events: none;
}

.product-card:hover .product-media::after,
.product-card:focus-within .product-media::after,
.exclusive-detail-media:hover::after,
.exclusive-detail-media:focus-within::after,
.reseller-stock-card:hover .reseller-stock-media::after,
.reseller-stock-card:focus-within .reseller-stock-media::after {
  opacity: 0.12;
  transform: translateX(45%);
}

.checkout-card,
.size-finder-card,
.account-card,
.reseller-card,
.newsletter-card,
.cart-drawer {
  transform-origin: top center;
}

@keyframes brandSoftIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: no-preference) {
  .checkout-modal.is-open .checkout-card,
  .size-finder-modal.is-open .size-finder-card,
  .account-modal.is-open .account-card,
  .reseller-modal.is-open .reseller-card,
  .newsletter-modal.is-open .newsletter-card,
  .cart-drawer.is-open {
    animation: brandSoftIn 260ms ease both;
  }
}
/* Video del próximo drop a pantalla completa */
.upcoming-drop-media {
  left: 50%;
  width: 100vw;
  margin-left: -50vw;
}

@media screen and (max-width: 768px) {
  .upcoming-drop-media {
    position: relative !important;
    left: 50% !important;
    width: 100vw !important;
    height: clamp(520px, 70svh, 720px) !important;
    margin-left: -50vw !important;
    overflow: hidden !important;
    background: #000 !important;
  }

  .upcoming-drop-media video {
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    display: block !important;
    object-fit: cover !important;
    object-position: center !important;
    opacity: 1 !important;
    visibility: visible !important;
  }
}

/* Acceso al asistente de talla desde la guia */
.size-finder-guide-cta {
  display: flex;
  justify-content: center;
  width: min(1040px, 100%);
  margin: clamp(1.8rem, 4vw, 3rem) auto 0;
}

.size-finder-guide-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  min-height: 44px;
  padding: 0.72rem 1.15rem;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 999px;
  background: transparent;
  color: #fff;
  font: inherit;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.065em;
  line-height: 1;
  text-transform: uppercase;
  cursor: pointer;
  transform: scale(1);
  transform-origin: center;
  transition:
    transform 220ms cubic-bezier(0.2, 0.8, 0.2, 1),
    border-color 180ms ease,
    background-color 180ms ease,
    box-shadow 220ms ease;
}

.size-finder-guide-button svg {
  width: 1rem;
  height: 1rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
  transition: transform 220ms ease;
}

.size-finder-guide-button:hover {
  border-color: rgba(255, 255, 255, 0.86);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.28);
  transform: scale(1.075);
}

.size-finder-guide-button:hover svg {
  transform: translateX(3px);
}

.size-finder-guide-button:active {
  transform: scale(1.025);
}

.size-finder-guide-button:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 4px;
}

@media (prefers-reduced-motion: reduce) {
  .size-finder-guide-button,
  .size-finder-guide-button svg {
    transition: none;
  }

  .size-finder-guide-button:hover,
  .size-finder-guide-button:active {
    transform: none;
  }
}
