.commerce-shell {
  --commerce-line: color-mix(in srgb, var(--text) 13%, transparent);
  --commerce-surface: color-mix(in srgb, #fff 97%, var(--bg) 3%);
  --commerce-soft: color-mix(in srgb, var(--brand) 7%, #fff 93%);
  font-family: "Manrope", "Spline Sans", "Segoe UI", sans-serif;
  overflow-wrap: anywhere;
}
.commerce-shell h1, .commerce-shell h2 {
  font-family: inherit;
  font-weight: 800;
  letter-spacing: -.025em;
  color: var(--text);
}
.commerce-shell h1 { font-size: clamp(2.15rem, 1.7rem + 2.4vw, 3.35rem); line-height: 1.08; margin: 0 0 1rem; max-width: 24ch; text-wrap: balance; }
.commerce-shell h2 { font-size: clamp(1.3rem, 1.15rem + .4vw, 1.6rem); line-height: 1.3; margin: 0 0 .8rem; }
.commerce-eyebrow { color: var(--muted); font-size: .8125rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; margin: 0 0 .8rem; }
.commerce-intro { margin-bottom: 2rem; }
.commerce-lede { color: var(--muted); max-width: 62ch; font-size: 1.0625rem; line-height: 1.7; }
.commerce-lede p:last-child, .commerce-copy p:last-child, .commerce-faq-answer p:last-child { margin-bottom: 0; }
.commerce-product-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.2rem; align-items: stretch; }
.commerce-card { min-width: 0; display: flex; flex-direction: column; border: 1px solid var(--commerce-line); border-radius: 1rem; background: var(--commerce-surface); }
.commerce-card-media { display: flex; justify-content: center; align-items: center; aspect-ratio: 1.25; padding: 1.25rem; background: var(--commerce-soft); border-radius: 1rem 1rem 0 0; }
.commerce-card-media img { object-fit: contain; max-width: 100%; width: 100%; height: 100%; }
.commerce-card-body { display: flex; flex-direction: column; gap: .85rem; flex: 1; padding: 1.5rem; }
.commerce-card-body h2, .commerce-card-body p { margin: 0; }
.commerce-routine-label { font-size: .875rem; color: var(--muted); font-weight: 600; }
.commerce-copy { color: var(--muted); font-size: 1rem; line-height: 1.75; }
.commerce-includes { padding: 0; margin: 0 0 .7rem; list-style: none; color: var(--muted); font-size: .9375rem; line-height: 1.7; }
.commerce-includes li + li { margin-top: .3rem; }
.commerce-shell .commerce-cta { display: inline-flex; justify-content: center; align-items: center; gap: .7rem; background: var(--brand); color: var(--header-text); text-decoration: none; font-size: .9375rem; font-weight: 800; line-height: 1.5; min-height: 48px; padding: .85rem 1.15rem; border-radius: .64rem; border: 1px solid transparent; }
.commerce-card .commerce-cta { margin-top: auto; }
.commerce-shell .commerce-cta:hover { background: color-mix(in srgb, var(--brand) 85%, #000 15%); color: var(--header-text); text-decoration: underline; text-underline-offset: .2em; }
.commerce-shell a:focus-visible, .commerce-shell summary:focus-visible { outline: 3px solid var(--accent); outline-offset: 4px; }
.commerce-selection-note, .commerce-note { color: var(--muted); font-size: .875rem; line-height: 1.7; margin: 1rem 0 0; }
.commerce-product-hero { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr); gap: clamp(1.5rem, 4vw, 4rem); align-items: center; }
.commerce-hero-media { background: var(--commerce-surface); border: 1px solid var(--commerce-line); border-radius: 1rem; padding: 2rem; aspect-ratio: 1; display: flex; align-items: center; justify-content: center; }
.commerce-hero-media img { width: 100%; height: 100%; object-fit: contain; }
.commerce-hero-copy { min-width: 0; }
.commerce-product-facts { display: flex; flex-wrap: wrap; gap: .5rem 1.3rem; list-style: none; padding: 0; margin: 1.3rem 0; color: var(--muted); font-size: .9375rem; }
.commerce-hero-copy .commerce-cta { width: 100%; margin-top: .4rem; }
.commerce-sections { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 2.5rem; margin-top: 3rem; padding-top: 2.5rem; border-top: 1px solid var(--commerce-line); }
.commerce-steps { counter-reset: commerce-step; list-style: none; padding: 0; margin: 0; }
.commerce-steps li { display: flex; gap: 1rem; align-items: baseline; color: var(--muted); line-height: 1.7; margin-bottom: .8rem; }
.commerce-steps li::before { counter-increment: commerce-step; content: counter(commerce-step, decimal-leading-zero); font-weight: 700; color: var(--text); font-variant-numeric: tabular-nums; }
.commerce-faqs { margin-top: 2.5rem; border-top: 1px solid var(--commerce-line); }
.commerce-faqs details { border-bottom: 1px solid var(--commerce-line); }
.commerce-faqs summary { cursor: pointer; font-size: 1rem; font-weight: 700; padding: 1.2rem .2rem; color: var(--text); min-height: 48px; }
.commerce-faq-answer { padding: 0 .2rem 1.3rem; max-width: 85ch; color: var(--muted); line-height: 1.75; }
@media (max-width: 991.98px) {
  .commerce-product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .commerce-card-body { padding: 1.2rem; }
  .commerce-product-hero { gap: 1.5rem; }
}
@media (max-width: 767.98px) {
  .commerce-product-grid, .commerce-product-hero, .commerce-sections { grid-template-columns: minmax(0, 1fr); }
  .commerce-card { display: grid; grid-template-columns: minmax(90px, .65fr) minmax(0, 1.35fr); }
  .commerce-card-media { aspect-ratio: auto; padding: .6rem; border-radius: 1rem 0 0 1rem; }
  .commerce-card-media img { height: auto; }
  .commerce-card-body { padding: 1.1rem; }
  .commerce-hero-media { max-height: 420px; width: 100%; }
  .commerce-sections { gap: 1.8rem; margin-top: 2rem; padding-top: 2rem; }
}
@media (max-width: 359.98px) {
  .commerce-card { display: flex; }
  .commerce-card-media { aspect-ratio: 1.6; border-radius: 1rem 1rem 0 0; }
  .commerce-card-media img { height: 100%; }
}
