/* Joelhopro — Porto Warehouse Athletic
   Cool concrete ash, charcoal bands, amber signal CTAs.
   Archivo + Karla (local). Checkout as packing card on charcoal dock.
*/

.skip-link {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
  background: var(--char);
  color: #fff;
  font-weight: 700;
  z-index: 1000;
}
.skip-link:focus {
  position: fixed;
  left: 1rem;
  top: 1rem;
  width: auto;
  height: auto;
  margin: 0;
  padding: 0.65rem 0.9rem;
  clip: auto;
  overflow: visible;
  background: var(--paper);
  color: var(--char);
  border: 2px solid var(--char);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --ash: #E8EAED;
  --paper: #F7F8F9;
  --char: #16181C;
  --steel: #5A636E;
  --line: #C9CED4;
  --amber: #C45C12;
  --amber-deep: #9A4509;
  --ok: #2F6B4F;
  --white: #FFFFFF;
  --font-display: "Archivo", system-ui, sans-serif;
  --font-body: "Karla", system-ui, sans-serif;
  --radius: 0;
  --max: 1180px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

html {
  scroll-behavior: smooth;
  background: var(--char);
}
body {
  font-family: var(--font-body);
  color: var(--char);
  background: var(--ash);
  line-height: 1.6;
  font-size: 1.0625rem;
  -webkit-font-smoothing: antialiased;
  margin: 0;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }

.wrap {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

/* Disclosure */
.disclosure {
  background: var(--char);
  color: rgba(255, 255, 255, 0.78);
  border-bottom: none;
  font-size: 0.8125rem;
  line-height: 1.45;
}
.disclosure-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem 1.1rem;
  padding: 0.7rem 0;
}
.disclosure-badge {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--char);
  background: var(--amber);
  padding: 0.28rem 0.55rem;
  line-height: 1;
}
.disclosure-copy {
  flex: 1 1 16rem;
  margin: 0;
  min-width: 0;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.72);
}
.disclosure-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.15rem 0;
  margin-left: auto;
}
.disclosure-links a {
  color: rgba(255, 255, 255, 0.92);
  font-weight: 600;
  text-decoration: none;
  padding: 0.15rem 0.45rem;
  border-bottom: 1px solid transparent;
}
.disclosure-links a:hover,
.disclosure-links a:focus-visible {
  color: #fff;
  border-bottom-color: var(--amber);
  outline: none;
}
.disclosure-links a + a::before {
  content: "·";
  margin-right: 0.45rem;
  color: rgba(255, 255, 255, 0.35);
  pointer-events: none;
}
.disclosure a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
}
.disclosure-links a {
  text-decoration: none;
}
.disclosure-bottom {
  background: var(--char);
  border-bottom: none;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.disclosure-bottom .disclosure-inner {
  padding: 0.85rem 0;
}
.disclosure-bottom .disclosure-copy {
  flex-basis: min(100%, 48rem);
}
.disclosure-bottom .disclosure-copy a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (max-width: 720px) {
  .disclosure-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.55rem;
    padding: 0.85rem 0;
  }
  .disclosure-links {
    margin-left: 0;
  }
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--char);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: background 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.site-header.is-light {
  background: var(--paper);
  box-shadow: 0 10px 28px rgba(22, 24, 28, 0.08);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.85rem 0;
}
.brand {
  display: flex;
  align-items: baseline;
  gap: 0.55rem;
}
.brand-mark {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amber);
  border: 1px solid var(--amber);
  padding: 0.25rem 0.4rem;
}
.site-header.is-light .brand-mark {
  color: var(--amber-deep);
  border-color: var(--amber-deep);
}
.brand-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.45rem;
  letter-spacing: -0.03em;
  color: #fff;
}
.site-header.is-light .brand-name { color: var(--char); }

.nav { display: none; gap: 1.5rem; }
.nav a {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.78);
}
.nav a:hover { color: #fff; }
.nav a:focus-visible {
  outline: 2px solid var(--amber);
  outline-offset: 4px;
}
.site-header.is-light .nav a { color: var(--char); }
.site-header.is-light .nav a:hover { color: var(--amber); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.8rem 1.25rem;
  border-radius: var(--radius);
  transition: transform 0.15s var(--ease), background 0.15s, color 0.15s;
}
.btn:focus-visible {
  outline: 2px solid var(--ok);
  outline-offset: 3px;
}
.btn-primary {
  background: var(--amber);
  color: #fff;
}
.btn-primary:hover {
  background: var(--amber-deep);
  transform: translateY(-1px);
}
.btn-amber {
  background: var(--amber);
  color: #fff;
  box-shadow: 0 8px 24px rgba(196, 92, 18, 0.28);
}
.btn-amber:hover {
  background: var(--amber-deep);
  transform: translateY(-2px);
}
.btn-amber:disabled,
.btn-primary:disabled {
  opacity: 0.65;
  cursor: wait;
  transform: none;
  box-shadow: none;
}
.btn-lg {
  width: 100%;
  max-width: 22rem;
  min-height: 52px;
  padding: 1rem 1.5rem;
  font-size: 0.9rem;
}

.nav-toggle {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.menu-toggle {
  width: 44px;
  height: 44px;
  display: grid;
  gap: 5px;
  place-content: center;
  flex-shrink: 0;
  cursor: pointer;
}
.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  transition: transform 0.2s var(--ease), opacity 0.2s var(--ease);
}
.site-header.is-light .menu-toggle span { background: var(--char); }
.nav-toggle:focus-visible + .header-inner .menu-toggle {
  outline: 2px solid var(--amber);
  outline-offset: 3px;
}
.nav-toggle:checked + .header-inner .menu-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle:checked + .header-inner .menu-toggle span:nth-child(2) {
  opacity: 0;
}
.nav-toggle:checked + .header-inner .menu-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.header-inner > .btn-primary { display: none; }
.header-actions-home {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-left: auto;
}
.header-actions-home .btn-primary { display: none; }
@media (min-width: 900px) {
  .nav { display: flex; }
  .menu-toggle { display: none; }
  .header-inner > .btn-primary { display: inline-flex; }
  .header-actions-home {
    margin-left: 0;
  }
  .header-actions-home .btn-primary { display: inline-flex; }
}
.site-header.header-simple .header-inner > .btn-primary,
.site-header.header-simple .header-inner > .btn-ghost,
.site-header.header-simple .header-actions {
  display: inline-flex;
}
.site-header.header-simple .menu-toggle { display: none; }

.header-actions {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  flex-shrink: 0;
}
.cart-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  min-height: 44px;
  padding: 0.35rem 0.55rem;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--char);
  border: 1px solid var(--line);
  background: var(--paper);
}
.site-header:not(.is-light) .cart-link {
  color: #fff;
  border-color: rgba(255,255,255,0.2);
  background: transparent;
}
.cart-link.is-active,
.cart-link:hover {
  border-color: var(--amber);
  color: var(--amber-deep);
}
.site-header:not(.is-light) .cart-link:hover {
  color: var(--amber);
  border-color: var(--amber);
}
.cart-link-icon {
  display: grid;
  place-items: center;
}
.cart-count {
  min-width: 1.25rem;
  height: 1.25rem;
  padding: 0 0.3rem;
  display: inline-grid;
  place-items: center;
  background: var(--amber);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 800;
  border-radius: 999px;
}

.nav-mobile {
  display: none;
  flex-direction: column;
  gap: 0.25rem;
  padding-bottom: 1rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.nav-toggle:checked ~ .nav-mobile { display: flex; }
@media (min-width: 900px) {
  .nav-toggle:checked ~ .nav-mobile { display: none; }
}
.nav-mobile a {
  min-height: 44px;
  display: flex;
  align-items: center;
  color: rgba(255,255,255,0.9);
  font-weight: 600;
  padding: 0 0.15rem;
}
.nav-mobile a:focus-visible {
  outline: 2px solid var(--amber);
  outline-offset: 2px;
}
.site-header.is-light .nav-mobile {
  border-top-color: var(--line);
}
.site-header.is-light .nav-mobile a { color: var(--char); }
.nav-mobile-cta {
  margin-top: 0.4rem !important;
  justify-content: center !important;
  background: var(--amber) !important;
  color: #fff !important;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.82rem;
}

/* Hero */
.hero {
  position: relative;
  min-height: min(88vh, 760px);
  background: var(--char);
  color: #fff;
  display: grid;
  align-items: end;
  overflow: hidden;
}
.hero-media {
  position: absolute;
  inset: 0;
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 70% center;
  opacity: 0.55;
}
.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(100deg, rgba(22,24,28,0.92) 0%, rgba(22,24,28,0.55) 48%, rgba(22,24,28,0.2) 100%),
    linear-gradient(0deg, rgba(22,24,28,0.75), transparent 40%);
}
.hero-content {
  position: relative;
  z-index: 1;
  padding: 4rem 0 3.25rem;
  max-width: 34rem;
  animation: rise 0.85s var(--ease) both;
}
.hero-brand {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(3rem, 9vw, 5.2rem);
  letter-spacing: -0.045em;
  line-height: 0.9;
  margin-bottom: 1.1rem;
}
.hero h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.35rem, 2.8vw, 1.85rem);
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 0.85rem;
  max-width: 16ch;
}
.hero-lead {
  color: rgba(255,255,255,0.78);
  margin-bottom: 1.6rem;
  max-width: 34ch;
}
.hero-note {
  margin-top: 0.75rem;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.58);
}
@keyframes rise {
  from { opacity: 0; transform: translateY(16px); filter: blur(3px); }
  to { opacity: 1; transform: none; filter: none; }
}
@media (prefers-reduced-motion: reduce) {
  .hero-content { animation: none; }
  .btn,
  .btn-primary,
  .btn-amber {
    transition: none;
  }
  .btn-primary:hover,
  .btn-amber:hover {
    transform: none;
  }
  html { scroll-behavior: auto; }
}

/* Manifest / trust */
.manifest {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  padding: 0;
}
.manifest-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
@media (min-width: 900px) {
  .manifest-grid { grid-template-columns: repeat(5, 1fr); }
}
.manifest-item {
  padding: 1.2rem 1rem;
  border-bottom: 1px solid var(--line);
}
@media (min-width: 900px) {
  .manifest-item {
    border-bottom: 0;
    border-right: 1px solid var(--line);
    padding: 1.35rem 1.1rem;
  }
  .manifest-item:last-child { border-right: 0; }
}
@media (max-width: 899px) {
  .manifest-item:nth-last-child(-n+2) { border-bottom: 0; }
  .manifest-item:nth-child(odd) {
    border-right: 1px solid var(--line);
  }
}
.manifest-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  margin-bottom: 0.2rem;
}
.manifest-item span {
  display: block;
  font-size: 0.8rem;
  color: var(--steel);
  line-height: 1.35;
}

/* Sections */
.section { padding: 4.25rem 0; }
.section-kicker {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 0.55rem;
}
.section h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.7rem, 3.4vw, 2.6rem);
  letter-spacing: -0.035em;
  line-height: 1.12;
  margin-bottom: 0.85rem;
  max-width: 22ch;
}
.section-intro {
  color: var(--steel);
  max-width: 42rem;
  margin-bottom: 2.25rem;
}
.rule {
  width: 100%;
  max-width: 4rem;
  height: 3px;
  background: var(--amber);
  margin: 0 0 1.5rem;
}

.context { background: var(--ash); }
.context-split {
  display: grid;
  gap: 2rem;
}
@media (min-width: 840px) {
  .context-split {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3rem;
  }
}
.situation-list li {
  display: flex;
  align-items: baseline;
  gap: 0.7rem;
  padding: 0.95rem 0;
  border-bottom: 1px solid var(--line);
  font-size: 1.02rem;
}
.situation-list li:first-child { border-top: 1px solid var(--line); }
.situation-list .hash {
  flex: 0 0 1.5rem;
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--amber);
  font-size: 0.85rem;
  line-height: 1.6;
}
.situation-list li > span:not(.hash) {
  flex: 1 1 auto;
  min-width: 0;
}
.panel {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 1.5rem;
}
.panel h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 0.7rem;
}
.panel p {
  color: var(--steel);
  font-size: 0.95rem;
  margin-bottom: 0.85rem;
}
.panel p:last-child { margin-bottom: 0; }
.disclaimer-inline {
  border-top: 1px solid var(--line);
  padding-top: 0.9rem;
  margin-top: 0.9rem;
  font-size: 0.82rem;
}

.mechanism { background: var(--paper); }
.slab-grid {
  display: grid;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
@media (min-width: 800px) {
  .slab-grid { grid-template-columns: repeat(3, 1fr); }
}
.slab {
  background: var(--ash);
  padding: 1.6rem 1.35rem;
}
.slab-label {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 0.65rem;
}
.slab h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 0.55rem;
}
.slab p { color: var(--steel); font-size: 0.95rem; }

.mech-visual {
  margin-top: 2rem;
  display: grid;
  gap: 1.25rem;
}
@media (min-width: 760px) {
  .mech-visual {
    grid-template-columns: 1.25fr 0.85fr;
    align-items: center;
  }
}
.mech-visual img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border: 1px solid var(--line);
}
.mech-aside strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}
.mech-aside p { color: var(--steel); }

.specs { background: var(--ash); }
.spec-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--paper);
  border: 1px solid var(--line);
}
.spec-table th,
.spec-table td {
  text-align: left;
  padding: 0.95rem 1rem;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}
.spec-table th {
  width: 36%;
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 800;
}
.spec-table td { color: var(--steel); }
.spec-table tr:last-child th,
.spec-table tr:last-child td { border-bottom: 0; }

.offer { background: var(--ash); }
.offer .context-split { margin-top: 0; }
.offer .panel {
  background: var(--paper);
  box-shadow: 0 12px 28px rgba(22, 24, 28, 0.06);
}

.faq { background: var(--ash); }
.faq-list {
  display: grid;
  gap: 0.55rem;
  max-width: 48rem;
}
.faq-list details {
  background: var(--paper);
  border: 1px solid var(--line);
}
.faq-list summary {
  list-style: none;
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.02rem;
  padding: 1.05rem 1.15rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  min-height: 48px;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: "+";
  color: var(--amber);
  font-size: 1.35rem;
  font-weight: 400;
}
.faq-list details[open] summary::after { content: "–"; }
.faq-list details p {
  padding: 0 1.15rem 1.15rem;
  color: var(--steel);
}
.faq-list a {
  color: var(--amber-deep);
  text-decoration: underline;
}

/* Order CTA (home) + standalone checkout page */
.order-cta {
  background: var(--char);
  color: #fff;
  padding: 4.25rem 0 5rem;
}
.order-cta-inner {
  display: grid;
  gap: 1.75rem;
  align-items: end;
}
@media (min-width: 800px) {
  .order-cta-inner {
    grid-template-columns: 1.2fr 0.8fr;
    gap: 3rem;
  }
}
.order-cta-copy .order-kicker { color: var(--amber); }
.order-cta h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.7rem, 3.2vw, 2.5rem);
  letter-spacing: -0.03em;
  color: #fff;
  max-width: none;
  margin-bottom: 0.7rem;
}
.order-cta .order-lead { color: rgba(255,255,255,0.72); margin: 0; max-width: 36rem; }
.order-cta-actions .btn-lg { max-width: none; }
.order-cta-note {
  margin-top: 0.75rem;
  color: rgba(255,255,255,0.55);
}

.btn-ghost {
  background: transparent;
  color: var(--char);
  border: 1px solid var(--line);
  padding: 0.7rem 1rem;
}
.btn-ghost:hover {
  border-color: var(--char);
  background: var(--ash);
}
.btn-ghost-dark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: var(--char);
  border: 1px solid var(--line);
  padding: 0.8rem 1.25rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.btn-ghost-dark:hover {
  border-color: var(--char);
  background: var(--ash);
}

.checkout-page {
  background: var(--ash);
}
.checkout-page .site-header {
  position: sticky;
  background: var(--paper);
  box-shadow: none;
  border-bottom: 1px solid var(--line);
}
.checkout-page-main {
  padding: 2.5rem 0 4rem;
}
.checkout-page-hero {
  margin-bottom: 1.75rem;
  max-width: 40rem;
}
.checkout-page-hero h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.85rem, 3.4vw, 2.75rem);
  letter-spacing: -0.035em;
  line-height: 1.1;
  margin-bottom: 0.7rem;
  color: var(--char);
}
.checkout-page-lead {
  color: var(--steel);
  margin: 0;
  max-width: 38rem;
}
.checkout-standalone {
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: 0 18px 48px rgba(22, 24, 28, 0.08);
}
.success-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

/* Order dock (legacy class kept for shared tokens) */
.order {
  background: var(--char);
  color: #fff;
  padding: 4.25rem 0 5rem;
}
.order-intro { margin-bottom: 1.5rem; max-width: 40rem; }
.order-kicker { color: var(--amber); }
.order h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.7rem, 3.2vw, 2.5rem);
  letter-spacing: -0.03em;
  color: #fff;
  max-width: none;
  margin-bottom: 0.7rem;
}
.order-lead { color: rgba(255,255,255,0.72); }

.checkout {
  background: var(--ash);
  color: var(--char);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 28px 60px rgba(0,0,0,0.35);
  padding: 1.15rem;
}
@media (min-width: 720px) {
  .checkout { padding: 1.6rem; }
}

.checkout-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  list-style: none;
  margin-bottom: 1.35rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line);
}
.checkout-steps li {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--steel);
}
.checkout-steps span {
  width: 1.5rem;
  height: 1.5rem;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  background: var(--paper);
  font-size: 0.72rem;
}
.checkout-steps li.is-active { color: var(--char); }
.checkout-steps li.is-active span {
  background: var(--amber);
  border-color: var(--amber);
  color: #fff;
}
.checkout-steps li.is-done { color: var(--ok); }
.checkout-steps li.is-done span {
  background: var(--ok);
  border-color: var(--ok);
  color: #fff;
}
.checkout-steps a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  color: inherit;
}
.checkout-steps a:hover { text-decoration: underline; }

.checkout-grid {
  display: grid;
  gap: 1.15rem;
}
@media (min-width: 960px) {
  .checkout-grid {
    grid-template-columns: 1.35fr 0.9fr;
    align-items: start;
  }
}

.checkout-main {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 1.15rem;
}
@media (min-width: 720px) {
  .checkout-main { padding: 1.5rem; }
}

.order-form {
  position: relative;
}
.form-section legend {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.05rem;
  margin-bottom: 0.85rem;
  padding: 0;
}

.order-form .form-row {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-bottom: 0.85rem;
  min-width: 0;
}
.order-form label,
.order-form .qty-label {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--char);
}
.order-form .qty-label {
  display: block;
  margin-bottom: 0.35rem;
}
.order-form input:not([type="checkbox"]):not([type="radio"]):not([type="hidden"]),
.order-form select,
.order-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--char);
  border-radius: var(--radius);
  padding: 0 0.9rem;
  font: inherit;
  font-size: 1rem;
  box-sizing: border-box;
  -webkit-appearance: none;
  appearance: none;
}
.order-form input:not([type="checkbox"]):not([type="radio"]):not([type="hidden"]),
.order-form select {
  height: 3rem;
  min-height: 3rem;
}
.order-form textarea {
  padding: 0.75rem 0.9rem;
  min-height: 6rem;
  resize: vertical;
}
.order-form select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%235A636E' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.9rem center;
  padding-right: 2.4rem;
}
.order-form input:not([type="checkbox"]):not([type="radio"]):focus,
.order-form select:focus,
.order-form textarea:focus {
  outline: none;
  border-color: var(--char);
  box-shadow: 0 0 0 3px rgba(22, 24, 28, 0.12);
}
.order-form input:not([type="checkbox"]):not([type="radio"]):user-invalid,
.order-form select:user-invalid,
.order-form textarea:user-invalid {
  border-color: #B33A3A;
  box-shadow: 0 0 0 3px rgba(179, 58, 58, 0.12);
}
.qty-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
}
.qty-options label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  min-height: 3rem;
  padding: 0 0.75rem;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
}
.qty-options input {
  width: 1rem;
  height: 1rem;
  margin: 0;
  accent-color: var(--amber);
  flex-shrink: 0;
}
.summary-qty-val::before { content: "1"; }
.summary-total-val::before { content: "€49,90"; }
.checkout-grid:has(#q2:checked) .summary-qty-val::before { content: "2"; }
.checkout-grid:has(#q3:checked) .summary-qty-val::before { content: "3"; }
.checkout-grid:has(#q4:checked) .summary-qty-val::before { content: "4"; }
.checkout-grid:has(#q2:checked) .summary-total-val::before { content: "€99,80"; }
.checkout-grid:has(#q3:checked) .summary-total-val::before { content: "€149,70"; }
.checkout-grid:has(#q4:checked) .summary-total-val::before { content: "€199,60"; }
.summary-qty-val,
.summary-total-val {
  font-weight: 700;
}
.field-hint {
  display: block;
  font-size: 0.78rem;
  color: var(--steel);
  margin: -0.25rem 0 0.85rem;
}
.form-grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.85rem;
  margin-bottom: 0.15rem;
  align-items: start;
}
.form-grid-2 > .form-row { margin-bottom: 0; }
@media (min-width: 600px) {
  .form-grid-2 { grid-template-columns: 1fr 1fr; }
}

.form-consent {
  display: grid;
  gap: 0.65rem;
  margin: 0.2rem 0 1rem;
}
.form-check {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--steel);
  cursor: pointer;
}
.order-form .form-check input[type="checkbox"] {
  width: 1.15rem;
  height: 1.15rem;
  min-width: 1.15rem;
  min-height: 1.15rem;
  max-width: 1.15rem;
  margin: 0.2rem 0 0;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 3px;
  background: var(--white);
  flex-shrink: 0;
  -webkit-appearance: checkbox;
  appearance: auto;
  accent-color: var(--amber);
  box-shadow: none;
}
.form-check a {
  color: var(--amber-deep);
  text-decoration: underline;
}
.checkout-submit { width: 100%; margin-top: 0.2rem; }
.form-hint {
  margin-top: 0.8rem;
  font-size: 0.8rem;
  color: var(--steel);
}
.form-error {
  margin: 0 0 0.85rem;
  padding: 0.8rem 0.95rem;
  background: #FDECEC;
  border: 1px solid #F0B6B6;
  color: #8A1F1F;
  font-size: 0.9rem;
}
.honey {
  position: absolute;
  left: -9999px;
  opacity: 0;
  width: 1px;
  height: 1px;
}

.checkout-aside { display: grid; gap: 1rem; }
@media (min-width: 960px) {
  .checkout-aside { position: sticky; top: 5.25rem; }
}
.summary-card,
.trust-stack {
  background: var(--paper);
  border: 1px solid var(--line);
}
.summary-card { padding: 1.15rem; }
.summary-product {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 0.85rem;
  align-items: center;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line);
}
.summary-product img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border: 1px solid var(--line);
}
.summary-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.1rem;
}
.summary-desc { font-size: 0.84rem; color: var(--steel); }
.summary-lines { display: grid; gap: 0.6rem; }
.summary-lines > div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.92rem;
}
.summary-lines dt { color: var(--steel); }
.summary-lines dd { margin: 0; font-weight: 700; }
.summary-total {
  margin-top: 0.35rem;
  padding-top: 0.8rem;
  border-top: 1px solid var(--line);
  font-family: var(--font-display);
}
.summary-total dt,
.summary-total dd {
  font-size: 1.12rem;
  font-weight: 800;
  color: var(--char);
}

.trust-stack li {
  padding: 0.8rem 1.1rem;
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 0.12rem;
}
.trust-stack li:last-child { border-bottom: 0; }
.trust-stack strong {
  font-family: var(--font-display);
  font-size: 0.9rem;
}
.trust-stack span { font-size: 0.8rem; color: var(--steel); }

.pay-row { display: flex; flex-wrap: wrap; gap: 0.45rem; }
.pay-chip {
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.35rem 0.5rem;
  border: 1px solid var(--line);
  background: var(--paper);
  color: var(--char);
}

.checkout-product-row {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 0.85rem;
  align-items: center;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line);
}
.checkout-product-row img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border: 1px solid var(--line);
}

/* Cart page */
.cart-layout {
  display: grid;
  gap: 1.15rem;
}
@media (min-width: 960px) {
  .cart-layout {
    grid-template-columns: 1.35fr 0.9fr;
    align-items: start;
  }
}
.cart-panel {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 1.15rem;
}
@media (min-width: 720px) {
  .cart-panel { padding: 1.5rem; }
}
.cart-line {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 1rem;
  padding-bottom: 1.25rem;
  margin-bottom: 1.25rem;
  border-bottom: 1px solid var(--line);
}
@media (max-width: 520px) {
  .cart-line {
    grid-template-columns: 72px 1fr;
    gap: 0.75rem;
  }
}
.cart-line img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border: 1px solid var(--line);
}
.cart-line-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.25rem;
  margin-bottom: 0.25rem;
}
.cart-line-meta,
.cart-line-note {
  font-size: 0.88rem;
  color: var(--steel);
  margin-bottom: 0.45rem;
}
.cart-line-price {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.05rem;
  margin-bottom: 0.55rem;
}
.cart-line-price span {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.85rem;
  color: var(--steel);
}
.cart-remove {
  display: inline-block;
  font-size: 0.85rem;
  color: var(--amber-deep);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.cart-continue .btn-lg {
  width: 100%;
  max-width: none;
}
.cart-summary-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.05rem;
  margin-bottom: 0.9rem;
}
@media (min-width: 960px) {
  .cart-summary { position: sticky; top: 5.25rem; }
}
.cart-page .checkout-steps {
  margin-bottom: 1.35rem;
}

.order-success { text-align: left; }
.thanks-card {
  max-width: 36rem;
  margin: 0 auto;
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 1.5rem 1.35rem 1.75rem;
  box-shadow: 0 18px 48px rgba(22, 24, 28, 0.08);
}
@media (min-width: 720px) {
  .thanks-card { padding: 2rem 2.1rem 2.25rem; }
}
.success-badge {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: rgba(47, 107, 79, 0.12);
  color: var(--ok);
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
}
.order-success-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 0.4rem;
}
.order-ref {
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--amber-deep);
  margin-bottom: 0.8rem;
}
.order-success p { color: var(--steel); margin-bottom: 1rem; }
.success-next {
  list-style: disc;
  padding-left: 1.2rem;
  margin: 0 0 1.25rem;
  color: var(--steel);
  font-size: 0.92rem;
}
.success-next a {
  color: var(--amber-deep);
  text-decoration: underline;
}

/* Footer */
.site-footer {
  background: #0E1013;
  color: rgba(255,255,255,0.72);
  padding: 3rem 0 2rem;
  font-size: 0.9rem;
}
.footer-grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 2rem;
}
@media (min-width: 720px) {
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
}
.footer-brand {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.35rem;
  color: #fff;
  margin-bottom: 0.65rem;
}
.footer-grid h3 {
  font-family: var(--font-display);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 0.75rem;
}
.footer-grid a {
  display: block;
  margin-bottom: 0.4rem;
  color: rgba(255,255,255,0.82);
}
.footer-grid a:hover { color: #fff; text-decoration: underline; }
.footer-legal {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.2rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  display: grid;
  gap: 0.65rem;
}
.medical-note { max-width: 60rem; line-height: 1.55; }

/* Legal */
.legal-page { background: var(--ash); min-height: 70vh; }
.legal-hero {
  background: var(--char);
  color: #fff;
  padding: 3rem 0 2.4rem;
}
.legal-hero h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  letter-spacing: -0.03em;
}
.legal-meta {
  margin-top: 0.45rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
}
.legal-body {
  padding: 3rem 0 4rem;
  max-width: 46rem;
}
.legal-body h2 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin: 2rem 0 0.65rem;
}
.legal-body p,
.legal-body li {
  color: var(--steel);
  margin-bottom: 0.85rem;
}
.legal-body ul {
  list-style: disc;
  padding-left: 1.25rem;
}
.legal-body a {
  color: var(--amber-deep);
  text-decoration: underline;
}

/* Mobile */
.mobile-cta { display: none; }

@media (max-width: 899px) {
  .wrap { width: min(100% - 1.35rem, var(--max)); }
  .hero { min-height: auto; }
  .hero-content { padding: 3rem 0 2.5rem; max-width: none; }
  .hero h1, .hero-lead { max-width: none; }
  .btn-lg { max-width: none; }
  .manifest-grid { grid-template-columns: 1fr 1fr; }
  .section { padding: 3rem 0; }
  .section h2 { max-width: none; }
  .mech-visual img { height: 220px; }
  .order { padding: 3rem 0 5.5rem; }
  .order-cta { padding: 3rem 0 5.5rem; }
  .checkout-page-main { padding: 1.75rem 0 3.5rem; }
  .checkout { padding: 0.85rem; }
  .checkout-grid {
    display: flex;
    flex-direction: column;
  }
  .checkout-aside { order: -1; position: static; }
  .site-footer { padding-bottom: 5.5rem; }

  .mobile-cta {
    display: block;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 200;
    padding: 0.65rem 0.85rem calc(0.65rem + env(safe-area-inset-bottom));
    background: rgba(247, 248, 249, 0.96);
    border-top: 1px solid var(--line);
  }
  .mobile-cta .btn {
    width: 100%;
    min-height: 48px;
    background: var(--amber);
    color: #fff;
  }
}

@media (max-width: 420px) {
  .manifest-grid { grid-template-columns: 1fr; }
  .manifest-item {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .manifest-item:last-child { border-bottom: 0; }
  .checkout-steps li {
    flex-direction: column;
    font-size: 0.62rem;
    gap: 0.25rem;
  }
}
