:root {
  --black: #050505;
  --black-soft: #111111;
  --gold: #f3c96b;
  --red: #d63819;
  --red-dark: #a72413;
  --cream: #f8f1e7;
  --beige: #c9aa83;
  --white: #ffffff;
  --ink: #241812;
  --muted: #715f50;
  --line: rgba(243, 201, 107, 0.22);
  --radius: 8px;
  --max: 1180px;
}

/* Checkout Shopify-style visual pass: only layout/markup styling, payment logic stays in checkout.js. */
.checkout-body {
  --checkout-bg: #fbf4e8;
  --checkout-panel: rgba(255, 253, 248, .96);
  --checkout-ink: #20160f;
  --checkout-muted: #74665b;
  --checkout-gold: #c98c2e;
  --checkout-border: rgba(72, 48, 28, .14);
  background: linear-gradient(90deg, #fffaf4 0%, #fffaf4 67%, #f2dfbf 67%, #f2dfbf 100%);
}

.checkout-body .checkout-header {
  min-height: 74px;
  display: flex;
  justify-content: space-between;
  padding: 0 clamp(24px, 5vw, 76px);
  background: rgba(255, 253, 248, .94);
}

.checkout-body .active-brand-badge {
  display: none;
}

.checkout-whatsapp-link {
  font-size: 15px;
}

.checkout-shell {
  width: min(1620px, calc(100% - 36px));
  padding-top: 26px;
  grid-template-columns: minmax(0, 1fr) 430px;
  gap: clamp(28px, 5vw, 74px);
}

.checkout-progress {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  max-width: 880px;
  margin: 0 0 24px 56px;
  padding: 0;
  gap: 18px;
}

.checkout-progress li {
  gap: 12px;
  white-space: nowrap;
}

.checkout-progress li::after {
  left: 48px;
  right: -4px;
}

.checkout-step-card {
  border-radius: 20px;
  padding: 26px;
  background: var(--checkout-panel);
}

.checkout-step-title {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.step-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  background: linear-gradient(135deg, #dba64b, #b97719);
  color: #fff;
  font-weight: 900;
}

.checkout-step-title h2 {
  line-height: 1.05;
}

.checkout-step-title p {
  font-size: 14px;
}

.checkout-form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.checkout-form .form-row {
  gap: 12px;
}

.checkout-form .compact-row {
  grid-template-columns: .75fr 1fr .8fr .9fr;
}

.checkout-field {
  min-height: 58px;
  border-radius: 9px;
  background: #fff;
}

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

.shipping-option {
  min-height: 96px;
  grid-template-columns: 24px 34px 1fr auto;
  border-radius: 12px;
  background: #fff;
  cursor: pointer;
}

.shipping-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.radio-dot {
  width: 17px;
  height: 17px;
  border-radius: 50%;
  border: 2px solid #c9bba8;
  display: grid;
  place-items: center;
}

.shipping-option.is-selected .radio-dot {
  border-color: #9a651d;
}

.shipping-option.is-selected .radio-dot::after {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #9a651d;
}

.ship-icon {
  width: 34px;
  height: 34px;
  border-radius: 8px;
}

.ship-copy strong {
  display: block;
  font-size: 14px;
  margin-bottom: 4px;
}

.ship-copy small {
  font-size: 12px;
}

.ship-price {
  align-self: end;
  white-space: nowrap;
}

.secure-pill {
  display: inline-flex;
  align-items: center;
  margin-left: 10px;
  padding: 4px 10px;
  border: 1px solid rgba(201, 140, 46, .2);
  border-radius: 999px;
  background: #f7ead0;
  color: #9a651d;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  font-weight: 800;
  vertical-align: middle;
}

.stripe-payment-overview {
  border: 0;
  padding: 0;
  background: transparent;
}

.stripe-payment-heading {
  display: none;
}

.payment-badges {
  justify-content: flex-start;
  gap: 12px;
  margin: 18px 0 14px;
}

.payment-badges .payment-badge {
  min-width: 86px;
  min-height: 42px;
  justify-content: center;
  padding: 0 12px;
  border-radius: 8px;
  font-size: .78rem;
  text-transform: none;
}

.payment-badge.visa { color: #123a9f; font-style: italic; }
.payment-badge.mastercard { color: #e43d30; }
.payment-badge.maestro { color: #273f9e; }
.payment-badge.amex { color: #fff; background: #2f86c7; border-color: #2f86c7; }
.payment-badge.link { color: #00a65a; }
.payment-badge.klarna { color: #101010; background: #ffd5e4; border-color: #ffc0d5; }

.paypal-disabled-row {
  justify-content: flex-start;
  min-height: 44px;
  margin-bottom: 14px;
  background: #fffaf2;
}

.paypal-mark {
  color: #006bb7;
  font-size: 22px;
  letter-spacing: -.05em;
}

.checkout-pay-button {
  min-height: 54px;
  border-radius: 8px;
  background: linear-gradient(135deg, #d59a34, #ad6e16);
  color: #fff;
  box-shadow: 0 15px 30px rgba(177, 112, 22, .22);
  font-size: 18px;
  justify-content: center;
}

.checkout-shell .summary-card {
  border-radius: 18px;
  padding: 28px;
  box-shadow: 0 22px 70px rgba(40, 28, 15, .10);
}

.summary-product {
  grid-template-columns: 94px 1fr auto;
  align-items: center;
}

.summary-image {
  width: 94px;
  height: 94px;
  aspect-ratio: auto;
  border-radius: 10px;
}

.qty-badge {
  right: -5px;
  top: -6px;
}

.summary-info h3 {
  text-transform: uppercase;
}

.summary-return-box.trust-panel {
  margin-top: 20px;
  padding: 18px;
  display: grid;
  gap: 18px;
  border-radius: 12px;
  background: #fff7e8;
}

.summary-return-box .trust-item {
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: 12px;
}

.summary-return-box .trust-item > span {
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(201, 140, 46, .35);
  color: #9a651d;
  font-weight: 900;
}

.privacy-note {
  margin: 22px 0 0;
  color: var(--checkout-muted);
  font-size: 13px;
  text-align: center;
}

@media (max-width: 1100px) {
  .checkout-body {
    background: #fffaf4;
  }

  .checkout-shell {
    grid-template-columns: 1fr;
  }

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

  .checkout-progress {
    margin-left: 0;
    overflow-x: auto;
  }
}

@media (max-width: 760px) {
  .checkout-body .checkout-header {
    padding: 18px;
    flex-wrap: wrap;
    gap: 10px;
  }

  .checkout-progress {
    grid-template-columns: repeat(4, minmax(130px, 1fr));
  }

  .checkout-form .form-row,
  .checkout-form .compact-row,
  .shipping-options {
    grid-template-columns: 1fr;
  }

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

  .summary-product > strong {
    grid-column: 2;
  }
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--cream);
  background: var(--black);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.55;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
h1, h2, h3, p { margin-top: 0; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 18px clamp(18px, 4vw, 56px);
  background: rgba(5, 5, 5, 0.9);
  border-bottom: 1px solid rgba(248, 241, 231, 0.08);
  backdrop-filter: blur(18px);
}
.brand-logo {
  font-size: 1.25rem;
  font-weight: 800;
  white-space: nowrap;
}
.brand-logo span { color: var(--gold); }
.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: rgba(248, 241, 231, 0.82);
  font-size: 0.95rem;
}
.site-nav a:hover { color: var(--gold); }
.header-cta { color: var(--gold); font-weight: 700; font-size: 0.95rem; }
.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 10px;
  border: 1px solid rgba(248, 241, 231, 0.18);
  border-radius: var(--radius);
  background: transparent;
}
.menu-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--cream);
}

.hero, .brand-hero, .product-detail {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
}
.hero {
  min-height: calc(100vh - 78px);
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  align-items: center;
  gap: clamp(30px, 5vw, 70px);
  padding: 58px 0 70px;
}
.kicker {
  margin: 0 0 12px;
  color: var(--gold);
  text-transform: uppercase;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}
.hero h1, .brand-hero h1 {
  margin-bottom: 20px;
  font-size: clamp(3rem, 8vw, 7.2rem);
  line-height: 0.95;
}
.section h2, .final-cta h2 {
  margin-bottom: 14px;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1.03;
}
h3 { margin-bottom: 10px; font-size: 1.28rem; line-height: 1.2; }
.hero-text {
  font-size: clamp(1.08rem, 2vw, 1.35rem);
  color: rgba(248, 241, 231, 0.82);
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  font-weight: 800;
  cursor: pointer;
}
.btn-primary {
  background: linear-gradient(135deg, var(--gold), #f7a847 46%, var(--red));
  color: var(--black);
}
.btn-secondary {
  border-color: rgba(243, 201, 107, 0.35);
  color: var(--cream);
  background: rgba(248, 241, 231, 0.06);
}
.btn-small {
  min-height: 40px;
  padding: 10px 14px;
  background: var(--ink);
  color: var(--gold);
}
.btn.full { width: 100%; }

.hero-visual {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border-radius: var(--radius);
  background: linear-gradient(150deg, #2b130b, #111111 48%, #7d1d11);
  border: 1px solid var(--line);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.32);
}
.hero-visual img { width: 100%; height: 100%; min-height: 520px; object-fit: cover; }
.visual-fallback, .placeholder-art {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 24px;
  text-align: center;
  background: linear-gradient(145deg, #2c120c, #0b0b0b 55%, #a72413);
}
.hero-visual img:not(.is-hidden) + .visual-fallback { display: none; }
.placeholder-art { display: none; }
.image-missing img { display: none; }
.image-missing .placeholder-art { display: grid; }

.section { padding: clamp(64px, 9vw, 110px) clamp(18px, 4vw, 56px); }
.section > * { width: min(var(--max), 100%); margin-left: auto; margin-right: auto; }
.section-cream { color: var(--ink); background: var(--cream); }
.section-dark { color: var(--cream); background: linear-gradient(180deg, var(--black), var(--black-soft)); }
.section-warm { color: var(--cream); background: linear-gradient(135deg, var(--red-dark), #3c140d 50%, var(--black)); }
.section-heading { max-width: 780px; margin-bottom: 34px; }
.centered { text-align: center; }
.section-cream .kicker { color: var(--red); }
.section-cream .section-heading p { color: var(--muted); }

.brand-grid, .product-grid, .steps-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.brand-card, .product-card, .step-card, .trust-box {
  border-radius: var(--radius);
  border: 1px solid rgba(36, 24, 18, 0.12);
  background: var(--white);
  color: var(--ink);
  overflow: hidden;
}
.section-dark .product-card {
  border-color: var(--line);
  background: #17110e;
  color: var(--cream);
}
.media-wrap {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: linear-gradient(135deg, #2a1009, #111, #7e2113);
}
.media-wrap img { width: 100%; height: 100%; object-fit: cover; }
.card-body { padding: 18px; }
.card-body p { color: inherit; opacity: 0.78; }
.card-label {
  margin-bottom: 8px;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}
.section-dark .card-label { color: var(--gold); }
.text-link { display: inline-block; margin-top: 8px; color: var(--red); font-weight: 800; }
.price-row { display: flex; align-items: baseline; gap: 10px; margin: 12px 0 16px; }
.price-row strong { font-size: 1.35rem; color: var(--gold); }
.price-row span { color: var(--muted); text-decoration: line-through; }
.chips { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; }
.chip {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(248, 241, 231, 0.24);
  background: rgba(248, 241, 231, 0.08);
  color: var(--cream);
  font-weight: 700;
}
.step-card { padding: 22px; }
.step-card span {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-bottom: 16px;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  font-weight: 900;
}
.final-cta {
  width: min(var(--max), calc(100% - 36px));
  margin: 70px auto;
  padding: clamp(36px, 7vw, 78px);
  border-radius: var(--radius);
  background: linear-gradient(135deg, #2a110b, var(--black-soft) 55%, var(--red-dark));
  border: 1px solid var(--line);
}
.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 34px clamp(18px, 4vw, 56px);
  border-top: 1px solid rgba(248, 241, 231, 0.1);
  color: rgba(248, 241, 231, 0.74);
}
.site-footer nav { display: flex; flex-wrap: wrap; gap: 18px; }
.site-footer a { cursor: pointer; }

.brand-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
  gap: clamp(28px, 5vw, 62px);
  align-items: center;
  padding: 72px 0;
}
.brand-hero h1, .product-detail h1 { font-size: clamp(2.7rem, 6vw, 5.6rem); }
.brand-visual, .brand-visual img { min-height: 420px; }
.product-detail {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  padding: 70px 0;
}
.product-gallery .media-wrap {
  aspect-ratio: 1 / 1;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.32);
}
.product-info {
  padding: clamp(24px, 4vw, 44px);
  border-radius: var(--radius);
  background: var(--cream);
  color: var(--ink);
}
.product-info .hero-text { color: var(--muted); }
.product-info .price-row strong { color: var(--red-dark); font-size: 2rem; }
.benefit-list { padding-left: 0; list-style: none; }
.benefit-list li { position: relative; margin: 10px 0; padding-left: 28px; }
.benefit-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--red);
}
.trust-box { padding: 16px; margin: 20px 0; background: #fff9ef; }

/* Checkout: single source of truth */
.checkout-body {
  --checkout-bg: #fbf7ef;
  --checkout-panel: #ffffff;
  --checkout-ink: #241812;
  --checkout-muted: #715f50;
  --checkout-gold: #c58a2a;
  --checkout-gold-soft: #f3c96b;
  --checkout-border: rgba(36, 24, 18, 0.12);
  --checkout-shadow: 0 22px 60px rgba(114, 77, 38, 0.11);
  min-height: 100vh;
  color: var(--checkout-ink);
  background: linear-gradient(90deg, #fff 0%, #fff 66.5%, var(--checkout-bg) 66.5%, var(--checkout-bg) 100%);
}
.checkout-body .checkout-header {
  width: min(1470px, calc(100% - 64px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: start;
  column-gap: 24px;
  padding: 26px 0 18px;
}
.checkout-header-brand .brand-logo {
  display: inline-block;
  color: #050505;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.25rem, 5vw, 4.9rem);
  font-weight: 500;
  letter-spacing: -0.07em;
  line-height: 0.82;
}
.checkout-header-brand .brand-logo span { color: var(--checkout-gold); }
.checkout-header-brand small { display: none; }
.checkout-header-actions { display: contents; }
.active-brand-badge {
  grid-column: 2;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 10px 18px;
  border: 1px solid rgba(197, 138, 42, 0.26);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
  color: #17110c;
  box-shadow: 0 10px 26px rgba(114, 77, 38, 0.05);
  font-size: 0.98rem;
  font-weight: 900;
}
.active-brand-badge::before {
  content: "";
  width: 15px;
  height: 15px;
  margin-right: 10px;
  background: var(--checkout-gold);
  clip-path: polygon(50% 0%, 62% 34%, 100% 50%, 62% 66%, 50% 100%, 38% 66%, 0% 50%, 38% 34%);
}
.checkout-safe-badge {
  grid-column: 3;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  color: #3f3731;
  font-size: 0.93rem;
  font-weight: 800;
}
.checkout-safe-badge::before {
  content: "";
  width: 15px;
  height: 13px;
  border: 2px solid #3f3731;
  border-radius: 3px;
  box-shadow: 0 -7px 0 -3px #fff, 0 -8px 0 -2px #3f3731;
}
.checkout-shell {
  width: min(1470px, calc(100% - 64px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 930px) 428px;
  gap: clamp(44px, 6vw, 94px);
  align-items: start;
  padding: 6px 0 48px;
}
.checkout-form-panel { order: 1; padding: 0; border: 0; background: transparent; box-shadow: none; }
.checkout-shell .order-summary { order: 2; position: sticky; top: 28px; }

.checkout-progress {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 2px 46px 28px;
  margin: 0;
  list-style: none;
}
.checkout-progress li {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 10px;
  color: var(--checkout-muted);
  text-align: center;
}
.checkout-progress li::after {
  content: "";
  position: absolute;
  top: 18px;
  left: calc(50% + 23px);
  width: calc(100% - 46px);
  height: 1px;
  background: #ded5cc;
}
.checkout-progress li:last-child::after { display: none; }
.checkout-progress span {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid #d8cec5;
  border-radius: 50%;
  background: #fff;
  color: #7e736a;
  font-weight: 800;
}
.checkout-progress .is-active span {
  border-color: var(--checkout-gold);
  background: linear-gradient(180deg, #dda53f, #bf7e19);
  color: #fff;
}
.checkout-progress strong { color: #71665f; font-size: 0.93rem; font-weight: 500; }
.checkout-progress .is-active strong { color: #101010; font-weight: 900; }

.checkout-step-card {
  padding: 0;
  margin: 0 0 20px;
  border: 0;
  background: transparent;
  box-shadow: none;
}
.checkout-step-title { margin: 0 0 10px; }
.checkout-step-title h2 {
  margin: 0 0 2px;
  color: #101010;
  font-size: 1.18rem;
  font-weight: 950;
  letter-spacing: 0.01em;
  line-height: 1.15;
  text-transform: uppercase;
}
.checkout-step-title p { margin: 0; color: var(--checkout-muted); font-size: 0.95rem; }
.checkout-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.checkout-field {
  position: relative;
  display: block;
  margin: 0 0 10px;
  color: var(--checkout-muted);
  font-weight: 700;
}
.checkout-field span {
  position: absolute;
  z-index: 2;
  top: 9px;
  left: 16px;
  color: #837970;
  font-size: 0.76rem;
  line-height: 1;
}
.checkout-field input, .checkout-field textarea, .discount-row input {
  width: 100%;
  min-height: 52px;
  padding: 22px 42px 8px 16px;
  border: 1px solid #ddd2c8;
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.94);
  color: #060606;
  font-size: 0.99rem;
  font-weight: 500;
}
.checkout-field textarea { min-height: 76px; resize: vertical; }
.checkout-field input:focus, .checkout-field textarea:focus, .discount-row input:focus {
  outline: 2px solid rgba(197, 138, 42, 0.16);
  border-color: var(--checkout-gold);
}
.checkout-field.has-valid-mark:has(input:valid)::after {
  content: "";
  position: absolute;
  right: 18px;
  top: 22px;
  width: 8px;
  height: 14px;
  border: solid #00a23a;
  border-width: 0 3px 3px 0;
  transform: rotate(45deg);
}
.address-field i {
  position: absolute;
  right: 17px;
  top: 20px;
  width: 15px;
  height: 15px;
  border: 2px solid #6c625b;
  border-radius: 50%;
}
.address-field i::after {
  content: "";
  position: absolute;
  right: -7px;
  bottom: -6px;
  width: 8px;
  height: 2px;
  background: #6c625b;
  transform: rotate(45deg);
}
.address-field.has-valid-mark:has(input:valid)::after { display: none; }
.select-like::after {
  content: "";
  position: absolute;
  right: 18px;
  top: 24px;
  width: 8px;
  height: 8px;
  border-right: 2px solid #111;
  border-bottom: 2px solid #111;
  transform: rotate(45deg);
}
.save-address {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 2px 0 14px;
  color: #71665f;
  font-size: 0.92rem;
  font-weight: 500;
}
.save-address input { width: 16px; height: 16px; accent-color: var(--checkout-gold); }

.shipping-options { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.shipping-option, .checkout-body .payment-option {
  display: grid;
  align-items: center;
  min-height: 60px;
  margin: 0;
  border: 1px solid #ddd2c8;
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.88);
  color: #111;
  cursor: pointer;
}
.shipping-option {
  grid-template-columns: auto 28px 1fr auto;
  gap: 12px;
  padding: 12px 14px;
}
.shipping-option.is-selected { border-color: var(--checkout-gold); }
.shipping-option input, .checkout-body .payment-option input {
  width: 17px;
  height: 17px;
  accent-color: var(--checkout-gold);
}
.shipping-icon { display: block; position: relative; width: 24px; height: 22px; }
.shipping-standard .shipping-icon::before, .shipping-express .shipping-icon::before {
  content: "";
  position: absolute;
  inset: 4px 2px;
  border: 2px solid #111;
  border-radius: 3px;
}
.shipping-standard .shipping-icon::after {
  content: "";
  position: absolute;
  left: 7px;
  top: 2px;
  width: 10px;
  height: 10px;
  border-left: 2px solid #111;
  border-bottom: 2px solid #111;
  transform: rotate(-45deg);
}
.shipping-express .shipping-icon::before { inset: 7px 1px 5px 1px; }
.shipping-express .shipping-icon::after {
  content: "";
  position: absolute;
  right: -2px;
  top: 9px;
  width: 8px;
  height: 7px;
  border: 2px solid #111;
  border-left: 0;
}
.shipping-option strong, .checkout-body .payment-option span {
  color: #111;
  font-size: 0.95rem;
  font-weight: 800;
}
.shipping-option small { color: #71665f; font-size: 0.85rem; }
.shipping-option b { color: #111; font-size: 0.88rem; }

.payment-options { display: grid; gap: 0; list-style: none; }
.payment-options::before, .payment-options::after,
.checkout-body .payment-option::before, .checkout-body .payment-option::after {
  content: none !important;
  display: none !important;
}
.checkout-body .payment-option {
  grid-template-columns: auto 1fr auto;
  gap: 12px;
  min-height: 44px;
  padding: 9px 14px;
  border-radius: 0;
  border-bottom: 0;
}
.checkout-body .payment-option:first-child { border-radius: 7px 7px 0 0; }
.checkout-body .payment-option:last-child { border-bottom: 1px solid #ddd2c8; border-radius: 0 0 7px 7px; }
.checkout-body .payment-option:has(input:checked) { border-color: var(--checkout-gold); }
.method-badges {
  display: flex !important;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 5px;
  max-width: 360px;
}
.method-badges b, .method-logo, .payment-badges span {
  display: inline-flex;
  align-items: center;
  min-height: 23px;
  padding: 3px 6px;
  border: 1px solid #ded5cc;
  border-radius: 4px;
  background: #fff;
  color: #0a4abf;
  font-size: 0.7rem;
  font-weight: 950;
  line-height: 1;
  white-space: nowrap;
}
.paypal-logo { border-color: transparent; color: #0066c8; font-size: 1.02rem; font-style: italic; }
.satispay-logo { border-color: transparent; color: #ef1d24; font-size: 0.98rem; }

.checkout-pay-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 58px;
  margin-top: 16px;
  padding: 16px 30px;
  border: 0;
  border-radius: 5px;
  background: linear-gradient(180deg, #15110d, #050505);
  color: #f2c875;
  box-shadow: 0 15px 28px rgba(5, 5, 5, 0.2);
  font-size: 1.08rem;
  font-weight: 950;
  cursor: pointer;
}
.checkout-pay-button span { flex: 1; text-align: center; }
.checkout-pay-button strong { min-width: 112px; text-align: right; }
.checkout-pay-button:disabled { opacity: 0.62; cursor: wait; }
.secure-note {
  position: relative;
  margin: 12px 0 20px;
  color: #71665f;
  text-align: center;
  font-size: 0.95rem;
  font-weight: 500;
}
.secure-note::before {
  content: "";
  display: inline-block;
  width: 12px;
  height: 14px;
  margin-right: 8px;
  vertical-align: -2px;
  border: 2px solid var(--checkout-gold);
  border-radius: 3px;
}
.form-message {
  margin: 0 0 14px;
  min-height: 22px;
  color: #71665f;
  text-align: center;
  font-weight: 900;
}
.form-message.error { color: var(--red-dark); }
.checkout-bottom-trust {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding-top: 8px;
}
.checkout-bottom-trust div {
  display: grid;
  grid-template-columns: 28px 1fr;
  column-gap: 10px;
  align-items: start;
}
.checkout-bottom-trust span {
  grid-row: span 2;
  width: 24px;
  height: 24px;
  border: 2px solid var(--checkout-gold);
  border-radius: 50%;
}
.checkout-bottom-trust strong { color: #2b211b; font-size: 0.88rem; }
.checkout-bottom-trust small { color: #71665f; font-size: 0.82rem; }

.checkout-shell .summary-card, .trust-panel {
  border: 1px solid #ecdcca;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--checkout-shadow);
}
.checkout-shell .summary-card { padding: 28px 22px 24px; }
.summary-eyebrow {
  margin: 0 0 22px;
  color: #15110d;
  font-size: 1.13rem;
  font-weight: 950;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.summary-product {
  display: grid;
  grid-template-columns: 108px minmax(0, 1fr) auto;
  gap: 16px;
  align-items: start;
}
.summary-image {
  position: relative;
  width: 108px;
  aspect-ratio: 1 / 1;
  margin: 0;
  border-radius: 7px;
  overflow: visible;
  background: linear-gradient(135deg, #f5e4cb, #d5ab73);
}
.summary-image img { width: 100%; height: 100%; border-radius: 7px; object-fit: cover; }
.quantity-badge {
  position: absolute;
  right: -8px;
  top: -8px;
  display: grid;
  place-items: center;
  width: 27px;
  height: 27px;
  border-radius: 50%;
  background: #050505;
  color: #fff;
  font-size: 0.78rem;
  font-weight: 950;
}
.summary-product h3 { margin: 5px 0 5px; color: #101010; font-size: 0.98rem; line-height: 1.35; }
.summary-product small { display: block; margin-bottom: 8px; color: #71665f; font-size: 0.84rem; line-height: 1.3; }
.summary-product p { margin: 0; color: var(--checkout-gold); font-size: 0.95rem; font-weight: 800; }
.summary-product > strong { padding-top: 54px; color: #111; white-space: nowrap; font-size: 0.95rem; }
.summary-divider { height: 1px; margin: 22px 0 17px; background: #e7d8c8; }
.summary-brand-line {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 18px;
  color: #15110d;
  font-size: 0.95rem;
}
.summary-brand-line strong { color: var(--checkout-gold); font-weight: 500; }
.summary-brand-line span {
  width: 11px;
  height: 11px;
  background: var(--checkout-gold);
  clip-path: polygon(50% 0%, 62% 34%, 100% 50%, 62% 66%, 50% 100%, 38% 66%, 0% 50%, 38% 34%);
}
.checkout-shell .summary-line {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 7px 0;
  border: 0;
  color: #15110d;
  font-size: 0.95rem;
}
.checkout-shell .summary-line span { color: #15110d; }
.discount-row { margin: 17px 0 20px; }
.discount-row div { display: grid; grid-template-columns: 1fr 100px; gap: 16px; }
.discount-row input { min-height: 52px; padding: 0 16px; }
.discount-row button {
  min-height: 52px;
  border: 1px solid #d99d47;
  border-radius: 7px;
  background: #fff;
  color: #a86410;
  font-size: 0.95rem;
  font-weight: 950;
  cursor: pointer;
}
.checkout-shell .summary-line.total { align-items: baseline; margin-top: 4px; padding-top: 0; border: 0; }
.checkout-shell .summary-line.total span { color: #101010; font-size: 1.18rem; font-weight: 950; }
.checkout-shell .summary-line.total strong {
  color: #050505;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.05rem;
  font-weight: 700;
}
.tax-note { margin: -10px 0 0; color: #71665f; }
.trust-panel { display: grid; gap: 19px; margin-top: 22px; padding: 24px 26px; }
.trust-panel div {
  display: grid;
  grid-template-columns: 42px 1fr;
  column-gap: 16px;
  align-items: start;
}
.trust-panel span {
  grid-row: span 2;
  display: block;
  position: relative;
  width: 38px;
  height: 38px;
  border: 2px solid #aa6e12;
  border-radius: 8px;
}
.trust-panel span::before {
  content: "";
  position: absolute;
  left: 11px;
  top: 7px;
  width: 11px;
  height: 18px;
  border: solid #aa6e12;
  border-width: 0 3px 3px 0;
  transform: rotate(45deg);
}
.trust-panel strong { color: #16110e; font-size: 0.97rem; }
.trust-panel p { margin: 2px 0 0; color: #71665f; font-size: 0.88rem; line-height: 1.42; }
.payment-badges { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; margin: 28px 0 0; }
.payment-badges span { min-height: 28px; font-size: 0.74rem; }
.checkout-legal { display: none; }

.thank-you {
  min-height: 100vh;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 24px;
  padding: 32px 18px;
  background: radial-gradient(circle at top left, rgba(243,201,107,.22), transparent 34%), #fbf4e9;
}
.thank-you-body {
  margin: 0;
  background: #fbf4e9;
  color: #241812;
}
.thank-you-header {
  width: min(980px, 100%);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.thank-you-header > span {
  border: 1px solid rgba(36,24,18,.12);
  border-radius: 999px;
  padding: 10px 14px;
  background: rgba(255,255,255,.76);
  color: #715f50;
  font-weight: 800;
}
.thank-you-card {
  width: min(760px, 100%);
  padding: clamp(28px, 5vw, 54px);
  border-radius: 28px;
  background: var(--white);
  border: 1px solid rgba(36,24,18,.12);
  box-shadow: 0 26px 70px rgba(36,24,18,.12);
  color: var(--ink);
}
.thank-you-card h1 { color: var(--ink); font-size: clamp(2rem, 5vw, 4rem); }
.thank-you-details {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 28px 0;
}
.thank-you-details div {
  padding: 16px;
  border: 1px solid rgba(36,24,18,.1);
  border-radius: 18px;
  background: #fffaf4;
}
.thank-you-details dt {
  color: #715f50;
  font-size: .78rem;
  font-weight: 800;
  text-transform: uppercase;
}
.thank-you-details dd {
  margin: 8px 0 0;
  color: #241812;
  font-weight: 900;
}
.thank-you-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.thank-you-small {
  margin: 22px 0 0;
  color: #715f50;
  font-size: .9rem;
}

@media (max-width: 720px) {
  .thank-you-header { align-items: flex-start; flex-direction: column; gap: 12px; }
  .thank-you-details { grid-template-columns: 1fr; }
  .thank-you-actions .btn { width: 100%; }
}

@media (max-width: 1100px) {
  .checkout-body { background: #fff; }
  .checkout-body .checkout-header {
    width: min(100% - 28px, 760px);
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .checkout-header-actions {
    display: flex;
    align-items: stretch;
    justify-content: flex-start;
    gap: 10px;
  }
  .checkout-shell {
    width: min(100% - 28px, 760px);
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .checkout-shell .order-summary { order: 1; position: static; }
  .checkout-form-panel { order: 2; }
}

@media (max-width: 980px) {
  .menu-toggle { display: block; }
  .site-nav {
    position: absolute;
    left: 18px;
    right: 18px;
    top: 72px;
    display: none;
    padding: 16px;
    border-radius: var(--radius);
    border: 1px solid rgba(248, 241, 231, 0.12);
    background: #12100f;
    flex-direction: column;
    align-items: stretch;
  }
  .site-nav.is-open { display: flex; }
  .header-cta { display: none; }
  .hero, .brand-hero, .product-detail { grid-template-columns: 1fr; }
  .hero { min-height: auto; }
  .hero-visual, .hero-visual img { min-height: 360px; }
  .brand-grid, .product-grid, .steps-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 680px) {
  .checkout-header-brand .brand-logo { font-size: 2.75rem; }
  .checkout-header-actions { flex-direction: column; }
  .active-brand-badge, .checkout-safe-badge { justify-content: center; width: 100%; }
  .checkout-progress {
    padding: 2px 0 18px;
    grid-template-columns: repeat(4, minmax(74px, 1fr));
    overflow-x: auto;
  }
  .checkout-progress strong { font-size: 0.78rem; }
  .checkout-form .form-row, .shipping-options, .checkout-bottom-trust {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .summary-product { grid-template-columns: 86px minmax(0, 1fr); }
  .summary-image { width: 86px; }
  .summary-product > strong { grid-column: 2; padding-top: 0; }
  .method-badges { flex-wrap: wrap; justify-content: flex-start; }
  .checkout-body .payment-option { grid-template-columns: auto 1fr; }
  .checkout-body .payment-option small { grid-column: 2; }
  .discount-row div { grid-template-columns: 1fr; }
  .checkout-pay-button { padding: 16px; }
}

@media (max-width: 640px) {
  .site-header { padding: 14px 18px; }
  .hero, .brand-hero, .product-detail { width: min(100% - 28px, var(--max)); }
  .brand-grid, .product-grid, .steps-grid { grid-template-columns: 1fr; }
  .hero-actions, .site-footer { align-items: stretch; flex-direction: column; }
  .btn { width: 100%; }
  .hero-visual, .hero-visual img { min-height: 300px; }
  .site-footer nav { flex-direction: column; gap: 10px; }
}

/* Brand refresh: home + product visual direction */
:root {
  --moka: #17100b;
  --espresso: #241812;
  --warm-dark: #2b1d14;
  --ivory: #fbf7ef;
  --paper: #fffaf3;
  --soft-gold: #d7aa5f;
  --store-border: rgba(36, 24, 18, 0.14);
  --red-accent: #b92716;
}

.topbar {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 9px clamp(18px, 7vw, 110px);
  background: linear-gradient(90deg, #1b120c, #2a1c12);
  color: #f8ead7;
  border-bottom: 1px solid rgba(215, 170, 95, 0.22);
  font-size: 0.88rem;
}

.luxury-header {
  position: absolute;
  left: 0;
  right: 0;
  top: 38px;
  z-index: 30;
  background: rgba(23, 16, 11, 0.38);
  border-bottom: 1px solid rgba(248, 241, 231, 0.1);
}

.luxury-header .brand-logo,
.product-header .brand-logo {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  font-weight: 600;
}

.site-search {
  display: flex;
  align-items: center;
  width: min(300px, 24vw);
  min-height: 44px;
  padding: 0 12px 0 18px;
  border: 1px solid rgba(248, 241, 231, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
}

.site-search input {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: inherit;
  font: inherit;
}

.site-search input::placeholder { color: rgba(248, 241, 231, 0.72); }
.site-search button {
  width: 24px;
  height: 24px;
  border: 0;
  background: transparent;
  cursor: pointer;
  position: relative;
}
.site-search button::before {
  content: "";
  position: absolute;
  inset: 3px 6px 6px 3px;
  border: 2px solid currentColor;
  border-radius: 50%;
}
.site-search button::after {
  content: "";
  position: absolute;
  right: 3px;
  bottom: 4px;
  width: 8px;
  height: 2px;
  background: currentColor;
  transform: rotate(45deg);
}

.header-icons {
  display: flex;
  gap: 16px;
  color: rgba(248, 241, 231, 0.86);
  font-size: 0.82rem;
}

.luxury-hero {
  width: 100%;
  min-height: 760px;
  padding: 150px clamp(18px, 7vw, 110px) 52px;
  grid-template-columns: minmax(360px, 0.85fr) minmax(420px, 1.15fr);
  background:
    radial-gradient(circle at 72% 38%, rgba(215, 170, 95, 0.34), transparent 22%),
    linear-gradient(90deg, rgba(17, 10, 6, 0.98), rgba(30, 19, 12, 0.88) 42%, rgba(53, 34, 20, 0.58)),
    url("../img/clickjoy/gallery-4.avif") center right / cover no-repeat;
}

.luxury-hero .hero-copy {
  max-width: 720px;
  position: relative;
  z-index: 2;
}

.luxury-hero h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(4rem, 7vw, 7.7rem);
  font-weight: 500;
  letter-spacing: -0.04em;
  color: #fffaf3;
  text-shadow: 0 18px 50px rgba(0, 0, 0, 0.32);
}

.luxury-hero h1::first-line { color: #ffffff; }
.luxury-hero .hero-text { max-width: 480px; color: #f8ead7; }
.luxury-hero .btn-secondary { background: rgba(5, 5, 5, 0.24); }

.hero-trust {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  max-width: 720px;
  margin-top: 42px;
  color: #f8ead7;
  font-size: 0.92rem;
}

.hero-trust span {
  position: relative;
  padding-left: 28px;
}

.hero-trust span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.2em;
  width: 16px;
  height: 16px;
  border: 1px solid var(--soft-gold);
  border-radius: 50%;
}

.scooter-red-visual {
  min-height: 560px;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.scooter-red-visual img {
  border-radius: 18px;
  opacity: 0.92;
  filter: saturate(1.1) contrast(1.04);
}

.red-scooter-mark {
  position: absolute;
  right: 12%;
  bottom: 8%;
  width: 34%;
  height: 24%;
  border-radius: 999px 999px 40px 40px;
  background: radial-gradient(circle at 55% 45%, rgba(255, 77, 45, 0.9), rgba(166, 28, 17, 0.76) 56%, transparent 64%);
  mix-blend-mode: multiply;
  opacity: 0.62;
  pointer-events: none;
}

.brand-showcase,
.product-store-section {
  background: linear-gradient(180deg, #fffaf3, #f7efe4);
}

.split-heading {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: end;
}

.store-card {
  min-height: 190px;
  display: grid;
  grid-template-columns: 1fr 165px;
  align-items: stretch;
  border-color: var(--store-border);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(250, 243, 232, 0.92));
  box-shadow: 0 18px 44px rgba(36, 24, 18, 0.07);
}

.store-card-copy {
  padding: 28px;
}

.store-card .media-wrap {
  height: 100%;
  aspect-ratio: auto;
  background: #f6ead8;
}

.store-card .media-wrap img {
  object-fit: cover;
}

.store-card h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.6rem;
}

.store-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin: 0 auto 28px;
}

.store-tab {
  min-height: 42px;
  padding: 10px 18px;
  border: 1px solid rgba(36, 24, 18, 0.12);
  border-radius: 999px;
  background: #fffaf3;
  color: var(--ink);
  font-weight: 800;
  cursor: pointer;
}

.store-tab.is-active {
  background: #111;
  color: #fffaf3;
}

.premium-product-card {
  position: relative;
  background: #fffdf8;
  border-color: rgba(36, 24, 18, 0.12);
  box-shadow: 0 18px 40px rgba(36, 24, 18, 0.07);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.premium-product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 52px rgba(36, 24, 18, 0.11);
}

.wishlist-button {
  position: absolute;
  right: 14px;
  top: 14px;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(36, 24, 18, 0.16);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.86);
  cursor: pointer;
}

.product-badge {
  position: absolute;
  left: 14px;
  top: 14px;
  padding: 7px 12px;
  border-radius: 999px;
  background: #fff;
  color: var(--red-dark);
  font-size: 0.78rem;
  font-weight: 900;
}

.site-footer {
  background: #17100b;
}

.site-footer .footer-brand-logo {
  display: inline-flex;
  min-height: 58px;
}

.site-footer .footer-brand-logo img {
  width: clamp(150px, 13vw, 230px);
  max-height: 64px;
  object-fit: contain;
}

.site-footer .footer-brand-logo .cj-logo-fallback {
  font-size: clamp(1.8rem, 2.4vw, 2.7rem);
}

.newsletter-form {
  display: grid;
  grid-template-columns: auto minmax(180px, 260px) auto;
  gap: 10px;
  align-items: center;
}

.newsletter-form input,
.newsletter-form button {
  min-height: 42px;
  border-radius: 999px;
  border: 1px solid rgba(248, 241, 231, 0.18);
  padding: 0 14px;
}

.newsletter-form input {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.newsletter-form button {
  background: var(--gold);
  color: #111;
  font-weight: 900;
}

.product-body {
  background: linear-gradient(180deg, #fffaf3, #f8efe3);
  color: var(--ink);
}

.light-topbar {
  background: #21160f;
}

.product-header {
  position: sticky;
  background: rgba(255, 250, 243, 0.92);
  color: var(--ink);
  border-bottom: 1px solid rgba(36, 24, 18, 0.1);
}

.product-header .site-nav,
.product-header .header-icons {
  color: var(--ink);
}

.product-header .site-search {
  background: rgba(36, 24, 18, 0.05);
  border-color: rgba(36, 24, 18, 0.1);
}

.product-page-shell {
  width: min(1460px, calc(100% - 56px));
  margin: 0 auto;
  padding: 24px 0 44px;
}

.breadcrumb {
  display: flex;
  gap: 12px;
  margin-bottom: 22px;
  color: var(--muted);
  font-size: 0.92rem;
}

.breadcrumb span::before {
  content: ">";
  margin-right: 12px;
  color: rgba(36, 24, 18, 0.35);
}

.product-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(420px, 0.95fr);
  gap: 54px;
  align-items: start;
}

.product-main-image .media-wrap {
  aspect-ratio: 16 / 10;
  border-radius: 10px;
  box-shadow: 0 22px 60px rgba(36, 24, 18, 0.12);
}

.product-main-image {
  position: relative;
}

.gallery-badge {
  position: absolute;
  top: 24px;
  left: 24px;
  display: grid;
  place-items: center;
  width: 84px;
  height: 84px;
  border: 1px solid rgba(243, 201, 107, 0.54);
  border-radius: 50%;
  background: rgba(36, 24, 18, 0.36);
  color: #fff6df;
  text-align: center;
  font-weight: 900;
}

.product-thumbs {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  margin-top: 12px;
}

.product-thumbs button {
  padding: 0;
  border: 1px solid rgba(36, 24, 18, 0.14);
  border-radius: 8px;
  overflow: hidden;
  background: transparent;
  cursor: pointer;
}

.product-buy-box {
  padding: 8px 0;
}

.product-brand-badge {
  display: inline-flex;
  margin-bottom: 18px;
}

.product-buy-box h1 {
  margin-bottom: 8px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.6rem, 4vw, 4.4rem);
  font-weight: 500;
  line-height: 1;
}

.product-subtitle {
  color: var(--muted);
  font-size: 1.15rem;
}

.rating-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 16px 0 18px;
  color: #b67b1f;
}

.rating-row small {
  color: var(--ink);
}

.product-price {
  margin: 0 0 14px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.6rem;
}

.variant-row,
.quantity-row {
  margin-top: 22px;
}

.variant-row > span,
.quantity-row > span {
  display: block;
  margin-bottom: 8px;
  font-weight: 900;
}

.variant-row div,
.quantity-row div {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.variant-row button,
.quantity-row button,
.quantity-row strong {
  min-width: 70px;
  min-height: 48px;
  border: 1px solid rgba(36, 24, 18, 0.15);
  border-radius: 7px;
  background: #fffaf3;
  font: inherit;
  cursor: pointer;
}

.variant-row button.is-selected {
  border-color: var(--checkout-gold);
  box-shadow: inset 0 0 0 1px var(--checkout-gold);
}

.quantity-row strong {
  display: grid;
  place-items: center;
  min-width: 46px;
}

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

.product-actions .btn-secondary {
  color: var(--checkout-gold);
  border-color: var(--checkout-gold);
  background: #fffaf3;
}

.product-trust-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 22px;
  color: var(--muted);
  font-size: 0.86rem;
}

.product-trust-row span::before {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  margin-bottom: 6px;
  border: 1px solid var(--checkout-gold);
  border-radius: 50%;
}

.product-related,
.other-brand-section {
  background: #fffaf3;
}

.brand-mini-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.brand-mini-grid article {
  padding: 28px;
  border: 1px solid rgba(36, 24, 18, 0.1);
  border-radius: 10px;
  background: #fffdf8;
  text-align: center;
}

.product-footer {
  background: #17100b;
  color: #f8ead7;
}

.checkout-progress {
  grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 1180px) {
  .luxury-header {
    position: sticky;
    top: 0;
  }
  .site-search,
  .header-icons {
    display: none;
  }
  .luxury-hero,
  .product-layout {
    grid-template-columns: 1fr;
  }
  .luxury-hero {
    padding-top: 92px;
  }
  .hero-trust,
  .product-trust-row,
  .brand-mini-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 720px) {
  .topbar {
    flex-direction: column;
    gap: 4px;
  }
  .luxury-hero h1 {
    font-size: clamp(3.3rem, 16vw, 4.8rem);
  }
  .hero-trust,
  .product-trust-row,
  .brand-mini-grid,
  .product-actions,
  .newsletter-form {
    grid-template-columns: 1fr;
  }
  .store-card {
    grid-template-columns: 1fr;
  }
  .product-page-shell {
    width: min(100% - 28px, 1460px);
  }
}

/* Homepage reference pass - one page focus */
.home-reference {
  background: #f7efe4;
  color: #241812;
}

.cj-topbar {
  height: 40px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
  padding: 0 7vw;
  background: linear-gradient(90deg, #1a110b, #2a1b11);
  color: #fff3df;
  border-bottom: 1px solid rgba(243, 201, 107, 0.2);
  font-size: 0.92rem;
}

.cj-topbar b {
  color: rgba(243, 201, 107, 0.72);
  margin: 0 11px;
}

.topbar-center { text-align: center; }
.topbar-right { text-align: right; }

.cj-header {
  position: absolute;
  z-index: 50;
  left: 0;
  right: 0;
  top: 40px;
  height: 86px;
  display: grid;
  grid-template-columns: 210px minmax(420px, 1fr) 330px 210px;
  align-items: center;
  gap: 28px;
  padding: 0 7vw;
  background: rgba(28, 18, 11, 0.36);
  color: #fffaf3;
  border-bottom: 1px solid rgba(255, 250, 243, 0.1);
  backdrop-filter: blur(12px);
}

.cj-logo {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.25rem;
  font-weight: 650;
  letter-spacing: -0.04em;
  color: #fffaf3;
}

.cj-logo span {
  color: #d7aa5f;
}

.cj-logo-image {
  display: inline-flex;
  align-items: center;
  min-width: 150px;
  min-height: 52px;
}

.cj-logo-image img {
  width: clamp(142px, 11vw, 210px);
  max-height: 58px;
  object-fit: contain;
}

.cj-logo-image .cj-logo-fallback {
  display: none;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.9rem, 2.2vw, 2.55rem);
  font-weight: 650;
  letter-spacing: -0.04em;
  color: #fffaf3;
}

.cj-logo-image .cj-logo-fallback em {
  color: #d7aa5f;
  font-style: normal;
}

.cj-logo-image.is-missing img {
  display: none;
}

.cj-logo-image.is-missing .cj-logo-fallback {
  display: inline-block;
}

.cj-nav {
  display: flex;
  justify-content: center;
  gap: 26px;
  color: rgba(255, 250, 243, 0.94);
  font-size: 0.95rem;
}

.cj-search {
  display: grid;
  grid-template-columns: 1fr 28px;
  align-items: center;
  min-height: 46px;
  padding: 0 14px 0 20px;
  border-radius: 999px;
  border: 1px solid rgba(255, 250, 243, 0.16);
  background: rgba(255, 250, 243, 0.14);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.cj-search input {
  border: 0;
  outline: 0;
  background: transparent;
  color: #fffaf3;
  font: inherit;
}

.cj-search input::placeholder {
  color: rgba(255, 250, 243, 0.72);
}

.cj-search button {
  position: relative;
  width: 28px;
  height: 28px;
  border: 0;
  background: transparent;
  color: #fffaf3;
  cursor: pointer;
}

.cj-search button::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 4px;
  width: 14px;
  height: 14px;
  border: 2px solid currentColor;
  border-radius: 50%;
}

.cj-search button::after {
  content: "";
  position: absolute;
  right: 4px;
  bottom: 6px;
  width: 9px;
  height: 2px;
  background: currentColor;
  transform: rotate(45deg);
}

.cj-actions {
  display: flex;
  justify-content: flex-end;
  gap: 22px;
  font-size: 0.78rem;
}

.cj-actions a {
  display: grid;
  justify-items: center;
  gap: 5px;
  color: #fff3df;
}

.cj-actions span {
  position: relative;
  width: 24px;
  height: 24px;
  border: 2px solid #d7aa5f;
  border-radius: 50%;
}

.cj-actions a:nth-child(2) span {
  border-radius: 10px 10px 14px 14px;
  transform: rotate(45deg);
}

.cj-actions a:nth-child(3) span {
  border-radius: 5px;
}

.cj-actions em {
  position: absolute;
  right: -11px;
  top: -12px;
  display: grid;
  place-items: center;
  width: 19px;
  height: 19px;
  border-radius: 50%;
  background: #d7aa5f;
  color: #241812;
  font-size: 0.7rem;
  font-style: normal;
  font-weight: 900;
}

.cj-hero {
  position: relative;
  min-height: 690px;
  display: grid;
  grid-template-columns: minmax(460px, 0.88fr) minmax(640px, 1.12fr);
  align-items: stretch;
  padding: 126px 7vw 0;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(22, 14, 9, 0.98) 0%, rgba(31, 21, 14, 0.93) 36%, rgba(55, 36, 22, 0.44) 66%, rgba(33, 22, 14, 0.72) 100%),
    radial-gradient(circle at 72% 30%, rgba(224, 176, 98, 0.28), transparent 27%),
    url("../img/clickjoy/gallery-4.avif") center right / cover no-repeat;
}

.cj-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 72%, rgba(23, 16, 11, 0.52));
  pointer-events: none;
}

.cj-hero-copy {
  position: relative;
  z-index: 2;
  max-width: 760px;
  padding-top: 82px;
}

.cj-eyebrow {
  margin: 0 0 22px;
  color: #d7aa5f;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 900;
}

.cj-hero h1 {
  margin: 0 0 26px;
  color: #fffaf3;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(4.6rem, 7.3vw, 8.5rem);
  font-weight: 500;
  line-height: 0.93;
  letter-spacing: -0.055em;
}

.cj-hero h1 span {
  color: #e2c28b;
}

.cj-hero-copy > p:not(.cj-eyebrow) {
  max-width: 480px;
  color: #fff3df;
  font-size: 1.08rem;
  line-height: 1.55;
}

.cj-hero-actions {
  display: flex;
  gap: 18px;
  margin-top: 28px;
}

.cj-hero-actions .btn {
  width: auto;
  min-width: 168px;
}

.cj-hero-actions .btn-primary {
  background: linear-gradient(135deg, #f2d089, #c9943b);
  color: #21150d;
}

.cj-hero-actions .btn-secondary {
  border-color: rgba(215, 170, 95, 0.6);
  background: rgba(18, 12, 8, 0.35);
  color: #f9ead2;
}

.cj-hero-trust {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 48px;
  max-width: 720px;
  color: #fff3df;
  font-size: 0.9rem;
}

.cj-hero-trust span {
  position: relative;
  padding-left: 34px;
}

.cj-hero-trust span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 20px;
  height: 20px;
  border: 1px solid #d7aa5f;
  border-radius: 50%;
}

.cj-hero-art {
  position: relative;
  z-index: 2;
  min-height: 560px;
}

.hero-mascot-card {
  position: absolute;
  right: 18%;
  bottom: 36px;
  width: min(560px, 58vw);
  height: 500px;
  border-radius: 30px;
  overflow: hidden;
  opacity: 0.62;
  filter: saturate(1.18) contrast(1.08);
  mix-blend-mode: screen;
}

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

.red-vespa {
  position: absolute;
  right: 14%;
  bottom: 40px;
  width: 510px;
  height: 250px;
  z-index: 4;
}

.vespa-body,
.vespa-front,
.vespa-seat,
.vespa-wheel,
.vespa-light {
  position: absolute;
  display: block;
}

.vespa-body {
  left: 82px;
  bottom: 64px;
  width: 275px;
  height: 108px;
  border-radius: 80px 110px 70px 90px;
  background: linear-gradient(135deg, #e34227, #a91f12 62%, #6f140c);
  box-shadow: inset 18px 16px 26px rgba(255, 255, 255, 0.18), 0 28px 50px rgba(60, 13, 7, 0.45);
}

.vespa-front {
  right: 76px;
  bottom: 70px;
  width: 118px;
  height: 154px;
  border-radius: 70px 70px 45px 70px;
  background: linear-gradient(155deg, #f04a2e, #b82415 58%, #7e160d);
  transform: rotate(-8deg);
  box-shadow: inset 12px 16px 22px rgba(255, 255, 255, 0.16);
}

.vespa-seat {
  left: 150px;
  bottom: 166px;
  width: 148px;
  height: 34px;
  border-radius: 999px;
  background: linear-gradient(180deg, #2b1b13, #0f0906);
}

.vespa-wheel {
  bottom: 22px;
  width: 92px;
  height: 92px;
  border-radius: 50%;
  background: radial-gradient(circle, #3b2b22 0 34%, #0e0b09 35% 58%, #d1b17b 59% 67%, #17110d 68%);
}

.wheel-left { left: 112px; }
.wheel-right { right: 96px; }

.vespa-light {
  right: 95px;
  bottom: 182px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: radial-gradient(circle, #fff6c9 0 36%, #d7aa5f 40% 58%, #4a2b16 60%);
  box-shadow: 0 0 28px rgba(255, 226, 147, 0.7);
}

.hero-bag {
  position: absolute;
  left: 16%;
  bottom: 76px;
  z-index: 5;
  display: grid;
  place-items: center;
  width: 120px;
  height: 136px;
  background: linear-gradient(145deg, #28190f, #5d3a1f);
  color: #d7aa5f;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.22rem;
  text-align: center;
  box-shadow: 0 24px 46px rgba(0, 0, 0, 0.35);
}

.hero-note {
  position: absolute;
  right: 2.5%;
  bottom: 86px;
  z-index: 5;
  width: 300px;
  padding: 42px 34px;
  border: 1px solid rgba(255, 250, 243, 0.18);
  border-radius: 14px;
  background: rgba(80, 55, 35, 0.58);
  color: #fff3df;
  backdrop-filter: blur(8px);
  text-align: center;
}

.hero-note span {
  display: block;
  width: 48px;
  height: 48px;
  margin: 0 auto 18px;
  border: 1px solid #d7aa5f;
  border-radius: 50%;
}

.hero-note p {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.32rem;
  line-height: 1.25;
}

.hero-note a {
  color: #f1d49a;
  font-size: 0.9rem;
}

.cj-brand-section {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 34px;
  padding: 34px 7vw 32px;
  background: #fffaf3;
}

.cj-section-intro h2,
.cj-section-head h2 {
  margin-bottom: 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  font-weight: 500;
}

.cj-section-intro h2::after,
.cj-section-head h2::after {
  content: "";
  display: block;
  width: 32px;
  height: 2px;
  margin-top: 12px;
  background: #c58a2a;
}

.cj-section-intro p {
  color: #715f50;
}

.dark-pill {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  padding: 0 18px;
  border-radius: 5px;
  background: #111;
  color: #fff;
  font-weight: 800;
}

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

.cj-brand-card {
  display: grid;
  grid-template-columns: minmax(0, .86fr) minmax(180px, 1fr);
  min-height: 165px;
  overflow: hidden;
  border: 1px solid rgba(36, 24, 18, 0.12);
  border-radius: 10px;
  background: linear-gradient(140deg, #fffdf8, #f6ecdd);
}

.cj-brand-copy {
  padding: 28px 0 24px 26px;
}

.cj-brand-copy > p:first-child {
  color: #c58a2a;
  font-weight: 900;
  text-transform: uppercase;
  font-size: 0.76rem;
}

.cj-brand-copy h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
}

.cj-brand-copy p {
  color: #715f50;
  font-size: 0.9rem;
}

.cj-brand-copy a {
  color: #241812;
  font-weight: 800;
}

.cj-brand-media {
  position: relative;
  min-height: 100%;
  overflow: hidden;
  display: block;
  padding: 10px;
  background: linear-gradient(145deg, #f8ead8, #fff8ec);
}

.cj-brand-landing-preview {
  isolation: isolate;
}

.cj-brand-landing-preview::before {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 10px 10px auto;
  height: 18px;
  border-radius: 8px 8px 0 0;
  background:
    radial-gradient(circle at 12px 9px, rgba(198, 64, 47, .9) 0 3px, transparent 3.5px),
    radial-gradient(circle at 24px 9px, rgba(212, 176, 116, .95) 0 3px, transparent 3.5px),
    radial-gradient(circle at 36px 9px, rgba(146, 164, 130, .85) 0 3px, transparent 3.5px),
    linear-gradient(180deg, rgba(255,255,255,.96), rgba(248,241,231,.92));
  border: 1px solid rgba(36,24,18,.1);
  border-bottom: 0;
  pointer-events: none;
}

.cj-brand-landing-preview iframe {
  position: absolute;
  left: 10px;
  top: 10px;
  width: 720px;
  height: 520px;
  border: 0;
  border-radius: 8px;
  background: #fffaf3;
  box-shadow: 0 14px 32px rgba(51,31,18,.14);
  transform: scale(.38);
  transform-origin: top left;
  pointer-events: none;
  transition: transform .24s ease, box-shadow .24s ease;
}

.cj-brand-preview-link {
  position: absolute;
  z-index: 4;
  inset: 0;
  display: block;
}

.cj-brand-media img {
  display: none;
}

.cj-brand-card:hover .cj-brand-landing-preview iframe {
  transform: scale(.395);
  box-shadow: 0 20px 42px rgba(51,31,18,.18);
}

.cj-products-section {
  padding: 34px 7vw 42px;
  background: linear-gradient(180deg, #fffaf3, #f7efe4);
}

.cj-section-head {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  margin-bottom: 18px;
}

.cj-section-head a {
  color: #241812;
  font-weight: 800;
}

.cj-products-section .store-tabs {
  justify-content: center;
  margin-bottom: 20px;
}

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

.cj-product-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(36, 24, 18, 0.12);
  border-radius: 10px;
  background: #fffdf8;
  box-shadow: 0 16px 36px rgba(36, 24, 18, 0.06);
}

.cj-product-card .media-wrap {
  aspect-ratio: 4 / 3;
  background: #f5ead9;
}

.cj-product-card .card-body {
  padding: 18px;
}

.cj-product-card h3 {
  min-height: 2.4em;
}

.wishlist-button {
  position: absolute;
  right: 12px;
  top: 12px;
  z-index: 3;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(36, 24, 18, 0.14);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.86);
  cursor: pointer;
}

.product-badge {
  position: absolute;
  left: 12px;
  top: 12px;
  z-index: 3;
  padding: 7px 11px;
  border-radius: 999px;
  background: #fff;
  color: #a72413;
  font-size: 0.74rem;
  font-weight: 900;
}

.cj-service-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin: 0 7vw 34px;
  padding: 22px 28px;
  border: 1px solid rgba(36, 24, 18, 0.1);
  border-radius: 12px;
  background: #fffaf3;
}

.cj-service-row span {
  position: relative;
  padding-left: 34px;
  font-weight: 800;
}

.cj-service-row span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 22px;
  height: 22px;
  border: 1px solid #c58a2a;
  border-radius: 50%;
}

.cj-service-row small {
  color: #715f50;
  font-weight: 500;
}

@media (max-width: 1280px) {
  .cj-header {
    grid-template-columns: 190px 1fr 280px;
  }
  .cj-actions {
    display: none;
  }
  .cj-hero {
    grid-template-columns: 1fr;
  }
  .cj-hero-art {
    min-height: 430px;
  }
  .hero-note {
    right: 5%;
  }
  .cj-brand-section {
    grid-template-columns: 1fr;
  }
  .cj-brand-grid,
  .cj-product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 760px) {
  .cj-topbar {
    height: auto;
    grid-template-columns: 1fr;
    padding: 8px 18px;
    text-align: center;
  }
  .topbar-right {
    text-align: center;
  }
  .cj-header {
    position: sticky;
    top: 0;
    grid-template-columns: 1fr auto;
    height: auto;
    padding: 14px 18px;
  }
  .cj-nav,
  .cj-search {
    display: none;
  }
  .cj-hero {
    min-height: auto;
    padding: 58px 18px 34px;
  }
  .cj-hero h1 {
    font-size: clamp(3.5rem, 17vw, 5rem);
  }
  .cj-hero-actions,
  .cj-hero-trust,
  .cj-service-row {
    grid-template-columns: 1fr;
    flex-direction: column;
  }
  .cj-hero-actions .btn {
    width: 100%;
  }
  .cj-hero-art {
    min-height: 360px;
  }
  .red-vespa {
    right: -38px;
    width: 360px;
    transform: scale(0.75);
    transform-origin: right bottom;
  }
  .hero-bag,
  .hero-note {
    display: none;
  }
  .cj-brand-section,
  .cj-products-section {
    padding-left: 18px;
    padding-right: 18px;
  }
  .cj-brand-grid,
  .cj-product-grid,
  .cj-service-row {
    grid-template-columns: 1fr;
  }
}

/* Homepage reference correction: force right hero visual into first viewport */
.home-reference .cj-hero {
  display: block;
  min-height: 690px;
}

.home-reference .cj-hero-copy {
  width: min(760px, 46vw);
}

.home-reference .cj-hero-art {
  position: absolute;
  z-index: 3;
  right: 5.5vw;
  top: 126px;
  bottom: 0;
  width: 51vw;
  min-height: 560px;
}

.home-reference .hero-mascot-card {
  right: 15%;
  bottom: 92px;
  width: min(610px, 45vw);
  height: 430px;
  opacity: 0.56;
}

.home-reference .red-vespa {
  right: 13%;
  bottom: 52px;
  transform: scale(1.04);
  transform-origin: right bottom;
}

.home-reference .hero-bag {
  left: 18%;
  bottom: 86px;
}

.home-reference .hero-note {
  right: 0;
  bottom: 128px;
}

@media (max-width: 1180px) {
  .home-reference .cj-hero-copy {
    width: min(700px, 58vw);
  }
  .home-reference .cj-hero-art {
    right: -8vw;
    width: 56vw;
  }
  .home-reference .hero-note {
    display: none;
  }
}

@media (max-width: 760px) {
  .home-reference .cj-hero {
    display: block;
  }
  .home-reference .cj-hero-copy {
    width: 100%;
  }
  .home-reference .cj-hero-art {
    position: relative;
    top: auto;
    right: auto;
    width: 100%;
    min-height: 330px;
  }
}

/* Home polish pass - closer to the Click & Joy luxury reference */
.home-reference {
  --home-espresso: #15100b;
  --home-moka: #241812;
  --home-gold: #d9aa55;
  --home-gold-soft: #f2d59a;
  --home-cream: #fff7ea;
  --home-paper: #fbf1e2;
  --home-red: #c92b18;
  background: var(--home-paper);
}

.home-reference .cj-topbar {
  height: 38px;
  padding: 0 7vw;
  background: linear-gradient(90deg, #140d08, #23160f 48%, #140d08);
  border-bottom: 1px solid rgba(242, 213, 154, .18);
  color: #f7e8ca;
  font-size: .84rem;
}

.home-reference .cj-header {
  top: 38px;
  width: 100%;
  height: 92px;
  padding: 0 7vw;
  background: linear-gradient(180deg, rgba(20, 13, 8, .92), rgba(20, 13, 8, .42), transparent);
  border-bottom: 1px solid rgba(255, 245, 228, .08);
}

.home-reference .cj-logo {
  font-size: clamp(1.9rem, 2.2vw, 2.55rem);
  color: #fff8ec;
}

.home-reference .cj-logo span,
.home-reference .cj-eyebrow,
.home-reference .cj-nav a:hover {
  color: var(--home-gold);
}

.home-reference .cj-nav a,
.home-reference .cj-actions a {
  color: #fff2df;
}

.home-reference .cj-search {
  background: rgba(255, 248, 235, .14);
  border: 1px solid rgba(242, 213, 154, .22);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08);
}

.home-reference .cj-search input {
  color: #fff8ec;
}

.home-reference .cj-search input::placeholder {
  color: rgba(255, 242, 223, .72);
}

.home-reference .cj-hero {
  min-height: 720px;
  padding: 156px 7vw 56px;
  background:
    radial-gradient(circle at 72% 36%, rgba(219, 161, 82, .34), transparent 28%),
    radial-gradient(circle at 86% 68%, rgba(201, 43, 24, .16), transparent 24%),
    linear-gradient(90deg, rgba(16, 10, 6, .98) 0%, rgba(26, 18, 12, .94) 39%, rgba(35, 24, 15, .72) 64%, rgba(21, 13, 8, .95) 100%),
    linear-gradient(135deg, #120c08, #312015);
  overflow: hidden;
}

.home-reference .cj-hero::before {
  opacity: .34;
  background:
    linear-gradient(90deg, rgba(16,10,6,.82), rgba(16,10,6,.2) 54%, rgba(16,10,6,.68)),
    repeating-linear-gradient(90deg, rgba(255,238,198,.07) 0 1px, transparent 1px 118px);
}

.home-reference .cj-hero-copy {
  width: min(760px, 49vw);
  padding-top: 0;
}

.home-reference .cj-eyebrow {
  margin-bottom: 24px;
  font-size: .94rem;
  font-weight: 900;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.home-reference .cj-hero h1 {
  max-width: 850px;
  margin-bottom: 26px;
  font-size: clamp(4.7rem, 7.15vw, 8rem);
  line-height: .93;
  text-shadow: 0 22px 60px rgba(0,0,0,.42);
}

.home-reference .cj-hero h1 span {
  color: #e7c88f;
}

.home-reference .cj-hero-copy > p:not(.cj-eyebrow) {
  max-width: 500px;
  color: rgba(255, 244, 224, .94);
  font-size: 1.09rem;
}

.home-reference .cj-hero-actions {
  margin-top: 30px;
}

.home-reference .cj-hero-actions .btn {
  min-height: 52px;
  border-radius: 8px;
  font-weight: 900;
}

.home-reference .cj-hero-actions .btn-primary {
  background: linear-gradient(135deg, #f4d58f, #c88c32);
  box-shadow: 0 18px 34px rgba(201, 140, 50, .22);
}

.home-reference .cj-hero-actions .btn-secondary {
  background: rgba(14, 9, 6, .32);
  border-color: rgba(232, 194, 134, .5);
}

.home-reference .cj-hero-trust {
  max-width: 720px;
  color: #fff2df;
}

.home-reference .cj-hero-trust span::before {
  border-color: rgba(242, 213, 154, .7);
  background: rgba(217, 170, 85, .16);
  box-shadow: 0 0 0 5px rgba(217, 170, 85, .07);
}

.home-reference .cj-hero-art {
  right: 3vw;
  top: 118px;
  width: 58vw;
  filter: drop-shadow(0 28px 60px rgba(0,0,0,.45));
}

.home-reference .hero-mascot-card {
  right: 17%;
  bottom: 138px;
  width: min(470px, 31vw);
  height: min(470px, 31vw);
  opacity: .86;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,230,184,.28), transparent 64%);
}

.home-reference .hero-mascot-card img {
  object-fit: cover;
  object-position: center;
  mix-blend-mode: screen;
  filter: saturate(1.08) contrast(1.08);
}

.home-reference .red-vespa {
  right: 12%;
  bottom: 58px;
  transform: scale(1.1);
}

.home-reference .vespa-body,
.home-reference .vespa-front {
  background: linear-gradient(135deg, #ff5139, var(--home-red) 58%, #80180d);
  box-shadow: inset 0 18px 26px rgba(255,255,255,.16), 0 18px 36px rgba(122, 23, 13, .34);
}

.home-reference .hero-bag {
  bottom: 96px;
  left: 17%;
  background: linear-gradient(145deg, #352115, #17100b);
  color: #e7c88f;
  border-color: rgba(242, 213, 154, .36);
}

.home-reference .hero-note {
  width: 290px;
  padding: 34px;
  background: linear-gradient(145deg, rgba(92, 64, 42, .66), rgba(45, 30, 20, .52));
  border: 1px solid rgba(242, 213, 154, .22);
  box-shadow: 0 24px 80px rgba(0,0,0,.24);
  backdrop-filter: blur(16px);
}

.home-reference .cj-brand-section {
  grid-template-columns: 260px 1fr;
  gap: 36px;
  padding: 36px 7vw 34px;
  background: linear-gradient(180deg, #fff8ec, #fbf0df);
}

.home-reference .cj-section-intro h2,
.home-reference .cj-section-head h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  color: #25170f;
}

.home-reference .cj-brand-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

@media (max-width: 1500px) {
  .home-reference .cj-brand-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.home-reference .cj-brand-card {
  grid-template-columns: minmax(0, .82fr) minmax(190px, 1fr);
  min-height: 210px;
  border-radius: 12px;
  background: linear-gradient(145deg, rgba(255,255,255,.88), rgba(255,247,234,.74));
  box-shadow: 0 18px 42px rgba(51, 31, 18, .08);
}

.home-reference .cj-brand-media {
  min-height: 210px;
  border-left: 1px solid rgba(36,24,18,.08);
}

.home-reference .cj-brand-media::after {
  content: "Anteprima";
  position: absolute;
  left: 10px;
  bottom: 10px;
  padding: 5px 8px;
  border-radius: 999px;
  background: rgba(255, 250, 243, .88);
  color: #6f4520;
  font-size: .64rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .05em;
}

.home-reference .cj-brand-landing-preview iframe {
  width: 820px;
  height: 560px;
  transform: scale(.36);
}

.home-reference .cj-brand-card:hover .cj-brand-landing-preview iframe {
  transform: scale(.374);
}

.cj-brand-3d-section {
  position: relative;
  overflow: hidden;
  padding: 58px 7vw 66px;
  background:
    radial-gradient(circle at 50% 18%, rgba(217, 170, 85, .18), transparent 32%),
    linear-gradient(180deg, #fbf0df 0%, #fff8ec 46%, #f4e4cb 100%);
}

.cj-brand-3d-section .cj-section-head {
  max-width: 760px;
  margin: 0 auto 24px;
  text-align: center;
}

.cj-brand-3d-section .cj-section-head p {
  margin: 10px auto 0;
  max-width: 520px;
  color: #715f50;
  line-height: 1.6;
}

.cj-brand-3d-carousel {
  position: relative;
  max-width: 1320px;
  margin: 0 auto;
}

.lus3d-stage {
  position: relative;
  height: 660px;
  display: grid;
  place-items: center;
  overflow: hidden;
  perspective: 1400px;
  transform-style: preserve-3d;
}

.lus3d-card {
  position: absolute;
  width: min(760px, 84vw);
  min-height: 520px;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  overflow: hidden;
  border: 1px solid rgba(36, 24, 18, .13);
  border-radius: 24px;
  background: rgba(255, 253, 247, .9);
  box-shadow: 0 34px 90px rgba(51, 31, 18, .18);
  opacity: 0;
  filter: saturate(.96);
  transition: transform .45s ease, opacity .45s ease, filter .45s ease, box-shadow .45s ease;
  will-change: transform, opacity, filter;
}

.lus3d-card.is-active {
  z-index: 4;
  opacity: 1;
  filter: saturate(1);
  transform: translateX(0) translateZ(120px) rotateY(0deg) scale(1);
}

.lus3d-card.is-prev {
  z-index: 3;
  opacity: .58;
  transform: translateX(-54%) translateZ(-80px) rotateY(16deg) scale(.78);
}

.lus3d-card.is-next {
  z-index: 3;
  opacity: .58;
  transform: translateX(54%) translateZ(-80px) rotateY(-16deg) scale(.78);
}

.lus3d-card.is-far {
  z-index: 1;
  opacity: .22;
  filter: blur(.5px) saturate(.78);
  transform: translateX(0) translateZ(-220px) scale(.74);
}

.lus3d-media {
  position: relative;
  min-height: 365px;
  overflow: hidden;
  background:
    radial-gradient(circle at 72% 18%, rgba(214, 56, 25, .14), transparent 30%),
    linear-gradient(135deg, #fffaf3, #f2dfc2);
  --preview-scale: .54;
  --preview-y: 0px;
  --preview-x: 50%;
}

.lus3d-media::before {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255,255,255,.06), transparent 44%, rgba(36,24,18,.2)),
    linear-gradient(90deg, rgba(255,250,243,.78), transparent 42%);
}

.lus3d-media iframe {
  position: absolute;
  left: var(--preview-x);
  top: 0;
  width: 1440px;
  height: 1120px;
  border: 0;
  background: #fffaf3;
  pointer-events: none;
  transform: translateX(-50%) translateY(var(--preview-y)) scale(var(--preview-scale));
  transform-origin: top center;
}

.lus3d-static-preview img,
.cj-brand-static-preview img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  display: block;
  object-fit: cover;
}

.lus3d-static-preview img {
  position: absolute;
  inset: 0;
}

.cj-brand-placeholder {
  width: 100%;
  min-height: 190px;
  display: grid;
  place-items: center;
  text-align: center;
  border-radius: 18px;
  background:
    radial-gradient(circle at 80% 20%, rgba(243, 201, 107, .18), transparent 30%),
    linear-gradient(135deg, #fffaf2, #f3e5cf);
  color: #241812;
}

.cj-brand-placeholder span {
  display: block;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.cj-brand-placeholder strong {
  display: block;
  margin-top: 8px;
  color: #8a5a1d;
  font-size: .9rem;
}

.lus3d-media[data-preview-brand="anilux"] {
  --preview-scale: .54;
  --preview-y: 0px;
  --preview-x: 50%;
}

.lus3d-media[data-preview-brand="swago"] {
  --preview-scale: .54;
  --preview-y: 0px;
  --preview-x: 50%;
}


.lus3d-media[data-preview-brand="events"] {
  --preview-scale: .54;
  --preview-y: 0px;
  --preview-x: 50%;
}

.lus3d-card-copy {
  position: relative;
  z-index: 3;
  padding: 26px 30px 30px;
  background: linear-gradient(180deg, rgba(255,253,247,.94), rgba(255,248,236,.98));
}

.lus3d-card-copy p:first-child {
  margin: 0 0 8px;
  color: #a66d1e;
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.lus3d-card-copy h3 {
  margin: 0;
  color: #241812;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 3vw, 3.25rem);
  font-weight: 500;
  line-height: 1;
}

.lus3d-card-copy p:not(:first-child) {
  max-width: 560px;
  margin: 12px 0 20px;
  color: #715f50;
  font-size: 1rem;
  line-height: 1.55;
}

.lus3d-card-copy a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 8px;
  background: linear-gradient(135deg, #f4d58f, #c88c32);
  color: #241812;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 14px 26px rgba(201, 140, 50, .2);
}

.lus3d-control {
  position: absolute;
  z-index: 8;
  top: 50%;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(36,24,18,.12);
  border-radius: 999px;
  background: rgba(255, 253, 247, .84);
  color: #241812;
  box-shadow: 0 16px 38px rgba(51, 31, 18, .14);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  transform: translateY(-50%);
  transition: transform .2s ease, background .2s ease;
}

.lus3d-control:hover,
.lus3d-control:focus-visible {
  background: #fffaf3;
  transform: translateY(-50%) scale(1.06);
}

.lus3d-prev {
  left: 0;
}

.lus3d-next {
  right: 0;
}

.lus3d-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: -18px;
}

.lus3d-dots button {
  width: 10px;
  height: 10px;
  border: 0;
  border-radius: 999px;
  background: rgba(36, 24, 18, .22);
  cursor: pointer;
  transition: width .2s ease, background .2s ease;
}

.lus3d-dots button.is-active {
  width: 32px;
  background: #c88c32;
}

@media (max-width: 760px) {
  .cj-brand-3d-section {
    padding: 42px 18px 48px;
  }

  .lus3d-stage {
    height: 560px;
    perspective: none;
  }

  .lus3d-card {
    width: 100%;
    min-height: 470px;
  }

  .lus3d-card.is-active {
    transform: translateX(0) scale(1);
  }

  .lus3d-card.is-prev,
  .lus3d-card.is-next,
  .lus3d-card.is-far {
    opacity: 0;
    pointer-events: none;
    transform: translateX(0) scale(.94);
  }

  .lus3d-media {
    min-height: 290px;
  }

  .lus3d-media iframe {
    width: 1120px;
    height: 900px;
    transform: translateX(-50%) translateY(var(--preview-y)) scale(.36);
  }

  .lus3d-control {
    top: 44%;
    width: 42px;
    height: 42px;
  }

  .lus3d-prev {
    left: 8px;
  }

  .lus3d-next {
    right: 8px;
  }
}

.home-reference .cj-brand-card:hover,
.home-reference .cj-product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 56px rgba(51, 31, 18, .13);
}

.home-reference .cj-brand-copy p:first-child,
.home-reference .card-label {
  color: #a66d1e;
  font-weight: 900;
}

.home-reference .cj-products-section {
  padding: 42px 7vw 48px;
  background: linear-gradient(180deg, #fbf0df, #f7ead7);
}

.home-reference .store-tabs {
  padding: 10px;
  border: 1px solid rgba(36,24,18,.1);
  border-radius: 999px;
  background: rgba(255,255,255,.62);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.7);
}

.home-reference .store-tab {
  border-radius: 999px;
}

.home-reference .store-tab.is-active {
  background: #17100b;
  color: #fff8ec;
}

.home-reference .cj-product-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.home-reference .cj-product-card {
  border-radius: 12px;
  background: rgba(255, 253, 247, .88);
  box-shadow: 0 18px 42px rgba(51,31,18,.08);
}

.home-reference .cj-product-card .media-wrap {
  aspect-ratio: 1.08 / 1;
  background: linear-gradient(145deg, #f7ead7, #fff8ec);
}

.home-reference .cj-service-row {
  margin: 0;
  padding: 22px 7vw;
  background: #fff7ea;
  border-top: 1px solid rgba(36,24,18,.1);
  border-bottom: 1px solid rgba(36,24,18,.1);
}

@media (max-width: 1180px) {
  .home-reference .cj-brand-grid,
  .home-reference .cj-product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-reference .cj-hero-copy {
    width: min(680px, 58vw);
  }
}

@media (max-width: 760px) {
  .home-reference .cj-header {
    top: 0;
    background: rgba(20, 13, 8, .96);
  }

  .home-reference .cj-hero {
    padding: 52px 18px 32px;
  }

  .home-reference .cj-hero-copy {
    width: 100%;
  }

  .home-reference .cj-hero h1 {
    font-size: clamp(3.4rem, 16vw, 5rem);
  }

  .home-reference .cj-brand-section,
  .home-reference .cj-products-section {
    padding-left: 18px;
    padding-right: 18px;
  }

  .home-reference .cj-brand-grid,
  .home-reference .cj-product-grid {
    grid-template-columns: 1fr;
  }

  .home-reference .store-tabs {
    border-radius: 16px;
  }
}

/* Admin Google Sheet */
.admin-body {
  background: #fbf7ef;
  color: #241812;
}

.admin-top {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 5vw, 72px);
  background: rgba(255, 255, 255, .92);
  border-bottom: 1px solid rgba(36, 24, 18, .12);
  backdrop-filter: blur(14px);
}

.admin-top > div {
  display: grid;
  gap: 2px;
  text-align: right;
}

.admin-top small,
.admin-card p {
  color: #715f50;
}

.admin-shell {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 24px;
  width: min(1480px, calc(100% - 32px));
  margin: 28px auto 60px;
}

.admin-sidebar {
  position: sticky;
  top: 92px;
  align-self: start;
  display: grid;
  gap: 8px;
  padding: 14px;
  background: #fff;
  border: 1px solid rgba(36, 24, 18, .12);
  border-radius: 18px;
  box-shadow: 0 18px 42px rgba(36, 24, 18, .08);
}

.admin-sidebar a {
  padding: 12px 14px;
  border-radius: 12px;
  color: #241812;
  font-weight: 800;
}

.admin-sidebar a.is-active,
.admin-sidebar a:hover {
  background: #111;
  color: #f3c96b;
}

.admin-content {
  display: grid;
  gap: 22px;
}

.admin-grid {
  display: grid;
  grid-template-columns: minmax(280px, .9fr) minmax(360px, 1.4fr);
  gap: 22px;
  align-items: start;
}

.admin-card {
  display: grid;
  gap: 16px;
  padding: clamp(20px, 3vw, 30px);
  background: #fff;
  border: 1px solid rgba(36, 24, 18, .12);
  border-radius: 20px;
  box-shadow: 0 22px 56px rgba(36, 24, 18, .08);
}

.admin-card h1,
.admin-card h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
}

.admin-field {
  display: grid;
  gap: 7px;
  font-weight: 800;
}

.admin-field span {
  color: #715f50;
  font-size: .84rem;
}

.admin-field input,
.admin-field select,
.admin-field textarea {
  width: 100%;
  min-height: 46px;
  padding: 12px 14px;
  border: 1px solid rgba(36, 24, 18, .16);
  border-radius: 12px;
  background: #fffdf9;
  color: #241812;
  font: inherit;
}

.admin-field textarea {
  resize: vertical;
}

.admin-actions,
.admin-checks,
.admin-two,
.admin-four {
  display: grid;
  gap: 12px;
}

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

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

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

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

.admin-actions button,
.admin-submit {
  min-height: 48px;
  padding: 12px 16px;
  border: 1px solid rgba(197, 138, 42, .45);
  border-radius: 12px;
  background: #111;
  color: #f3c96b;
  font-weight: 900;
  cursor: pointer;
}

.admin-actions button:nth-child(2),
.admin-actions button:nth-child(3) {
  background: #fffaf0;
  color: #241812;
}

.admin-message.success {
  color: #247a3b;
}

.admin-message.error {
  color: #a72413;
}

.admin-table-wrap {
  overflow-x: auto;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
}

.admin-table th,
.admin-table td {
  padding: 13px 12px;
  border-bottom: 1px solid rgba(36, 24, 18, .1);
  text-align: left;
}

.admin-table th {
  color: #715f50;
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.product-upload-form {
  gap: 20px;
}

.upload-grid {
  align-items: stretch;
}

.upload-panel {
  display: grid;
  gap: 14px;
  padding: 18px;
  border: 1px solid rgba(36, 24, 18, .12);
  border-radius: 16px;
  background: #fffaf3;
}

.upload-panel h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
}

.upload-panel input[type="file"] {
  width: 100%;
  padding: 12px;
  border: 1px dashed rgba(197, 138, 42, .5);
  border-radius: 12px;
  background: #fff;
}

.upload-panel button {
  min-height: 44px;
  border: 1px solid rgba(197, 138, 42, .45);
  border-radius: 12px;
  background: #111;
  color: #f3c96b;
  font-weight: 900;
  cursor: pointer;
}

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

.upload-preview figure {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(36, 24, 18, .1);
  border-radius: 12px;
  background: #fff;
}

.upload-preview img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.upload-preview figcaption {
  padding: 8px;
  color: #715f50;
  font-size: .72rem;
  overflow-wrap: anywhere;
}

@media (max-width: 900px) {
  .admin-shell,
  .admin-grid,
  .admin-two,
  .admin-four,
  .admin-actions,
  .admin-checks {
    grid-template-columns: 1fr;
  }

  .admin-sidebar {
    position: static;
  }
}

/* Product page reference pass */
.product-body {
  --product-bg: #fbf7ef;
  --product-panel: #fffdf8;
  --product-ink: #241812;
  --product-muted: #715f50;
  --product-gold: #c58a2a;
  --product-gold-soft: #f3c96b;
  --product-border: rgba(36, 24, 18, .12);
  background:
    radial-gradient(circle at 18% 12%, rgba(243, 201, 107, .18), transparent 32%),
    linear-gradient(180deg, #fffaf3 0%, #fbf7ef 55%, #f7edde 100%);
  color: var(--product-ink);
}

.product-body .light-topbar {
  min-height: 42px;
  padding: 0 clamp(22px, 7vw, 132px);
  align-items: center;
  background: linear-gradient(90deg, #1a100b, #2b1c12 42%, #17100c);
  border-bottom: 1px solid rgba(243, 201, 107, .18);
  color: #fff7e8;
  font-size: .9rem;
}

.product-body .product-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: auto minmax(420px, 1fr) minmax(260px, 360px) auto;
  gap: clamp(22px, 3vw, 52px);
  min-height: 92px;
  padding: 0 clamp(24px, 7vw, 132px);
  background: rgba(255, 250, 243, .94);
  border-bottom: 1px solid rgba(36, 24, 18, .1);
  box-shadow: 0 12px 34px rgba(36, 24, 18, .04);
  backdrop-filter: blur(16px);
}

.product-body .product-header .brand-logo {
  color: #111;
  font-size: clamp(2.1rem, 2.6vw, 3rem);
  letter-spacing: 0;
}

.product-body .product-header .brand-logo span {
  color: var(--product-gold);
}

.product-body .product-header .site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 2vw, 34px);
  color: var(--product-ink);
  font-weight: 700;
}

.product-body .product-header .site-search {
  width: 100%;
  min-height: 48px;
  background: #f5eddf;
  border: 1px solid rgba(36, 24, 18, .08);
  border-radius: 999px;
  color: var(--product-ink);
}

.product-body .product-header .site-search input::placeholder {
  color: rgba(36, 24, 18, .58);
}

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

.product-header-actions a {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 5px;
  color: var(--product-ink);
  font-size: .78rem;
  font-weight: 700;
}

.ph-icon {
  position: relative;
  width: 26px;
  height: 26px;
  color: var(--product-ink);
}

.ph-icon::before,
.ph-icon::after {
  content: "";
  position: absolute;
  border: 2px solid currentColor;
}

.ph-icon.user::before {
  width: 9px;
  height: 9px;
  left: 7px;
  top: 2px;
  border-radius: 50%;
}

.ph-icon.user::after {
  width: 18px;
  height: 10px;
  left: 2px;
  bottom: 1px;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
  border-bottom: 0;
}

.ph-icon.heart::before {
  inset: 4px;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  border-radius: 0 0 5px 0;
}

.ph-icon.bag::before {
  left: 4px;
  right: 4px;
  bottom: 2px;
  height: 15px;
  border-radius: 3px;
}

.ph-icon.bag::after {
  left: 8px;
  top: 2px;
  width: 8px;
  height: 8px;
  border-bottom: 0;
  border-radius: 10px 10px 0 0;
}

.ph-icon b {
  position: absolute;
  right: -8px;
  top: -8px;
  display: grid;
  place-items: center;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: var(--product-gold);
  color: #fff;
  font-size: .68rem;
  line-height: 1;
}

.product-body .product-page-shell {
  width: min(1500px, calc(100% - 96px));
  padding: 30px 0 26px;
}

.product-body .breadcrumb {
  display: flex;
  gap: 15px;
  margin: 0 0 24px;
  color: var(--product-muted);
  font-size: .92rem;
}

.product-body .breadcrumb span::before {
  content: ">";
  margin-right: 15px;
  color: rgba(36, 24, 18, .35);
}

.product-body .product-layout {
  grid-template-columns: minmax(560px, 1.08fr) minmax(480px, .92fr);
  gap: clamp(48px, 5vw, 74px);
}

.product-body .product-gallery-premium {
  min-width: 0;
}

.product-body .product-main-image {
  overflow: hidden;
  border-radius: 9px;
  background: #eadcc7;
  box-shadow: 0 24px 64px rgba(36, 24, 18, .12);
}

.product-body .product-main-image .media-wrap {
  aspect-ratio: 1.86 / 1;
  border-radius: 0;
  box-shadow: none;
}

.product-body .product-main-image img,
.product-body .product-thumbs img {
  filter: saturate(1.06) contrast(1.04) sepia(.08);
}

.product-body .gallery-badge {
  left: 30px;
  top: 28px;
  display: grid;
  place-items: center;
  width: 86px;
  height: 86px;
  padding: 0 12px;
  border: 1px solid rgba(243, 201, 107, .55);
  border-radius: 50%;
  background: rgba(85, 51, 21, .42);
  color: #fff6df;
  text-align: center;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1rem;
  line-height: 1.05;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .18);
}

.gallery-arrow,
.gallery-zoom {
  position: absolute;
  z-index: 4;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, .92);
  color: var(--product-ink);
  box-shadow: 0 14px 34px rgba(36, 24, 18, .14);
  cursor: pointer;
}

.gallery-prev {
  left: 22px;
  top: 50%;
}

.gallery-next {
  right: 22px;
  top: 50%;
}

.gallery-prev::before,
.gallery-next::before {
  content: "";
  width: 11px;
  height: 11px;
  border-left: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
}

.gallery-prev::before {
  transform: rotate(45deg);
}

.gallery-next::before {
  transform: rotate(-135deg);
}

.gallery-zoom {
  right: 24px;
  bottom: 24px;
}

.gallery-zoom::before {
  content: "";
  width: 16px;
  height: 16px;
  border: 2px solid currentColor;
  border-radius: 50%;
}

.gallery-zoom::after {
  content: "";
  position: absolute;
  width: 9px;
  border-top: 2px solid currentColor;
  transform: translate(11px, 11px) rotate(45deg);
}

.product-body .product-thumbs {
  grid-template-columns: repeat(6, 1fr);
  gap: 9px;
  margin-top: 10px;
}

.product-body .product-thumbs button {
  position: relative;
  height: 82px;
  border-radius: 8px;
  border: 2px solid transparent;
  background: #fffaf3;
  box-shadow: 0 8px 18px rgba(36, 24, 18, .06);
}

.product-body .product-thumbs button.is-active {
  border-color: var(--product-gold);
}

.product-body .product-thumbs .media-wrap {
  height: 100%;
  aspect-ratio: auto;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.thumb-play {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: rgba(36, 24, 18, .24);
}

.thumb-play::before {
  content: "";
  width: 46px;
  height: 46px;
  border: 2px solid #fff;
  border-radius: 50%;
}

.thumb-play::after {
  content: "";
  position: absolute;
  border-left: 12px solid #fff;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  transform: translateX(2px);
}

.product-body .product-buy-box {
  padding-top: 5px;
}

.product-body .product-brand-badge {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 10px 16px;
  border: 1px solid rgba(197, 138, 42, .22);
  border-radius: 8px;
  background: rgba(197, 138, 42, .1);
  color: var(--product-ink);
  font-weight: 900;
}

.product-body .product-brand-badge::before {
  content: "";
  width: 17px;
  height: 17px;
  margin-right: 8px;
  background: currentColor;
  clip-path: polygon(50% 0, 61% 35%, 98% 35%, 68% 55%, 79% 91%, 50% 69%, 21% 91%, 32% 55%, 2% 35%, 39% 35%);
}

.product-body .product-buy-box h1 {
  margin: 0 0 12px;
  max-width: 680px;
  color: #1b130f;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.6rem, 3.2vw, 4rem);
  font-weight: 500;
  line-height: .98;
}

.product-body .product-subtitle {
  margin-bottom: 14px;
  color: var(--product-muted);
  font-size: 1.1rem;
}

.product-body .rating-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 26px;
  color: var(--product-ink);
  font-weight: 700;
}

.product-body .rating-row span {
  color: var(--product-gold);
  letter-spacing: .05em;
}

.product-body .rating-row i {
  width: 1px;
  height: 18px;
  background: rgba(36, 24, 18, .18);
}

.product-body .product-price {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin-bottom: 4px;
  color: #1b130f;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.4rem, 3vw, 3.4rem);
  font-weight: 500;
}

.product-body .product-price small {
  color: rgba(36, 24, 18, .45);
  font-family: inherit;
  font-size: 1.35rem;
  text-decoration: line-through;
}

.installment-note {
  margin: 0 0 22px;
  color: var(--product-muted);
  font-size: .95rem;
}

.product-body .product-buy-box > p:not(.product-subtitle):not(.installment-note) {
  max-width: 700px;
  margin-bottom: 24px;
  color: #3f3027;
  line-height: 1.65;
}

.product-body .variant-row {
  margin-top: 14px;
}

.product-body .variant-row > span {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  color: var(--product-ink);
  font-weight: 900;
}

.product-body .variant-row a {
  color: var(--product-muted);
  font-size: .9rem;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.product-body .variant-row > div {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.product-body .variant-row button {
  min-height: 58px;
  padding: 9px 12px;
  border-radius: 7px;
  background: rgba(255, 255, 255, .72);
  border: 1px solid rgba(36, 24, 18, .14);
  color: var(--product-ink);
  font-weight: 900;
  cursor: pointer;
}

.product-body .variant-row button small {
  display: block;
  margin-top: 3px;
  color: var(--product-muted);
  font-size: .76rem;
  font-weight: 700;
}

.product-body .variant-row button.is-selected {
  border-color: var(--product-gold);
  box-shadow: 0 0 0 1px rgba(197, 138, 42, .28);
}

.product-body .quantity-row {
  display: grid;
  gap: 9px;
  margin: 18px 0 0;
  width: 130px;
}

.product-body .quantity-row span {
  font-weight: 900;
}

.product-body .quantity-row div {
  display: grid;
  grid-template-columns: 38px 1fr 38px;
  align-items: center;
  min-height: 58px;
  border: 1px solid rgba(36, 24, 18, .12);
  border-radius: 9px;
  background: rgba(255, 255, 255, .7);
}

.product-body .quantity-row button {
  height: 100%;
  border: 0;
  background: transparent;
  font-size: 1.4rem;
  cursor: pointer;
}

.product-body .quantity-row strong {
  text-align: center;
  font-size: 1.15rem;
}

.product-body .product-actions {
  display: grid;
  grid-template-columns: minmax(250px, 1fr) minmax(220px, .78fr);
  gap: 14px;
  margin: -58px 0 24px 150px;
}

.product-body .product-actions .btn {
  min-height: 58px;
  border-radius: 8px;
  font-size: 1.05rem;
  font-weight: 900;
}

.product-body .product-actions .btn-secondary {
  border: 2px solid rgba(197, 138, 42, .78);
  background: rgba(255, 255, 255, .45);
  color: var(--product-gold);
}

.product-body .product-actions .btn-primary {
  border: 0;
  background: linear-gradient(135deg, #bd7c25, #d59b3b);
  color: #fff;
  box-shadow: 0 16px 36px rgba(197, 138, 42, .26);
}

.add-cart-btn span {
  width: 20px;
  height: 18px;
  margin-right: 10px;
  border: 2px solid currentColor;
  border-top: 0;
  display: inline-block;
  transform: translateY(3px);
}

.product-body .product-trust-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin: 22px 0 22px;
  color: var(--product-ink);
}

.product-body .product-trust-row span {
  position: relative;
  padding-left: 34px;
  font-size: .9rem;
  font-weight: 900;
  line-height: 1.2;
}

.product-body .product-trust-row span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 22px;
  height: 22px;
  border: 2px solid var(--product-gold);
  border-radius: 6px;
}

.product-body .product-trust-row small {
  display: block;
  margin-top: 2px;
  color: var(--product-muted);
  font-weight: 700;
}

.review-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 42px;
  border-radius: 8px;
  background: rgba(197, 138, 42, .08);
  color: var(--product-ink);
  font-size: 1.02rem;
  font-weight: 800;
}

.review-strip span {
  color: var(--product-gold);
}

.product-lower-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  width: min(1500px, calc(100% - 96px));
  margin: 10px auto 0;
  background: rgba(255, 250, 243, .72);
}

.product-body .product-related,
.product-body .other-brand-section {
  padding: 22px 0 38px;
  background: transparent;
}

.product-body .product-related {
  padding-right: 26px;
}

.product-body .other-brand-section {
  padding-left: 26px;
}

.product-body .product-related .product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.product-body .related-card {
  overflow: hidden;
  border: 1px solid rgba(36, 24, 18, .1);
  border-radius: 8px;
  background: rgba(255, 253, 248, .86);
  box-shadow: none;
}

.product-body .related-card .media-wrap {
  aspect-ratio: 1.25 / 1;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.product-body .related-card .card-body {
  padding: 13px 15px 16px;
}

.product-body .related-card h3 {
  min-height: 42px;
  margin: 3px 0 8px;
  font-size: .98rem;
}

.product-body .brand-mini-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.product-body .brand-mini-grid article {
  min-height: 164px;
  padding: 22px 16px;
  border-radius: 8px;
  background: rgba(255, 253, 248, .86);
  text-align: center;
  box-shadow: none;
}

.product-body .brand-mini-grid h3 {
  margin-bottom: 12px;
  color: var(--product-gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
}

.product-body .brand-mini-grid p {
  min-height: 38px;
  color: var(--product-muted);
  font-size: .9rem;
}

.product-body .brand-mini-grid .btn {
  min-height: 38px;
  padding: 9px 20px;
  border-color: rgba(36, 24, 18, .12);
  background: transparent;
  color: var(--product-ink);
}

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

  .product-body .product-header .site-search {
    display: none;
  }

  .product-body .product-layout,
  .product-lower-grid {
    grid-template-columns: 1fr;
  }

  .product-body .product-related,
  .product-body .other-brand-section {
    padding-left: 0;
    padding-right: 0;
  }
}

@media (max-width: 760px) {
  .product-body .light-topbar {
    display: none;
  }

  .product-body .product-header {
    grid-template-columns: 1fr auto;
    min-height: 72px;
    padding: 0 18px;
  }

  .product-body .product-header .site-nav,
  .product-header-actions {
    display: none;
  }

  .product-body .product-page-shell,
  .product-lower-grid {
    width: min(100% - 28px, 1500px);
  }

  .product-body .product-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .product-body .product-main-image .media-wrap {
    aspect-ratio: 1.15 / 1;
  }

  .product-body .product-thumbs,
  .product-body .variant-row > div,
  .product-body .product-trust-row,
  .product-body .product-related .product-grid,
  .product-body .brand-mini-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-body .product-actions {
    grid-template-columns: 1fr;
    margin: 18px 0 22px;
  }
}

/* Checkout reference pass */
.checkout-body {
  --checkout-bg: #fbf4e9;
  --checkout-panel: rgba(255, 253, 248, .92);
  --checkout-ink: #241812;
  --checkout-muted: #715f50;
  --checkout-gold: #c58a2a;
  --checkout-border: rgba(36, 24, 18, .12);
  min-height: 100vh;
  background:
    linear-gradient(90deg, #fffaf4 0%, #fffaf4 68%, #f3e6d2 68%, #f8efe2 100%);
  color: var(--checkout-ink);
}

.checkout-body .checkout-header {
  position: sticky;
  top: 0;
  z-index: 60;
  width: 100%;
  min-height: 74px;
  margin: 0;
  padding: 0 clamp(28px, 5vw, 96px);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 22px;
  background: rgba(255, 253, 248, .94);
  border-bottom: 1px solid rgba(36, 24, 18, .1);
  box-shadow: 0 12px 30px rgba(36, 24, 18, .04);
  backdrop-filter: blur(14px);
}

.checkout-header-brand .brand-logo {
  color: #0f0c0a;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 2.2vw, 2.7rem);
  font-weight: 500;
  letter-spacing: 0;
}

.checkout-header-brand .brand-logo span {
  color: var(--checkout-gold);
}

.checkout-header-actions {
  display: contents;
}

.checkout-body .active-brand-badge {
  grid-column: 2;
  justify-self: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 8px;
  border: 1px solid rgba(197, 138, 42, .24);
  background: rgba(255, 253, 248, .88);
  color: var(--checkout-ink);
  font-weight: 900;
  box-shadow: 0 8px 20px rgba(36, 24, 18, .04);
}

.checkout-body .active-brand-badge::before {
  content: "";
  width: 17px;
  height: 17px;
  margin-right: 8px;
  border: 2px solid var(--checkout-gold);
  border-radius: 5px;
  box-shadow: inset 0 0 0 3px rgba(197, 138, 42, .08);
}

.checkout-safe-badge,
.checkout-whatsapp-link {
  grid-column: 3;
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  color: var(--checkout-ink);
  font-weight: 900;
  text-decoration: none;
}

.checkout-safe-badge::before,
.checkout-whatsapp-link::before {
  content: "";
  width: 20px;
  height: 20px;
  border: 2px solid currentColor;
  border-radius: 50%;
}

.checkout-shell {
  width: min(1640px, calc(100% - 96px));
  margin: 0 auto;
  padding: 18px 0 0;
  display: grid;
  grid-template-columns: minmax(760px, 1fr) minmax(390px, 430px);
  gap: clamp(42px, 4vw, 66px);
  align-items: start;
}

.checkout-form-panel {
  order: 1;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.checkout-shell .order-summary {
  order: 2;
  position: sticky;
  top: 98px;
}

.checkout-progress {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin: 0 0 26px;
  padding: 0 70px;
  list-style: none;
}

.checkout-progress li {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--checkout-muted);
  font-weight: 800;
}

.checkout-progress li::after {
  content: "";
  position: absolute;
  left: 54px;
  right: 20px;
  top: 50%;
  height: 1px;
  background: rgba(197, 138, 42, .38);
  transform: translateY(-50%);
}

.checkout-progress li:last-child::after {
  display: none;
}

.checkout-progress span {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(197, 138, 42, .35);
  background: #fffaf3;
  color: var(--checkout-muted);
  font-weight: 900;
}

.checkout-progress .is-active span {
  border-color: var(--checkout-gold);
  background: linear-gradient(180deg, #dca24a, #bd7c25);
  color: #fff;
}

.checkout-progress strong {
  position: relative;
  z-index: 2;
  padding-right: 16px;
  background: #fffaf4;
  color: var(--checkout-ink);
  font-size: .95rem;
}

.checkout-step-card {
  margin: 0 0 16px;
  padding: clamp(22px, 2.4vw, 30px);
  border: 1px solid rgba(36, 24, 18, .11);
  border-radius: 12px;
  background: var(--checkout-panel);
  box-shadow: 0 18px 52px rgba(36, 24, 18, .045);
}

.checkout-step-title {
  position: relative;
  margin-bottom: 18px;
}

.checkout-step-title h2 {
  margin: 0 0 8px;
  color: var(--checkout-ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.35rem, 1.55vw, 1.75rem);
  font-weight: 500;
}

.checkout-step-title p {
  margin: 0;
  color: var(--checkout-muted);
  font-size: .93rem;
}

.checkout-step-title a {
  position: absolute;
  right: 0;
  top: 5px;
  color: #9b641f;
  font-size: .84rem;
  font-weight: 900;
}

.checkout-form-grid {
  display: grid;
  grid-template-columns: minmax(420px, 1.02fr) minmax(380px, .86fr);
  gap: 18px;
  align-items: start;
}

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

.checkout-form .compact-row {
  grid-template-columns: .55fr .72fr .54fr .72fr;
}

.checkout-field {
  min-height: 58px;
  padding: 10px 14px;
  border: 1px solid rgba(36, 24, 18, .14);
  border-radius: 7px;
  background: rgba(255, 255, 255, .64);
}

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

.checkout-field input,
.checkout-field textarea {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: #111;
  font: inherit;
  font-weight: 700;
}

.checkout-newsletter,
.save-address {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 14px;
  color: var(--checkout-muted);
  font-size: .9rem;
  font-weight: 700;
}

.save-address input {
  width: 16px;
  height: 16px;
  accent-color: var(--checkout-gold);
}

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

.shipping-option,
.checkout-body .payment-option {
  display: grid;
  grid-template-columns: auto 34px 1fr auto;
  align-items: center;
  gap: 13px;
  min-height: 58px;
  padding: 10px 14px;
  border: 1px solid rgba(36, 24, 18, .13);
  border-radius: 8px;
  background: rgba(255, 255, 255, .62);
  color: var(--checkout-ink);
}

.shipping-option.is-selected,
.checkout-body .payment-option:has(input:checked) {
  border-color: var(--checkout-gold);
  box-shadow: 0 0 0 1px rgba(197, 138, 42, .18);
}

.shipping-option input,
.checkout-body .payment-option input {
  width: 17px;
  height: 17px;
  accent-color: var(--checkout-gold);
}

.shipping-icon {
  width: 26px;
  height: 26px;
  border: 2px solid var(--checkout-gold);
  border-radius: 6px;
}

.shipping-option strong,
.checkout-body .payment-option span {
  color: #12100e;
  font-size: .94rem;
  font-weight: 900;
}

.shipping-option small {
  display: block;
  margin-top: 2px;
  color: var(--checkout-muted);
  font-size: .82rem;
  font-weight: 700;
}

.shipping-option b {
  font-size: .9rem;
}

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

.stripe-payment-overview {
  padding: 16px;
  border: 1px solid rgba(197, 138, 42, .28);
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(197, 138, 42, .1), rgba(255, 255, 255, .78));
}

.stripe-payment-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 8px;
}

.stripe-payment-heading strong {
  color: #12100e;
  font-size: 1rem;
  font-weight: 950;
}

.stripe-payment-heading span {
  flex: 0 0 auto;
  padding: 4px 9px;
  border: 1px solid rgba(197, 138, 42, .3);
  border-radius: 999px;
  background: rgba(255, 255, 255, .72);
  color: #9b641f;
  font-size: .76rem;
  font-weight: 900;
}

.stripe-payment-overview p {
  margin: 0;
  color: var(--checkout-muted);
  font-size: .88rem;
  font-weight: 700;
  line-height: 1.45;
}

.paypal-disabled-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 10px;
  padding: 12px 14px;
  border: 1px solid rgba(36, 24, 18, .12);
  border-radius: 8px;
  background: rgba(255, 255, 255, .52);
  color: var(--checkout-muted);
}

.paypal-disabled-row span {
  color: #0b4f9c;
  font-weight: 950;
}

.paypal-disabled-row small {
  font-weight: 850;
}

.checkout-body .payment-option {
  grid-template-columns: auto 1fr auto;
}

.method-badges {
  display: flex !important;
  gap: 6px;
}

.method-badges b,
.payment-badges span {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 3px 8px;
  border: 1px solid rgba(36, 24, 18, .12);
  border-radius: 4px;
  background: #fff;
  color: #0057b8;
  font-size: .72rem;
  font-weight: 900;
}

.method-logo {
  font-weight: 950;
}

.paypal-logo { color: #006bb6; }
.satispay-logo { color: #e5281b; }
.apple-logo { color: #111; }
.klarna-logo {
  padding: 4px 8px;
  border-radius: 5px;
  background: #ffb8d2;
  color: #661031;
}

.checkout-info-box {
  margin-top: 14px;
  padding: 18px 20px 18px 72px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(197, 138, 42, .13), rgba(255, 255, 255, .6));
  color: var(--checkout-ink);
}

.checkout-info-box strong {
  display: block;
  margin-bottom: 6px;
  font-weight: 950;
}

.checkout-info-box p {
  margin: 0;
  color: var(--checkout-muted);
  font-size: .88rem;
  line-height: 1.45;
}

.gift-box button {
  margin-top: 12px;
  min-height: 36px;
  padding: 0 18px;
  border: 1px solid rgba(197, 138, 42, .45);
  border-radius: 7px;
  background: rgba(255, 255, 255, .75);
  color: #8a5a1d;
  font-weight: 900;
  cursor: pointer;
}

.checkout-pay-button {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  min-height: 54px;
  margin-top: 16px;
  padding: 0 22px;
  border: 0;
  border-radius: 8px;
  background: #111;
  color: #f3c96b;
  font-weight: 950;
  cursor: pointer;
}

.form-message {
  margin: 12px 0 0;
  font-weight: 800;
}

.form-message.error {
  color: #a72413;
}

.checkout-shell .summary-card {
  padding: 26px;
  border: 1px solid rgba(36, 24, 18, .12);
  border-radius: 14px;
  background: rgba(255, 253, 248, .92);
  box-shadow: 0 24px 70px rgba(36, 24, 18, .08);
}

.summary-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  margin-bottom: 20px;
}

.summary-eyebrow {
  margin: 0;
  color: var(--checkout-ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.55rem;
  text-transform: none;
  letter-spacing: 0;
}

.summary-head a {
  color: #9b641f;
  font-size: .82rem;
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.summary-product {
  display: grid;
  grid-template-columns: 88px 1fr auto;
  gap: 16px;
  align-items: start;
  padding: 0 0 16px;
  border-bottom: 1px solid rgba(36, 24, 18, .08);
}

.summary-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  border-radius: 8px;
  background: #f2e3ce;
}

.summary-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.quantity-badge {
  position: absolute;
  right: -7px;
  top: -7px;
  display: grid;
  place-items: center;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: #111;
  color: #fff;
  font-size: .76rem;
  font-weight: 950;
}

.summary-product h3 {
  margin: 2px 0 4px;
  color: #111;
  font-size: .98rem;
}

.summary-product small,
.summary-product p,
.summary-product em {
  display: block;
  margin: 0 0 5px;
  color: var(--checkout-muted);
  font-size: .82rem;
  font-style: normal;
  font-weight: 700;
}

.summary-product strong {
  color: #111;
  white-space: nowrap;
}

.summary-divider,
.summary-brand-line {
  display: none;
}

.checkout-shell .summary-line {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin: 13px 0;
  color: var(--checkout-ink);
  font-weight: 800;
}

.checkout-shell .summary-line span {
  color: var(--checkout-ink);
}

.discount-row {
  margin: 18px 0;
}

.discount-row div {
  display: grid;
  grid-template-columns: 1fr 82px;
  gap: 9px;
}

.discount-row input,
.discount-row button {
  min-height: 42px;
  border: 1px solid rgba(36, 24, 18, .13);
  border-radius: 7px;
  background: rgba(255, 255, 255, .72);
  font: inherit;
}

.discount-row input {
  padding: 0 14px;
}

.discount-row button {
  background: linear-gradient(135deg, #bd7c25, #d5a45b);
  color: #fff;
  font-weight: 950;
}

.discount-row.is-disabled input,
.discount-row.is-disabled button {
  cursor: not-allowed;
  opacity: .65;
}

.discount-row small {
  display: block;
  margin-top: 7px;
  color: var(--checkout-muted);
  font-size: .78rem;
  font-weight: 750;
}

.checkout-shell .summary-line.total {
  align-items: baseline;
  margin-top: 20px;
  padding-top: 15px;
  border-top: 1px solid rgba(36, 24, 18, .1);
}

.checkout-shell .summary-line.total span {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
  font-weight: 500;
}

.checkout-shell .summary-line.total strong {
  color: #0f0c0a;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
}

.tax-note {
  margin: -8px 0 18px;
  color: #4b8b33;
  font-size: .86rem;
  font-weight: 800;
}

.summary-return-box {
  display: grid;
  gap: 12px;
  padding: 15px 16px;
  border: 1px solid rgba(197, 138, 42, .24);
  border-radius: 9px;
  background: rgba(197, 138, 42, .08);
}

.summary-return-box strong {
  display: block;
  margin-bottom: 4px;
}

.summary-return-box p {
  margin: 0;
  color: var(--checkout-muted);
  font-size: .84rem;
  line-height: 1.42;
}

.summary-trust-item + .summary-trust-item {
  padding-top: 12px;
  border-top: 1px solid rgba(197, 138, 42, .16);
}

.checkout-side-trust {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 24px 0 20px;
}

.checkout-side-trust div {
  display: grid;
  gap: 3px;
  padding-left: 30px;
  color: var(--checkout-ink);
  font-size: .78rem;
  font-weight: 900;
}

.checkout-side-trust small {
  color: var(--checkout-muted);
  font-weight: 700;
}

.payment-badges {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 7px;
  margin: 14px 0 0;
}

.checkout-legal {
  display: none;
}

.checkout-help-bar {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1.3fr repeat(4, 1fr);
  gap: 20px;
  margin: 18px calc(50% - 50vw) 0;
  padding: 22px clamp(28px, 5vw, 96px);
  border-top: 1px solid rgba(36, 24, 18, .1);
  background: linear-gradient(90deg, #fbf1e2, #fff8ee);
}

.checkout-help-bar div {
  min-height: 52px;
  padding-left: 28px;
  border-right: 1px solid rgba(36, 24, 18, .1);
}

.checkout-help-bar div:last-child {
  border-right: 0;
}

.checkout-help-bar strong {
  display: block;
  margin-bottom: 3px;
  color: var(--checkout-ink);
  font-size: .94rem;
}

.checkout-help-bar small {
  color: var(--checkout-muted);
  font-size: .82rem;
}

@media (max-width: 1180px) {
  .checkout-body {
    background: #fffaf4;
  }

  .checkout-body .checkout-header,
  .checkout-shell {
    width: min(100% - 32px, 860px);
    padding-left: 0;
    padding-right: 0;
  }

  .checkout-body .checkout-header {
    grid-template-columns: 1fr;
    padding: 18px 0;
  }

  .checkout-header-actions {
    display: flex;
    justify-content: flex-start;
    gap: 12px;
  }

  .checkout-body .active-brand-badge,
  .checkout-safe-badge,
  .checkout-whatsapp-link {
    grid-column: auto;
    justify-self: start;
  }

  .checkout-shell,
  .checkout-form-grid,
  .checkout-help-bar {
    grid-template-columns: 1fr;
  }

  .checkout-shell .order-summary {
    order: 1;
    position: static;
  }

  .checkout-form-panel {
    order: 2;
  }
}

@media (max-width: 680px) {
  .checkout-progress {
    padding: 0;
    overflow-x: auto;
  }

  .checkout-progress strong {
    font-size: .78rem;
  }

  .checkout-form .form-row,
  .checkout-form .compact-row,
  .checkout-side-trust {
    grid-template-columns: 1fr;
  }

  .checkout-step-title a {
    position: static;
    display: inline-block;
    margin-top: 8px;
  }

  .checkout-step-card,
  .checkout-shell .summary-card {
    padding: 20px 16px;
  }

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

  .summary-product > strong {
    grid-column: 2;
  }

  .method-badges {
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .checkout-body .payment-option {
    grid-template-columns: auto 1fr;
  }

  .checkout-body .payment-option small {
    grid-column: 2;
  }

  .checkout-help-bar {
    margin-left: 0;
    margin-right: 0;
    padding: 18px 0;
  }

  .checkout-help-bar div {
    border-right: 0;
  }
}

/* Home hero cleanup: one large mascot visual, no extra drawn scooter/bag overlays. */
.home-reference .cj-hero-art {
  right: -10vw;
  top: 104px;
  bottom: 0;
  width: 72vw;
  min-height: 560px;
  filter: drop-shadow(0 28px 60px rgba(0,0,0,.45));
}

.home-reference .hero-mascot-card {
  right: 0;
  bottom: 0;
  width: min(1240px, 72vw);
  height: min(640px, calc(100% - 12px));
  opacity: 1;
  border-radius: 42px 0 0 0;
  background:
    radial-gradient(circle at 62% 43%, rgba(255, 211, 139, .22), transparent 45%),
    linear-gradient(90deg, rgba(12, 7, 4, 0), rgba(12, 7, 4, .08));
  box-shadow: none;
}

.home-reference .hero-mascot-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  mix-blend-mode: normal;
  filter: saturate(1.08) contrast(1.05);
}

.home-reference .red-vespa,
.home-reference .hero-bag,
.home-reference .hero-note {
  display: none;
}

@media (max-width: 1180px) {
  .home-reference .cj-hero-art {
    right: -13vw;
    width: 72vw;
  }

  .home-reference .hero-mascot-card {
    width: 72vw;
  }
}

@media (max-width: 760px) {
  .home-reference .cj-hero-art {
    position: relative;
    inset: auto;
    width: 100%;
    min-height: 360px;
    margin-top: 28px;
  }

  .home-reference .hero-mascot-card {
    position: relative;
    inset: auto;
    width: 100%;
    height: 360px;
    border-radius: 24px;
  }
}

/* Home hero full-bleed background: the mascot image fills the whole hero. */
.home-reference .cj-hero {
  min-height: 720px;
  padding: 156px 7vw 56px;
  background:
    linear-gradient(90deg, rgba(10, 6, 4, .96) 0%, rgba(15, 9, 5, .9) 28%, rgba(18, 10, 5, .54) 47%, rgba(18, 10, 5, .12) 68%, rgba(18, 10, 5, .02) 100%),
    linear-gradient(180deg, rgba(7, 4, 2, .25), rgba(7, 4, 2, .3)),
    url("../img/clickjoy/gallery-4.avif") center right / cover no-repeat;
}

.home-reference .cj-hero::before {
  opacity: .18;
  background:
    repeating-linear-gradient(90deg, rgba(255,238,198,.05) 0 1px, transparent 1px 118px);
}

.home-reference .cj-hero-copy {
  position: relative;
  z-index: 3;
}

.home-reference .cj-hero-art {
  display: none;
}

@media (max-width: 760px) {
  .home-reference .cj-hero {
    min-height: auto;
    padding: 58px 18px 34px;
    background:
      linear-gradient(90deg, rgba(10, 6, 4, .96) 0%, rgba(15, 9, 5, .82) 52%, rgba(18, 10, 5, .2) 100%),
      url("../img/clickjoy/gallery-4.avif") center right / cover no-repeat;
  }
}

/* Product detail refresh: data-driven ecommerce sheet */
.product-body {
  --product-bg: #fbf7ef;
  --product-panel: #fffdf8;
  --product-ink: #241812;
  --product-muted: #715f50;
  --product-gold: #c58a2a;
  --product-gold-soft: #f3c96b;
  --product-line: rgba(36, 24, 18, .12);
  --product-red: #a72413;
}

.product-body .product-page-shell,
.product-content-section,
.product-related-section {
  width: min(1440px, calc(100% - 72px));
  margin: 0 auto;
}

.product-page {
  padding: 30px 0 36px;
}

.product-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 24px;
  color: var(--product-muted);
  font-size: .92rem;
}

.product-breadcrumb a,
.product-breadcrumb span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.product-breadcrumb a + a::before,
.product-breadcrumb a + span::before,
.product-breadcrumb span::before {
  content: "/";
  color: rgba(36, 24, 18, .32);
}

.product-breadcrumb a {
  color: var(--product-ink);
  font-weight: 800;
}

.product-body .product-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(440px, .92fr);
  gap: clamp(36px, 5vw, 70px);
  align-items: start;
}

.product-gallery {
  min-width: 0;
}

.product-main-image {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid var(--product-line);
  background: linear-gradient(135deg, #f6ead8, #fffaf0);
  box-shadow: 0 26px 68px rgba(36, 24, 18, .13);
}

.product-image-frame,
.product-related-media {
  position: relative;
  display: grid;
  place-items: center;
  width: 100%;
  min-height: 100%;
  overflow: hidden;
  background:
    radial-gradient(circle at 74% 20%, rgba(197, 138, 42, .13), transparent 32%),
    linear-gradient(135deg, #f9efe0, #fffaf3);
}

.product-main-image .product-image-frame {
  aspect-ratio: 1.38 / 1;
}

.product-image-frame img,
.product-related-media img,
.product-thumb-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-image-placeholder {
  display: none;
  padding: 24px;
  color: rgba(36, 24, 18, .48);
  text-align: center;
  font-weight: 900;
}

.product-image-frame.image-missing img,
.product-related-media.image-missing img,
.product-thumb-frame.image-missing img {
  display: none;
}

.product-image-frame.image-missing .product-image-placeholder,
.product-related-media.image-missing .product-image-placeholder,
.product-thumb-frame.image-missing .product-image-placeholder,
.product-image-frame.is-placeholder {
  display: grid;
  place-items: center;
  min-height: 260px;
}

.product-sale-badge {
  position: absolute;
  top: 18px;
  left: 18px;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--product-red);
  color: #fff;
  font-size: .78rem;
  font-weight: 900;
}

.product-thumbs {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
  margin-top: 12px;
}

.product-thumbs button {
  min-height: 86px;
  padding: 0;
  overflow: hidden;
  border: 1px solid var(--product-line);
  border-radius: 10px;
  background: #fffaf3;
  cursor: pointer;
}

.product-thumbs button.is-active {
  border-color: var(--product-gold);
  box-shadow: 0 0 0 2px rgba(197, 138, 42, .2);
}

.product-thumb-frame {
  width: 100%;
  height: 100%;
  min-height: 86px;
  background: #f7ecdc;
}

.product-info {
  padding: clamp(24px, 3vw, 38px);
  border: 1px solid var(--product-line);
  border-radius: 18px;
  background: rgba(255, 253, 248, .84);
  box-shadow: 0 22px 60px rgba(36, 24, 18, .08);
}

.product-pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.product-brand-pill,
.product-category-pill {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 13px;
  border: 1px solid rgba(197, 138, 42, .28);
  border-radius: 999px;
  background: #fff7e9;
  color: var(--product-ink);
  font-size: .86rem;
  font-weight: 900;
}

.product-category-pill {
  border-color: var(--product-line);
  background: #fff;
  color: var(--product-muted);
}

.product-info h1 {
  margin: 0 0 10px;
  max-width: 760px;
  color: #1b130f;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.7rem, 5vw, 5.1rem);
  line-height: .94;
  letter-spacing: -.035em;
}

.product-subtitle,
.product-short-description {
  color: var(--product-muted);
  line-height: 1.65;
}

.product-rating {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 16px 0;
  font-weight: 800;
}

.product-rating span {
  color: var(--product-gold);
  letter-spacing: .06em;
}

.product-rating small {
  color: var(--product-muted);
}

.product-price {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 12px;
  margin: 14px 0 12px;
}

.product-price strong {
  color: var(--product-ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 3.6vw, 3.25rem);
  font-weight: 500;
}

.product-price del {
  color: rgba(36, 24, 18, .45);
  font-weight: 700;
}

.product-price em {
  padding: 5px 9px;
  border-radius: 999px;
  background: rgba(167, 36, 19, .1);
  color: var(--product-red);
  font-size: .78rem;
  font-style: normal;
  font-weight: 900;
}

.product-availability {
  display: grid;
  gap: 2px;
  margin: 20px 0;
  padding: 14px 16px;
  border: 1px solid rgba(36, 24, 18, .1);
  border-radius: 12px;
  background: #fffaf3;
}

.product-availability strong {
  font-size: .94rem;
}

.product-availability span {
  color: var(--product-muted);
  font-size: .9rem;
}

.product-availability.is-ok strong {
  color: #1f8f4d;
}

.product-availability.is-low strong {
  color: #b87513;
}

.product-availability.is-blocked strong,
.product-availability.is-soldout strong {
  color: var(--product-red);
}

.product-options {
  display: grid;
  gap: 16px;
  margin: 20px 0 0;
}

.product-option-group > span,
.product-qty label {
  display: block;
  margin-bottom: 9px;
  color: var(--product-ink);
  font-weight: 900;
}

.product-option-list {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.product-option-chip {
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid var(--product-line);
  border-radius: 999px;
  background: #fff;
  color: var(--product-ink);
  font-weight: 850;
  cursor: pointer;
}

.product-option-chip.is-selected {
  border-color: var(--product-gold);
  background: #fff4dc;
  box-shadow: 0 0 0 2px rgba(197, 138, 42, .16);
}

.product-qty {
  margin: 22px 0 0;
}

.product-qty div {
  display: grid;
  grid-template-columns: 46px 76px 46px;
  width: max-content;
  border: 1px solid var(--product-line);
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
}

.product-qty button,
.product-qty input {
  min-height: 46px;
  border: 0;
  background: transparent;
  color: var(--product-ink);
  text-align: center;
  font-weight: 900;
}

.product-qty button {
  cursor: pointer;
  font-size: 1.25rem;
}

.product-qty input {
  border-inline: 1px solid var(--product-line);
}

.product-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, .82fr);
  gap: 12px;
  margin: 22px 0;
}

.product-cta .btn {
  min-height: 56px;
  border-radius: 10px;
}

.product-cta .btn-primary[disabled] {
  opacity: .5;
  cursor: not-allowed;
}

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

.product-trust span {
  min-height: 86px;
  padding: 14px 12px;
  border: 1px solid var(--product-line);
  border-radius: 12px;
  background: #fffaf3;
}

.product-trust strong,
.product-trust small {
  display: block;
}

.product-trust strong {
  color: var(--product-ink);
  font-size: .88rem;
}

.product-trust small {
  margin-top: 4px;
  color: var(--product-muted);
  font-size: .78rem;
  line-height: 1.35;
}

.product-content-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .42fr);
  gap: 24px;
  padding: 10px 0 34px;
}

.product-details,
.product-brand-box,
.product-related-card {
  border: 1px solid var(--product-line);
  border-radius: 16px;
  background: rgba(255, 253, 248, .86);
  box-shadow: 0 18px 44px rgba(36, 24, 18, .06);
}

.product-details {
  overflow: hidden;
}

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

.product-details details:last-child {
  border-bottom: 0;
}

.product-details summary {
  padding: 18px 22px;
  color: var(--product-ink);
  font-weight: 950;
  cursor: pointer;
}

.product-details details > div {
  padding: 0 22px 20px;
  color: var(--product-muted);
  line-height: 1.7;
}

.product-brand-box {
  padding: 24px;
}

.product-brand-box small,
.product-section-head small {
  color: var(--product-gold);
  font-size: .76rem;
  font-weight: 950;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.product-brand-box h2,
.product-section-head h2 {
  margin: 8px 0 10px;
  color: var(--product-ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.8rem, 3vw, 2.55rem);
  line-height: 1.04;
}

.product-brand-box p {
  color: var(--product-muted);
  line-height: 1.65;
}

.product-related-section {
  padding: 8px 0 54px;
}

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

.product-section-head a {
  color: var(--product-ink);
  font-weight: 900;
}

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

.product-related-card {
  overflow: hidden;
}

.product-related-card a {
  display: block;
  color: inherit;
}

.product-related-media {
  aspect-ratio: 1.15 / 1;
}

.product-related-card div:not(.product-related-media):not(.product-image-placeholder) {
  padding: 16px;
}

.product-related-card small {
  color: var(--product-muted);
  font-weight: 800;
}

.product-related-card h3 {
  min-height: 42px;
  margin: 5px 0 10px;
  color: var(--product-ink);
  font-size: 1rem;
}

.product-related-card strong {
  color: var(--product-red);
}

.product-empty-related,
.product-loading,
.product-not-found {
  padding: 40px 0;
  color: var(--product-muted);
}

@media (max-width: 1180px) {
  .product-body .product-layout,
  .product-content-section {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 720px) {
  .product-body .product-page-shell,
  .product-content-section,
  .product-related-section {
    width: min(100% - 28px, 1440px);
  }

  .product-info {
    padding: 20px 16px;
  }

  .product-info h1 {
    font-size: clamp(2.2rem, 12vw, 3.4rem);
  }

  .product-thumbs,
  .product-related-grid,
  .product-trust,
  .product-cta {
    grid-template-columns: 1fr;
  }

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

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

/* Final checkout preview overrides */
.checkout-body {
  background: linear-gradient(90deg, #fffaf4 0%, #fffaf4 67%, #f2dfbf 67%, #f2dfbf 100%);
}
.checkout-body .checkout-header {
  min-height: 74px;
  display: flex;
  justify-content: space-between;
  padding: 0 clamp(24px, 5vw, 76px);
  background: rgba(255, 253, 248, .94);
}
.checkout-body .active-brand-badge { display: none; }
.checkout-shell {
  width: min(1620px, calc(100% - 36px));
  padding-top: 26px;
  grid-template-columns: minmax(0, 1fr) 430px;
  gap: clamp(28px, 5vw, 74px);
}
.checkout-progress {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  max-width: 880px;
  margin: 0 0 24px 56px;
  padding: 0;
  gap: 18px;
}
.checkout-step-card {
  border-radius: 20px;
  padding: 26px;
  background: rgba(255, 253, 248, .96);
}
.checkout-step-title {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.step-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  background: linear-gradient(135deg, #dba64b, #b97719);
  color: #fff;
  font-weight: 900;
}
.checkout-form-grid {
  grid-template-columns: 1fr;
  gap: 14px;
}
.checkout-form .compact-row {
  grid-template-columns: .75fr 1fr .8fr .9fr;
}
.checkout-field {
  min-height: 58px;
  border-radius: 9px;
  background: #fff;
}
.shipping-options {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.shipping-option {
  min-height: 96px;
  grid-template-columns: 24px 34px 1fr auto;
  border-radius: 12px;
  background: #fff;
  cursor: pointer;
}
.shipping-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.radio-dot {
  width: 17px;
  height: 17px;
  border-radius: 50%;
  border: 2px solid #c9bba8;
  display: grid;
  place-items: center;
}
.shipping-option.is-selected .radio-dot { border-color: #9a651d; }
.shipping-option.is-selected .radio-dot::after {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #9a651d;
}
.ship-icon {
  width: 34px;
  height: 34px;
  border-radius: 8px;
}
.ship-copy strong {
  display: block;
  font-size: 14px;
  margin-bottom: 4px;
}
.ship-copy small { font-size: 12px; }
.ship-price {
  align-self: end;
  white-space: nowrap;
}
.secure-pill {
  display: inline-flex;
  align-items: center;
  margin-left: 10px;
  padding: 4px 10px;
  border: 1px solid rgba(201, 140, 46, .2);
  border-radius: 999px;
  background: #f7ead0;
  color: #9a651d;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  font-weight: 800;
  vertical-align: middle;
}
.stripe-payment-overview {
  border: 0;
  padding: 0;
  background: transparent;
}
.stripe-payment-heading { display: none; }
.payment-badges {
  justify-content: flex-start;
  gap: 12px;
  margin: 18px 0 14px;
}
.payment-badges .payment-badge {
  min-width: 86px;
  min-height: 42px;
  justify-content: center;
  padding: 0 12px;
  border-radius: 8px;
  font-size: .78rem;
  text-transform: none;
  gap: 7px;
  letter-spacing: 0;
  box-shadow: inset 0 -1px 0 rgba(32, 22, 15, .04);
}
.payment-badge.visa {
  color: #1434cb;
  font-size: .98rem;
  font-style: italic;
  font-weight: 950;
  text-transform: uppercase;
}
.payment-badge.mastercard,
.payment-badge.maestro {
  color: #2b2520;
  font-size: .68rem;
  font-weight: 850;
}
.payment-badge .card-circles {
  position: relative;
  width: 28px;
  height: 18px;
  display: inline-block;
  flex: 0 0 auto;
}
.payment-badge .card-circles::before,
.payment-badge .card-circles::after {
  content: "";
  position: absolute;
  top: 1px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
}
.payment-badge.mastercard .card-circles::before { left: 0; background: #eb001b; }
.payment-badge.mastercard .card-circles::after { right: 0; background: rgba(247, 158, 27, .9); }
.payment-badge.maestro .card-circles::before { left: 0; background: #009ddd; }
.payment-badge.maestro .card-circles::after { right: 0; background: rgba(237, 0, 6, .9); }
.payment-badge.amex {
  color: #fff;
  background: #2f86c7;
  border-color: #2f86c7;
  font-weight: 950;
  text-transform: uppercase;
}
.payment-badge.apple {
  color: #111;
  font-weight: 900;
}
.payment-badge.google {
  color: #2b2520;
  font-weight: 900;
}
.payment-badge.google span::first-letter { color: #4285f4; }
.payment-badge.link {
  color: #00a65a;
  font-size: .95rem;
  font-weight: 950;
  text-transform: lowercase;
}
.payment-badge.klarna {
  color: #101010;
  background: #ffd5e4;
  border-color: #ffc0d5;
  font-weight: 950;
}
.paypal-disabled-row {
  justify-content: flex-start;
  min-height: 44px;
  margin-bottom: 14px;
  background: #fffaf2;
}
.paypal-mark {
  color: #006bb7;
  font-size: 22px;
  letter-spacing: -.05em;
}
.checkout-pay-button {
  min-height: 54px;
  border-radius: 8px;
  background: linear-gradient(135deg, #d59a34, #ad6e16);
  color: #fff;
  box-shadow: 0 15px 30px rgba(177, 112, 22, .22);
  font-size: 18px;
}
.checkout-shell .summary-card {
  border-radius: 18px;
  padding: 28px;
  box-shadow: 0 22px 70px rgba(40, 28, 15, .10);
}
.summary-product {
  grid-template-columns: 94px 1fr auto;
  align-items: center;
}
.summary-image {
  width: 94px;
  height: 94px;
  aspect-ratio: auto;
  border-radius: 10px;
}
.summary-info h3 { text-transform: uppercase; }
.summary-return-box.trust-panel {
  margin-top: 20px;
  padding: 18px;
  display: grid;
  gap: 18px;
  border-radius: 12px;
  background: #fff7e8;
}
.summary-return-box .trust-item {
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: 12px;
  align-items: start;
}
.summary-return-box .trust-item > span {
  width: 26px;
  height: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #9a651d;
}
.summary-return-box .trust-item svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.summary-return-box .trust-item strong,
.summary-return-box .trust-item p {
  max-width: none;
  word-break: normal;
  overflow-wrap: normal;
}
.privacy-note {
  margin: 22px 0 0;
  color: var(--checkout-muted);
  font-size: 13px;
  text-align: center;
}
@media (max-width: 1100px) {
  .checkout-body { background: #fffaf4; }
  .checkout-shell { grid-template-columns: 1fr; }
  .checkout-shell .order-summary { position: static; }
  .checkout-progress {
    margin-left: 0;
    overflow-x: auto;
  }
}
@media (max-width: 760px) {
  .checkout-body .checkout-header {
    padding: 18px;
    flex-wrap: wrap;
    gap: 10px;
  }
  .checkout-progress { grid-template-columns: repeat(4, minmax(130px, 1fr)); }
  .checkout-form .form-row,
  .checkout-form .compact-row,
  .shipping-options { grid-template-columns: 1fr; }
  .summary-product { grid-template-columns: 80px 1fr; }
  .summary-product > strong { grid-column: 2; }
}
