:root {
  --brand: #111111;
  --accent: #b89b42;
  --accent-2: #167a5b;
  --paper: #f7f4ee;
  --surface: #ffffff;
  --ink: #151515;
  --muted: #6f6a64;
  --line: #e4ded4;
  --radius: 8px;
  --shadow: 0 18px 55px rgba(17, 17, 17, 0.12);
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
}

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

body.modal-open {
  overflow: hidden;
}

body.storefront-loading {
  min-height: 100vh;
}

body.storefront-loading > :not(script) {
  visibility: visible;
}

body.storefront-loading::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10001;
  width: 34%;
  height: 3px;
  visibility: visible;
  background: var(--accent);
  transform: translateX(-100%);
  animation: storefront-loading-bar 900ms ease-in-out infinite alternate;
  pointer-events: none;
}

body.storefront-loading::after {
  content: none;
}

@keyframes storefront-loading-bar {
  from { transform: translateX(-100%); }
  to { transform: translateX(295%); }
}

@keyframes storefront-logo-breathe {
  0%, 100% {
    transform: translate(-50%, -50%) scale(0.97);
    opacity: 0.82;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.03);
    opacity: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  body.storefront-loading::before,
  body.storefront-loading::after {
    animation-duration: 2600ms;
  }
}

body.storefront-load-error > :not(.storefront-load-error-panel):not(script) {
  display: none !important;
}

.storefront-load-error-panel {
  display: grid;
  place-items: center;
  min-height: 100vh;
  padding: 24px;
  text-align: center;
}

.storefront-load-error-panel > div {
  width: min(460px, 100%);
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.storefront-load-error-panel h1 {
  margin: 0 0 8px;
  font-size: 1.5rem;
}

.storefront-load-error-panel p {
  margin: 0 0 20px;
  color: var(--muted);
}

body.preview-draft-mode::before {
  content: "Borrador";
  position: fixed;
  top: 86px;
  left: 12px;
  z-index: 200;
  min-height: 34px;
  padding: 7px 12px;
  border-radius: var(--radius);
  background: var(--accent);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 1000;
  text-transform: uppercase;
  box-shadow: var(--shadow);
}

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

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

button,
select,
input {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(247, 244, 238, 0.92);
  backdrop-filter: blur(16px);
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1180px, calc(100% - 32px));
  min-height: 74px;
  margin: 0 auto;
  gap: 18px;
}

.free-shipping-banner {
  overflow: hidden;
  border-bottom: 1px solid color-mix(in srgb, var(--announcement-accent) 42%, transparent);
  background: var(--announcement-background, #111);
  color: var(--announcement-text, #fff);
}

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

.free-shipping-banner-inner {
  width: 100%;
  min-height: 34px;
  margin: 0 auto;
  overflow: hidden;
  font-size: 0.82rem;
  font-weight: 750;
}

.announcement-bar-track {
  display: flex;
  width: max-content;
  min-height: inherit;
  will-change: transform;
  animation: announcement-bar-scroll var(--announcement-duration, 10s) linear infinite;
}

.announcement-bar-group {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  width: max-content;
  min-height: inherit;
}

.announcement-bar-mark {
  width: 7px;
  height: 7px;
  flex: 0 0 7px;
  border-radius: 50%;
  background: var(--announcement-accent, var(--accent));
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--announcement-accent, var(--accent)) 18%, transparent);
}

.announcement-bar-message {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 38px;
  white-space: nowrap;
}

@keyframes announcement-bar-scroll {
  from {
    transform: translateX(0);
  }

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

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

.brand-logo {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background-color: #fff;
  background-image: url("api/store-logo.php");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  color: transparent;
  font-weight: 900;
  letter-spacing: 0;
  overflow: hidden;
}

.brand-logo.has-image {
  padding: 4px;
  background-color: #fff;
  background-image: none;
}

.brand-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-copy {
  display: grid;
  gap: 0;
}

.brand-copy strong,
.footer-brand strong {
  font-size: 1rem;
  text-transform: uppercase;
}

.brand-copy small {
  color: var(--muted);
  font-size: 0.75rem;
}

.main-menu {
  display: flex;
  align-items: center;
  gap: 18px;
  color: #2d2a27;
  font-size: 0.93rem;
  font-weight: 700;
}

.main-menu a {
  cursor: pointer;
}

.main-menu a.is-active {
  color: var(--accent);
}

.account-nav-wrap {
  position: relative;
  display: inline-grid;
  place-items: center;
}

.account-nav-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--surface);
  color: var(--ink);
  padding: 0;
  cursor: pointer;
}

.account-nav-icon svg {
  width: 21px;
  height: 21px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.account-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  z-index: 80;
  display: none;
  min-width: 190px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
  padding: 8px;
}

.account-nav-wrap.is-open .account-menu {
  display: grid;
}

.account-menu a,
.account-menu button {
  display: flex;
  align-items: center;
  min-height: 40px;
  width: 100%;
  border: 0;
  border-radius: var(--radius);
  background: #f5f2eb;
  color: var(--ink);
  cursor: pointer;
  padding: 0 10px;
  font: inherit;
  font-weight: 800;
  text-align: left;
}

.account-menu a:hover,
.account-menu button:hover {
  background: #f7f4ee;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  min-width: 154px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  font-weight: 900;
  text-align: center;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(17, 17, 17, 0.16);
}

.button-dark {
  background: var(--brand);
  color: #fff;
}

.button-light {
  background: #fff;
  color: var(--brand);
}

.button-accent {
  background: var(--accent);
  color: #fff;
}

.button-whatsapp {
  background: var(--accent-2);
  color: #fff;
}

.button-outline-light {
  border-color: rgba(255, 255, 255, 0.68);
  color: #fff;
}

.button-ghost {
  border-color: var(--line);
  background: transparent;
  color: var(--ink);
}

.button.is-disabled,
.button:disabled {
  opacity: 0.48;
  pointer-events: none;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.full-button {
  width: 100%;
}

.account-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  align-items: start;
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
}

.account-page-head {
  display: grid;
  justify-items: center;
  gap: 8px;
  width: 100%;
  max-width: 760px;
  margin: 0 auto 24px;
  text-align: center;
}

.account-page-head h1,
.account-page-head p {
  margin: 0;
}

.account-auth-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 18px;
  align-items: start;
}

.account-view-tabs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  width: min(760px, 100%);
  margin: 0 auto 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ebe8e1;
  padding: 7px;
}

.account-view-tab {
  width: 100%;
  min-width: 0;
  min-height: 50px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  padding: 8px 14px;
  font-weight: 900;
  line-height: 1.2;
  transition: background 160ms ease, border-color 160ms ease, box-shadow 160ms ease, color 160ms ease;
}

.account-view-tab:hover:not(.is-active) {
  border-color: rgba(17, 17, 17, 0.12);
  background: rgba(255, 255, 255, 0.56);
}

.account-view-tab.is-active {
  border-color: var(--brand);
  background: var(--brand);
  color: #fff;
  box-shadow: 0 4px 12px rgba(17, 17, 17, 0.16);
}

.account-auth-card {
  width: min(520px, 100%);
  margin: 0 auto;
}

.account-reset-lead {
  display: flex;
  align-items: center;
  gap: 14px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 16px;
}

.account-reset-mark {
  display: grid;
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid #d4b454;
  border-radius: 50%;
  background: #fffaf0;
  color: #8b6b15;
  font-size: 1.2rem;
  font-weight: 950;
}

.account-reset-lead strong {
  display: block;
  color: var(--ink);
  font-size: 1.05rem;
}

.account-reset-lead p {
  margin: 3px 0 0;
  color: var(--muted);
  line-height: 1.45;
}

.account-card {
  display: grid;
  gap: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  padding: 18px;
}

.account-card h2,
.account-card h3 {
  margin: 0;
  text-transform: uppercase;
}

.account-card label {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-weight: 800;
}

.account-stack {
  display: grid;
  gap: 12px;
}

.account-secondary-action {
  margin: 0;
  color: var(--muted);
  font-weight: 800;
  text-align: center;
}

.account-secondary-action button {
  border: 0;
  background: transparent;
  color: var(--accent);
  cursor: pointer;
  font: inherit;
  font-weight: 900;
  padding: 0;
}

.account-card input {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 11px 12px;
  background: #fff;
  color: var(--ink);
}

.account-card input[readonly] {
  background: #f7f4ee;
}

.account-status {
  min-height: 24px;
  margin: 0;
  color: var(--accent-2);
  font-weight: 900;
}

.account-profile,
.order-detail-card {
  grid-column: auto;
}

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

.account-verify {
  width: min(520px, 100%);
  margin: 0 auto;
}

.account-check {
  display: inline-flex !important;
  grid-template-columns: none !important;
  align-items: center;
  gap: 8px;
  color: var(--ink) !important;
}

.account-check input {
  width: auto;
}

.checkout-page {
  min-height: 72vh;
}

.checkout-head {
  display: grid;
  justify-items: center;
  gap: 8px;
  max-width: 760px;
  margin: 0 auto 28px;
  text-align: center;
}

.checkout-head h1,
.checkout-head p {
  margin: 0;
}

.checkout-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
  gap: 18px;
  align-items: start;
  width: min(1120px, 100%);
  margin: 0 auto;
}

.checkout-form,
.checkout-summary,
.checkout-success {
  display: grid;
  gap: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  padding: 18px;
}

.checkout-summary {
  position: sticky;
  top: 92px;
}

.checkout-summary h2,
.checkout-block h2,
.checkout-success h2 {
  margin: 0;
  text-transform: uppercase;
}

.checkout-block {
  display: grid;
  gap: 14px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

.checkout-block:last-of-type {
  border-bottom: 0;
  padding-bottom: 0;
}

.checkout-form label {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-weight: 800;
}

.checkout-form input,
.checkout-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 11px 12px;
  background: #fff;
  color: var(--ink);
}

.checkout-form textarea {
  resize: vertical;
}

.checkout-form .checkout-marketing-consent {
  display: flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  color: var(--ink);
  font-size: 0.9rem;
  cursor: pointer;
}

.checkout-form .checkout-marketing-consent input {
  width: 18px;
  height: 18px;
  margin: 0;
  flex: 0 0 auto;
  accent-color: var(--accent2);
}

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

.checkout-span-2 {
  grid-column: 1 / -1;
}

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

.checkout-choice-grid label {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 48px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  background: #fff;
}

.checkout-choice-grid input {
  width: auto;
}

.checkout-choice-grid .checkout-payment-brand {
  gap: 10px;
}

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

.checkout-payment-brand-copy strong {
  color: var(--ink);
  font-size: 0.94rem;
  line-height: 1.1;
}

.checkout-payment-brand-copy small {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1.25;
}

.mercadopago-checkout-head {
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.mercadopago-checkout-head > div {
  display: grid;
  gap: 2px;
}

.mercadopago-checkout-head > div strong {
  font-size: 1rem;
}

.mercadopago-checkout-head > div span {
  color: var(--muted);
  font-size: 0.78rem;
}

.checkout-shipping-choices {
  grid-template-columns: 1fr;
  gap: 18px;
}

.checkout-delivery-group {
  display: grid;
  gap: 12px;
  min-width: 0;
}

.checkout-delivery-group + .checkout-delivery-group {
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.checkout-delivery-group-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
}

.checkout-delivery-group-head > div {
  display: grid;
  gap: 3px;
}

.checkout-delivery-group-head h3,
.checkout-delivery-group-head small,
.checkout-delivery-kicker {
  margin: 0;
}

.checkout-delivery-group-head h3 {
  font-size: 1rem;
  line-height: 1.2;
}

.checkout-delivery-kicker {
  color: var(--accent);
  font-size: 0.68rem;
  font-weight: 900;
  text-transform: uppercase;
}

.checkout-delivery-group-head > small {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 700;
  text-align: right;
}

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

.checkout-choice-grid .checkout-shipping-option {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
}

.checkout-shipping-option.is-selected {
  border-color: var(--brand);
  box-shadow: inset 0 0 0 1px var(--brand);
}

.checkout-shipping-option span {
  display: grid;
  gap: 3px;
}

.checkout-shipping-option small {
  overflow: hidden;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.checkout-shipping-option b {
  font-size: 0.86rem;
  white-space: nowrap;
}

.checkout-shipping-info {
  display: grid;
  gap: 4px;
  border-left: 3px solid var(--accent);
  background: #faf8f4;
  padding: 11px 12px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 800;
}

.checkout-note,
.checkout-payment-info {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 800;
}

.checkout-payment-info {
  display: grid;
  gap: 10px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #faf8f4;
}

.checkout-payment-info p {
  margin: 0;
}

.checkout-payment-info div {
  display: grid;
  gap: 6px;
}

.checkout-payment-info.is-transfer {
  gap: 14px;
  border: 2px solid #111;
  background: #fff;
  padding: 16px;
  color: #111;
  box-shadow: 4px 4px 0 rgba(194, 161, 59, 0.28);
}

.checkout-payment-info .transfer-account-heading {
  display: flex;
  align-items: center;
  gap: 11px;
}

.transfer-account-heading > div {
  gap: 1px;
}

.transfer-account-heading strong {
  font-size: 1rem;
  text-transform: uppercase;
}

.transfer-account-heading small,
.transfer-account-field small {
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 900;
  text-transform: uppercase;
}

.transfer-account-icon {
  display: grid;
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  place-items: center;
  border-radius: 50%;
  background: var(--accent);
  color: #111;
  font-size: 1.15rem;
  font-weight: 950;
}

.checkout-payment-info .transfer-account-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.transfer-account-field {
  display: grid;
  min-width: 0;
  gap: 3px;
  border: 1px solid var(--line);
  background: #f8f6f1;
  padding: 10px 11px;
}

.transfer-account-field strong {
  overflow-wrap: anywhere;
  color: #111;
  font-size: 0.92rem;
}

.transfer-account-field.is-bank {
  border-color: var(--accent);
  background: #fff8df;
}

.transfer-account-field.is-bank strong {
  font-size: 1rem;
}

.transfer-account-field.is-wide {
  grid-column: 1 / -1;
}

.checkout-payment-info .transfer-account-note {
  border-top: 1px solid var(--line);
  padding-top: 11px;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.45;
}

.mercadopago-checkout {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.mercadopago-checkout-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-bottom: 1px solid var(--line);
  padding: 12px 14px;
  background: #f5faff;
}

.mercadopago-checkout-head span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
}

.mercado-pago-logo {
  display: block;
  width: 96px;
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

.mercado-pago-logo.is-checkout-head {
  width: 118px;
}

.mercado-pago-logo.is-checkout-option {
  width: 82px;
}

.mercado-pago-logo.is-cart {
  width: 76px;
}

.mercado-pago-isologo {
  display: inline-grid;
  place-items: center;
  width: 34px;
  min-width: 34px;
  height: 26px;
  flex: 0 0 34px;
}

.mercado-pago-isologo img {
  display: block;
  width: 34px;
  height: 25px;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.mercadopago-plan-field {
  display: grid;
  grid-template-columns: minmax(0, 180px) minmax(180px, 260px) minmax(0, 1fr);
  align-items: center;
  gap: 10px 14px;
  margin: 14px;
  padding: 12px 14px;
  border: 1px solid #b8d7f4;
  border-radius: var(--radius);
  background: #f5faff;
}

.mercadopago-plan-field > span {
  font-weight: 1000;
}

.mercadopago-plan-field select {
  width: 100%;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  padding: 9px 36px 9px 11px;
  color: var(--ink);
  font: inherit;
  font-weight: 900;
}

.mercadopago-plan-field small {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
}

.mercadopago-loading {
  margin: 0;
  padding: 16px;
  color: var(--muted);
  font-weight: 800;
}

#mercadoPagoBrick {
  min-height: 120px;
  padding: 4px 10px 10px;
}

.checkout-warning {
  color: #b42318;
}

.checkout-items {
  display: grid;
  gap: 12px;
}

.checkout-coupon {
  display: grid;
  gap: 8px;
  padding: 14px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.checkout-coupon > label {
  font-weight: 900;
}

.checkout-coupon > div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
}

.checkout-coupon input {
  min-width: 0;
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 11px 12px;
  text-transform: uppercase;
}

.checkout-coupon p {
  min-height: 20px;
  margin: 0;
  color: var(--accent-2);
  font-size: 0.88rem;
  font-weight: 900;
}

.checkout-coupon p.is-error {
  color: #b42318;
}

.checkout-totals {
  display: grid;
  gap: 8px;
}

.checkout-totals > div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.checkout-discount {
  color: #167a5b;
  font-weight: 900;
}

.checkout-discount button {
  border: 0;
  background: transparent;
  color: inherit;
  padding: 0 0 0 6px;
  text-decoration: underline;
  font: inherit;
}

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

.checkout-item img {
  width: 64px;
  aspect-ratio: 1;
  border-radius: 6px;
  object-fit: contain;
}

.checkout-item div {
  display: grid;
  gap: 4px;
}

.checkout-item span {
  color: var(--muted);
  font-size: 0.9rem;
}

.checkout-status {
  min-height: 24px;
  margin: 0;
  color: var(--accent-2);
  font-weight: 900;
}

.checkout-status.is-error {
  color: #b42318;
}

.checkout-success {
  width: min(720px, 100%);
  margin: 20px auto 0;
}

.checkout-success p {
  margin: 0;
}

.checkout-success-summary {
  display: grid;
  gap: 12px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--background);
}

.checkout-success-summary h3 {
  margin: 0;
  text-transform: uppercase;
}

.checkout-success-items {
  display: grid;
  gap: 10px;
}

.checkout-success-items .checkout-item {
  background: var(--surface);
}

.checkout-success-totals {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px 16px;
  align-items: center;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}

.checkout-success-totals strong {
  text-align: right;
}

.checkout-success-total-label,
.checkout-success-total {
  padding-top: 8px;
  border-top: 1px solid var(--line);
  font-size: 1.1rem;
}

.checkout-success-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.account-card-head {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: center;
}

.account-card-head h2 {
  margin-top: 4px;
}

.account-card-head strong {
  font-size: 1.35rem;
}

.customer-order-meta,
.customer-order-files {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.customer-order-meta span,
.customer-order-files a {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0 10px;
  background: #f7f4ee;
  font-size: 0.88rem;
  font-weight: 800;
}

.customer-order-items {
  display: grid;
  gap: 8px;
}

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

.customer-order-card {
  display: grid;
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #faf8f4;
  padding: 14px;
}

.customer-order-card-head {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  align-items: start;
}

.customer-order-card h3 {
  margin: 0;
  text-transform: uppercase;
}

.customer-order-card strong {
  font-size: 1.1rem;
}

.customer-order-items article {
  display: grid;
  gap: 2px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #faf8f4;
  padding: 12px;
}

.customer-order-items span {
  color: var(--muted);
  font-size: 0.92rem;
}

.customer-order-cancelled-state {
  display: grid;
  gap: 4px;
  border: 1px solid #e4b8b3;
  border-left: 4px solid #b42318;
  border-radius: var(--radius);
  background: #fff7f6;
  padding: 14px;
  color: #7a271a;
}

.customer-order-cancelled-state strong {
  color: #b42318;
}

.customer-order-cancelled-state span {
  color: #7a271a;
  font-size: 0.9rem;
}

.customer-upload {
  display: grid;
  gap: 12px;
  border-top: 1px solid var(--line);
  padding-top: 16px;
}

.customer-order-actions {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
  border-top: 1px solid var(--line);
  padding-top: 14px;
}

.customer-order-actions p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.customer-order-cancel-note {
  margin: 14px 0 0;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-left: 3px solid var(--accent);
  border-radius: 6px;
  color: var(--muted);
  background: #fff;
  font-size: 0.88rem;
  line-height: 1.5;
}

.help-page-legal {
  --help-accent: #b89b42;
}

.customer-order-cancel {
  min-width: 170px;
  border-color: #b42318;
  background: #fff;
  color: #b42318;
}

.customer-order-cancel:hover {
  background: #b42318;
  color: #fff;
}

.customer-order-cancel:disabled {
  cursor: wait;
  opacity: 0.55;
}

.customer-pickup-credential {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  border: 2px solid #111;
  border-radius: var(--radius);
  background: #fff;
  padding: 18px;
}

.customer-pickup-credential h3,
.customer-pickup-credential p {
  margin: 0;
}

.customer-pickup-credential h3 {
  margin-bottom: 6px;
  text-transform: uppercase;
}

.pickup-credential-copy {
  display: grid;
  gap: 10px;
}

.pickup-code-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.pickup-code-row code {
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0 14px;
  background: #f7f4ee;
  font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
  font-size: 1.25rem;
  font-weight: 900;
  letter-spacing: 0;
}

.pickup-qr {
  width: 192px;
  min-width: 192px;
  height: 192px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  background: #fff;
  padding: 8px;
}

.pickup-qr img,
.pickup-qr canvas {
  display: block;
  width: 176px;
  height: 176px;
}

.customer-pickup-credential.is-used {
  grid-template-columns: 1fr;
  border-color: #15815f;
  background: #f2faf6;
}

.customer-pickup-credential.is-pending-payment {
  grid-template-columns: auto 1fr;
  border: 1px solid #d7c999;
  background: #fffaf0;
}

.customer-pickup-credential.is-pending-payment .pickup-state-mark {
  background: var(--accent);
  color: #111;
}

.customer-pickup-credential.is-pending-payment strong {
  display: block;
  margin-bottom: 3px;
  text-transform: uppercase;
}

.customer-pickup-credential.is-used > div {
  display: flex;
  gap: 12px;
  align-items: center;
}

.pickup-state-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  background: #15815f;
  color: #fff;
  font-size: 1.4rem;
  font-weight: 900;
}

@media (max-width: 640px) {
  .customer-pickup-credential {
    grid-template-columns: 1fr;
  }

  .pickup-qr {
    justify-self: center;
  }
}

@media (max-width: 520px) {
  .checkout-payment-info .transfer-account-grid {
    grid-template-columns: 1fr;
  }

  .transfer-account-field.is-wide {
    grid-column: auto;
  }
}

.hero {
  position: relative;
  display: grid;
  min-height: calc(100vh - 74px);
  overflow: hidden;
  color: #fff;
}

.hero-media,
.hero-overlay,
.hero-content {
  grid-area: 1 / 1;
}

.hero-media {
  overflow: hidden;
  background: #111;
}

.hero-media span {
  position: absolute;
  inset: 0;
  opacity: 0;
  background-position: center;
  background-size: cover;
  transform: scale(1.02);
  transition:
    opacity var(--hero-transition-ms, 900ms) ease,
    transform var(--hero-transition-ms, 900ms) ease,
    clip-path var(--hero-transition-ms, 900ms) ease,
    filter var(--hero-transition-ms, 900ms) ease;
  will-change: opacity, transform, clip-path, filter;
}

.hero-media span.is-active {
  opacity: 1;
  transform: scale(1);
}

.hero[data-hero-transition="zoom"] .hero-media span {
  transform: scale(1.14);
}

.hero[data-hero-transition="zoom"] .hero-media span.is-active {
  transform: scale(1);
}

.hero[data-hero-transition="slide"] .hero-media span {
  clip-path: inset(0 100% 0 0);
  opacity: 1;
  transform: scale(1.02);
}

.hero[data-hero-transition="slide"] .hero-media span.is-active {
  clip-path: inset(0 0 0 0);
  transform: scale(1);
}

.hero[data-hero-transition="flash"] .hero-media span {
  filter: contrast(1.6) saturate(0.45) brightness(1.35);
  transform: scale(1.08);
}

.hero[data-hero-transition="flash"] .hero-media span.is-active {
  filter: contrast(1) saturate(1) brightness(1);
  transform: scale(1);
}

.hero-overlay {
  background: linear-gradient(180deg, transparent 58%, rgba(0, 0, 0, 0.82));
}

.hero-content {
  position: relative;
  display: grid;
  align-items: center;
  align-self: center;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 54px 0 132px;
}

.hero-brand-panel {
  position: absolute;
  top: 6px;
  left: 0;
  display: grid;
  place-items: center;
  width: clamp(190px, 19vw, 255px);
  overflow: hidden;
  border-radius: var(--radius);
  filter: drop-shadow(0 24px 34px rgba(0, 0, 0, 0.42));
}

.hero-brand-panel img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.hero-copy {
  width: min(100%, 780px);
  min-width: 0;
  justify-self: start;
  align-self: center;
  padding-left: 0;
  color: var(--hero-text-color, #fff);
  font-family: var(--hero-font-family, inherit);
}

.hero[data-text-position="center-center"] .hero-copy,
.hero[data-text-position="center-bottom"] .hero-copy {
  justify-self: center;
  text-align: center;
}

.hero[data-text-position="right-center"] .hero-copy,
.hero[data-text-position="right-bottom"] .hero-copy {
  justify-self: end;
  text-align: center;
}

.hero[data-text-position$="-bottom"] .hero-copy {
  align-self: end;
  padding-bottom: 72px;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--hero-accent-color, var(--accent));
  font-size: 0.78rem;
  font-weight: 1000;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(3rem, 7vw, 6.7rem);
  line-height: 0.95;
  letter-spacing: 0;
  text-transform: uppercase;
  white-space: pre-line;
}

.hero[data-text-position="center-center"] h1,
.hero[data-text-position="center-bottom"] h1 {
  margin-inline: auto;
}

.hero-copy p:not(.eyebrow) {
  max-width: 560px;
  margin: 20px 0 0;
  color: color-mix(in srgb, var(--hero-text-color, #fff) 84%, transparent);
  font-size: 1.12rem;
}

.hero[data-text-position="center-center"] .hero-copy p:not(.eyebrow),
.hero[data-text-position="center-bottom"] .hero-copy p:not(.eyebrow) {
  margin-inline: auto;
}

.hero[data-text-position="right-center"] .hero-copy p:not(.eyebrow),
.hero[data-text-position="right-bottom"] .hero-copy p:not(.eyebrow) {
  margin-left: auto;
}

.hero[data-text-position="center-center"] .hero-actions,
.hero[data-text-position="center-bottom"] .hero-actions {
  justify-content: center;
}

.hero[data-text-position="right-center"] .hero-actions,
.hero[data-text-position="right-bottom"] .hero-actions {
  justify-content: flex-end;
}

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

.hero-actions.is-single {
  width: 100%;
}

.hero-actions .button {
  width: 178px;
}

.icon-link-band {
  background: #ededed;
  padding: 34px 20px;
}

.icon-link-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  width: min(100%, 1040px);
  margin: 0 auto;
}

.icon-link-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  min-height: 82px;
  color: var(--ink);
  text-decoration: none;
  font-weight: 900;
  line-height: 1.1;
}

.icon-link-item svg {
  width: 58px;
  height: 58px;
  flex: 0 0 auto;
  padding: 12px;
  border: 4px solid currentColor;
  border-radius: 50%;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
  background: rgba(255, 255, 255, 0.34);
  overflow: visible;
}

.icon-link-item .icon-link-symbol--filled {
  fill: currentColor;
  stroke: none;
}

.icon-link-item strong {
  max-width: 180px;
  font-size: 1.06rem;
  text-align: left;
}

.home-featured {
  background:
    linear-gradient(180deg, #fff 0%, var(--paper) 100%);
  padding-top: 72px;
  padding-bottom: 78px;
}

.section-head.home-featured-head {
  align-items: center;
  flex-direction: column;
  text-align: center;
}

.section-head.home-featured-head .button {
  margin-top: 4px;
  width: 210px;
}

.home-featured-grid {
  --featured-card-width: clamp(250px, 19vw, 310px);
  --featured-gap: 22px;
  --featured-visible-width: calc((var(--featured-card-width) * 4) + (var(--featured-gap) * 3));
  position: relative;
  display: grid;
  grid-template-columns: 52px minmax(0, var(--featured-visible-width)) 52px;
  align-items: center;
  gap: 14px;
  justify-content: center;
  width: min(calc(var(--featured-visible-width) + 132px), calc(100vw - 32px)) !important;
  margin: 0 auto;
  overflow: visible;
  cursor: grab;
  touch-action: pan-y;
  user-select: none;
  box-sizing: border-box;
}

.home-featured-grid.is-dragging {
  cursor: grabbing;
}

.home-featured-grid.is-dragging a,
.home-featured-grid.is-dragging button:not(.featured-carousel-control) {
  pointer-events: none;
}

.featured-carousel-control {
  position: static;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  justify-self: center;
  border: 1px solid rgba(17, 17, 17, 0.12);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: var(--brand);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.14);
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.featured-carousel-control:hover {
  background: #fff;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.18);
}

.featured-carousel-control span {
  display: block;
  margin-top: -2px;
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
}

.featured-carousel-prev {
  grid-column: 1;
}

.featured-carousel-next {
  grid-column: 3;
}

.featured-carousel-viewport {
  grid-column: 2;
  min-width: 0;
  width: min(100%, var(--featured-visible-width));
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent 0, #000 56px, #000 calc(100% - 56px), transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 56px, #000 calc(100% - 56px), transparent 100%);
}

.featured-carousel-track {
  display: flex;
  align-items: stretch;
  gap: var(--featured-gap);
  width: max-content;
  will-change: transform;
}

.featured-carousel-track .product-card {
  flex: 0 0 var(--featured-card-width);
}

.home-featured-grid.is-static {
  --featured-visible-width: calc((var(--featured-card-width) * 3) + (var(--featured-gap) * 2));
  grid-template-columns: minmax(0, var(--featured-visible-width));
  cursor: default;
}

.home-featured-grid.is-static .featured-carousel-control {
  display: none;
}

.home-featured-grid.is-static .featured-carousel-viewport {
  grid-column: 1;
  mask-image: none;
  -webkit-mask-image: none;
}

.extra-banner-section {
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
  width: 100%;
  height: clamp(280px, var(--extra-banner-height, 480px), 800px);
  min-height: 0;
  max-height: 800px;
  display: grid;
  align-items: center;
  padding: 64px max(18px, calc((100% - 1180px) / 2));
  background: linear-gradient(135deg, #111, #3d3520);
  color: #fff;
}

.extra-banner-section::before,
.extra-banner-section::after,
.extra-banner-media {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.extra-banner-section::before {
  background-image: var(--extra-banner-image);
  background-size: cover;
  background-position: var(--extra-banner-x, 50%) var(--extra-banner-y, 50%);
  opacity: 0;
  filter: blur(18px) brightness(0.58) saturate(0.75);
  transform: scale(1.12);
}

.extra-banner-section.has-image::before {
  opacity: 1;
}

.extra-banner-media {
  z-index: 0;
  background-image: var(--extra-banner-image);
  background-size: cover;
  background-position: var(--extra-banner-x, 50%) var(--extra-banner-y, 50%);
  background-repeat: no-repeat;
  opacity: 0;
  transform: scale(var(--extra-banner-zoom, 1));
  transform-origin: var(--extra-banner-x, 50%) var(--extra-banner-y, 50%);
}

.extra-banner-section.has-image .extra-banner-media {
  opacity: 1;
}

.extra-banner-section::after {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.18)),
    radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.18), transparent 32%);
}

.extra-banner-section:not(.has-image)::after {
  background: radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.18), transparent 32%);
}

.extra-banner-content {
  position: relative;
  z-index: 1;
  max-width: 560px;
}

.extra-banner-section[data-text-position="center"] {
  justify-items: center;
  text-align: center;
}

.extra-banner-section[data-text-position="right"] {
  justify-items: end;
  text-align: right;
}

.extra-banner-content h2 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(2.2rem, 5vw, 5.2rem);
  line-height: 0.94;
  text-transform: uppercase;
}

.extra-banner-content p:not(.eyebrow) {
  max-width: 520px;
  color: rgba(255, 255, 255, 0.82);
}

.section {
  padding: 86px 0;
}

.section > * {
  width: min(1180px, calc(100% - 32px));
  margin-right: auto;
  margin-left: auto;
}

.section-dark {
  background: #111;
  color: #fff;
}

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

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

.section-head h2,
.section-head h1,
.about-copy h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 4.1rem);
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
}

.section-head h3 {
  margin: 0;
  font-size: 1.6rem;
}

.page-section {
  min-height: calc(100vh - 74px);
}

.page-split {
  min-height: calc(100vh - 74px);
}

.page-split .about-copy h1 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 4.1rem);
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
}

.section-head p:not(.eyebrow),
.about-copy p {
  max-width: 640px;
  margin: 12px 0 0;
  color: var(--muted);
}

.section-dark .section-head p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.72);
}

.drop-alert {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 18px;
  margin-bottom: 22px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
}

.drop-alert strong {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: var(--radius);
  background: #fff;
  color: var(--brand);
  white-space: nowrap;
}

.drop-alert span {
  color: rgba(255, 255, 255, 0.78);
}

.product-grid,
.category-grid,
.social-grid,
.related-grid {
  display: grid;
  gap: 18px;
}

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

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

.product-card,
.category-card,
.social-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 0 0 rgba(0, 0, 0, 0);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

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

.category-card {
  border-width: 2px;
  border-color: rgba(17, 17, 17, 0.2);
  box-shadow: 0 2px 8px rgba(17, 17, 17, 0.045);
}

.section-dark .product-card {
  border-color: rgba(255, 255, 255, 0.14);
  background: #1b1b1b;
}

.product-card:hover,
.category-card:hover,
.social-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.product-card-locked .button-accent {
  background: #777;
}

.product-card.is-out-of-stock {
  border-color: #d5d0c7;
  background: #fbfaf7;
  box-shadow: inset 0 -3px 0 #e4dfd6;
}

.product-card.is-out-of-stock:hover {
  transform: none;
  box-shadow: inset 0 -3px 0 #e4dfd6, 0 10px 28px rgba(17, 17, 17, 0.08);
}

.product-card.is-out-of-stock .product-image::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04) 42%, rgba(17, 17, 17, 0.16) 100%);
  content: "";
  pointer-events: none;
}

.product-card.is-out-of-stock .product-image img {
  filter: grayscale(0.9) contrast(0.9);
  opacity: 0.7;
}

.product-card.is-out-of-stock .badge {
  display: none;
}

.product-card.is-out-of-stock .product-meta,
.product-card.is-out-of-stock .product-payment-summary,
.product-card.is-out-of-stock .pill {
  color: #777269;
}

.product-stock-overlay {
  position: absolute;
  inset: auto auto 12px 12px;
  z-index: 3;
  padding: 8px 11px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(17, 17, 17, 0.9);
  box-shadow: 0 5px 16px rgba(17, 17, 17, 0.2);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 1000;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

.product-detail-hero.is-out-of-stock .button-accent {
  border-color: #999;
  background: #999;
  color: #fff;
  opacity: 1;
}

.product-stock-action {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  gap: 8px;
  border: 1px solid #d8d2c8;
  border-radius: var(--radius);
  background: #f1eee8;
  color: #625e57;
  font-size: 0.82rem;
  font-weight: 950;
  text-align: center;
}

.product-stock-action::before {
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  border: 2px solid #777269;
  border-radius: 50%;
  content: "";
}

.product-detail-hero.is-out-of-stock .product-gallery-main img {
  filter: grayscale(1);
  opacity: 0.68;
}

.product-detail-stock-alert {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border: 1px solid #aaa;
  border-radius: 6px;
  background: #eeeeeb;
  color: #343431;
}

.product-detail-stock-alert strong {
  flex: 0 0 auto;
  padding: 5px 8px;
  border-radius: 4px;
  background: #555;
  color: #fff;
  font-size: 12px;
}

.product-detail-stock-alert span {
  font-size: 13px;
  line-height: 1.35;
}

.detail-status .is-stock-empty {
  border-color: #777;
  background: #777;
  color: #fff;
}

.drop-empty {
  grid-column: 1 / -1;
  border-color: rgba(255, 255, 255, 0.22);
  color: rgba(255, 255, 255, 0.74);
}

.video-section .section-head p:not(.eyebrow) {
  margin-inline: auto;
}

.video-frame {
  overflow: hidden;
  width: min(980px, 100%);
  aspect-ratio: 16 / 9;
  margin: 0 auto;
  border-radius: var(--radius);
  background: #111;
}

.video-frame iframe,
.video-frame video {
  width: 100%;
  height: 100%;
  border: 0;
  object-fit: cover;
}

.product-image,
.category-image {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #ddd;
}

.product-image-link {
  display: block;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

.product-image-link img {
  -webkit-user-drag: none;
  user-select: none;
  transition: transform 220ms ease;
}

.product-image-link:hover img,
.product-image-link:focus-visible img {
  transform: scale(1.02);
}

.product-image-link:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: -3px;
}

.category-image {
  display: block;
  aspect-ratio: 16 / 11;
}

.category-image-link {
  cursor: pointer;
}

.category-image-link img {
  transition: transform 220ms ease;
}

.category-image-link:hover img,
.category-image-link:focus-visible img {
  transform: scale(1.025);
}

.category-image-link:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: -2px;
}

.product-image img,
.category-image img,
.modal-gallery img,
.related-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 6px 9px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 1000;
  text-transform: uppercase;
}

.discount-badge {
  background: var(--accent-2);
}

.product-body,
.category-body {
  padding: 16px;
}

.product-card:not(.product-card-compact) .product-body {
  display: flex;
  flex: 1;
  flex-direction: column;
}

.product-body h3,
.category-body h3 {
  margin: 0;
  font-size: 1rem;
}

.product-card:not(.product-card-compact) .product-body h3 {
  display: -webkit-box;
  min-height: 2.5em;
  overflow: hidden;
  line-height: 1.25;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.product-card-compact .product-body {
  display: grid;
  gap: 12px;
}

.product-card-compact .price-row {
  margin-bottom: 0;
}

.product-meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin: 8px 0 12px;
  color: var(--muted);
  font-size: 0.86rem;
}

.product-card:not(.product-card-compact) .product-meta {
  min-height: 1.25em;
}

.section-dark .product-meta {
  color: rgba(255, 255, 255, 0.66);
}

.price-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 12px;
}

.price {
  font-size: 1.14rem;
  font-weight: 1000;
}

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

.commerce-prices {
  display: grid;
  grid-template-columns: 1fr;
  gap: 6px;
  margin: 10px 0 12px;
}

.commerce-prices > span,
.commerce-prices > button {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 8px;
  min-width: 0;
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  padding: 8px 10px;
}

.mercado-payment-options {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}

.mercado-payment-options-note {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 900;
}

.mercado-payment-options-note strong {
  color: var(--ink);
  font-size: 0.85rem;
}

.mercado-payment-options-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 6px;
}

.mercado-payment-option {
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 4px;
  min-width: 0;
  min-height: 44px;
  border: 1px solid #cfe3f5;
  border-radius: var(--radius);
  background: #fff;
  padding: 8px 12px;
  text-align: center;
}

.mercado-payment-option small {
  color: var(--muted);
  font-size: 0.6rem;
  font-weight: 900;
  line-height: 1.15;
}

.mercado-payment-option strong {
  display: block;
  width: 100%;
  color: var(--ink);
  font-size: 0.9rem;
  text-align: center;
  white-space: nowrap;
}

.commerce-prices > .product-payment-summary {
  display: flex;
  align-items: baseline;
  justify-content: flex-start;
  gap: 7px;
  min-height: 0;
  border: 0;
  border-top: 1px solid var(--line);
  background: transparent;
  padding: 8px 2px 1px;
  color: var(--muted);
  text-align: left;
}

.commerce-prices > button.product-payment-summary {
  width: 100%;
  cursor: pointer;
  font: inherit;
}

.product-payment-summary > span,
.product-payment-summary > strong {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 850;
  line-height: 1.25;
  text-align: left;
}

.product-payment-summary > small {
  border-bottom: 1px solid transparent;
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 750;
}

button.product-payment-summary:hover > small,
button.product-payment-summary:focus-visible > small {
  border-bottom-color: currentColor;
}

.mercado-payment-option em {
  color: var(--muted);
  font-size: 0.56rem;
  font-style: normal;
  font-weight: 800;
}

.commerce-prices small {
  overflow-wrap: anywhere;
  color: var(--muted);
  font-size: 0.66rem;
  font-weight: 900;
  line-height: 1.2;
}

.commerce-prices small:has(.mercado-pago-logo) {
  display: flex;
  align-items: center;
}

.commerce-prices small b {
  display: block;
  margin-top: 2px;
  color: #167a5b;
  font-size: 0.62rem;
}

.commerce-prices strong {
  overflow-wrap: anywhere;
  text-align: right;
  font-size: 1rem;
  font-weight: 1000;
}

.commerce-prices del {
  grid-column: 2;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
}

.commerce-prices .commerce-price-cash {
  grid-template-columns: minmax(0, 1fr) auto;
  border: 0;
  background: transparent;
  padding: 0 2px 2px;
}

.commerce-price-cash strong {
  color: var(--ink);
}

.cash-price-label {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
}

.cash-payment-icons {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  flex: 0 0 auto;
}

.cash-payment-icon {
  width: 23px;
  height: 23px;
  flex: 0 0 auto;
  fill: none;
  stroke: #167a5b;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.cash-price-copy {
  min-width: 0;
}

.commerce-prices.is-detailed .commerce-price-cash strong {
  font-size: 2rem;
}

.commerce-prices.is-card > span {
  min-height: 0;
  padding-block: 2px;
}

.commerce-prices.is-card .mercado-pago-logo {
  width: 78px;
}

.commerce-prices.is-card strong {
  font-size: 0.94rem;
  white-space: nowrap;
}

.commerce-prices.is-card .commerce-price-cash strong {
  font-size: 1.22rem;
}

.commerce-prices.is-card .cash-payment-icon {
  width: 17px;
  height: 17px;
}

#cartInstallmentLabel {
  display: flex;
  align-items: center;
  gap: 8px;
}

#cartInstallmentLabel > span {
  font-size: 0.82rem;
  font-weight: 900;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.product-card:not(.product-card-compact) .pill-list {
  min-height: 29px;
}

.color-swatch-list {
  align-items: center;
  gap: 10px;
}

.pill {
  padding: 5px 8px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
}

.section-dark .pill {
  border-color: rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.7);
}

.card-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 9px;
  margin-top: 14px;
}

.product-card:not(.product-card-compact) .card-actions {
  margin-top: auto;
  padding-top: 14px;
}

.card-actions .button {
  width: 100%;
  min-height: 48px;
}

.category-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-bottom: 34px;
}

.catalog-page {
  padding-top: 0;
}

.catalog-page > .catalog-page-hero {
  position: relative;
  display: grid;
  width: 100%;
  min-height: clamp(320px, 42vw, 800px);
  max-height: 800px;
  overflow: hidden;
  border-radius: 0;
  background: #191919;
  color: #fff;
}

.catalog-page-hero > img,
.catalog-page-hero-overlay,
.catalog-page-hero-copy {
  grid-area: 1 / 1;
}

.catalog-page-hero > img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}

.catalog-page-hero-overlay {
  z-index: 1;
  background: rgba(0, 0, 0, 0.42);
}

.catalog-page-hero:not(.has-image) .catalog-page-hero-overlay {
  background: linear-gradient(135deg, #111, #343434);
}

.catalog-page-hero-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: min(760px, calc(100% - 48px));
  padding: 48px 0;
}

.catalog-page-hero[data-text-position="left"] .catalog-page-hero-copy {
  justify-self: start;
  margin-left: clamp(24px, 6vw, 96px);
  text-align: left;
}

.catalog-page-hero[data-text-position="center"] .catalog-page-hero-copy {
  justify-self: center;
  text-align: center;
}

.catalog-page-hero[data-text-position="right"] .catalog-page-hero-copy {
  justify-self: end;
  margin-right: clamp(24px, 6vw, 96px);
  text-align: right;
}

.catalog-page-hero-copy .eyebrow,
.catalog-page-hero-copy h1,
.catalog-page-hero-copy > p {
  margin-right: 0;
  margin-left: 0;
  color: inherit;
}

.catalog-page-hero-copy h1 {
  margin-top: 0;
  margin-bottom: 14px;
  font-size: clamp(3rem, 8vw, 7.2rem);
  line-height: 0.92;
  letter-spacing: 0;
  text-transform: uppercase;
  text-shadow: 0 4px 22px rgba(0, 0, 0, 0.24);
}

.catalog-page-hero-copy > p:not(.eyebrow) {
  max-width: 620px;
  margin-top: 0;
  margin-bottom: 22px;
  font-size: 1.05rem;
  line-height: 1.6;
}

.catalog-page-hero[data-text-position="center"] .catalog-page-hero-copy > p,
.catalog-page-hero[data-text-position="center"] .catalog-page-hero-copy .button {
  margin-right: auto;
  margin-left: auto;
}

.catalog-page-hero[data-text-position="right"] .catalog-page-hero-copy > p,
.catalog-page-hero[data-text-position="right"] .catalog-page-hero-copy .button {
  margin-left: auto;
}

.catalog-page-hero-copy .button {
  width: fit-content;
}

.catalog-category-section {
  --catalog-side-column: clamp(140px, 12vw, 250px);
  display: grid;
  grid-template-columns: var(--catalog-side-column) minmax(0, 1fr) var(--catalog-side-column);
  column-gap: 26px;
  box-sizing: border-box;
  width: min(1720px, calc(100vw - 32px));
  padding: 64px 24px 42px;
}

.catalog-category-section .catalog-category-grid,
.catalog-category-section .catalog-category-toggle {
  grid-column: 2;
}

.catalog-category-section .section-head {
  grid-column: 1 / -1;
  margin-bottom: 30px;
}

.catalog-category-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  justify-content: center;
  gap: 18px;
}

.catalog-category-toggle {
  display: flex;
  width: fit-content;
  min-width: 210px;
  margin: -4px auto 38px;
}

.catalog-category-toggle[hidden] {
  display: none;
}

[data-home-module="categories"] .category-grid {
  width: min(1280px, calc(100% - 32px));
  gap: 24px;
}

.catalog-panel {
  width: min(1720px, calc(100vw - 32px));
  margin-right: auto;
  margin-left: 50%;
  transform: translateX(-50%);
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
}

.product-listing-shell {
  --filter-side-column: clamp(140px, 12vw, 250px);
  display: grid;
  grid-template-columns: var(--filter-side-column) minmax(0, 1fr) var(--filter-side-column);
  gap: 26px;
  width: min(1720px, calc(100vw - 32px));
  margin-right: auto;
  margin-left: 50%;
  transform: translateX(-50%);
  align-items: start;
}

.catalog-panel .product-listing-shell {
  width: 100%;
  margin-left: 0;
  transform: none;
}

.product-filter-sidebar {
  grid-column: 1;
  position: sticky;
  top: 94px;
  display: grid;
  gap: 18px;
  max-height: calc(100vh - 112px);
  overflow-y: auto;
  overflow-x: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  background: #fff;
}

.product-filter-heading {
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.product-filter-heading p,
.product-filter-heading h3 {
  margin: 0;
}

.product-filter-heading h3 {
  min-width: 0;
  margin-top: 5px;
  font-size: 1.05rem;
  line-height: 1.2;
  overflow-wrap: anywhere;
}

.product-listing-results {
  grid-column: 2;
  min-width: 0;
}

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

.product-result-count {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0 12px;
  background: #fff;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 900;
}

.product-listing-shell-dark .product-filter-sidebar {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.product-listing-shell-dark .product-filter-heading {
  border-color: rgba(255, 255, 255, 0.18);
}

.product-listing-shell-dark .filters label {
  color: rgba(255, 255, 255, 0.76);
}

.product-listing-shell-dark .product-result-count {
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.product-listing-shell-dark .catalog-top {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.07);
}

.catalog-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: calc(100% + var(--filter-side-column) + 26px);
  margin-bottom: 20px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #faf8f4;
}

.product-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  grid-column: 2;
  margin: 0;
}

.product-pagination[hidden] {
  display: none;
}

.product-page-button {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.product-page-button:hover,
.product-page-button.is-active {
  border-color: var(--brand);
  background: var(--brand);
  color: #fff;
}

.product-page-button:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.product-page-arrow {
  font-size: 1.5rem;
  line-height: 1;
}

.product-listing-shell-dark .product-page-button {
  border-color: rgba(255, 255, 255, 0.22);
  background: #1b1b1b;
  color: #fff;
}

.product-listing-shell-dark .product-page-button:hover,
.product-listing-shell-dark .product-page-button.is-active {
  border-color: #fff;
  background: #fff;
  color: #111;
}

.product-listing-footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 16px;
  width: calc(100% + var(--filter-side-column) + 26px);
  margin-top: 34px;
}

.product-listing-footer .product-result-count {
  grid-column: 3;
  justify-self: end;
}

.catalog-top-actions {
  display: flex;
  align-items: end;
  justify-content: flex-end;
  gap: 12px;
}

.product-sort-control {
  display: grid;
  gap: 5px;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 850;
  text-align: center;
}

.product-sort-control select {
  min-width: 180px;
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0 38px 0 12px;
  background-color: #fff;
  color: var(--ink);
  font: inherit;
  font-size: 0.84rem;
}

.product-listing-shell-dark .product-sort-control {
  color: rgba(255, 255, 255, 0.76);
}

.product-listing-shell-dark .product-sort-control select {
  border-color: rgba(255, 255, 255, 0.22);
  background-color: #1b1b1b;
  color: #fff;
}

.filters {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin: 0;
}

#clearFilters {
  align-self: center;
  min-height: 46px;
  height: 46px;
}

.filters label {
  min-width: 0;
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 900;
}

.filters select,
.check-filter {
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
}

.filters select {
  width: 100%;
  min-width: 0;
  padding: 0 11px;
}

.check-filter {
  display: flex !important;
  align-items: center;
  padding: 0 12px;
  color: var(--ink) !important;
}

.empty-state {
  padding: 24px;
  border: 1px dashed var(--line);
  border-radius: var(--radius);
  text-align: center;
}

.offer-section {
  background: #fff;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 520px);
  min-height: 620px;
  background: #111;
  color: #fff;
}

.about-image {
  min-height: 420px;
  background:
    linear-gradient(90deg, rgba(17, 17, 17, 0.18), rgba(17, 17, 17, 0.74)),
    url("https://images.unsplash.com/photo-1529139574466-a303027c1d8b?auto=format&fit=crop&w=1600&q=78") center / cover;
}

.about-copy {
  align-self: center;
  padding: 54px clamp(24px, 5vw, 74px);
}

.about-copy p {
  color: rgba(255, 255, 255, 0.72);
}

.contact-section {
  background: var(--paper);
}

.contact-page {
  width: 100%;
  max-width: none;
  background: #f7f5f0;
}

.contact-page-hero {
  position: relative;
  overflow: hidden;
  background: #111;
  color: #fff;
}

.contact-page-hero::before,
.contact-page-hero::after {
  content: "";
  position: absolute;
  width: 2px;
  height: 150%;
  background: rgba(190, 157, 60, 0.62);
  transform: rotate(24deg);
  transform-origin: top;
}

.contact-page-hero::before {
  top: -24%;
  right: 14%;
}

.contact-page-hero::after {
  top: -40%;
  right: 27%;
  background: rgba(255, 255, 255, 0.1);
}

.contact-page-hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: clamp(48px, 9vw, 130px);
  align-items: center;
  width: min(1180px, calc(100% - 48px));
  min-height: 430px;
  margin: 0 auto;
  padding: 64px 0;
}

.contact-page-hero-copy {
  max-width: 790px;
}

.contact-page-hero-copy .eyebrow {
  color: var(--accent);
}

.contact-page-hero-copy h1 {
  max-width: 880px;
  margin: 8px 0 18px;
  color: #fff;
  font-size: clamp(3rem, 6.8vw, 6.2rem);
  line-height: 0.92;
  letter-spacing: 0;
  text-transform: uppercase;
}

.contact-page-hero-copy > p:last-of-type {
  max-width: 620px;
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.08rem;
  line-height: 1.65;
}

.contact-page-hero-copy .button {
  margin-top: 28px;
}

.contact-page-brand {
  display: grid;
  gap: 8px;
  justify-items: center;
  color: #fff;
  text-align: center;
}

.contact-page-brand > span {
  display: grid;
  place-items: center;
  width: 176px;
  height: 176px;
  padding: 18px;
  border: 2px solid var(--accent);
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 0 16px rgba(255, 255, 255, 0.045);
}

.contact-page-brand img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.contact-page-brand > strong {
  margin-top: 12px;
  font-size: 0.92rem;
  text-transform: uppercase;
}

.contact-page-brand > small {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.76rem;
}

.contact-page-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.contact-page-facts > div {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 3px 14px;
  align-content: center;
  min-height: 112px;
  padding: 22px 28px;
}

.contact-page-facts > div + div {
  border-left: 1px solid var(--line);
}

.contact-page-facts span {
  grid-row: 1 / span 2;
  align-self: center;
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 1000;
}

.contact-page-facts strong {
  font-size: 0.94rem;
}

.contact-page-facts small {
  color: var(--muted);
  line-height: 1.35;
}

.contact-page-channels {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 76px 0 96px;
}

.contact-page-channels > header {
  display: flex;
  gap: 28px;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}

.contact-page-channels > header h2 {
  margin: 4px 0 0;
  font-size: clamp(2rem, 4vw, 3.7rem);
  line-height: 0.95;
  letter-spacing: 0;
  text-transform: uppercase;
}

.contact-page-channels > header > p {
  max-width: 420px;
  margin: 0;
  color: var(--muted);
  text-align: right;
}

.managed-page {
  width: min(1280px, 100%);
  margin: 0 auto;
}

.managed-page.contact-page {
  width: 100%;
  max-width: none;
}

.managed-page-heading {
  max-width: 900px;
  margin-right: auto;
  margin-left: auto;
}

.managed-page-heading > div {
  display: grid;
  justify-items: center;
}

.managed-page-copy {
  width: min(780px, 100%);
  margin: 0 auto;
  font-size: 1.03rem;
  line-height: 1.75;
}

.managed-page-copy p {
  margin: 0 0 18px;
}

.help-page {
  --help-accent: var(--accent, #b89b42);
  width: 100%;
  background: #f7f5f0;
}

.help-page-shipping {
  --help-accent: #167a5b;
}

.help-page-faq {
  --help-accent: #2b5f8f;
}

.help-page-hero {
  position: relative;
  overflow: hidden;
  background: #111;
  color: #fff;
}

.help-page-hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.2;
  filter: grayscale(1) contrast(1.08);
}

.help-page-hero::before {
  content: "";
  position: absolute;
  top: 0;
  right: clamp(24px, 8vw, 140px);
  width: 2px;
  height: 100%;
  background: color-mix(in srgb, var(--help-accent) 72%, transparent);
  transform: skewX(-18deg);
  transform-origin: top;
}

.help-page-hero::after {
  content: "";
  position: absolute;
  right: clamp(56px, 16vw, 300px);
  bottom: -80px;
  width: 220px;
  height: 220px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transform: rotate(45deg);
}

.help-page-hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: clamp(36px, 8vw, 120px);
  align-items: center;
  width: min(1180px, calc(100% - 48px));
  min-height: 420px;
  margin: 0 auto;
  padding: 64px 0;
}

.help-page-hero-copy {
  max-width: 800px;
}

.help-page-hero-copy .eyebrow {
  color: var(--help-accent);
}

.help-page-hero-copy h1 {
  max-width: 860px;
  margin: 8px 0 20px;
  font-size: clamp(3rem, 7vw, 6.4rem);
  line-height: 0.92;
  letter-spacing: 0;
  text-transform: uppercase;
}

.help-page-hero-copy > p:last-child {
  max-width: 620px;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  line-height: 1.6;
}

.help-page-hero-mark {
  display: grid;
  gap: 18px;
  justify-items: center;
  color: #fff;
  text-align: center;
}

.help-page-hero-mark > span {
  display: grid;
  place-items: center;
  width: 168px;
  height: 168px;
  border: 2px solid var(--help-accent);
  border-radius: 50%;
  box-shadow: 0 0 0 16px rgba(255, 255, 255, 0.04);
}

.help-page-hero-mark svg {
  width: 72px;
  height: 72px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.45;
}

.help-page-hero-mark strong {
  font-size: 0.76rem;
  text-transform: uppercase;
}

.help-page-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.help-page-facts > div {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  min-height: 104px;
  padding: 22px 28px;
}

.help-page-facts > div + div {
  border-left: 1px solid var(--line);
}

.help-page-facts span {
  color: var(--help-accent);
  font-size: 0.74rem;
  font-weight: 1000;
}

.help-page-facts strong {
  font-size: 0.94rem;
}

.help-page-body {
  display: grid;
  grid-template-columns: minmax(220px, 280px) minmax(0, 1fr);
  gap: clamp(42px, 7vw, 100px);
  width: min(1100px, calc(100% - 48px));
  margin: 0 auto;
  padding: 82px 0 96px;
}

.help-page-index {
  align-self: start;
  position: sticky;
  top: 100px;
  padding: 4px 30px 4px 0;
  border-right: 1px solid var(--line);
}

.help-page-index .eyebrow {
  color: var(--help-accent);
}

.help-page-index ul {
  display: grid;
  gap: 0;
  margin: 16px 0 28px;
  padding: 0;
  list-style: none;
}

.help-page-index li {
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 800;
  line-height: 1.4;
}

.help-page-index a {
  color: inherit;
}

.help-page-index a:hover {
  color: var(--ink);
}

.help-index-note {
  display: flex;
  gap: 10px;
  align-items: center;
  color: var(--muted);
  font-size: 0.76rem;
  line-height: 1.35;
}

.help-index-note svg {
  flex: 0 0 auto;
  width: 24px;
  height: 24px;
  fill: none;
  stroke: var(--help-accent);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.help-page-main {
  min-width: 0;
}

.help-content-list {
  display: grid;
  gap: 14px;
}

.help-content-section {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  gap: 24px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 34px rgba(17, 17, 17, 0.04);
  scroll-margin-top: 100px;
}

.help-content-section:first-child {
  border-top: 3px solid var(--help-accent);
}

.help-section-number {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid color-mix(in srgb, var(--help-accent) 55%, #ddd);
  border-radius: 50%;
  color: var(--help-accent);
  font-size: 0.74rem;
  font-weight: 1000;
}

.help-content-section h2 {
  margin: 2px 0 10px;
  font-size: clamp(1.25rem, 2vw, 1.7rem);
  letter-spacing: 0;
}

.help-content-section p,
.help-faq-intro {
  margin: 0;
  color: var(--muted);
  line-height: 1.72;
}

.help-faq-intro {
  margin-bottom: 24px;
  font-size: 1.02rem;
}

.help-page .managed-faq-list {
  width: 100%;
  margin: 0;
}

.help-page .managed-faq-item {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 10px 28px rgba(17, 17, 17, 0.035);
}

.help-page .managed-faq-item summary {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  min-height: 72px;
  padding: 14px 56px 14px 18px;
}

.help-page .managed-faq-item summary > span {
  color: var(--help-accent);
  font-size: 0.7rem;
}

.help-page .managed-faq-item[open] {
  border-color: color-mix(in srgb, var(--help-accent) 48%, var(--line));
}

.help-page .managed-faq-item[open] summary {
  background: color-mix(in srgb, var(--help-accent) 7%, #fff);
}

.help-page-cta {
  display: flex;
  gap: 40px;
  align-items: center;
  justify-content: space-between;
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto 72px;
  padding: 38px 42px;
  border-left: 4px solid var(--help-accent);
  background: #111;
  color: #fff;
}

.help-page-cta .eyebrow {
  color: var(--help-accent);
}

.help-page-cta h2 {
  margin: 5px 0 8px;
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  letter-spacing: 0;
}

.help-page-cta p:last-child {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
}

.help-page-cta .button {
  flex: 0 0 auto;
  min-width: 210px;
}

.managed-page-banner {
  width: 100%;
  height: clamp(300px, 42vw, 800px);
  max-height: 800px;
  margin: 0 0 36px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-right: 0;
  border-left: 0;
  border-radius: 0;
  background: var(--surface-soft);
}

.managed-page:has(> .managed-page-banner) {
  width: 100%;
  max-width: none;
}

.section > .managed-page-banner,
.managed-offers-page > .managed-offers-hero {
  width: 100%;
}

.managed-page-banner img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.managed-offers-page {
  width: 100%;
  max-width: none;
  padding-top: 0;
}

.managed-offers-hero {
  position: relative;
  width: 100%;
  height: clamp(320px, 42vw, 800px);
  max-height: 800px;
  margin: 0 0 52px;
  overflow: hidden;
  border-radius: 0;
  background: #111;
}

.managed-offers-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.34);
}

.managed-offers-hero img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.managed-offers-hero-copy {
  position: absolute;
  z-index: 1;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 24px;
  text-align: center;
}

.managed-offers-hero h1 {
  margin: 0;
  color: #fff;
  font-size: clamp(3rem, 8vw, 7.5rem);
  line-height: 0.92;
  letter-spacing: 0;
  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.28);
}

.managed-offers-empty {
  grid-column: 1 / -1;
  width: 100%;
  min-height: 180px;
  display: grid;
  place-items: center;
  margin: 0;
  border: 1px dashed var(--line);
  background: var(--surface-soft);
  color: var(--muted);
  font-weight: 700;
}

.managed-page-lead {
  color: var(--muted);
  font-size: 1.2rem;
}

.managed-page-copy .button,
.managed-page > .button {
  margin-top: 18px;
}

.managed-content-split {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(360px, 0.85fr);
  min-height: calc(100vh - 74px);
  background: #111;
  color: #fff;
}

.managed-page-media {
  min-height: 520px;
  background-image: linear-gradient(90deg, rgba(17, 17, 17, 0.08), rgba(17, 17, 17, 0.62)), var(--managed-page-image);
  background-position: center;
  background-size: cover;
}

.managed-content-panel {
  align-self: center;
  padding: 54px clamp(24px, 5vw, 76px);
}

.managed-content-panel h1 {
  margin: 0;
  font-size: clamp(2.2rem, 4.8vw, 5rem);
  line-height: 0.96;
  letter-spacing: 0;
  text-transform: uppercase;
}

.managed-content-panel .managed-page-content {
  margin-top: 22px;
}

.managed-content-panel .managed-page-copy {
  margin: 0;
}

.managed-content-panel .managed-page-copy p {
  color: rgba(255, 255, 255, 0.74);
}

.managed-faq-list {
  display: grid;
  gap: 10px;
  width: min(900px, 100%);
  margin: 28px auto 0;
}

.managed-faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.managed-faq-item summary {
  position: relative;
  padding: 18px 54px 18px 18px;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 900;
  list-style: none;
}

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

.managed-faq-item summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 18px;
  translate: 0 -50%;
  font-size: 1.45rem;
}

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

.managed-faq-item > div {
  border-top: 1px solid var(--line);
  padding: 16px 18px;
  color: var(--muted);
  line-height: 1.65;
}

.managed-faq-item > div p {
  margin: 0;
}

.managed-page-empty {
  display: grid;
  place-content: center;
  justify-items: center;
  gap: 16px;
  text-align: center;
}

.managed-page-empty h1 {
  margin: 0;
  font-size: clamp(2rem, 5vw, 4rem);
  text-transform: uppercase;
}

.social-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.social-card {
  position: relative;
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  gap: 4px 16px;
  align-items: center;
  min-height: 116px;
  padding: 22px;
  border: 1px solid var(--line);
  border-top: 3px solid var(--social-color, var(--brand));
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(17, 17, 17, 0.045);
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.social-card::after {
  content: "\2197";
  position: absolute;
  top: 16px;
  right: 18px;
  color: var(--social-color, var(--brand));
  font-size: 1.1rem;
  font-weight: 900;
}

.social-card:hover {
  border-color: color-mix(in srgb, var(--social-color) 52%, var(--line));
  box-shadow: 0 18px 38px rgba(17, 17, 17, 0.08);
  transform: translateY(-3px);
}

.social-avatar {
  display: grid;
  place-items: center;
  width: 74px;
  height: 74px;
  padding: 6px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #fff;
}

.social-avatar img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: contain;
}

.social-icon {
  display: grid;
  place-items: center;
  grid-row: 1 / span 2;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--social-color, var(--brand));
  color: #fff;
}

.social-icon svg {
  width: 29px;
  height: 29px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.social-icon .social-icon-fill {
  fill: currentColor;
  stroke: none;
}

.whatsapp-mark,
.whatsapp-mark path {
  fill: currentColor !important;
  stroke: none !important;
}

.whatsapp-mark path,
.whatsapp-icon path {
  fill-rule: evenodd;
  clip-rule: evenodd;
}

.social-card-instagram .social-icon {
  background: linear-gradient(135deg, #833ab4, #e1306c 55%, #fcb045);
}

.social-card strong {
  align-self: end;
  font-size: 1.04rem;
}

.social-card small {
  align-self: start;
  color: var(--muted);
}

.product-modal {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: none;
}

.product-modal.is-open {
  display: block;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.58);
}

.modal-card {
  position: absolute;
  inset: 24px;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.8fr);
  gap: 24px;
  overflow: auto;
  max-width: 1120px;
  margin: auto;
  padding: 22px;
  border-radius: var(--radius);
  background: var(--surface);
}

.modal-close {
  position: sticky;
  top: 0;
  z-index: 2;
  justify-self: end;
  grid-column: 1 / -1;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  cursor: pointer;
  font-size: 1.7rem;
}

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

.modal-gallery img {
  aspect-ratio: 4 / 5;
  border-radius: var(--radius);
}

.modal-info h2 {
  margin: 0 0 8px;
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1;
  text-transform: uppercase;
}

.modal-price {
  margin: 0 0 12px;
  font-size: 1.45rem;
  font-weight: 1000;
}

.quick-add-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: none;
}

.quick-add-modal.is-open {
  display: block;
}

.payment-methods-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
}

.payment-methods-modal.is-open {
  display: block;
}

.product-image-viewer {
  position: fixed;
  inset: 0;
  z-index: 110;
  display: none;
}

.product-image-viewer.is-open {
  display: block;
}

.product-image-viewer-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.82);
  backdrop-filter: blur(4px);
}

.product-image-viewer-card {
  position: absolute;
  inset: 18px;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  gap: 12px;
  max-width: 1120px;
  margin: auto;
  padding: 14px;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}

.product-image-viewer-card > header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.product-image-viewer-heading {
  display: flex;
  min-width: 0;
  align-items: baseline;
  gap: 10px;
}

.product-image-viewer-heading strong {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.product-image-viewer-heading > span {
  flex: 0 0 auto;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 850;
}

.product-image-viewer-actions,
.product-image-viewer-zoom {
  display: flex;
  align-items: center;
}

.product-image-viewer-actions {
  flex: 0 0 auto;
  gap: 8px;
}

.product-image-viewer-zoom {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #f7f5f0;
}

.product-image-viewer-zoom button {
  display: grid;
  place-items: center;
  min-width: 36px;
  height: 38px;
  border: 0;
  border-right: 1px solid var(--line);
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font: inherit;
  font-size: 1.15rem;
  font-weight: 900;
}

.product-image-viewer-zoom button:last-child {
  border-right: 0;
}

.product-image-viewer-zoom button:hover:not(:disabled),
.product-image-viewer-zoom button:focus-visible {
  background: #fff;
}

.product-image-viewer-zoom button:disabled {
  cursor: default;
  opacity: 0.35;
}

.product-image-viewer-zoom .product-image-viewer-zoom-level {
  min-width: 58px;
  font-size: 0.75rem;
}

.product-image-viewer-close {
  position: relative;
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #fff;
  color: var(--ink);
  cursor: pointer;
  transition: background 160ms ease, color 160ms ease, transform 160ms ease;
}

.product-image-viewer-close span::before,
.product-image-viewer-close span::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 17px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  content: "";
}

.product-image-viewer-close span::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.product-image-viewer-close span::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.product-image-viewer-close:hover,
.product-image-viewer-close:focus-visible {
  background: var(--ink);
  color: #fff;
  transform: scale(1.04);
}

.product-image-viewer-stage {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 0;
  overflow: hidden;
  background: #f5f2eb;
}

.product-image-viewer-stage > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  object-fit: contain;
  user-select: none;
  -webkit-user-drag: none;
  transition: transform 180ms ease;
}

.product-image-viewer-stage.is-zoomed > img {
  cursor: grab;
  touch-action: none;
}

.product-image-viewer.is-dragging .product-image-viewer-stage > img {
  cursor: grabbing;
  transition: none;
}

.product-image-viewer-nav {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  cursor: pointer;
  font-size: 1.4rem;
  font-weight: 1000;
  transform: translateY(-50%);
}

.product-image-viewer-nav.is-prev {
  left: 14px;
}

.product-image-viewer-nav.is-next {
  right: 14px;
}

.product-image-viewer-thumbs {
  display: flex;
  justify-content: center;
  gap: 8px;
  overflow-x: auto;
}

.product-image-viewer-thumbs button {
  flex: 0 0 58px;
  width: 58px;
  aspect-ratio: 4 / 5;
}

.payment-methods-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.62);
  backdrop-filter: blur(3px);
}

.payment-methods-card {
  position: absolute;
  top: 50%;
  left: 50%;
  right: auto;
  bottom: auto;
  overflow: auto;
  width: min(780px, calc(100% - 32px));
  max-height: min(760px, calc(100vh - 48px));
  margin: auto;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
  transform: translate(-50%, -50%);
}

.payment-methods-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 20px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.payment-methods-head h2,
.payment-methods-head p {
  margin: 0;
}

.payment-methods-head h2 {
  font-size: clamp(1.7rem, 4vw, 2.5rem);
  line-height: 1;
}

.payment-methods-head > div > p:last-child {
  margin-top: 6px;
  color: var(--muted);
  font-weight: 750;
}

.payment-methods-head .modal-close {
  position: static;
  flex: 0 0 auto;
}

.payment-methods-content {
  display: grid;
  gap: 14px;
}

.payment-method-card {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.payment-method-mercado {
  border-top: 3px solid #2d8bca;
}

.payment-method-cash {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 20px;
  border-top: 3px solid var(--accent);
  background: #fffaf0;
}

.payment-method-title {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.payment-method-title .mercado-pago-logo {
  width: 108px;
}

.payment-method-title > span {
  display: grid;
  gap: 2px;
}

.payment-method-title small {
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 750;
}

.payment-method-cash .payment-method-title {
  margin-bottom: 0;
}

.payment-method-cash-total {
  display: grid;
  justify-items: end;
  gap: 2px;
}

.payment-method-cash-total span,
.payment-method-cash-total small {
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 800;
}

.payment-method-cash-total strong {
  color: #167a5b;
  font-size: 1.7rem;
  line-height: 1;
}

.quick-add-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.58);
}

.quick-add-card {
  position: absolute;
  inset: 24px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  gap: 28px;
  overflow: auto;
  width: min(980px, calc(100% - 32px));
  max-height: min(720px, calc(100vh - 48px));
  margin: auto;
  padding: 28px;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}

.quick-add-close {
  position: absolute;
  top: 14px;
  right: 14px;
}

.quick-add-media {
  display: grid;
  grid-template-columns: 66px 1fr;
  gap: 12px;
  min-height: 0;
}

.quick-add-thumbs {
  display: grid;
  align-content: start;
  gap: 9px;
}

.quick-add-thumbs button {
  overflow: hidden;
  padding: 0;
  border: 2px solid transparent;
  border-radius: 6px;
  background: transparent;
  cursor: pointer;
}

.quick-add-thumbs button.is-selected {
  border-color: var(--brand);
}

.quick-add-thumbs img,
.quick-add-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.quick-add-thumbs img {
  display: block;
  aspect-ratio: 4 / 5;
}

.quick-add-main {
  overflow: hidden;
  border-radius: var(--radius);
  background: #eee;
}

.quick-add-main img {
  display: block;
  aspect-ratio: 4 / 5;
}

.quick-add-info {
  align-self: start;
  padding-right: 40px;
}

.quick-add-info h2 {
  margin: 0 0 8px;
  font-size: clamp(1.45rem, 3vw, 2.25rem);
  line-height: 1.05;
  text-transform: uppercase;
}

.quick-add-option {
  margin: 20px 0;
}

.quick-add-option strong {
  display: block;
  margin-bottom: 9px;
  font-size: 0.94rem;
}

.quick-add-option-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 9px;
}

.quick-add-option-head strong {
  margin-bottom: 0;
}

.quick-add-option-head button {
  min-height: 30px;
  padding: 0 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--brand);
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 900;
}

.quick-add-choice-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.quick-add-choice-grid button {
  min-width: 52px;
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  cursor: pointer;
  font-weight: 900;
}

.quick-add-choice-grid button.is-selected {
  border-color: var(--brand);
  background: var(--brand);
  color: #fff;
}

.quick-add-choice-grid button.is-unavailable {
  position: relative;
  opacity: 0.42;
  cursor: not-allowed;
  text-decoration: line-through;
}

.quick-add-choice-grid button.is-unavailable::after {
  content: "";
  position: absolute;
  left: 10px;
  right: 10px;
  top: 50%;
  height: 2px;
  background: currentColor;
  transform: rotate(-14deg);
  transform-origin: center;
}

.quick-add-choice-grid button.color-swatch-button {
  display: grid;
  place-items: center;
  width: 42px;
  min-width: 42px;
  height: 42px;
  min-height: 42px;
  padding: 0;
  border-radius: 50%;
  background: #fff;
}

.color-swatch-display {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #fff;
}

.quick-add-choice-grid button.color-swatch-button.is-selected {
  border-color: var(--brand);
  background: #fff;
  color: var(--ink);
  box-shadow: 0 0 0 3px rgba(184, 155, 66, 0.18);
}

.quick-add-choice-grid button.color-swatch-button.is-unavailable {
  text-decoration: none;
}

.quick-add-choice-grid button.color-swatch-button.is-unavailable::after {
  left: 7px;
  right: 7px;
  top: 50%;
  background: #111;
  transform: rotate(-38deg);
}

.color-swatch-dot {
  width: 28px;
  height: 28px;
  border: 1px solid rgba(17, 17, 17, 0.18);
  border-radius: 50%;
  background: var(--swatch-color);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.22);
}

.color-swatch-button.is-selected .color-swatch-dot {
  box-shadow: inset 0 0 0 2px #fff, 0 0 0 1px rgba(17, 17, 17, 0.2);
}

.quick-add-error {
  margin: 10px 0;
  color: #b42318;
  font-size: 0.88rem;
  font-weight: 900;
}

.quick-size-guide {
  margin: -6px 0 18px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fafafa;
}

.quick-size-guide-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.quick-size-guide-head strong {
  font-size: 1rem;
}

.quick-size-guide-head span,
.quick-size-guide p {
  color: var(--muted);
  font-size: 0.8rem;
}

.fit-scale {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.78rem;
  text-align: center;
}

.fit-scale .is-active {
  color: var(--brand);
  font-weight: 1000;
}

.product-fit-scale {
  grid-template-columns: auto 1fr;
  text-align: left;
}

.quick-size-guide table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  font-size: 0.86rem;
}

.quick-size-guide th,
.quick-size-guide td {
  padding: 9px;
  border: 1px solid var(--line);
  text-align: center;
}

.quick-size-guide th {
  background: #f1f1f1;
  font-weight: 1000;
}

.measure-guide {
  display: grid;
  grid-template-columns: 1fr 110px;
  gap: 12px;
  align-items: center;
  margin-top: 12px;
}

.measure-guide div:first-child {
  display: grid;
  gap: 7px;
}

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

.measure-sketch {
  position: relative;
  width: 88px;
  height: 118px;
  margin-left: auto;
  border: 2px solid #d4b45c;
  border-top: 0;
  border-radius: 0 0 32px 32px;
}

.measure-line {
  position: absolute;
  background: var(--brand);
}

.measure-line.horizontal {
  top: 34px;
  left: 12px;
  right: 12px;
  height: 2px;
}

.measure-line.vertical {
  top: 8px;
  right: 14px;
  bottom: 10px;
  width: 2px;
}

.option-block,
.size-table {
  margin: 18px 0;
}

.detail-choice-grid {
  margin-top: 8px;
}

.size-table table {
  width: 100%;
  margin-top: 8px;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.size-guide-details {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.size-guide-details summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 46px;
  padding: 0 14px;
  cursor: pointer;
  font-weight: 900;
  list-style: none;
}

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

.size-guide-details summary::after {
  content: "+";
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1;
}

.size-guide-details[open] summary::after {
  content: "−";
}

.size-guide-details[open] summary {
  border-bottom: 1px solid var(--line);
}

.size-guide-content {
  padding: 6px 12px 12px;
}

.size-table th,
.size-table td {
  padding: 9px;
  border: 1px solid var(--line);
  text-align: left;
}

.stock-line {
  color: var(--accent-2);
  font-weight: 1000;
}

.related-block {
  grid-column: 1 / -1;
}

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

.related-card {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 12px;
  align-items: center;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.related-card img {
  aspect-ratio: 1;
  border-radius: 6px;
}

.product-detail-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.82fr);
  gap: 34px;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 58px 0 72px;
}

.product-detail-gallery {
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr);
  gap: 12px;
  align-content: start;
  align-items: start;
}

.product-detail-media-column {
  display: grid;
  gap: 24px;
  align-content: start;
  min-width: 0;
}

.product-photo-content {
  display: grid;
  gap: 24px;
  border-top: 2px solid var(--ink);
  padding-top: 20px;
}

.product-photo-description {
  display: grid;
  gap: 8px;
}

.product-photo-description p {
  max-width: 680px;
  margin: 0;
}

.product-photo-description > p:last-child {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.65;
}

.product-specification-list {
  display: grid;
  gap: 0;
  width: 100%;
  max-width: 680px;
  margin: 18px 0 0;
  border-top: 1px solid var(--line);
}

.product-specification-list > div {
  display: grid;
  grid-template-columns: minmax(130px, 0.35fr) 1fr;
  gap: 18px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.product-specification-list dt {
  font-weight: 800;
}

.product-specification-list dd {
  margin: 0;
  color: var(--muted);
  white-space: pre-line;
}

@media (max-width: 620px) {
  .product-specification-list > div {
    grid-template-columns: 1fr;
    gap: 4px;
  }
}

.testimonial-section {
  background: #111;
  color: #fff;
}

.testimonial-section .section-head p:not(.eyebrow) {
  color: #c8c5bf;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
}

.testimonial-card {
  display: grid;
  grid-template-columns: 112px 1fr;
  min-height: 190px;
  overflow: hidden;
  border: 1px solid #343434;
  border-top: 3px solid var(--accent);
  background: #1a1a1a;
}

.testimonial-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-card > div {
  padding: 24px;
}

.testimonial-card span {
  color: var(--accent);
  font-size: 42px;
  line-height: 0.7;
}

.testimonial-card p {
  margin: 16px 0 20px;
  color: #f1f1ef;
  line-height: 1.55;
}

.testimonial-card strong {
  font-size: 13px;
  text-transform: uppercase;
}

.product-trust-strip {
  display: grid;
  gap: 10px;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
}

.product-trust-strip a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.product-trust-strip strong {
  color: var(--ink);
}

@media (max-width: 620px) {
  .testimonial-card {
    grid-template-columns: 84px 1fr;
  }
}

.product-photo-outfit {
  display: grid;
  gap: 10px;
}

.product-photo-outfit > p,
.product-photo-outfit h2 {
  margin: 0;
}

.product-photo-outfit h2 {
  font-size: 1.45rem;
  text-transform: uppercase;
}

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

.product-photo-outfit-card {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  padding: 8px;
  transition: border-color 150ms ease, transform 150ms ease;
}

.product-photo-outfit-card:hover,
.product-photo-outfit-card:focus-visible {
  border-color: var(--accent);
  transform: translateY(-2px);
}

.product-photo-outfit-card img {
  width: 72px;
  aspect-ratio: 4 / 5;
  border-radius: 4px;
  object-fit: cover;
}

.product-photo-outfit-card span {
  display: grid;
  gap: 5px;
  min-width: 0;
}

.product-photo-outfit-card strong,
.product-photo-outfit-card small {
  overflow: hidden;
  text-overflow: ellipsis;
}

.product-photo-outfit-card strong {
  font-size: 0.92rem;
  line-height: 1.25;
}

.product-photo-outfit-card small {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 800;
}

.product-gallery-thumbs-shell {
  display: grid;
  gap: 8px;
  align-content: start;
  justify-items: center;
}

.product-gallery-thumbs {
  display: grid;
  gap: 9px;
  align-content: start;
  max-height: min(500px, calc(100vh - 230px));
  overflow-y: auto;
  scrollbar-width: none;
}

.product-gallery-thumbs::-webkit-scrollbar {
  display: none;
}

.product-gallery-thumb-nav {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #fff;
  color: var(--ink);
  cursor: pointer;
  font: inherit;
  font-size: 1.15rem;
  font-weight: 900;
  transition: border-color 150ms ease, background 150ms ease, color 150ms ease;
}

.product-gallery-thumb-nav:hover,
.product-gallery-thumb-nav:focus-visible {
  border-color: var(--ink);
  background: var(--ink);
  color: #fff;
}

.product-gallery-thumbs button,
.product-image-viewer-thumbs button {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  padding: 3px;
  cursor: pointer;
}

.product-gallery-thumbs button {
  width: 82px;
  aspect-ratio: 4 / 5;
}

.product-gallery-thumbs button:hover,
.product-gallery-thumbs button:focus-visible,
.product-gallery-thumbs button.is-selected,
.product-image-viewer-thumbs button[aria-pressed="true"] {
  border-color: var(--accent);
  box-shadow: inset 0 0 0 1px var(--accent);
}

.product-gallery-thumbs img,
.product-image-viewer-thumbs img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-gallery-main {
  position: relative;
  justify-self: center;
  overflow: hidden;
  width: min(100%, 560px);
  border: 0;
  border-radius: var(--radius);
  background: #f5f2eb;
  padding: 0;
  cursor: zoom-in;
  box-shadow: var(--shadow);
}

.product-gallery-main > img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: contain;
}

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

.product-detail-gallery.is-single .product-gallery-thumbs-shell {
  display: none;
}

.product-gallery-zoom {
  position: absolute;
  right: 12px;
  bottom: 12px;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(17, 17, 17, 0.14);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  color: var(--ink);
}

.product-gallery-zoom svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-width: 2;
}

.product-detail-info {
  position: sticky;
  top: 96px;
  align-self: start;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
}

.product-detail-info h1 {
  margin: 0;
  font-size: clamp(2.4rem, 5vw, 4.8rem);
  line-height: 0.96;
  text-transform: uppercase;
}

.detail-price {
  margin-top: 18px;
}

.detail-status {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin: 20px 0;
}

.detail-status span {
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
}

.detail-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: 20px;
}

.product-related-section {
  padding-top: 36px;
  background: #fff;
}

.footer {
  position: relative;
  display: grid;
  grid-template-columns: 1.35fr 0.75fr 0.75fr auto;
  gap: 32px;
  padding: 42px max(16px, calc((100% - 1180px) / 2));
  background: #111;
  color: #fff;
}

.footer-brand {
  display: flex;
  gap: 12px;
}

@media (min-width: 981px) {
  .footer-brand {
    margin-left: 38px;
  }
}

.footer-brand p {
  max-width: 360px;
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.64);
}

.footer-logo {
  border-color: rgba(255, 255, 255, 0.22);
  background: #fff;
  color: #111;
}

.footer-links {
  display: grid;
  gap: 9px;
  align-content: start;
  color: rgba(255, 255, 255, 0.76);
}

.footer-links a {
  cursor: pointer;
}

.footer-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.footer-social-link {
  display: grid;
  place-items: center;
  width: 40px;
  min-width: 40px;
  height: 40px;
  padding: 0;
  border: 1px solid color-mix(in srgb, var(--social-color) 72%, #fff 28%);
  border-radius: 50%;
  background: var(--social-color);
  color: #fff;
  text-decoration: none;
  overflow: hidden;
  transition: transform 160ms ease, filter 160ms ease;
}

.footer-social-link::after {
  content: none;
}

.footer-social-link-instagram {
  border-color: rgba(255, 255, 255, 0.34);
  background: linear-gradient(135deg, #833ab4 0%, #e1306c 50%, #f77737 100%);
}

.footer-social-link-whatsapp {
  background: #25d366;
}

.footer-social-link-whatsapp path {
  fill: currentColor;
  stroke: none;
}

.footer-social-link-whatsapp svg {
  width: 27px;
  height: 27px;
}

.footer-social-link:hover {
  transform: translateY(-2px);
  filter: brightness(1.08);
}

.footer-social-link svg {
  display: block;
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-social-link .social-icon-fill {
  fill: currentColor;
  stroke: none;
}

.footer-fiscal {
  position: absolute;
  top: 50%;
  left: clamp(34px, 4vw, 56px);
  margin: 0;
  transform: translateY(-50%);
}

.footer-fiscal a {
  display: block;
  width: 50px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: #fff;
  line-height: 0;
}

.footer-fiscal img {
  display: block;
  width: 100%;
  height: auto;
}

.footer-bottom {
  grid-column: 1 / -1;
  margin: 0;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.86rem;
}

.footer-version {
  position: absolute;
  bottom: 14px;
  left: clamp(34px, 4vw, 56px);
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.72rem;
  font-weight: 800;
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 60;
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  border: 2px solid rgba(255, 255, 255, 0.72);
  border-radius: 50%;
  background: #22c55e;
  color: #fff;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.26);
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.whatsapp-float:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 22px 52px rgba(0, 0, 0, 0.32);
}

.whatsapp-icon {
  width: 35px;
  height: 35px;
  display: block;
  fill: currentColor;
}

.cart-float {
  position: fixed;
  right: 78px;
  top: 18px;
  z-index: 60;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.86);
  color: var(--brand);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.cart-float:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.16);
}

.cart-float span {
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  font-size: 1rem;
  font-weight: 1000;
}

.cart-float svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.2;
}

.cart-float strong {
  position: absolute;
  top: -4px;
  right: -4px;
  display: grid;
  place-items: center;
  min-width: 18px;
  height: 18px;
  padding: 0 6px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-size: 0.66rem;
}

.cart-panel {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 70;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  width: min(420px, 100%);
  padding: 22px;
  background: var(--surface);
  box-shadow: -22px 0 60px rgba(0, 0, 0, 0.22);
  transform: translateX(105%);
  transition: transform 220ms ease;
}

.favorite-float {
  position: fixed;
  right: 30px;
  top: 18px;
  z-index: 60;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.86);
  color: var(--brand);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.favorite-float:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.16);
}

.favorite-float span {
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
}

.favorite-float svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.favorite-float strong {
  position: absolute;
  top: -4px;
  right: -4px;
  display: grid;
  place-items: center;
  min-width: 18px;
  height: 18px;
  padding: 0 6px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-size: 0.66rem;
}

.favorites-panel {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  z-index: 70;
  display: grid;
  grid-template-rows: auto 1fr auto;
  width: min(420px, 100%);
  padding: 22px;
  background: var(--surface);
  box-shadow: 22px 0 60px rgba(0, 0, 0, 0.22);
  transform: translateX(-105%);
  transition: transform 220ms ease;
}

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

.favorite-button {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: var(--brand);
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease;
}

.favorite-button:hover {
  transform: scale(1.05);
}

.favorite-button svg,
.detail-favorite-button svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-linejoin: round;
  stroke-width: 2;
}

.favorite-button.is-favorite,
.detail-favorite-button.is-favorite {
  border-color: var(--brand);
  background: var(--brand);
  color: #fff;
}

.favorite-button.is-favorite svg,
.detail-favorite-button.is-favorite svg {
  fill: currentColor;
}

.detail-favorite-button {
  gap: 8px;
}

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

.cart-panel-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.cart-panel-head h2 {
  margin: 0;
  font-size: 2rem;
  text-transform: uppercase;
}

.cart-close {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  cursor: pointer;
  font-weight: 1000;
}

.cart-items {
  display: grid;
  align-content: start;
  gap: 12px;
  overflow: auto;
  padding: 16px 0;
}

.cart-item {
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 12px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.cart-item img {
  width: 76px;
  aspect-ratio: 1;
  border-radius: 6px;
  object-fit: cover;
}

.cart-item small {
  display: block;
  margin-top: 2px;
  color: var(--muted);
}

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

.cart-options label {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.cart-options span {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.cart-options select {
  width: 100%;
  min-height: 38px;
  padding: 0 9px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  color: var(--ink);
  font-size: 0.86rem;
  font-weight: 800;
}

.cart-qty {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  align-items: center;
  margin-top: 9px;
}

.cart-qty button {
  min-height: 32px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  cursor: pointer;
  font-weight: 900;
}

.cart-qty button:not(:last-child) {
  width: 32px;
}

.cart-qty button:last-child {
  padding: 0 10px;
}

.cart-qty button:disabled {
  cursor: not-allowed;
  opacity: 0.38;
}

.cart-summary {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 0;
  border-top: 1px solid var(--line);
  font-weight: 1000;
}

.cart-panel-footer {
  display: grid;
  gap: 12px;
  margin: 0 -22px -22px;
  border-top: 1px solid var(--line);
  background: #fff;
  padding: 16px 22px 22px;
  box-shadow: 0 -12px 30px rgba(16, 16, 16, 0.05);
}

.cart-price-summary {
  display: grid;
  width: 100%;
  gap: 0;
  justify-content: stretch;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  padding: 0;
}

.cart-price-summary > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 58px;
  padding: 10px 12px;
}

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

.cart-price-row > span {
  display: flex;
  align-items: center;
  gap: 9px;
  min-width: 0;
  font-size: 0.86rem;
}

.cart-price-row strong {
  flex: 0 0 auto;
  font-size: 1.08rem;
  white-space: nowrap;
}

.cart-price-row.is-cash {
  background: #f4fbf7;
}

.cart-price-row.is-cash > span {
  display: grid;
  gap: 1px;
  color: #126f54;
}

.cart-price-row.is-cash small {
  color: #608577;
  font-size: 0.65rem;
  font-weight: 900;
  text-transform: uppercase;
}

.cart-price-summary > div:last-child {
  color: #167a5b;
}

.cart-panel-footer #cartCheckout {
  min-height: 50px;
  font-size: 0.95rem;
}

.cart-empty {
  padding: 20px;
  border: 1px dashed var(--line);
  border-radius: var(--radius);
  color: var(--muted);
  text-align: center;
}

.cart-toast {
  position: fixed;
  right: 22px;
  bottom: 170px;
  z-index: 50;
  max-width: min(320px, calc(100% - 44px));
  padding: 12px 14px;
  border-radius: var(--radius);
  background: var(--brand);
  color: #fff;
  box-shadow: var(--shadow);
  font-weight: 900;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 180ms ease, transform 180ms ease;
}

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

.system-access-button {
  position: fixed;
  top: 84px;
  left: 0;
  z-index: 35;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  min-height: 42px;
  padding: 0;
  border: 1px solid var(--line);
  border-left: 0;
  border-radius: var(--radius);
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  box-shadow: 0 12px 30px rgba(17, 17, 17, 0.12);
  font-size: 0.86rem;
  font-weight: 1000;
  backdrop-filter: blur(12px);
}

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

.system-access-button:hover {
  background: var(--brand);
  color: #fff;
}

@media (max-width: 980px) {
  .extra-banner-section {
    height: clamp(250px, min(var(--extra-banner-height, 480px), 54vw), 620px);
    max-height: 620px;
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .menu-toggle {
    display: block;
  }

  .main-menu {
    position: absolute;
    top: 74px;
    right: 16px;
    left: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: var(--shadow);
  }

  .main-menu.is-open {
    display: flex;
  }

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

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

  .catalog-category-section {
    --catalog-side-column: 140px;
    grid-template-columns: var(--catalog-side-column) minmax(0, 1fr) var(--catalog-side-column);
    column-gap: 18px;
  }

  .product-listing-shell {
    --filter-side-column: 140px;
    grid-template-columns: var(--filter-side-column) minmax(0, 1fr) var(--filter-side-column);
    gap: 18px;
  }

  .catalog-top {
    width: calc(100% + var(--filter-side-column) + 18px);
  }

  .product-listing-footer {
    width: calc(100% + var(--filter-side-column) + 18px);
  }

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

  .hero-content {
    padding-top: 46px;
  }

  .split-section,
  .managed-content-split,
  .product-detail-hero,
  .modal-card,
  .quick-add-card,
  .footer {
    grid-template-columns: 1fr;
  }

  .footer {
    padding-bottom: 84px;
  }

  .footer-fiscal {
    top: auto;
    bottom: 24px;
    left: 24px;
    transform: none;
  }

  .footer-version {
    right: 24px;
    bottom: 26px;
    left: auto;
  }

  .product-detail-info {
    position: static;
  }

  .managed-page-media {
    min-height: 460px;
  }

  .help-page-hero-inner {
    grid-template-columns: minmax(0, 1fr) 210px;
    gap: 36px;
  }

  .help-page-hero-mark > span {
    width: 136px;
    height: 136px;
  }

  .help-page-body {
    grid-template-columns: 210px minmax(0, 1fr);
    gap: 42px;
  }
}

@media (max-width: 680px) {
  .contact-page-hero-inner {
    grid-template-columns: 1fr;
    gap: 34px;
    width: calc(100% - 32px);
    min-height: 0;
    padding: 54px 0 46px;
  }

  .contact-page-hero::before {
    right: 8%;
  }

  .contact-page-hero::after {
    right: 32%;
  }

  .contact-page-hero-copy h1 {
    font-size: clamp(2.45rem, 12vw, 4rem);
    overflow-wrap: anywhere;
  }

  .contact-page-brand {
    grid-template-columns: 76px minmax(0, 1fr);
    gap: 4px 16px;
    justify-items: start;
    text-align: left;
  }

  .contact-page-brand > span {
    grid-row: 1 / span 2;
    width: 72px;
    height: 72px;
    padding: 9px;
    box-shadow: 0 0 0 8px rgba(255, 255, 255, 0.045);
  }

  .contact-page-brand > strong {
    align-self: end;
    margin-top: 0;
  }

  .contact-page-brand > small {
    align-self: start;
  }

  .contact-page-facts {
    grid-template-columns: 1fr;
    width: calc(100% - 24px);
  }

  .contact-page-facts > div {
    min-height: 82px;
    padding: 16px 20px;
  }

  .contact-page-facts > div + div {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .contact-page-channels {
    width: calc(100% - 24px);
    padding: 52px 0 64px;
  }

  .contact-page-channels > header {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .contact-page-channels > header > p {
    text-align: left;
  }

  .product-image-viewer-card {
    inset: 8px;
    padding: 10px;
  }

  .product-image-viewer-card > header {
    gap: 8px;
  }

  .product-image-viewer-heading {
    display: grid;
    gap: 2px;
  }

  .product-image-viewer-zoom button {
    min-width: 32px;
    height: 36px;
  }

  .product-image-viewer-zoom .product-image-viewer-zoom-level {
    min-width: 50px;
  }

  .product-image-viewer-close {
    width: 38px;
    height: 38px;
  }

  .product-image-viewer-nav {
    width: 40px;
    height: 40px;
  }

  .payment-methods-card {
    top: 8px;
    left: 8px;
    right: 8px;
    bottom: auto;
    width: auto;
    max-height: calc(100svh - 16px);
    padding: 16px;
    transform: none;
  }

  .payment-methods-head {
    margin-bottom: 14px;
    padding-bottom: 14px;
  }

  .payment-method-card {
    padding: 14px;
  }

  .payment-method-cash {
    grid-template-columns: 1fr;
  }

  .payment-method-cash-total {
    justify-items: start;
  }

  .catalog-page {
    padding-top: 0;
  }

  .catalog-top-actions {
    align-items: stretch;
    justify-content: space-between;
  }

  .catalog-top {
    width: 100%;
  }

  .product-listing-footer {
    grid-template-columns: 1fr;
    width: 100%;
  }

  .product-pagination,
  .product-listing-footer .product-result-count {
    grid-column: 1;
  }

  .product-pagination {
    justify-self: center;
  }

  .product-sort-control {
    flex: 1;
  }

  .product-sort-control select {
    width: 100%;
    min-width: 0;
  }

  .catalog-page > .catalog-page-hero {
    width: 100%;
    min-height: 300px;
  }

  .catalog-page-hero-copy {
    width: calc(100% - 40px);
    padding: 38px 0;
  }

  .catalog-page-hero[data-text-position="left"] .catalog-page-hero-copy,
  .catalog-page-hero[data-text-position="right"] .catalog-page-hero-copy {
    justify-self: center;
    margin-right: 0;
    margin-left: 0;
    text-align: center;
  }

  .catalog-page-hero-copy h1 {
    font-size: clamp(2.6rem, 15vw, 4.5rem);
  }

  .catalog-category-section {
    display: block;
    width: calc(100% - 24px);
    padding-top: 48px;
    padding-right: 0;
    padding-left: 0;
  }
  .managed-offers-page {
    padding-top: 0;
  }

  .managed-offers-hero {
    height: clamp(260px, 58vw, 460px);
    margin-bottom: 30px;
  }

  .managed-page-banner {
    margin-bottom: 24px;
    height: clamp(260px, 58vw, 460px);
  }

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

  .product-filter-sidebar,
  .product-listing-results {
    grid-column: 1;
  }

  .product-filter-sidebar {
    position: static;
    max-height: none;
    overflow: visible;
  }

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

  .extra-banner-section {
    height: clamp(220px, min(var(--extra-banner-height, 480px), 64vw), 360px);
    max-height: 360px;
    padding-top: 16px;
    padding-bottom: 16px;
  }

  .extra-banner-content h2 {
    font-size: clamp(1.75rem, 8vw, 2.75rem);
  }

  .extra-banner-media {
    background-position: var(--extra-banner-x, 50%) clamp(0%, calc(var(--extra-banner-y, 50%) - 15%), 100%);
  }

  .nav-shell,
  .section > *,
  .hero-content {
    width: min(100% - 24px, 1180px);
  }

  .managed-page-media {
    min-height: 360px;
  }

  .managed-content-panel {
    padding: 38px 24px 54px;
  }

  .help-page-hero-inner {
    grid-template-columns: 1fr;
    gap: 30px;
    width: calc(100% - 32px);
    min-height: 500px;
    padding: 54px 0 44px;
  }

  .help-page-hero::before {
    right: 28px;
  }

  .help-page-hero::after {
    right: -110px;
  }

  .help-page-hero-copy h1 {
    font-size: clamp(2.35rem, 11.5vw, 3.8rem);
    overflow-wrap: anywhere;
  }

  .help-page-hero-mark {
    grid-template-columns: 74px minmax(0, 1fr);
    gap: 16px;
    justify-items: start;
    text-align: left;
  }

  .help-page-hero-mark > span {
    width: 72px;
    height: 72px;
    box-shadow: 0 0 0 8px rgba(255, 255, 255, 0.04);
  }

  .help-page-hero-mark svg {
    width: 34px;
    height: 34px;
  }

  .help-page-facts {
    grid-template-columns: 1fr;
    width: calc(100% - 24px);
  }

  .help-page-facts > div {
    min-height: 72px;
    padding: 16px 20px;
  }

  .help-page-facts > div + div {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .help-page-body {
    grid-template-columns: 1fr;
    gap: 32px;
    width: calc(100% - 24px);
    padding: 48px 0 58px;
  }

  .help-page-index {
    position: static;
    padding: 0 0 24px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .help-page-index ul {
    grid-template-columns: 1fr;
    margin-bottom: 18px;
  }

  .help-content-section {
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 14px;
    padding: 22px 18px;
  }

  .help-section-number {
    width: 38px;
    height: 38px;
  }

  .help-page .managed-faq-item summary {
    grid-template-columns: 30px minmax(0, 1fr);
    gap: 10px;
    padding-left: 14px;
  }

  .help-page-cta {
    align-items: stretch;
    flex-direction: column;
    gap: 24px;
    width: calc(100% - 24px);
    margin-bottom: 40px;
    padding: 28px 22px;
  }

  .help-page-cta .button {
    width: 100%;
    min-width: 0;
  }

  .brand-copy small {
    display: none;
  }

  .hero {
    min-height: 760px;
  }

  .hero-content {
    align-content: center;
    padding-top: 30px;
  }

  .hero-brand-panel {
    position: relative;
    top: auto;
    left: auto;
    width: min(46vw, 176px);
    margin-bottom: 18px;
  }

  .hero-copy {
    padding-left: 0;
  }

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

  .hero-actions,
  .section-head,
  .catalog-top {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .button,
  .section-head .button {
    width: 100%;
  }

  .icon-link-grid {
    grid-template-columns: 1fr;
    gap: 26px;
    width: min(100%, 320px);
  }

  .icon-link-item {
    flex-direction: column;
    justify-content: center;
    gap: 10px;
    min-height: 102px;
    padding: 0 12px;
    text-align: center;
  }

  .icon-link-item svg {
    width: 50px;
    height: 50px;
    padding: 10px;
    border-width: 3px;
  }

  .icon-link-item strong {
    max-width: 240px;
    text-align: center;
  }

  .section {
    padding: 62px 0;
  }

  .drop-alert {
    flex-direction: column;
  }

  .product-grid,
  .featured-grid,
  .category-grid,
  .social-grid,
  .related-grid {
    grid-template-columns: 1fr;
  }

  .catalog-category-grid {
    grid-template-columns: minmax(0, 340px);
    justify-content: center;
  }


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

  .home-featured-grid {
    --featured-card-width: min(70vw, 300px);
    --featured-visible-width: calc(var(--featured-card-width) + 56px);
    grid-template-columns: 38px minmax(0, 1fr) 38px;
    gap: 8px;
    width: min(100% - 20px, calc(var(--featured-visible-width) + 92px));
  }

  .featured-carousel-control {
    width: 38px;
    height: 38px;
  }

  .featured-carousel-viewport {
    width: min(100%, var(--featured-visible-width));
    mask-image: linear-gradient(90deg, transparent 0, #000 20px, #000 calc(100% - 20px), transparent 100%);
    -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 20px, #000 calc(100% - 20px), transparent 100%);
  }

  .catalog-panel {
    padding: 16px;
  }

  .catalog-top {
    flex-direction: row;
    align-items: flex-end;
  }

  .product-card .button {
    min-height: 48px;
  }

  .modal-card {
    inset: 10px;
    padding: 14px;
  }

  .quick-add-card {
    inset: 10px;
    width: auto;
    max-height: calc(100vh - 20px);
    padding: 14px;
  }

  .quick-add-media {
    grid-template-columns: 52px 1fr;
  }

  .quick-add-info {
    padding-right: 0;
  }

  .quick-add-option-head,
  .quick-size-guide-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .measure-guide {
    grid-template-columns: 1fr;
  }

  .measure-sketch {
    margin: 6px auto 0;
  }

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

  .related-card {
    grid-template-columns: 74px 1fr;
  }

  .whatsapp-float {
    right: 16px;
    bottom: 16px;
    width: 58px;
    height: 58px;
  }

  .cart-float {
    right: 70px;
    top: 19px;
    width: 36px;
    height: 36px;
  }

  .favorite-float {
    right: 112px;
    top: 19px;
    width: 36px;
    height: 36px;
  }

  .cart-panel {
    padding: 16px;
  }

  .cart-panel-footer {
    margin: 0 -16px -16px;
    padding: 14px 16px 16px;
  }

  .favorites-panel {
    padding: 16px;
  }

  .cart-toast {
    right: 16px;
    bottom: 154px;
  }

  .product-detail-hero {
    width: min(100% - 24px, 1180px);
    padding-top: 34px;
  }

  .product-detail-gallery {
    grid-template-columns: 64px minmax(0, 1fr);
  }

  .product-gallery-thumbs button {
    width: 64px;
  }

  .product-gallery-thumb-nav {
    width: 34px;
  }

  .product-gallery-thumb-nav.is-up {
    margin-left: 30px;
  }

  .product-detail-info {
    padding: 18px;
  }

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

  .account-layout,
  .account-auth-grid,
  .account-card-head,
  .account-form-grid,
  .checkout-layout,
  .checkout-form-grid,
  .checkout-choice-grid,
  .customer-order-card-head {
    grid-template-columns: 1fr;
  }

  .customer-order-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .customer-order-cancel {
    width: 100%;
  }

  .checkout-shipping-choices {
    grid-template-columns: 1fr;
  }

  .checkout-delivery-group-head {
    align-items: start;
    flex-direction: column;
    gap: 3px;
  }

  .checkout-delivery-group-head > small {
    text-align: left;
  }

  .checkout-delivery-options {
    grid-template-columns: 1fr;
  }

  .mercadopago-checkout-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .mercadopago-plan-field {
    grid-template-columns: 1fr;
  }

  .checkout-summary {
    position: static;
  }

  .checkout-item {
    grid-template-columns: 56px 1fr;
  }

  .checkout-item b {
    grid-column: 2;
  }

  .account-profile,
  .order-detail-card {
    grid-column: auto;
  }
}

/* Mobile polish: keep the store dense, readable and easy to operate by touch. */
@media (max-width: 680px) {
  .site-header:has(.main-menu.is-open) {
    z-index: 50;
  }

  .nav-shell {
    width: calc(100% - 16px);
    min-height: 66px;
    gap: 8px;
  }

  .free-shipping-banner-inner {
    min-height: 38px;
    font-size: 0.8rem;
  }

  .announcement-bar-message {
    padding: 0 28px;
  }

  .brand {
    gap: 8px;
  }

  .brand-logo {
    width: 46px;
    height: 46px;
  }

  .brand-copy strong {
    font-size: 0.9rem;
  }

  .main-menu {
    top: 66px;
    right: 8px;
    left: 8px;
    gap: 4px;
    padding: 10px;
  }

  .main-menu a {
    display: flex;
    align-items: center;
    min-height: 46px;
    padding: 0 12px;
    border-radius: var(--radius);
  }

  .main-menu a:active,
  .main-menu a.is-active {
    background: #f4f1eb;
  }

  .hero {
    min-height: calc(100svh - 66px);
  }

  .hero h1 {
    font-size: 2.75rem;
    line-height: 1;
  }

  .section {
    padding: 50px 0;
  }

  .section-head h2,
  .section-head h3 {
    font-size: 2rem;
    line-height: 1.05;
  }

  .product-grid,
  .featured-grid,
  .category-grid,
  .catalog-category-grid,
  .product-listing-results .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .catalog-category-grid {
    justify-content: stretch;
  }

  .product-body,
  .category-body {
    padding: 11px;
  }

  .product-body h3,
  .category-body h3 {
    font-size: 0.9rem;
    line-height: 1.25;
  }

  .product-card:not(.product-card-compact) .product-body h3 {
    min-height: 2.5em;
  }

  .product-meta {
    display: grid;
    gap: 2px;
    margin: 7px 0 9px;
    font-size: 0.76rem;
  }

  .price {
    font-size: 1rem;
  }

  .pill-list {
    gap: 5px;
  }

  .pill {
    padding: 4px 6px;
    font-size: 0.72rem;
  }

  .card-actions,
  .product-card:not(.product-card-compact) .card-actions {
    gap: 6px;
    padding-top: 10px;
  }

  .card-actions .button,
  .product-card .button {
    min-width: 0;
    min-height: 44px;
    padding: 6px 8px;
    font-size: 0.78rem;
    line-height: 1.15;
    white-space: normal;
  }

  .catalog-panel {
    width: calc(100% - 16px);
    padding: 12px;
  }

  .product-listing-shell {
    width: 100%;
    gap: 14px;
  }

  .product-filter-sidebar {
    gap: 14px;
    padding: 14px;
  }

  .catalog-top {
    align-items: stretch;
    gap: 10px;
    padding: 12px;
  }

  .catalog-top-actions {
    width: 100%;
  }

  .product-detail-hero {
    gap: 18px;
    padding-top: 22px;
    padding-bottom: 48px;
  }

  .product-detail-info h1 {
    font-size: 2rem;
    line-height: 1.02;
  }

  .product-photo-content {
    gap: 18px;
    padding-top: 16px;
  }

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

  .product-detail-info,
  .account-card,
  .checkout-form,
  .checkout-summary,
  .checkout-success {
    padding: 16px;
  }

  .size-table,
  .quick-size-guide {
    overflow-x: auto;
  }

  .size-table table,
  .quick-size-guide table {
    min-width: 480px;
  }

  .quick-add-card {
    inset: 8px;
    gap: 18px;
    width: auto;
    max-height: calc(100svh - 16px);
    padding: 16px;
  }

  .quick-add-main {
    max-height: 42svh;
  }

  .quick-add-main img {
    max-height: 42svh;
    object-fit: contain;
  }

  .quick-add-info h2,
  .modal-info h2 {
    font-size: 1.7rem;
  }

  .footer {
    gap: 24px;
    padding: 36px 20px 28px;
  }

  .footer-brand {
    display: grid;
    grid-template-columns: 52px minmax(0, 1fr);
  }

  .footer-fiscal {
    position: static;
    grid-column: 1 / -1;
    margin-top: 4px;
    transform: none;
  }

  .footer-version {
    position: static;
    grid-column: 1 / -1;
    justify-self: end;
  }

  .footer-fiscal a {
    width: 58px;
  }

}

@media (max-width: 390px) {
  .mercado-payment-options-grid {
    gap: 5px;
  }

  .mercado-payment-option {
    min-height: 42px;
    padding-inline: 8px;
  }

  .commerce-prices .mercado-payment-option strong {
    font-size: 0.82rem;
  }

  .commerce-prices.is-card > span {
    gap: 4px;
    padding: 2px 0;
  }

  .commerce-prices.is-card small {
    font-size: 0.58rem;
  }

  .commerce-prices.is-card strong {
    font-size: 0.8rem;
  }

  .commerce-prices.is-card .commerce-price-cash strong {
    font-size: 1.08rem;
  }

  .brand-copy strong {
    font-size: 0.82rem;
  }

  .product-grid,
  .featured-grid,
  .category-grid,
  .catalog-category-grid,
  .product-listing-results .product-grid {
    gap: 9px;
  }

  .product-body,
  .category-body {
    padding: 9px;
  }

  .product-body h3,
  .category-body h3 {
    font-size: 0.84rem;
  }

  .card-actions .button,
  .product-card .button {
    font-size: 0.74rem;
  }

  .account-view-tab {
    padding-inline: 8px;
    font-size: 0.9rem;
  }

  .checkout-coupon > div {
    grid-template-columns: 1fr;
  }
}

/* Suggestions module */
.suggestion-section {
  padding: clamp(48px, 7vw, 96px) max(24px, calc((100vw - 1280px) / 2));
  background: #111;
  color: #fff;
  overflow: hidden;
}

.suggestion-shell {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(440px, 1.18fr);
  gap: clamp(44px, 7vw, 104px);
  align-items: center;
}

.suggestion-shell::before {
  content: "";
  position: absolute;
  inset: -80px auto -80px 42%;
  width: 1px;
  background: linear-gradient(transparent, rgba(184, 155, 66, .7), transparent);
}

.suggestion-copy {
  position: relative;
  z-index: 1;
}

.suggestion-copy .eyebrow {
  color: #c6a747;
}

.suggestion-copy h2 {
  max-width: 650px;
  margin: 10px 0 18px;
  color: #fff;
  font-size: clamp(38px, 5.2vw, 76px);
  line-height: .94;
  text-wrap: balance;
}

.suggestion-intro {
  max-width: 560px;
  margin: 0;
  color: rgba(255, 255, 255, .7);
  font-size: 17px;
  line-height: 1.65;
}

.suggestion-quote {
  display: flex;
  align-items: center;
  gap: 14px;
  max-width: 450px;
  margin-top: 34px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, .14);
  color: rgba(255, 255, 255, .82);
  font-weight: 700;
}

.suggestion-quote svg {
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  fill: #c6a747;
}

.suggestion-form {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 20px;
  padding: clamp(24px, 4vw, 44px);
  border: 1px solid rgba(255, 255, 255, .13);
  border-top: 3px solid #c6a747;
  border-radius: 8px;
  background: #fff;
  color: #111;
  box-shadow: 0 28px 70px rgba(0, 0, 0, .28);
}

.suggestion-prompt,
.suggestion-message > span {
  display: block;
  margin-bottom: 10px;
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
}

.suggestion-message textarea {
  width: 100%;
  min-height: 146px;
  resize: vertical;
  padding: 16px;
  border: 1px solid #d8d3c9;
  border-radius: 6px;
  background: #fbfaf7;
  color: #111;
  font: inherit;
  line-height: 1.5;
}

.suggestion-message textarea:focus {
  border-color: #b89b42;
  outline: 3px solid rgba(184, 155, 66, .14);
}

.suggestion-honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.suggestion-submit {
  display: flex;
  width: 100%;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 1px solid #c6a747;
  border-radius: 5px;
  background: #c6a747;
  color: #111;
  font-weight: 900;
}

.suggestion-submit svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.suggestion-submit:hover {
  background: #111;
  color: #fff;
}

.suggestion-submit:disabled {
  cursor: wait;
  opacity: .65;
}

.suggestion-status {
  min-height: 22px;
  margin: -6px 0 0;
  font-size: 13px;
  font-weight: 800;
}

.suggestion-form.is-success .suggestion-status {
  color: #147a57;
}

.suggestion-form.is-error .suggestion-status {
  color: #b42318;
}

@media (max-width: 820px) {
  .suggestion-section {
    padding: 52px 18px;
  }

  .suggestion-shell {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .suggestion-shell::before {
    display: none;
  }

  .suggestion-copy h2 {
    font-size: clamp(38px, 12vw, 58px);
  }

  .suggestion-quote {
    margin-top: 24px;
  }

  .suggestion-form {
    padding: 22px 18px;
  }
}
