/* Cœur Noir — storefront. Paper/oxblood/gold luxury-streetwear e-commerce layout. */

:root {
  --paper: #ffffff;
  --paper-alt: #f3eadf;
  --blush: #fbedea;
  --ink: #14100f;
  --noir: #0b0908;
  --smoke: #171310;
  --oxblood: #5a0e15;
  --gold: #c9a24b;
  --muted: #6b625c;
  --muted-on-dark: rgba(243, 234, 223, 0.68);
  --hairline: rgba(20, 16, 15, 0.1);
  --hairline-soft: rgba(20, 16, 15, 0.06);
  --focus-ring: 0 0 0 2px var(--paper), 0 0 0 4px var(--ink);

  --font: "Plus Jakarta Sans", ui-sans-serif, system-ui, -apple-system, sans-serif;
  --max-width: 1152px;
  --radius: 0.75rem;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

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

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font);
  font-weight: 450;
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
}

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

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}

input { font-family: inherit; }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 200;
  background: var(--ink);
  color: var(--paper);
  padding: 0.75rem 1.25rem;
  border-radius: 0 0 0.5rem 0;
}
.skip-link:focus { left: 0; }

:focus-visible { outline: 2px solid var(--ink); outline-offset: 2px; border-radius: 4px; }

.container {
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: 1.25rem;
}

.micro-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--oxblood);
  margin: 0;
}

.cn-display {
  font-family: var(--font);
  font-weight: 800;
  letter-spacing: -0.01em;
  margin: 0;
}

.section-title {
  font-family: var(--font);
  font-weight: 800;
  font-size: 1.875rem;
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin: 0.4rem 0 0;
}
@media (min-width: 768px) { .section-title { font-size: 2.25rem; } }

.section-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
}

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

.star-row { display: flex; align-items: center; gap: 0.125rem; color: var(--oxblood); }
.star-row svg { width: 13px; height: 13px; }

/* ================= Header ================= */

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--hairline-soft);
}

.header-inner {
  max-width: var(--max-width);
  margin-inline: auto;
  padding: 0.7rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand-mark { display: flex; align-items: center; gap: 0.625rem; flex-shrink: 0; }
.brand-mark-img { width: 2.25rem; height: 2.25rem; border-radius: 999px; object-fit: cover; }
.brand-mark-word { font-family: var(--font); font-weight: 800; font-size: 1.05rem; letter-spacing: 0.01em; }

.main-nav { display: none; align-items: center; gap: 1.75rem; }
.main-nav a { font-size: 0.875rem; font-weight: 600; color: var(--ink); transition: color 0.15s ease; }
.main-nav a:hover { color: var(--oxblood); }
@media (min-width: 860px) { .main-nav { display: flex; } }

.header-actions { display: flex; align-items: center; gap: 0.5rem; }

.cart-toggle {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 0.5rem;
  background: var(--ink);
  color: #fff;
  padding: 0.55rem 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  transition: opacity 0.15s ease;
}
.cart-toggle:hover { opacity: 0.85; }
.cart-count {
  background: var(--gold);
  color: var(--noir);
  border-radius: 999px;
  min-width: 1.25rem;
  height: 1.25rem;
  padding: 0 0.3rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 800;
}

/* ================= Hero ================= */

.hero {
  position: relative;
  height: min(88vh, 640px);
  min-height: 460px;
  overflow: hidden;
  background: var(--noir);
}
.hero-image { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: top center; }
.hero-scrim {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(11,9,8,0.82) 0%, rgba(11,9,8,0.55) 42%, rgba(11,9,8,0.15) 75%, rgba(11,9,8,0) 100%),
              linear-gradient(0deg, rgba(11,9,8,0.55) 0%, rgba(11,9,8,0) 45%);
}
.hero-content-wrap {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
}
.hero-content {
  max-width: var(--max-width);
  margin-inline: auto;
  width: 100%;
  padding-inline: 1.25rem;
}
.hero-inner { max-width: 30rem; color: #fff; }
.hero-eyebrow {
  margin: 0;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
}
.hero-word {
  margin: 0.9rem 0 0;
  font-size: 2.5rem;
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -0.015em;
}
@media (min-width: 768px) { .hero-word { font-size: 3.5rem; } }
.hero-phonetic { display: none; }
.hero-tagline {
  margin: 0.9rem 0 0;
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.86);
  max-width: 32rem;
}
.hero-ctas { margin-top: 1.75rem; display: flex; flex-wrap: wrap; gap: 0.75rem; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 700;
  transition: opacity 0.15s ease, background-color 0.15s ease;
}
.btn-primary { background: var(--ink); color: #fff; }
.btn-primary:hover { opacity: 0.85; }
.btn-secondary { background: #fff; color: var(--ink); }
.btn-secondary:hover { background: var(--blush); }
.btn-oxblood { background: var(--oxblood); color: #fff; }
.btn-oxblood:hover { opacity: 0.9; }
.btn-block { width: 100%; padding-top: 0.9rem; padding-bottom: 0.9rem; }

/* ================= Trust bar ================= */

.trust-bar {
  max-width: var(--max-width);
  margin-inline: auto;
  padding: 1.5rem 1.25rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
@media (min-width: 768px) { .trust-bar { grid-template-columns: repeat(4, 1fr); } }
.trust-item { display: flex; align-items: flex-start; gap: 0.75rem; }
.trust-item svg { flex-shrink: 0; margin-top: 0.1rem; color: var(--oxblood); width: 20px; height: 20px; }
.trust-item h3 { margin: 0; font-size: 0.85rem; font-weight: 700; }
.trust-item p { margin: 0.1rem 0 0; font-size: 0.8rem; color: var(--muted); }

/* ================= Shop / product grid ================= */

.shop { max-width: var(--max-width); margin-inline: auto; padding: 3rem 1.25rem; }

.sort-select {
  border: 1px solid var(--hairline);
  border-radius: 0.5rem;
  padding: 0.5rem 2rem 0.5rem 0.85rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--ink);
  background: var(--paper) url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%2314100f" stroke-width="2"><path d="m6 9 6 6 6-6"/></svg>') no-repeat right 0.6rem center / 14px;
  appearance: none;
  -webkit-appearance: none;
}

.filter-bar { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1.25rem; }
.filter-btn {
  border: 1px solid var(--hairline);
  border-radius: 999px;
  padding: 0.4rem 0.9rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--muted);
  transition: all 0.15s ease;
}
.filter-btn:hover { color: var(--ink); border-color: var(--ink); }
.filter-btn.is-active { background: var(--ink); color: #fff; border-color: var(--ink); }

.product-grid {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem 1.25rem;
}
@media (min-width: 640px) { .product-grid { gap: 1.5rem 1.5rem; } }
@media (min-width: 768px) { .product-grid { grid-template-columns: repeat(3, 1fr); } }

.product-card {
  display: flex;
  flex-direction: column;
  text-align: left;
  width: 100%;
}
.product-card-image-wrap {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--paper-alt);
  aspect-ratio: 3 / 4;
}
.product-card-image-wrap img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: opacity 0.35s ease;
}
.product-card-image-wrap img.img-alt { opacity: 0; }
.product-card:hover .img-alt { opacity: 1; }
.product-card-badge {
  position: absolute;
  left: 0.75rem; top: 0.75rem;
  display: inline-flex;
  background: var(--oxblood);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 0.25rem 0.55rem;
  border-radius: 0.3rem;
}
.product-card-quickadd {
  position: absolute;
  left: 0.6rem; right: 0.6rem; bottom: 0.6rem;
  background: rgba(255,255,255,0.94);
  color: var(--ink);
  border-radius: 0.5rem;
  padding: 0.55rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-align: center;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.product-card:hover .product-card-quickadd,
.product-card:focus-visible .product-card-quickadd { opacity: 1; transform: translateY(0); }

.product-card-rating { margin-top: 0.6rem; }
.product-card-name {
  margin: 0.35rem 0 0;
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.3;
}
.product-card-category { display: none; }
.product-card-price-row { margin-top: 0.3rem; display: flex; align-items: baseline; gap: 0.4rem; }
.product-card-price { font-size: 0.9rem; font-weight: 700; }
.product-card-price-compare { font-size: 0.8rem; color: var(--muted); text-decoration: line-through; }

/* ================= Story ================= */

.story { max-width: var(--max-width); margin-inline: auto; padding: 3.5rem 1.25rem; }
.story-inner { display: grid; gap: 2.5rem; align-items: center; }
@media (min-width: 768px) { .story-inner { grid-template-columns: 1fr 1fr; gap: 3rem; } }
.story-image { width: 100%; border-radius: var(--radius); object-fit: cover; aspect-ratio: 4 / 5; }
.story-copy p#storyBody { margin-top: 1rem; color: var(--muted); font-size: 1rem; line-height: 1.65; }
.story-phonetic { display: none; }

.feature-list { margin: 1.75rem 0 0; padding: 0; list-style: none; display: grid; gap: 0.85rem; }
.feature-list li { display: flex; align-items: flex-start; gap: 0.65rem; font-size: 0.9rem; font-weight: 600; }
.feature-list svg { flex-shrink: 0; margin-top: 0.15rem; color: var(--oxblood); width: 18px; height: 18px; }

/* ================= Testimonials ================= */

.testimonials { max-width: var(--max-width); margin-inline: auto; padding: 0 1.25rem 3.5rem; }
.testimonial-grid { margin-top: 1.75rem; display: grid; gap: 1rem; }
@media (min-width: 768px) { .testimonial-grid { grid-template-columns: repeat(3, 1fr); } }
.testimonial-card { background: var(--paper-alt); border-radius: var(--radius); padding: 1.25rem; }
.testimonial-card p.quote { margin: 0.6rem 0 0; font-size: 0.9rem; line-height: 1.55; color: var(--ink); }
.testimonial-card p.author { margin: 0.75rem 0 0; font-size: 0.8rem; font-weight: 700; color: var(--muted); }

/* ================= Lookbook ================= */

.lookbook { padding: 0 0 3.5rem; }
.lookbook .section-head, .lookbook .container-head { max-width: var(--max-width); margin-inline: auto; padding-inline: 1.25rem; }
.lookbook-spread {
  margin-top: 1.75rem;
  display: flex;
  gap: 0.85rem;
  overflow-x: auto;
  padding: 0 1.25rem 0.5rem;
  scroll-snap-type: x proximity;
  -webkit-overflow-scrolling: touch;
}
.lookbook-spread::-webkit-scrollbar { height: 6px; }
.lookbook-spread::-webkit-scrollbar-thumb { background: var(--hairline); border-radius: 999px; }
.lookbook-spread img {
  flex: 0 0 auto;
  width: min(74vw, 320px);
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: var(--radius);
  scroll-snap-align: start;
}

/* ================= Newsletter ================= */

.newsletter { background: var(--ink); color: #fff; padding: 3.5rem 1.25rem; }
.newsletter-inner { max-width: 34rem; margin-inline: auto; text-align: center; }
.newsletter .micro-label { color: var(--gold); }
.newsletter .section-title { color: #fff; }
.newsletter-copy { margin: 0.75rem 0 0; color: var(--muted-on-dark); font-size: 0.95rem; }
.newsletter-form { margin-top: 1.5rem; display: flex; flex-direction: column; gap: 0.6rem; }
@media (min-width: 560px) { .newsletter-form { flex-direction: row; } }
.newsletter-form input {
  flex: 1;
  border-radius: 0.5rem;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.08);
  color: #fff;
  padding: 0.8rem 1rem;
  font-size: 0.9rem;
}
.newsletter-form input::placeholder { color: rgba(255,255,255,0.45); }
.newsletter-form button {
  flex-shrink: 0;
  background: #fff;
  color: var(--ink);
  border-radius: 0.5rem;
  padding: 0.8rem 1.75rem;
  font-size: 0.875rem;
  font-weight: 700;
  transition: background-color 0.15s ease;
}
.newsletter-form button:hover { background: var(--blush); }
.newsletter-success { margin-top: 1.25rem; font-size: 0.9rem; color: var(--gold); font-weight: 600; }

/* ================= Footer ================= */

.site-footer { border-top: 1px solid var(--hairline-soft); }
.footer-grid {
  max-width: var(--max-width);
  margin-inline: auto;
  padding: 3rem 1.25rem;
  display: grid;
  gap: 2rem;
}
@media (min-width: 640px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; } }
.footer-brand { display: flex; flex-direction: column; gap: 0.75rem; }
.footer-brand .brand-mark-word { font-size: 1.1rem; }
.footer-brand p { margin: 0; font-size: 0.85rem; color: var(--muted); max-width: 22rem; }
.footer-col h4 { margin: 0 0 0.9rem; font-size: 0.75rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted); }
.footer-col ul { margin: 0; padding: 0; list-style: none; display: grid; gap: 0.6rem; }
.footer-col a { font-size: 0.85rem; font-weight: 600; color: var(--ink); }
.footer-col a:hover { color: var(--oxblood); }
.footer-bottom {
  border-top: 1px solid var(--hairline-soft);
  max-width: var(--max-width);
  margin-inline: auto;
  padding: 1.25rem 1.25rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.75rem;
  color: var(--muted);
}
.payment-icons { display: flex; gap: 0.5rem; align-items: center; }
.payment-icons span {
  border: 1px solid var(--hairline);
  border-radius: 0.3rem;
  padding: 0.2rem 0.5rem;
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--muted);
}

/* ================= Product modal ================= */

.modal-backdrop {
  position: fixed; inset: 0;
  background: rgba(11, 9, 8, 0.55);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.modal-backdrop[hidden] { display: none; }
.modal {
  background: var(--paper);
  border-radius: 1rem;
  max-width: 880px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
}
.modal-close {
  position: absolute;
  right: 1rem; top: 1rem;
  z-index: 5;
  width: 2.25rem; height: 2.25rem;
  border-radius: 999px;
  background: var(--paper);
  border: 1px solid var(--hairline);
  font-size: 1.4rem;
  line-height: 1;
  display: flex; align-items: center; justify-content: center;
}
.modal-body { display: grid; }
@media (min-width: 700px) { .modal-body { grid-template-columns: 1fr 1fr; } }
.modal-image-wrap { background: var(--paper-alt); aspect-ratio: 3/4; }
.modal-image-wrap img { width: 100%; height: 100%; object-fit: cover; }
.modal-info { padding: 1.75rem; display: flex; flex-direction: column; }
.modal-info h2 { margin: 0.3rem 0 0; font-size: 1.5rem; font-weight: 800; }
.modal-rating { margin-top: 0.5rem; }
.modal-price-row { margin-top: 0.6rem; display: flex; align-items: baseline; gap: 0.6rem; }
.modal-price { font-size: 1.25rem; font-weight: 700; margin: 0; }
.modal-tax-note { font-size: 0.75rem; color: var(--muted); margin: 0.15rem 0 0; }
.modal-description { margin: 0.85rem 0 0; font-size: 0.9rem; color: var(--muted); line-height: 1.6; }

.size-selector { margin-top: 1.25rem; display: flex; flex-wrap: wrap; gap: 0.5rem; }
.size-btn {
  border: 1px solid var(--hairline);
  border-radius: 0.5rem;
  min-width: 3rem;
  padding: 0.55rem 0.5rem;
  font-size: 0.8rem;
  font-weight: 700;
  transition: all 0.15s ease;
}
.size-btn:hover:not(:disabled) { border-color: var(--ink); }
.size-btn.is-selected { background: var(--ink); color: #fff; border-color: var(--ink); }
.size-btn:disabled { color: var(--muted); text-decoration: line-through; cursor: not-allowed; opacity: 0.55; }

.size-guide-toggle {
  align-self: flex-start;
  margin-top: 0.6rem;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--oxblood);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.low-stock-note { margin: 0.6rem 0 0; font-size: 0.8rem; font-weight: 700; color: var(--oxblood); }

.modal-details { margin-top: 1.5rem; border-top: 1px solid var(--hairline-soft); }
.modal-details summary {
  cursor: pointer;
  padding: 0.9rem 0;
  font-size: 0.9rem;
  font-weight: 700;
  display: flex; align-items: center; justify-content: space-between;
  list-style: none;
}
.modal-details summary::-webkit-details-marker { display: none; }
.modal-details summary::after { content: "+"; font-weight: 400; font-size: 1.1rem; }
.modal-details[open] summary::after { content: "\2212"; }
.modal-details p { margin: 0 0 0.9rem; font-size: 0.85rem; color: var(--muted); line-height: 1.6; }
.modal-details + .modal-details { border-top: none; }
.modal-details:last-of-type { border-bottom: 1px solid var(--hairline-soft); }

.size-guide-table { width: 100%; border-collapse: collapse; margin: 0 0 0.9rem; font-size: 0.78rem; }
.size-guide-table th, .size-guide-table td { text-align: left; padding: 0.4rem 0.5rem; border-bottom: 1px solid var(--hairline-soft); }
.size-guide-table th { color: var(--muted); font-weight: 700; }

.modal-actions { margin-top: auto; padding-top: 1.5rem; }

/* ================= Cart drawer ================= */

.drawer-backdrop {
  position: fixed; inset: 0;
  background: rgba(11, 9, 8, 0.5);
  z-index: 100;
}
.drawer-backdrop[hidden] { display: none; }

.cart-drawer {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: 100%;
  max-width: 420px;
  background: var(--paper);
  z-index: 101;
  display: flex;
  flex-direction: column;
}
.cart-drawer[hidden] { display: none; }

.cart-drawer-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.25rem 1.25rem 0.9rem;
  border-bottom: 1px solid var(--hairline-soft);
}
.cart-drawer-head h2 { margin: 0; font-size: 1.1rem; font-weight: 800; }
.drawer-close {
  width: 2rem; height: 2rem;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  border-radius: 999px;
}
.drawer-close:hover { background: var(--paper-alt); }

.shipping-progress { padding: 1rem 1.25rem 0; }
.shipping-bar { height: 0.375rem; width: 100%; overflow: hidden; border-radius: 999px; background: var(--paper-alt); }
.shipping-bar-fill { height: 100%; border-radius: 999px; background: var(--oxblood); transition: width 0.5s ease; width: 0; }
.shipping-progress p { margin: 0.55rem 0 0; font-size: 0.8rem; font-weight: 600; color: var(--muted); }

.cart-lines { flex: 1; overflow-y: auto; padding: 1rem 1.25rem; display: flex; flex-direction: column; gap: 1.1rem; }
.cart-empty {
  height: 100%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 1rem; text-align: center; color: var(--muted); font-size: 0.9rem;
  padding: 2rem 1rem;
}
.cart-empty .btn { margin-top: 0.25rem; }

.cart-line { display: flex; gap: 0.9rem; }
.cart-line img { width: 5rem; height: 6rem; flex-shrink: 0; border-radius: 0.5rem; object-fit: cover; }
.cart-line-info { flex: 1; display: flex; flex-direction: column; }
.cart-line-name { margin: 0; font-size: 0.85rem; font-weight: 700; line-height: 1.3; }
.cart-line-size { margin: 0.2rem 0 0; font-size: 0.78rem; color: var(--muted); }
.cart-line-controls { margin-top: auto; padding-top: 0.5rem; display: flex; align-items: center; gap: 0.75rem; }
.qty-stepper { display: flex; align-items: center; border-radius: 0.5rem; background: var(--paper-alt); }
.qty-btn { padding: 0.4rem 0.65rem; font-size: 0.9rem; font-weight: 700; }
.cart-line-controls span.qty-value { width: 1.5rem; text-align: center; font-size: 0.8rem; font-weight: 700; }
.cart-line-remove { font-size: 0.75rem; font-weight: 700; color: var(--muted); text-decoration: underline; text-underline-offset: 2px; }
.cart-line-remove:hover { color: var(--oxblood); }
.cart-line-price { margin: 0.35rem 0 0; font-size: 0.85rem; font-weight: 700; }

.cart-footer { border-top: 1px solid var(--hairline-soft); padding: 1rem 1.25rem 1.25rem; }
.cart-subtotal { display: flex; align-items: baseline; justify-content: space-between; font-size: 0.95rem; font-weight: 700; }
.cart-tax-note { margin: 0.4rem 0 0.9rem; font-size: 0.72rem; color: var(--muted); }
.checkout-btn { width: 100%; padding: 0.9rem; border-radius: 0.5rem; background: var(--ink); color: #fff; font-size: 0.9rem; font-weight: 700; transition: opacity 0.15s ease; }
.checkout-btn:hover { opacity: 0.85; }
.checkout-btn:disabled { opacity: 0.45; cursor: not-allowed; }

/* Element visibility driven by content CMS (hidden attribute) */
[hidden] { display: none !important; }
