:root {
  --ink: #111111;
  --paper: #f7f5ef;
  --paper-2: #ffffff;
  --muted: #67645c;
  --line: rgba(17, 17, 17, 0.14);
  --green: #14a76c;
  --lime: #d7ff35;
  --red: #e23b3b;
  --blue: #2458ff;
  --gold: #f5b23f;
  --shadow: 0 18px 50px rgba(17, 17, 17, 0.16);
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body.cart-open {
  overflow: hidden;
}

button,
input,
select {
  font: inherit;
}

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

.promo-strip {
  align-items: center;
  background: var(--ink);
  color: #ffffff;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  justify-content: center;
  min-height: 38px;
  padding: 8px clamp(12px, 4vw, 48px);
  text-align: center;
}

.promo-strip span {
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.promo-strip span:nth-child(2) {
  color: var(--lime);
}

.promo-strip span:nth-child(3) {
  color: #9bd8ff;
}

.site-header {
  align-items: center;
  backdrop-filter: blur(18px);
  background: rgba(247, 245, 239, 0.88);
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 18px;
  grid-template-columns: auto 1fr auto;
  left: 0;
  padding: 14px clamp(16px, 4vw, 48px);
  position: sticky;
  right: 0;
  top: 0;
  z-index: 20;
}

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

.brand-mark {
  align-items: center;
  background: var(--ink);
  border: 3px solid var(--lime);
  color: var(--lime);
  display: inline-flex;
  font-family: Archivo, sans-serif;
  font-size: 20px;
  font-weight: 800;
  height: 48px;
  justify-content: center;
  width: 48px;
}

.brand strong,
h1,
h2,
h3 {
  font-family: Archivo, sans-serif;
}

.brand small {
  color: var(--muted);
  display: block;
  font-size: 12px;
  margin-top: 2px;
}

.main-nav {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.main-nav a {
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.main-nav a:hover {
  color: var(--ink);
}

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

.lang-toggle,
.admin-link,
.cart-button,
.primary-action,
.secondary-action,
.checkout-button,
.filter-chip,
.icon-button {
  align-items: center;
  border: 0;
  cursor: pointer;
  display: inline-flex;
  font-weight: 800;
  justify-content: center;
}

.lang-toggle {
  background: var(--paper-2);
  border: 1px solid var(--line);
  height: 42px;
  width: 48px;
}

.admin-link {
  background: var(--paper-2);
  border: 1px solid var(--line);
  color: var(--ink);
  font-size: 13px;
  min-height: 42px;
  padding: 0 12px;
}

.cart-button {
  background: var(--ink);
  color: var(--paper-2);
  gap: 8px;
  min-height: 42px;
  padding: 0 14px;
}

.cart-icon {
  border: 2px solid currentColor;
  display: inline-block;
  height: 15px;
  position: relative;
  width: 15px;
}

.cart-icon::before {
  border: 2px solid currentColor;
  border-bottom: 0;
  content: "";
  height: 7px;
  left: 2px;
  position: absolute;
  top: -8px;
  width: 7px;
}

.cart-button strong {
  align-items: center;
  background: var(--lime);
  color: var(--ink);
  display: inline-flex;
  font-size: 12px;
  height: 22px;
  justify-content: center;
  min-width: 22px;
  padding: 0 5px;
}

.hero {
  display: grid;
  gap: clamp(24px, 5vw, 56px);
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  min-height: 680px;
  padding: clamp(40px, 7vw, 88px) clamp(16px, 4vw, 48px) 28px;
}

.hero-copy {
  align-self: center;
  max-width: 660px;
}

.eyebrow {
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
  margin: 0 0 12px;
  text-transform: uppercase;
}

h1 {
  font-size: clamp(48px, 7vw, 104px);
  line-height: 0.93;
  margin: 0;
  max-width: 790px;
}

h2 {
  font-size: clamp(32px, 5vw, 58px);
  line-height: 0.98;
  margin: 0;
}

h3 {
  font-size: 22px;
  line-height: 1.05;
  margin: 0;
}

.hero-text {
  color: var(--muted);
  font-size: 19px;
  line-height: 1.55;
  margin: 22px 0 0;
  max-width: 560px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.primary-action,
.secondary-action,
.checkout-button {
  min-height: 52px;
  padding: 0 22px;
}

.primary-action,
.checkout-button {
  background: var(--red);
  color: #ffffff;
}

.primary-action:hover,
.checkout-button:hover {
  background: #bd2424;
}

.secondary-action {
  background: var(--paper-2);
  border: 1px solid var(--line);
}

.full {
  width: 100%;
}

.hero-stage {
  align-items: center;
  background:
    radial-gradient(circle at 30% 16%, rgba(215, 255, 53, 0.5), transparent 21%),
    linear-gradient(145deg, #101010 0%, #1a4732 52%, #111111 100%);
  color: #ffffff;
  display: grid;
  min-height: 560px;
  overflow: hidden;
  padding: 34px;
  position: relative;
}

.pitch-grid {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 54px 54px;
  inset: 0;
  opacity: 0.8;
  position: absolute;
}

.floating-kit {
  align-items: center;
  background: var(--paper-2);
  box-shadow: var(--shadow);
  color: var(--ink);
  display: flex;
  flex-direction: column;
  height: 250px;
  justify-content: center;
  position: absolute;
  transform: rotate(-8deg);
  width: 190px;
  z-index: 2;
}

.floating-kit::before,
.floating-kit::after {
  background: inherit;
  content: "";
  height: 74px;
  position: absolute;
  top: 20px;
  width: 58px;
  z-index: -1;
}

.floating-kit::before {
  left: -42px;
  transform: skewY(18deg);
}

.floating-kit::after {
  right: -42px;
  transform: skewY(-18deg);
}

.floating-kit span {
  font-size: 20px;
  font-weight: 900;
}

.floating-kit strong {
  font-family: Archivo, sans-serif;
  font-size: 92px;
  line-height: 1;
}

.kit-arg {
  background: repeating-linear-gradient(90deg, #ffffff 0 28px, #79c7ff 28px 56px);
  left: 11%;
  top: 14%;
}

.kit-mex {
  background: linear-gradient(90deg, #0b7d4f 0 33%, #ffffff 33% 66%, #d83232 66%);
  right: 12%;
  top: 24%;
  transform: rotate(8deg);
}

.kit-por {
  background: linear-gradient(90deg, #bf1e2d 0 55%, #0b7d4f 55%);
  bottom: 16%;
  left: 34%;
  transform: rotate(3deg);
}

.legend-strip {
  align-items: center;
  background: rgba(17, 17, 17, 0.72);
  bottom: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  left: 24px;
  padding: 10px;
  position: absolute;
  right: 24px;
  z-index: 3;
}

.legend-strip span {
  border: 1px solid rgba(255, 255, 255, 0.22);
  font-size: 13px;
  font-weight: 900;
  padding: 8px 10px;
}

.trust-bar {
  background: var(--ink);
  color: #ffffff;
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(3, 1fr);
  margin: 0 clamp(16px, 4vw, 48px);
}

.trust-bar div {
  background: #1c1c1c;
  min-height: 94px;
  padding: 22px;
}

.trust-bar strong {
  display: block;
  font-size: 17px;
}

.trust-bar span {
  color: rgba(255, 255, 255, 0.7);
  display: block;
  font-size: 14px;
  margin-top: 6px;
}

.price-match-band {
  align-items: center;
  background: #ffffff;
  border: 1px solid var(--line);
  display: grid;
  gap: 24px;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  margin: 18px clamp(16px, 4vw, 48px) 0;
  padding: clamp(24px, 4vw, 40px);
}

.price-match-band h2 {
  max-width: 700px;
}

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

.price-edge-grid span {
  align-items: center;
  background: var(--ink);
  color: #ffffff;
  display: grid;
  min-height: 112px;
  padding: 18px;
}

.price-edge-grid em {
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  font-style: normal;
  font-weight: 900;
  text-transform: uppercase;
}

.price-edge-grid em b {
  font: inherit;
}

.price-edge-grid em s {
  color: rgba(255, 255, 255, 0.62);
}

.price-edge-grid span:nth-child(2) {
  background: var(--green);
}

.price-edge-grid span:nth-child(3) {
  background: var(--red);
}

.price-edge-grid strong {
  font-family: Archivo, sans-serif;
  font-size: clamp(32px, 5vw, 52px);
  line-height: 0.9;
}

.price-edge-grid small {
  color: rgba(255, 255, 255, 0.75);
  display: block;
  font-size: 13px;
  font-weight: 900;
  line-height: 1.2;
  margin-top: 10px;
  text-transform: uppercase;
}

.category-bubbles {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  padding: 36px clamp(16px, 4vw, 48px) 0;
}

.category-bubble {
  align-items: center;
  border: 0;
  box-shadow: var(--shadow);
  color: #ffffff;
  cursor: pointer;
  display: grid;
  min-height: 190px;
  overflow: hidden;
  padding: 28px;
  place-items: center;
  position: relative;
  text-align: center;
}

.category-bubble::before {
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.28), transparent 32%),
    linear-gradient(120deg, rgba(255, 255, 255, 0.18), transparent 58%);
  content: "";
  inset: 0;
  position: absolute;
}

.category-bubble span,
.category-bubble strong {
  position: relative;
}

.category-bubble span {
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.category-bubble strong {
  font-family: Archivo, sans-serif;
  font-size: clamp(38px, 6vw, 72px);
  line-height: 0.9;
}

.national-bubble {
  background:
    linear-gradient(135deg, rgba(21, 90, 255, 0.86), rgba(20, 167, 108, 0.9)),
    #155aff;
}

.club-bubble {
  background:
    linear-gradient(135deg, rgba(17, 17, 17, 0.92), rgba(226, 59, 59, 0.86)),
    #111111;
}

.quick-shop {
  background: #ffffff;
  border: 1px solid var(--line);
  margin: 18px clamp(16px, 4vw, 48px) 0;
  padding: clamp(24px, 4vw, 42px);
}

.quick-shop-head {
  align-items: end;
  display: grid;
  gap: 18px;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.52fr);
  margin-bottom: 26px;
}

.quick-shop-head p:not(.eyebrow) {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.5;
  margin: 0;
}

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

.quick-column {
  background: #f1f0ea;
  display: grid;
  gap: 16px;
  padding: 18px;
}

.quick-column h3 {
  font-size: 19px;
}

.quick-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.quick-links button {
  background: #ffffff;
  border: 1px solid var(--line);
  color: var(--ink);
  cursor: pointer;
  font-size: 13px;
  font-weight: 900;
  min-height: 38px;
  padding: 0 11px;
}

.quick-links button:hover {
  background: var(--ink);
  color: #ffffff;
}

.section-intro {
  align-items: end;
  display: flex;
  gap: 24px;
  justify-content: space-between;
  padding: 78px clamp(16px, 4vw, 48px) 24px;
}

.section-intro h2 {
  max-width: 760px;
}

.catalog-tools {
  align-items: end;
  display: grid;
  gap: 12px;
  justify-items: end;
}

.search-box {
  min-width: min(360px, 100%);
}

.search-box span {
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.search-box input {
  background: #ffffff;
  border: 2px solid var(--ink);
}

.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}

.filter-chip {
  background: var(--paper-2);
  border: 1px solid var(--line);
  min-height: 42px;
  padding: 0 14px;
}

.filter-chip.is-active {
  background: var(--ink);
  color: #ffffff;
}

.product-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  padding: 0 clamp(16px, 4vw, 48px) 86px;
}

.empty-products {
  background: var(--paper-2);
  border: 1px solid var(--line);
  display: grid;
  gap: 8px;
  grid-column: 1 / -1;
  min-height: 180px;
  padding: 32px;
  place-content: center;
  text-align: center;
}

.empty-products strong {
  font-family: Archivo, sans-serif;
  font-size: 24px;
}

.empty-products span {
  color: var(--muted);
  font-weight: 800;
}

.product-card {
  background: var(--paper-2);
  border: 1px solid var(--line);
  display: grid;
  min-height: 472px;
  overflow: hidden;
}

.product-art {
  align-items: center;
  display: flex;
  justify-content: center;
  min-height: 264px;
  overflow: hidden;
  position: relative;
}

.sale-tag {
  background: var(--red);
  color: #ffffff;
  font-size: 12px;
  font-weight: 900;
  left: 12px;
  padding: 8px 10px;
  position: absolute;
  text-transform: uppercase;
  top: 12px;
  z-index: 2;
}

.product-art::before {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.14) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.14) 1px, transparent 1px);
  background-size: 28px 28px;
  content: "";
  inset: 0;
  opacity: 0.45;
  position: absolute;
}

.mini-kit {
  align-items: center;
  box-shadow: 0 18px 32px rgba(17, 17, 17, 0.2);
  color: var(--ink);
  display: flex;
  flex-direction: column;
  height: 180px;
  justify-content: center;
  position: relative;
  transform: rotate(-4deg);
  width: 136px;
  z-index: 1;
}

.mini-kit::before,
.mini-kit::after {
  background: inherit;
  content: "";
  height: 54px;
  position: absolute;
  top: 16px;
  width: 42px;
  z-index: -1;
}

.mini-kit::before {
  left: -31px;
  transform: skewY(18deg);
}

.mini-kit::after {
  right: -31px;
  transform: skewY(-18deg);
}

.mini-kit span {
  font-size: 14px;
  font-weight: 900;
}

.mini-kit strong {
  font-family: Archivo, sans-serif;
  font-size: 58px;
  line-height: 1;
}

.product-info {
  display: grid;
  gap: 14px;
  padding: 18px;
}

.product-meta {
  align-items: center;
  display: flex;
  gap: 8px;
  justify-content: space-between;
}

.badge {
  background: #efefe8;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  padding: 7px 9px;
  text-transform: uppercase;
}

.price-stack {
  align-items: end;
  display: grid;
  gap: 3px;
  justify-items: end;
}

.price-stack strong {
  align-items: baseline;
  color: var(--red);
  display: flex;
  gap: 5px;
  font-size: 18px;
  line-height: 1;
}

.price-stack strong span,
.price-stack small span {
  font-family: Inter, sans-serif;
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.price-stack small {
  align-items: center;
  color: var(--muted);
  display: flex;
  gap: 5px;
}

.price-stack s {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
}

.price-stack em {
  background: #f4d6d1;
  color: var(--red);
  font-size: 11px;
  font-style: normal;
  font-weight: 900;
  padding: 4px 6px;
  text-transform: uppercase;
}

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

.option-note {
  color: var(--green);
  font-weight: 900;
  line-height: 1.3;
}

.product-info button {
  margin-top: auto;
}

.custom-panel,
.shipping-band,
.contact-band {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr 1fr;
  margin: 0 clamp(16px, 4vw, 48px) 28px;
  padding: clamp(28px, 5vw, 48px);
}

.custom-panel {
  background: #ffffff;
  border: 1px solid var(--line);
}

.custom-copy p:not(.eyebrow),
.shipping-band p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.55;
  margin: 18px 0 0;
  max-width: 640px;
}

.price-card {
  display: grid;
  gap: 10px;
}

.price-card div {
  align-items: center;
  background: #f1f0ea;
  display: flex;
  justify-content: space-between;
  min-height: 70px;
  padding: 0 18px;
}

.price-card > div > span {
  color: var(--muted);
  display: grid;
  gap: 4px;
  font-weight: 800;
}

.price-card > div > span b {
  color: var(--muted);
}

.price-card > div > span small {
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.price-card > div > span s {
  color: var(--muted);
}

.price-card strong {
  font-family: Archivo, sans-serif;
  font-size: 32px;
  color: var(--red);
}

.shipping-band {
  background: var(--green);
  color: #ffffff;
}

.shipping-band .eyebrow,
.shipping-band p {
  color: #ffffff;
}

.service-band {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0 clamp(16px, 4vw, 48px) 28px;
}

.service-band article {
  background: #ffffff;
  border: 1px solid var(--line);
  display: grid;
  gap: 12px;
  min-height: 210px;
  padding: 24px;
}

.service-band span {
  color: var(--red);
  font-family: Archivo, sans-serif;
  font-size: 18px;
  font-weight: 900;
}

.service-band h3 {
  font-size: 24px;
}

.service-band p {
  color: var(--muted);
  line-height: 1.5;
  margin: 0;
}

.policy-band {
  display: grid;
  gap: 20px;
  margin: 0 clamp(16px, 4vw, 48px) 28px;
  padding: clamp(28px, 5vw, 48px);
}

.policy-head {
  display: grid;
  gap: 10px;
  max-width: 740px;
}

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

.policy-grid article {
  background: #ffffff;
  border: 1px solid var(--line);
  display: grid;
  gap: 12px;
  min-height: 184px;
  padding: 22px;
}

.policy-grid span {
  color: var(--blue);
  font-family: Archivo, sans-serif;
  font-size: 17px;
  font-weight: 900;
}

.policy-grid h3 {
  font-size: 23px;
}

.policy-grid p {
  color: var(--muted);
  line-height: 1.5;
  margin: 0;
}

.contact-band {
  background: var(--ink);
  color: #ffffff;
  margin-bottom: 70px;
}

.contact-band .eyebrow,
.contact-band p {
  color: #ffffff;
}

.contact-actions {
  align-content: center;
  display: grid;
  gap: 12px;
}

.contact-button {
  align-items: center;
  background: #ffffff;
  color: var(--ink);
  display: flex;
  font-weight: 900;
  justify-content: space-between;
  min-height: 58px;
  padding: 0 18px;
}

.contact-button::after {
  content: "->";
}

.contact-button.whatsapp {
  background: var(--lime);
}

.contact-button.instagram {
  background: #ff9ac8;
}

.contact-button.email {
  background: #9bd8ff;
}

.contact-button.is-disabled {
  opacity: 0.5;
  pointer-events: none;
}

.cart-drawer {
  background: rgba(17, 17, 17, 0.48);
  display: none;
  inset: 0;
  justify-content: flex-end;
  position: fixed;
  z-index: 50;
}

.cart-drawer.is-open {
  display: flex;
}

.cart-panel {
  background: var(--paper-2);
  box-shadow: var(--shadow);
  display: grid;
  grid-template-rows: auto 1fr auto auto;
  max-width: 440px;
  min-height: 100vh;
  padding: 24px;
  width: min(100%, 440px);
}

.cart-head {
  align-items: start;
  display: flex;
  justify-content: space-between;
}

.icon-button {
  background: #eeeeea;
  color: var(--ink);
  font-size: 26px;
  height: 42px;
  line-height: 1;
  width: 42px;
}

.cart-items {
  display: grid;
  gap: 10px;
  margin: 20px 0;
  overflow: auto;
}

.empty-cart {
  align-self: start;
  color: var(--muted);
  line-height: 1.45;
  margin: 0;
}

.cart-line {
  border: 1px solid var(--line);
  display: grid;
  gap: 8px;
  padding: 12px;
}

.cart-line strong {
  display: block;
}

.cart-line small {
  color: var(--muted);
  display: block;
  line-height: 1.45;
}

.line-actions {
  align-items: center;
  display: flex;
  justify-content: space-between;
}

.line-actions button {
  background: none;
  border: 0;
  color: var(--red);
  cursor: pointer;
  font-weight: 900;
  padding: 0;
}

.shipping-progress {
  border-top: 1px solid var(--line);
  padding: 18px 0;
}

.progress-label {
  align-items: center;
  display: flex;
  gap: 10px;
  justify-content: space-between;
}

.progress-label span {
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.progress-track {
  background: #e8e6df;
  height: 10px;
  margin-top: 10px;
  overflow: hidden;
}

.progress-track span {
  background: var(--lime);
  display: block;
  height: 100%;
  width: 0;
}

.checkout-button {
  width: 100%;
}

.checkout-box {
  border-top: 1px solid var(--line);
  display: grid;
  gap: 14px;
  max-height: 54vh;
  overflow: auto;
  padding: 16px 0;
}

.checkout-promo {
  background: #f8f7f2;
  border: 1px solid var(--line);
  display: grid;
  gap: 8px;
  padding: 12px;
}

.promo-code-row {
  display: grid;
  gap: 8px;
  grid-template-columns: 1fr auto;
}

.promo-code-row button {
  background: var(--ink);
  border: 0;
  color: #ffffff;
  cursor: pointer;
  font-weight: 900;
  padding: 0 14px;
}

.checkout-promo p {
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
  margin: 0;
}

.checkout-promo p.is-error {
  color: var(--red);
}

.checkout-fields {
  display: grid;
  gap: 10px;
  grid-template-columns: 1fr 1fr;
}

.checkout-fields .is-full {
  grid-column: 1 / -1;
}

.checkout-payment small {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
}

.checkout-payment select {
  cursor: pointer;
}

textarea {
  background: #f4f3ee;
  border: 1px solid var(--line);
  min-height: 92px;
  padding: 12px;
  resize: vertical;
  width: 100%;
}

.checkout-items-summary {
  border: 1px solid var(--line);
  display: grid;
}

.checkout-items-summary h3 {
  background: #f8f7f2;
  border-bottom: 1px solid var(--line);
  font-family: Archivo, sans-serif;
  font-size: 13px;
  margin: 0;
  padding: 10px 12px;
  text-transform: uppercase;
}

.checkout-items-summary article {
  align-items: start;
  display: grid;
  gap: 10px;
  grid-template-columns: 1fr auto;
  padding: 12px;
}

.checkout-items-summary article + article {
  border-top: 1px solid var(--line);
}

.checkout-items-summary article span,
.checkout-items-summary article small {
  color: var(--muted);
  display: block;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.45;
  margin-top: 4px;
}

.checkout-items-summary article > div:last-child {
  text-align: right;
}

.checkout-summary {
  border: 1px solid var(--line);
  display: grid;
}

.checkout-summary div {
  align-items: center;
  display: flex;
  justify-content: space-between;
  min-height: 42px;
  padding: 0 12px;
}

.checkout-summary div + div {
  border-top: 1px solid var(--line);
}

.checkout-summary span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
}

.checkout-summary strong {
  font-family: Archivo, sans-serif;
}

.checkout-total-row {
  background: var(--ink);
  color: #ffffff;
}

.checkout-total-row span {
  color: rgba(255, 255, 255, 0.78);
}

.checkout-send-actions {
  display: grid;
  gap: 8px;
  grid-template-columns: 1fr 1fr;
}

.checkout-send-actions a,
.checkout-send-actions button {
  align-items: center;
  border: 0;
  background: var(--lime);
  color: var(--ink);
  cursor: pointer;
  display: flex;
  font-weight: 900;
  justify-content: center;
  min-height: 46px;
}

.checkout-send-actions a:nth-child(2),
.checkout-send-actions button {
  background: #9bd8ff;
}

.checkout-send-actions button {
  grid-column: 1 / -1;
}

.checkout-send-actions a.is-disabled {
  background: #eeeeea;
  color: var(--muted);
  pointer-events: none;
}

.product-dialog {
  background: transparent;
  border: 0;
  max-width: 980px;
  padding: 18px;
  width: calc(100% - 24px);
}

.product-dialog::backdrop {
  background: rgba(17, 17, 17, 0.58);
}

.dialog-card {
  background: var(--paper-2);
  border: 0;
  margin: 0;
  padding: 0;
  position: relative;
}

.dialog-close {
  position: absolute;
  right: 12px;
  top: 12px;
  z-index: 2;
}

.dialog-layout {
  display: grid;
  grid-template-columns: 0.92fr 1fr;
}

.dialog-art {
  align-items: center;
  display: flex;
  justify-content: center;
  min-height: 620px;
}

.dialog-art .mini-kit {
  height: 250px;
  width: 190px;
}

.dialog-art .mini-kit strong {
  font-size: 92px;
}

.dialog-details {
  display: grid;
  gap: 14px;
  padding: 54px 34px 34px;
}

.dialog-details p {
  color: var(--muted);
  line-height: 1.5;
  margin: 0;
}

label {
  display: grid;
  gap: 7px;
  font-weight: 900;
}

select,
input {
  background: #f4f3ee;
  border: 1px solid var(--line);
  min-height: 46px;
  padding: 0 12px;
  width: 100%;
}

input[type="color"] {
  cursor: pointer;
  padding: 4px;
}

.product-photo {
  display: block;
  height: 100%;
  object-fit: cover;
  position: relative;
  width: 100%;
  z-index: 1;
}

.large-photo {
  height: 430px;
  object-fit: contain;
  width: min(88%, 430px);
}

.check-row {
  align-items: center;
  display: flex;
  gap: 10px;
}

.check-row input {
  height: 18px;
  min-height: 18px;
  width: 18px;
}

.name-fields {
  display: grid;
  gap: 10px;
  grid-template-columns: 1fr 96px;
}

.price-breakdown {
  background: #f8f7f2;
  border: 1px solid var(--line);
  display: grid;
  gap: 8px;
  padding: 14px;
}

.price-breakdown-title {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

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

.price-row span {
  font-weight: 800;
}

.price-row strong {
  font-family: Archivo, sans-serif;
  font-size: 18px;
}

.price-row.is-muted {
  color: var(--muted);
}

.price-row.is-muted strong {
  font-family: Inter, sans-serif;
  font-size: 13px;
}

.dialog-total {
  align-items: center;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  padding-top: 16px;
}

.dialog-total > div {
  display: grid;
  gap: 2px;
  justify-items: end;
}

.dialog-total span {
  color: var(--muted);
  font-weight: 900;
}

.dialog-total small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.dialog-total strong {
  color: var(--red);
  font-family: Archivo, sans-serif;
  font-size: 42px;
}

.dialog-deal {
  background: #f1f0ea;
  display: grid;
  gap: 6px;
  padding: 14px;
}

.dialog-deal span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.dialog-deal strong {
  font-family: Archivo, sans-serif;
  font-size: 26px;
}

.dialog-deal small {
  align-items: center;
  color: var(--muted);
  display: flex;
  flex-wrap: wrap;
  font-weight: 900;
  gap: 8px;
}

.dialog-deal b {
  color: var(--red);
}

.admin-page {
  background: #f2f0e8;
}

.admin-shell {
  padding: clamp(24px, 5vw, 54px) clamp(16px, 4vw, 48px) 70px;
}

.admin-hero {
  display: grid;
  gap: 18px;
  margin-bottom: 24px;
}

.admin-hero h1 {
  font-size: clamp(42px, 7vw, 82px);
  max-width: 900px;
}

.admin-hero p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.5;
  max-width: 690px;
}

.admin-login {
  max-width: 460px;
}

.admin-dashboard {
  display: grid;
  gap: 18px;
}

.admin-card {
  background: #ffffff;
  border: 1px solid var(--line);
  display: grid;
  gap: 18px;
  margin: 0;
  padding: clamp(20px, 4vw, 32px);
}

.admin-card h2 {
  font-size: clamp(28px, 4vw, 44px);
}

.admin-card-head {
  align-items: start;
  display: flex;
  gap: 18px;
  justify-content: space-between;
}

.admin-grid-2,
.admin-grid-3 {
  display: grid;
  gap: 14px;
}

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

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

.admin-file {
  grid-column: 1 / -1;
}

.supplier-grid div {
  background: #f8f7f2;
  border: 1px solid var(--line);
  display: grid;
  gap: 6px;
  min-height: 118px;
  padding: 14px;
}

.supplier-grid span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.supplier-grid strong {
  color: var(--red);
  font-family: Archivo, sans-serif;
  font-size: 30px;
}

.supplier-grid small {
  color: var(--muted);
  font-weight: 800;
  line-height: 1.3;
}

.admin-note {
  color: var(--muted);
  line-height: 1.45;
  margin: 0;
}

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

.admin-product-row {
  align-items: center;
  border: 1px solid var(--line);
  display: grid;
  gap: 14px;
  grid-template-columns: 72px 1fr auto;
  min-height: 92px;
  padding: 10px;
}

.admin-product-thumb {
  align-items: center;
  color: #ffffff;
  display: flex;
  font-family: Archivo, sans-serif;
  font-size: 18px;
  font-weight: 900;
  height: 72px;
  justify-content: center;
  overflow: hidden;
  width: 72px;
}

.admin-product-thumb img {
  height: 100%;
  object-fit: contain;
  width: 100%;
}

.admin-product-row small {
  color: var(--muted);
  display: block;
  margin-top: 4px;
}

.admin-product-row button {
  background: none;
  border: 0;
  color: var(--red);
  cursor: pointer;
  font-weight: 900;
}

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

.admin-order-row {
  border: 1px solid var(--line);
  display: grid;
  gap: 14px;
  padding: 14px;
}

.admin-order-main {
  align-items: start;
  display: flex;
  gap: 14px;
  justify-content: space-between;
}

.admin-order-main small,
.admin-order-customer span {
  color: var(--muted);
  display: block;
  font-size: 13px;
  margin-top: 4px;
}

.admin-order-customer {
  text-align: right;
}

.admin-order-metrics {
  display: grid;
  gap: 8px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.admin-order-metrics span {
  background: #f8f7f2;
  border: 1px solid var(--line);
  color: var(--muted);
  display: grid;
  font-size: 12px;
  font-weight: 900;
  gap: 4px;
  padding: 10px;
  text-transform: uppercase;
}

.admin-order-metrics strong {
  color: var(--ink);
  font-size: 16px;
  text-transform: none;
}

.admin-order-details {
  border-top: 1px solid var(--line);
  padding-top: 12px;
}

.admin-order-details summary {
  cursor: pointer;
  font-weight: 900;
}

.admin-order-details ul {
  color: var(--muted);
  display: grid;
  gap: 8px;
  margin: 12px 0;
  padding-left: 18px;
}

.admin-order-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.admin-order-actions button {
  background: var(--ink);
  border: 0;
  color: #ffffff;
  cursor: pointer;
  font-weight: 900;
  padding: 10px 14px;
}

.admin-order-actions button:last-child {
  background: #f4d6d1;
  color: var(--red);
}

@media (max-width: 1040px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .main-nav {
    display: none;
  }

  .hero,
  .price-match-band,
  .quick-shop-head,
  .custom-panel,
  .shipping-band,
  .contact-band {
    grid-template-columns: 1fr;
  }

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

  .hero {
    min-height: auto;
  }

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

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

  .service-band {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .site-header {
    gap: 10px;
    padding: 10px 12px;
  }

  .brand {
    min-width: 0;
  }

  .brand small {
    display: none;
  }

  .cart-button span:nth-child(2) {
    display: none;
  }

  .admin-link {
    display: none;
  }

  .hero {
    padding: 28px 12px 18px;
  }

  h1 {
    font-size: 48px;
  }

  h2 {
    font-size: 34px;
  }

  .hero-stage {
    min-height: 430px;
    padding: 18px;
  }

  .floating-kit {
    height: 186px;
    width: 138px;
  }

  .floating-kit::before,
  .floating-kit::after {
    height: 56px;
    top: 14px;
    width: 40px;
  }

  .floating-kit::before {
    left: -29px;
  }

  .floating-kit::after {
    right: -29px;
  }

  .floating-kit strong {
    font-size: 64px;
  }

  .kit-arg {
    left: 16%;
    top: 8%;
  }

  .kit-mex {
    right: 10%;
    top: 27%;
  }

  .kit-por {
    bottom: 19%;
    left: 30%;
  }

  .trust-bar,
  .price-match-band,
  .quick-shop,
  .category-bubbles,
  .product-grid {
    grid-template-columns: 1fr;
    margin-left: 12px;
    margin-right: 12px;
  }

  .category-bubbles {
    padding-left: 0;
    padding-right: 0;
  }

  .price-edge-grid {
    grid-template-columns: 1fr;
  }

  .price-edge-grid span {
    min-height: 94px;
  }

  .category-bubble {
    min-height: 150px;
    padding: 22px;
  }

  .section-intro {
    align-items: start;
    flex-direction: column;
    padding-left: 12px;
    padding-right: 12px;
  }

  .filter-row {
    justify-content: flex-start;
  }

  .catalog-tools {
    justify-items: stretch;
    width: 100%;
  }

  .search-box {
    min-width: 0;
  }

  .product-grid {
    padding-left: 0;
    padding-right: 0;
  }

  .custom-panel,
  .shipping-band,
  .service-band,
  .policy-band,
  .contact-band {
    margin-left: 12px;
    margin-right: 12px;
    padding: 24px;
  }

  .service-band {
    padding: 0;
  }

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

  .dialog-layout,
  .name-fields,
  .checkout-fields,
  .checkout-send-actions,
  .admin-grid-2,
  .admin-grid-3 {
    grid-template-columns: 1fr;
  }

  .dialog-art {
    min-height: 330px;
  }

  .dialog-details {
    padding: 24px;
  }

  .admin-card-head,
  .admin-product-row {
    align-items: stretch;
    grid-template-columns: 1fr;
  }

  .admin-card-head {
    flex-direction: column;
  }

  .admin-order-main {
    display: grid;
  }

  .admin-order-customer {
    text-align: left;
  }

  .admin-order-metrics {
    grid-template-columns: 1fr;
  }
}

/* Modern finance-app skin */
:root {
  --ink: #07130d;
  --paper: #f6f9f3;
  --paper-2: #ffffff;
  --muted: #667064;
  --line: rgba(7, 19, 13, 0.1);
  --green: #00c805;
  --lime: #c8f7a6;
  --red: #f04f4f;
  --blue: #266df0;
  --gold: #f4b63f;
  --shadow: 0 18px 48px rgba(7, 19, 13, 0.08);
  color-scheme: light;
}

html {
  background: var(--paper);
}

body {
  background:
    linear-gradient(180deg, #ffffff 0, var(--paper) 460px),
    var(--paper);
  letter-spacing: 0;
}

.promo-strip {
  background: #07130d;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  gap: 8px;
  min-height: 42px;
}

.promo-strip span {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  font-size: 12px;
  letter-spacing: 0;
  padding: 5px 9px;
  text-transform: none;
}

.promo-strip span:nth-child(2),
.promo-strip span:nth-child(3) {
  color: #dfffd2;
}

.site-header {
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 8px 28px rgba(7, 19, 13, 0.04);
}

.brand-mark {
  background: var(--green);
  border: 0;
  border-radius: 8px;
  color: #07130d;
}

.brand strong,
h1,
h2,
h3 {
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

.main-nav {
  background: #f0f4ed;
  border: 1px solid var(--line);
  border-radius: 8px;
  gap: 4px;
  justify-self: center;
  padding: 4px;
}

.main-nav a {
  border-radius: 6px;
  color: #3c463b;
  font-size: 13px;
  padding: 8px 12px;
}

.main-nav a:hover {
  background: #ffffff;
  color: var(--ink);
}

.lang-toggle,
.admin-link,
.cart-button,
.primary-action,
.secondary-action,
.checkout-button,
.filter-chip,
.icon-button,
.quick-links button,
.contact-button,
.checkout-send-actions a,
.checkout-send-actions button,
.promo-code-row button {
  border-radius: 8px;
}

.lang-toggle,
.admin-link,
.secondary-action,
.filter-chip {
  background: #ffffff;
  border: 1px solid var(--line);
  color: var(--ink);
}

.cart-button,
.primary-action,
.checkout-button,
.promo-code-row button {
  background: var(--green);
  color: #061006;
}

.cart-button:hover,
.primary-action:hover,
.checkout-button:hover,
.promo-code-row button:hover {
  background: #00b806;
}

.cart-button strong {
  background: #061006;
  border-radius: 999px;
  color: #ffffff;
}

.hero {
  grid-template-columns: minmax(0, 0.92fr) minmax(340px, 1.08fr);
  min-height: 640px;
  padding-top: 72px;
}

.hero-copy {
  max-width: 610px;
}

.eyebrow {
  align-items: center;
  background: #e8fbdf;
  border: 1px solid rgba(0, 200, 5, 0.22);
  border-radius: 8px;
  color: #008a05;
  display: inline-flex;
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0;
  margin-bottom: 16px;
  padding: 7px 10px;
  text-transform: none;
}

h1 {
  font-size: 68px;
  line-height: 0.98;
  max-width: 720px;
}

h2 {
  font-size: 44px;
  line-height: 1.04;
}

h3 {
  font-size: 21px;
  line-height: 1.14;
}

.hero-text {
  color: #4e5a4d;
  font-size: 18px;
}

.hero-stage {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  color: var(--ink);
  min-height: 560px;
}

.pitch-grid {
  background:
    linear-gradient(90deg, rgba(7, 19, 13, 0.06) 1px, transparent 1px),
    linear-gradient(rgba(7, 19, 13, 0.06) 1px, transparent 1px);
  background-size: 44px 44px;
  opacity: 1;
}

.floating-kit {
  border: 1px solid rgba(7, 19, 13, 0.08);
  border-radius: 8px;
  box-shadow: 0 16px 34px rgba(7, 19, 13, 0.12);
}

.legend-strip {
  background: rgba(246, 249, 243, 0.94);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.legend-strip span {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--ink);
  letter-spacing: 0;
}

.trust-bar {
  background: transparent;
  color: var(--ink);
  gap: 12px;
}

.trust-bar div,
.price-match-band,
.quick-shop,
.custom-panel,
.service-band article,
.policy-grid article,
.product-card,
.empty-products {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 28px rgba(7, 19, 13, 0.05);
}

.trust-bar div {
  min-height: 86px;
}

.trust-bar span {
  color: var(--muted);
}

.price-match-band {
  align-items: stretch;
}

.price-edge-grid span {
  background: #f5f8f2;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
}

.price-edge-grid span:nth-child(2) {
  background: #e9fbe5;
  border-color: rgba(0, 200, 5, 0.28);
}

.price-edge-grid span:nth-child(3) {
  background: #fff8e6;
  border-color: rgba(244, 182, 63, 0.35);
}

.price-edge-grid em,
.price-edge-grid small,
.price-edge-grid em s {
  color: var(--muted);
}

.price-edge-grid strong {
  color: var(--ink);
  font-size: 44px;
}

.category-bubble {
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 28px rgba(7, 19, 13, 0.05);
  min-height: 172px;
}

.category-bubble::before {
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.54), transparent 64%);
}

.category-bubble span {
  letter-spacing: 0;
  text-transform: none;
}

.category-bubble strong {
  font-size: 48px;
}

.national-bubble {
  background: #e8fbdf;
  color: #08310c;
}

.club-bubble {
  background: #edf1f5;
  color: #07130d;
}

.quick-column {
  background: #f6f9f3;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.quick-links button {
  border-color: rgba(7, 19, 13, 0.1);
  color: #243022;
}

.quick-links button:hover {
  background: #07130d;
  color: #ffffff;
}

.section-intro {
  padding-top: 72px;
}

.search-box span {
  letter-spacing: 0;
  text-transform: none;
}

.search-box input,
select,
input,
textarea {
  background: #ffffff;
  border: 1px solid rgba(7, 19, 13, 0.14);
  border-radius: 8px;
  color: var(--ink);
  outline: none;
}

.search-box input:focus,
select:focus,
input:focus,
textarea:focus {
  border-color: rgba(0, 200, 5, 0.78);
  box-shadow: 0 0 0 3px rgba(0, 200, 5, 0.14);
}

.filter-chip.is-active {
  background: #07130d;
  color: #ffffff;
}

.product-grid {
  gap: 18px;
}

.product-card {
  min-height: 468px;
}

.product-art {
  background-color: #f6f9f3;
  min-height: 258px;
}

.product-art::before {
  display: none;
}

.sale-tag {
  background: #07130d;
  border-radius: 8px;
  color: #ffffff;
  letter-spacing: 0;
  text-transform: none;
}

.product-photo {
  height: min(230px, 88%);
  object-fit: contain;
  width: 88%;
}

.large-photo {
  height: 430px;
  object-fit: contain;
  width: min(88%, 430px);
}

.mini-kit {
  border-radius: 8px;
  box-shadow: 0 16px 30px rgba(7, 19, 13, 0.12);
}

.product-info {
  gap: 12px;
  padding: 18px;
}

.badge {
  background: #edf3ea;
  border-radius: 6px;
  color: #465243;
  letter-spacing: 0;
  text-transform: none;
}

.price-stack strong,
.price-card strong,
.dialog-total strong,
.dialog-deal b,
.option-note,
.service-band span {
  color: #008a05;
}

.price-stack em {
  background: #e8fbdf;
  border-radius: 6px;
  color: #008a05;
  letter-spacing: 0;
  text-transform: none;
}

.custom-panel,
.shipping-band,
.contact-band {
  border-radius: 8px;
}

.price-card div {
  background: #f6f9f3;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.price-card > div > span small {
  color: var(--muted);
  letter-spacing: 0;
  text-transform: none;
}

.shipping-band {
  background: #07130d;
  color: #ffffff;
}

.shipping-band .eyebrow {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.16);
  color: #dfffd2;
}

.shipping-band p {
  color: rgba(255, 255, 255, 0.74);
}

.policy-band {
  background: transparent;
}

.policy-grid span {
  color: #008a05;
}

.contact-band {
  background: #07130d;
  color: #ffffff;
}

.contact-band .eyebrow {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.16);
  color: #dfffd2;
}

.contact-band p {
  color: rgba(255, 255, 255, 0.74);
}

.contact-button {
  background: #ffffff;
  color: var(--ink);
}

.contact-button.whatsapp {
  background: var(--green);
}

.contact-button.instagram {
  background: #e8fbdf;
}

.contact-button.email {
  background: #edf1f5;
}

.contact-button::after {
  content: ">";
}

.cart-drawer {
  background: rgba(7, 19, 13, 0.42);
}

.cart-panel {
  background: #ffffff;
  box-shadow: -18px 0 46px rgba(7, 19, 13, 0.12);
}

.icon-button {
  background: #edf3ea;
  color: var(--ink);
}

.cart-line,
.checkout-promo,
.checkout-items-summary,
.checkout-summary,
.price-breakdown {
  border-radius: 8px;
}

.line-actions button,
.checkout-promo p.is-error {
  color: var(--red);
}

.progress-track {
  background: #edf3ea;
  border-radius: 8px;
}

.progress-track span {
  background: var(--green);
  border-radius: 8px;
}

.checkout-total-row {
  background: #07130d;
  color: #ffffff;
}

.checkout-send-actions a {
  background: var(--green);
  color: #061006;
}

.checkout-send-actions a:nth-child(2),
.checkout-send-actions button {
  background: #edf1f5;
  color: var(--ink);
}

.product-dialog::backdrop {
  background: rgba(7, 19, 13, 0.55);
}

.dialog-card {
  border-radius: 8px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.dialog-deal {
  background: #e8fbdf;
  border: 1px solid rgba(0, 200, 5, 0.18);
  border-radius: 8px;
}

.dialog-deal span,
.dialog-total small,
.price-breakdown-title {
  letter-spacing: 0;
  text-transform: none;
}

@media (max-width: 1040px) {
  .hero,
  .price-match-band,
  .quick-shop-head,
  .custom-panel,
  .shipping-band,
  .contact-band {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: 58px;
  }

  h2 {
    font-size: 38px;
  }
}

@media (max-width: 720px) {
  .promo-strip {
    justify-content: flex-start;
    overflow-x: auto;
  }

  .site-header {
    background: rgba(255, 255, 255, 0.94);
  }

  .hero {
    gap: 22px;
    min-height: auto;
    padding-top: 34px;
  }

  h1 {
    font-size: 42px;
  }

  h2 {
    font-size: 31px;
  }

  .hero-text {
    font-size: 16px;
  }

  .hero-stage {
    min-height: 420px;
  }

  .category-bubble strong {
    font-size: 36px;
  }

  .product-art {
    min-height: 238px;
  }

  .product-photo {
    height: min(218px, 88%);
  }

  .cart-panel {
    padding: 18px;
  }
}

/* Premium app interaction pass */
::selection {
  background: rgba(0, 200, 5, 0.22);
  color: var(--ink);
}

main > section {
  scroll-margin-top: 92px;
}

.brand,
.main-nav a,
.lang-toggle,
.cart-button,
.primary-action,
.secondary-action,
.filter-chip,
.quick-links button,
.category-bubble,
.contact-button,
.checkout-button,
.checkout-send-actions a,
.checkout-send-actions button,
.promo-code-row button,
.icon-button,
.line-actions button {
  transition:
    background-color 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    color 180ms ease,
    opacity 180ms ease,
    transform 180ms ease;
}

.primary-action,
.checkout-button,
.cart-button,
.contact-button.whatsapp {
  box-shadow: 0 10px 22px rgba(0, 200, 5, 0.18);
}

.primary-action:hover,
.checkout-button:hover,
.cart-button:hover,
.contact-button:hover,
.checkout-send-actions a:hover,
.checkout-send-actions button:hover,
.promo-code-row button:hover {
  transform: translateY(-1px);
}

.primary-action:active,
.checkout-button:active,
.cart-button:active,
.contact-button:active,
.filter-chip:active,
.quick-links button:active,
.category-bubble:active {
  transform: translateY(0) scale(0.98);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(0, 200, 5, 0.22);
  outline-offset: 3px;
}

.site-header {
  min-height: 74px;
}

.hero-copy {
  position: relative;
}

.hero-actions .primary-action,
.hero-actions .secondary-action {
  min-width: 160px;
}

.hero-stage {
  isolation: isolate;
}

.hero-stage::before {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(246, 249, 243, 0.6)),
    linear-gradient(90deg, rgba(0, 200, 5, 0.16), transparent 48%, rgba(7, 19, 13, 0.08));
  border: 1px solid rgba(7, 19, 13, 0.08);
  border-radius: 8px;
  content: "";
  inset: 18px;
  position: absolute;
  z-index: 0;
}

.hero-stage::after {
  align-items: center;
  background: #07130d;
  border-radius: 8px;
  color: #ffffff;
  content: "Cancha 90 live drop";
  display: inline-flex;
  font-size: 12px;
  font-weight: 850;
  left: 34px;
  min-height: 32px;
  padding: 0 12px;
  position: absolute;
  top: 34px;
  z-index: 3;
}

.floating-kit,
.legend-strip,
.pitch-grid {
  z-index: 1;
}

.floating-kit {
  transition:
    box-shadow 220ms ease,
    transform 220ms ease;
}

.hero-stage:hover .kit-arg {
  transform: rotate(-6deg) translateY(-4px);
}

.hero-stage:hover .kit-mex {
  transform: rotate(6deg) translateY(-3px);
}

.hero-stage:hover .kit-por {
  transform: rotate(2deg) translateY(-5px);
}

.trust-bar div,
.price-match-band,
.quick-shop,
.custom-panel,
.shipping-band,
.service-band article,
.policy-grid article,
.contact-band,
.product-card,
.category-bubble {
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.trust-bar div:hover,
.service-band article:hover,
.policy-grid article:hover,
.category-bubble:hover {
  border-color: rgba(0, 200, 5, 0.24);
  box-shadow: 0 16px 36px rgba(7, 19, 13, 0.08);
  transform: translateY(-2px);
}

.price-edge-grid span,
.price-card div,
.checkout-summary,
.checkout-items-summary,
.checkout-promo,
.price-breakdown {
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.product-card {
  position: relative;
}

.product-card::after {
  background: linear-gradient(90deg, var(--green), #8df48d);
  content: "";
  height: 3px;
  left: 0;
  opacity: 0;
  position: absolute;
  right: 0;
  top: 0;
  transform: scaleX(0.24);
  transform-origin: left;
  transition:
    opacity 180ms ease,
    transform 220ms ease;
}

.product-card:hover {
  border-color: rgba(0, 200, 5, 0.28);
  box-shadow: 0 18px 42px rgba(7, 19, 13, 0.1);
  transform: translateY(-4px);
}

.product-card:hover::after {
  opacity: 1;
  transform: scaleX(1);
}

.product-card:hover .product-photo,
.product-card:hover .mini-kit {
  transform: scale(1.035);
}

.product-photo,
.mini-kit {
  transition:
    filter 220ms ease,
    transform 220ms ease;
}

.product-info h3 {
  min-height: 48px;
}

.product-info p {
  min-height: 62px;
}

.product-info .primary-action {
  min-height: 48px;
}

.sale-tag,
.badge,
.price-stack em,
.eyebrow {
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.64);
}

.cart-drawer.is-open {
  animation: fadeInPanel 180ms ease both;
}

.cart-drawer.is-open .cart-panel {
  animation: slideCartIn 240ms ease both;
}

.cart-line {
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 8px 22px rgba(7, 19, 13, 0.045);
}

.cart-panel {
  border-left: 1px solid var(--line);
}

.cart-head h2 {
  font-size: 30px;
}

.checkout-box {
  scrollbar-width: thin;
}

.product-dialog[open] .dialog-card {
  animation: riseDialog 220ms ease both;
}

.dialog-art {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.42), rgba(246, 249, 243, 0.78)),
    #f6f9f3;
}

.dialog-details {
  background: #ffffff;
}

.contact-band {
  box-shadow: 0 22px 52px rgba(7, 19, 13, 0.14);
}

.contact-actions {
  align-self: center;
}

@keyframes fadeInPanel {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideCartIn {
  from {
    transform: translateX(24px);
  }
  to {
    transform: translateX(0);
  }
}

@keyframes riseDialog {
  from {
    opacity: 0;
    transform: translateY(14px) scale(0.985);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

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

@media (max-width: 720px) {
  main > section {
    scroll-margin-top: 78px;
  }

  .hero {
    padding-bottom: 10px;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .hero-actions .primary-action,
  .hero-actions .secondary-action {
    min-width: 0;
    padding-left: 12px;
    padding-right: 12px;
  }

  .hero-stage {
    min-height: 372px;
    padding: 14px;
  }

  .hero-stage::before {
    inset: 10px;
  }

  .hero-stage::after {
    left: 20px;
    top: 20px;
  }

  .floating-kit {
    height: 154px;
    width: 116px;
  }

  .floating-kit::before,
  .floating-kit::after {
    height: 44px;
    top: 13px;
    width: 32px;
  }

  .floating-kit::before {
    left: -23px;
  }

  .floating-kit::after {
    right: -23px;
  }

  .floating-kit strong {
    font-size: 54px;
  }

  .kit-arg {
    left: 20%;
    top: 17%;
  }

  .kit-mex {
    right: 13%;
    top: 27%;
  }

  .kit-por {
    bottom: 17%;
    left: 36%;
  }

  .legend-strip {
    bottom: 14px;
    left: 14px;
    right: 14px;
  }

  .legend-strip span {
    font-size: 12px;
    padding: 7px 8px;
  }

  .product-card:hover,
  .trust-bar div:hover,
  .service-band article:hover,
  .policy-grid article:hover,
  .category-bubble:hover {
    transform: none;
  }

  .product-info h3,
  .product-info p {
    min-height: 0;
  }

  .cart-drawer.is-open .cart-panel {
    animation-name: slideCartUp;
  }
}

@keyframes slideCartUp {
  from {
    transform: translateY(18px);
  }
  to {
    transform: translateY(0);
  }
}

/* Robinhood Banking inspired premium editorial direction */
:root {
  --ink: #050b07;
  --paper: #f7f5ed;
  --paper-2: #ffffff;
  --muted: #687064;
  --line: rgba(5, 11, 7, 0.11);
  --green: #00c805;
  --lime: #d8f7c4;
  --red: #d93f3f;
  --blue: #214ddb;
  --gold: #d9b761;
  --shadow: 0 22px 58px rgba(5, 11, 7, 0.11);
}

body {
  background:
    linear-gradient(180deg, #fdfcf8 0, #f7f5ed 34%, #f3f1e8 100%);
}

.promo-strip {
  background: #050b07;
}

.promo-strip span {
  background: rgba(217, 183, 97, 0.12);
  border-color: rgba(217, 183, 97, 0.22);
  color: #fff8df;
}

.promo-strip span:nth-child(2),
.promo-strip span:nth-child(3) {
  color: #d8f7c4;
}

.site-header {
  background: rgba(253, 252, 248, 0.92);
}

.brand-mark {
  background: #050b07;
  color: var(--gold);
}

.main-nav {
  background: rgba(255, 255, 255, 0.76);
}

.cart-button,
.primary-action,
.checkout-button,
.contact-button.whatsapp {
  background: #050b07;
  color: #ffffff;
  box-shadow: 0 12px 28px rgba(5, 11, 7, 0.16);
}

.cart-button:hover,
.primary-action:hover,
.checkout-button:hover,
.contact-button.whatsapp:hover {
  background: #102117;
}

.cart-button strong {
  background: var(--green);
  color: #050b07;
}

.secondary-action {
  background: rgba(255, 255, 255, 0.78);
  border-color: rgba(5, 11, 7, 0.13);
}

.hero {
  align-items: center;
  gap: clamp(28px, 5vw, 72px);
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 1.18fr);
  min-height: 700px;
  padding-bottom: 44px;
}

.eyebrow {
  background: rgba(217, 183, 97, 0.16);
  border-color: rgba(217, 183, 97, 0.32);
  color: #7a5a13;
}

h1 {
  font-size: clamp(54px, 6.2vw, 92px);
  letter-spacing: -0.02em;
  line-height: 0.94;
}

h2 {
  letter-spacing: -0.01em;
}

.hero-text {
  color: #485145;
  font-size: 18px;
  max-width: 520px;
}

.hero-stage {
  background:
    linear-gradient(145deg, #08110b 0%, #102117 56%, #050b07 100%);
  border: 1px solid rgba(217, 183, 97, 0.22);
  box-shadow: 0 32px 80px rgba(5, 11, 7, 0.22);
  min-height: 590px;
  padding: 28px;
}

.hero-stage::before {
  background:
    linear-gradient(120deg, rgba(217, 183, 97, 0.18), transparent 42%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), transparent);
  border-color: rgba(217, 183, 97, 0.2);
  inset: 18px;
}

.hero-stage::after {
  background: rgba(255, 255, 255, 0.92);
  color: #050b07;
  content: "Cancha 90 private drop";
  left: 36px;
  top: 36px;
}

.pitch-grid {
  background:
    linear-gradient(90deg, rgba(217, 183, 97, 0.1) 1px, transparent 1px),
    linear-gradient(rgba(217, 183, 97, 0.1) 1px, transparent 1px);
  background-size: 48px 48px;
  opacity: 0.7;
}

.showcase-card {
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(217, 183, 97, 0.22);
  border-radius: 8px;
  box-shadow: 0 24px 62px rgba(0, 0, 0, 0.28);
  color: #050b07;
  display: grid;
  gap: 8px;
  overflow: hidden;
  padding: 12px;
  position: absolute;
  z-index: 2;
}

.showcase-card img {
  background: #f7f5ed;
  border-radius: 6px;
  display: block;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.showcase-card span {
  color: #7a5a13;
  font-size: 12px;
  font-weight: 850;
}

.showcase-card strong {
  font-size: 18px;
  line-height: 1.05;
}

.showcase-main {
  height: 392px;
  left: 9%;
  top: 17%;
  width: min(48%, 320px);
}

.showcase-secondary {
  height: 255px;
  right: 8%;
  top: 13%;
  width: min(38%, 250px);
}

.showcase-tertiary {
  bottom: 17%;
  height: 248px;
  right: 18%;
  width: min(36%, 238px);
}

.showcase-main img {
  min-height: 300px;
}

.showcase-secondary img,
.showcase-tertiary img {
  min-height: 172px;
}

.hero-stage:hover .showcase-main {
  transform: translateY(-6px) rotate(-1deg);
}

.hero-stage:hover .showcase-secondary {
  transform: translateY(-5px) rotate(1deg);
}

.hero-stage:hover .showcase-tertiary {
  transform: translateY(-4px) rotate(-1deg);
}

.showcase-card {
  transition:
    box-shadow 220ms ease,
    transform 220ms ease;
}

.legend-strip {
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(217, 183, 97, 0.22);
}

.legend-strip span {
  background: #f7f5ed;
  color: #050b07;
}

.trust-bar div,
.price-match-band,
.quick-shop,
.custom-panel,
.service-band article,
.policy-grid article,
.product-card,
.empty-products {
  background: rgba(255, 255, 255, 0.86);
}

.price-edge-grid span:nth-child(2),
.dialog-deal,
.price-stack em {
  background: rgba(216, 247, 196, 0.72);
}

.price-edge-grid span:nth-child(3) {
  background: rgba(217, 183, 97, 0.16);
}

.category-bubble {
  min-height: 210px;
}

.national-bubble {
  background:
    linear-gradient(135deg, rgba(5, 11, 7, 0.86), rgba(12, 55, 27, 0.8)),
    #050b07;
  color: #fff8df;
}

.club-bubble {
  background:
    linear-gradient(135deg, rgba(217, 183, 97, 0.78), rgba(255, 248, 223, 0.92)),
    #d9b761;
  color: #050b07;
}

.product-art {
  border-bottom: 1px solid rgba(5, 11, 7, 0.08);
}

.product-card:hover {
  border-color: rgba(217, 183, 97, 0.46);
}

.product-card::after {
  background: linear-gradient(90deg, var(--gold), var(--green));
}

.sale-tag {
  background: #050b07;
  color: #fff8df;
}

.badge {
  background: rgba(217, 183, 97, 0.16);
  color: #614813;
}

.price-stack strong,
.price-card strong,
.dialog-total strong,
.dialog-deal b,
.option-note,
.service-band span,
.policy-grid span {
  color: #087a10;
}

.shipping-band,
.contact-band {
  background:
    linear-gradient(135deg, rgba(217, 183, 97, 0.1), transparent 42%),
    #050b07;
}

.shipping-band .eyebrow,
.contact-band .eyebrow {
  background: rgba(217, 183, 97, 0.14);
  border-color: rgba(217, 183, 97, 0.22);
  color: #fff0bb;
}

.contact-button.whatsapp {
  background: var(--green);
  color: #050b07;
}

.contact-button.instagram,
.checkout-send-actions button,
.checkout-send-actions a:nth-child(2) {
  background: #fff8df;
}

.contact-button.email {
  background: #ffffff;
}

@media (max-width: 1040px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-copy {
    max-width: 760px;
  }

  .hero-stage {
    min-height: 560px;
  }
}

@media (max-width: 720px) {
  .hero {
    padding-top: 30px;
  }

  h1 {
    font-size: 43px;
    line-height: 0.98;
  }

  .hero-stage {
    min-height: 430px;
  }

  .hero-stage::after {
    font-size: 11px;
    left: 20px;
    top: 18px;
  }

  .showcase-card {
    padding: 8px;
  }

  .showcase-card span {
    font-size: 11px;
  }

  .showcase-card strong {
    font-size: 13px;
  }

  .showcase-main {
    height: 250px;
    left: 7%;
    top: 18%;
    width: 46%;
  }

  .showcase-secondary {
    height: 178px;
    right: 6%;
    top: 20%;
    width: 40%;
  }

  .showcase-tertiary {
    bottom: 18%;
    height: 174px;
    right: 18%;
    width: 38%;
  }

  .showcase-main img {
    min-height: 185px;
  }

  .showcase-secondary img,
  .showcase-tertiary img {
    min-height: 120px;
  }

  .category-bubble {
    min-height: 160px;
  }
}

/* Product gallery and black-gold premium refinement */
.product-art-button {
  border: 0;
  cursor: pointer;
  padding: 18px;
  text-align: left;
  width: 100%;
}

.product-art {
  background:
    radial-gradient(circle at 50% 18%, rgba(217, 183, 97, 0.28), transparent 35%),
    linear-gradient(145deg, #0a120c, #182319 62%, #050b07) !important;
  min-height: 286px;
}

.product-frame {
  align-items: center;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(247, 245, 237, 0.9));
  border: 1px solid rgba(217, 183, 97, 0.24);
  border-radius: 8px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.2);
  display: flex;
  height: 204px;
  justify-content: center;
  margin: 18px auto 0;
  overflow: hidden;
  padding: 10px;
  position: relative;
  width: min(82%, 230px);
  z-index: 1;
}

.product-frame::after {
  border: 1px solid rgba(217, 183, 97, 0.18);
  border-radius: 6px;
  content: "";
  inset: 8px;
  pointer-events: none;
  position: absolute;
}

.product-frame .product-photo {
  height: 100%;
  object-fit: contain;
  width: 100%;
}

.gallery-count {
  background: rgba(255, 248, 223, 0.94);
  border: 1px solid rgba(217, 183, 97, 0.36);
  border-radius: 8px;
  color: #050b07;
  font-size: 12px;
  font-weight: 850;
  padding: 7px 9px;
  position: absolute;
  right: 12px;
  top: 12px;
  z-index: 2;
}

.product-mini-strip {
  bottom: 12px;
  display: flex;
  gap: 6px;
  left: 12px;
  position: absolute;
  z-index: 2;
}

.product-mini-strip span {
  align-items: center;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(217, 183, 97, 0.24);
  border-radius: 6px;
  display: flex;
  height: 42px;
  justify-content: center;
  overflow: hidden;
  width: 42px;
}

.product-mini-strip img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.product-art-button:hover .product-frame {
  transform: translateY(-4px) scale(1.02);
}

.product-frame,
.product-mini-strip span {
  transition:
    box-shadow 180ms ease,
    transform 180ms ease;
}

.product-dialog {
  max-width: 1120px;
}

.product-dialog .dialog-card {
  max-height: calc(100dvh - 38px);
  overflow: auto;
}

.dialog-layout {
  grid-template-columns: minmax(420px, 1.08fr) minmax(360px, 0.92fr);
}

.dialog-art {
  align-items: stretch;
  background:
    radial-gradient(circle at 50% 18%, rgba(217, 183, 97, 0.22), transparent 38%),
    linear-gradient(145deg, #0a120c, #182319 64%, #050b07);
  justify-content: stretch;
  min-height: 620px;
  padding: 24px;
}

.product-gallery {
  align-content: start;
  display: grid;
  gap: 16px;
  grid-template-rows: minmax(0, 390px) auto;
  height: auto;
  width: 100%;
}

.gallery-main {
  align-items: center;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(247, 245, 237, 0.9));
  border: 1px solid rgba(217, 183, 97, 0.28);
  border-radius: 8px;
  box-shadow: 0 26px 62px rgba(0, 0, 0, 0.24);
  display: flex;
  justify-content: center;
  height: 390px;
  min-height: 0;
  overflow: hidden;
  padding: 18px;
}

.gallery-main img {
  display: block;
  max-height: 380px;
  max-width: 100%;
  object-fit: contain;
}

.gallery-thumbs {
  align-items: start;
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.gallery-thumbs button {
  align-items: center;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(217, 183, 97, 0.2);
  border-radius: 8px;
  color: #050b07;
  cursor: pointer;
  display: grid;
  gap: 7px;
  min-height: 92px;
  padding: 8px;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.gallery-thumbs button:hover,
.gallery-thumbs button.is-active {
  border-color: rgba(217, 183, 97, 0.7);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.14);
  transform: translateY(-1px);
}

.gallery-thumbs button.is-active {
  background: #fff8df;
}

.gallery-thumbs img {
  border-radius: 6px;
  height: 50px;
  object-fit: contain;
  width: 100%;
}

.gallery-thumbs span {
  font-size: 12px;
  font-weight: 850;
  line-height: 1.1;
}

.dialog-details {
  border-left: 1px solid rgba(5, 11, 7, 0.08);
}

.variant-switch {
  background: #fff8df;
  border: 1px solid rgba(217, 183, 97, 0.38);
  border-radius: 8px;
  display: grid;
  gap: 9px;
  padding: 10px;
}

.variant-switch > span {
  color: #7a5a13;
  font-size: 12px;
  font-weight: 850;
}

.variant-switch > div {
  display: grid;
  gap: 8px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.variant-switch button {
  background: #ffffff;
  border: 1px solid rgba(5, 11, 7, 0.12);
  border-radius: 8px;
  color: #050b07;
  cursor: pointer;
  font-weight: 850;
  min-height: 44px;
  padding: 0 10px;
}

.variant-switch button.is-active {
  background: #050b07;
  border-color: #050b07;
  color: #fff8df;
}

.dialog-details > .primary-action.full {
  bottom: 0;
  box-shadow:
    0 -12px 20px rgba(255, 255, 255, 0.86),
    0 14px 26px rgba(5, 11, 7, 0.16);
  position: sticky;
  z-index: 2;
}

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

  .dialog-art {
    min-height: auto;
  }

  .gallery-main {
    min-height: 420px;
  }
}

@media (max-width: 720px) {
  .product-art {
    min-height: 278px;
  }

  .product-frame {
    height: 190px;
    width: min(78%, 240px);
  }

  .product-mini-strip span {
    height: 38px;
    width: 38px;
  }

  .dialog-art {
    padding: 14px;
  }

  .gallery-main {
    height: 310px;
    min-height: 0;
    padding: 12px;
  }

  .gallery-main img {
    max-height: 286px;
  }

  .gallery-thumbs {
    gap: 8px;
  }

  .gallery-thumbs button {
    min-height: 88px;
    padding: 6px;
  }

  .gallery-thumbs img {
    height: 48px;
  }

  .gallery-thumbs span {
    font-size: 11px;
  }
}
  align-self: start;
