/* =============================================================================
 * The Crumpton Brothers — standalone trade-account landing page.
 * Plain static CSS (no framework). Brand tokens mirror the live site's
 * @theme block, converted to plain CSS custom properties. This file is
 * self-contained and does not import anything from the live website.
 * ========================================================================== */

:root {
  /* --- Brand colours (mirrors app/assets/css/main.css @theme) ------------- */
  --forest: #1f5f3f;      /* primary; wordmark, headings, buttons */
  --magenta: #d6006c;     /* accent — hover/highlight only */
  --cream: #f2eee6;       /* warm off-white background */
  --charcoal: #2b2b2b;    /* body text */
  --mid-grey: #6b6b6b;    /* secondary text, captions */
  --light-grey: #cccccc;  /* dividers, borders */
  --white: #ffffff;
  --slate-green: #3d423b; /* hero fallback bg (sampled from the hero photo) */

  --container: 1200px;

  --font-sans: 'Mulish', Helvetica, Arial, sans-serif;
  --font-display: 'Bebas Neue', 'Oswald', 'Arial Narrow', 'Helvetica Neue', Helvetica, sans-serif;
}

/* --- Reset / base ---------------------------------------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* The hidden attribute must always win, even over components that set a
   display (e.g. the inline-block seasonal pill, flex sections). */
[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--charcoal);
  font-family: var(--font-sans);
  font-weight: 400;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: inherit;
}

h1,
h2,
h3 {
  color: var(--forest);
  margin: 0;
}

/* Bebas Neue display rule (mirrors the site's .font-display): ALL CAPS, tracked,
   single weight — never faux-bold/italic. */
.display {
  font-family: var(--font-display);
  font-weight: 400;
  font-style: normal;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

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

/* Visible keyboard focus, on-brand (mirrors the site's a11y rule). */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--forest);
  outline-offset: 2px;
  border-radius: 2px;
}

/* =============================================================================
 * 0. Promo header (three coloured lines)
 * ========================================================================== */
.promo {
  background: var(--white);
  border-bottom: 1px solid var(--light-grey);
}

/* Full-bleed pink banner (line 1) — spans edge to edge, not inset by the
   centred container. */
.promo__banner {
  margin: 0;
  background: var(--magenta);
  color: var(--white);
  text-align: center;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 1.0625rem; /* ~17px — medium */
  line-height: 1.4;
  padding: 0.5rem 1rem;
}

.promo .container {
  padding-block: 0.75rem;
}

.promo__line {
  margin: 0;
  text-align: center;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 1.0625rem; /* ~17px — medium */
  line-height: 1.4;
}

.promo__line + .promo__line {
  margin-top: 0.25rem;
}

.promo__line--green {
  color: var(--forest);
}

.promo__line--charcoal {
  color: var(--charcoal);
}

.promo__line a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.promo__line a:hover {
  color: var(--magenta);
}

@media (max-width: 480px) {
  .promo__line,
  .promo__banner {
    font-size: 0.9375rem; /* ~15px on small phones */
  }
}

/* =============================================================================
 * 1. Announcement bar
 * ========================================================================== */
.announce {
  background: var(--forest);
  color: var(--white);
}

.announce p {
  margin: 0;
  padding: 0.5rem 1rem;
  text-align: center;
  font-size: 0.875rem;
}

/* =============================================================================
 * 2. Header (logo only, no links)
 * ========================================================================== */
.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--light-grey);
}

.brand {
  display: flex;
  align-items: center;
  gap: 13px;
  padding-block: 0.75rem;
}

.brand__emblem {
  height: 50px;
  width: auto;
}

.brand__text {
  display: flex;
  flex-direction: column;
}

.brand__name {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  font-size: 27px;
  line-height: 1;
  color: var(--forest);
  white-space: nowrap;
}

.brand__sub {
  margin-top: 4px;
  font-size: 13px;
  line-height: 1;
  color: var(--forest);
}

@media (max-width: 400px) {
  .brand__name {
    font-size: 22px;
  }
}

/* =============================================================================
 * 3. Hero (full-bleed background video)
 * ========================================================================== */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--slate-green);
}

.hero__video {
  position: absolute;
  inset: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center 38%;
}

/* Left-to-right green scrim for text legibility (stops mirror index.vue:139). */
.hero__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(16, 26, 18, 0.78) 0%,
    rgba(16, 26, 18, 0.6) 34%,
    rgba(16, 26, 18, 0.18) 64%,
    rgba(16, 26, 18, 0) 100%
  );
}

.hero__inner {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 648px;
  padding-block: 4rem;
}

.hero__content {
  max-width: 620px;
}

.hero__title {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--cream);
  font-size: clamp(44px, 7vw, 74px);
  line-height: 0.96;
}

.hero__rule {
  margin: 26px 0 15px;
  height: 2px;
  width: 74px;
  background: var(--forest);
}

.hero__axis {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  color: var(--cream);
  font-size: 23px;
  letter-spacing: 4px;
  margin: 0;
}

.hero__axis .sep {
  opacity: 0.42;
  padding-inline: 0.25em;
}

.hero__lead {
  color: var(--cream);
  max-width: 540px;
  font-size: 18px;
  margin: 24px 0 0;
}

.hero__lead--2 {
  font-size: 17px;
  margin-top: 16px;
}

.hero__cta {
  margin-top: 32px;
}

@media (max-width: 640px) {
  .hero__inner {
    min-height: 560px;
  }
}

/* =============================================================================
 * Buttons
 * ========================================================================== */
.btn {
  display: inline-block;
  border-radius: 2px;
  padding: 0.625rem 1.25rem;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 1rem;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid transparent;
  transition: background-color 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

/* Cream button, forest text, magenta hover (mirrors index.vue:185). */
.btn--cream {
  background: var(--cream);
  color: var(--forest);
}

.btn--cream:hover {
  background: var(--magenta);
  color: var(--white);
}

/* Forest button, magenta hover — used by the form submit. */
.btn--forest {
  background: var(--forest);
  color: var(--white);
}
.btn--outline {
  background: transparent;
  color: var(--forest);
  border-color: var(--forest);
}
.btn--outline:hover {
  background: var(--forest);
  color: var(--white);
}

.btn--forest:hover {
  background: var(--magenta);
  color: var(--white);
}

/* =============================================================================
 * 4. Laffort band
 * ========================================================================== */
.laffort {
  background: var(--white);
  border-bottom: 1px solid var(--light-grey);
}

.laffort__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.625rem;
  padding-block: 1rem;
}

.laffort__logo {
  height: 64px;
  width: auto;
}

.laffort__caption {
  margin: 0;
  text-align: center;
  font-size: 0.75rem;
  color: var(--mid-grey);
}

@media (min-width: 768px) {
  .laffort__logo {
    height: 88px;
  }
  .laffort__caption {
    font-size: 0.875rem;
  }
}

/* =============================================================================
 * 5. Apply section (form)
 * ========================================================================== */
.apply {
  background: var(--cream);
  padding-block: 4rem;
}

.apply__head {
  text-align: center;
  max-width: 640px;
  margin-inline: auto;
}

.apply__title {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--forest);
  font-size: clamp(30px, 5vw, 44px);
  line-height: 1;
}

.apply__intro {
  margin-top: 0.75rem;
  color: var(--charcoal);
  font-size: 1rem;
}

.form-card {
  background: var(--white);
  border: 1px solid var(--light-grey);
  border-radius: 4px;
  padding: 1.75rem;
  max-width: 720px;
  margin: 2rem auto 0;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.field {
  display: flex;
  flex-direction: column;
}

/* Fields that should span the full width of the 2-col grid. */
.field--full {
  grid-column: 1 / -1;
}

.field label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 0.375rem;
}

.field .optional {
  font-weight: 400;
  color: var(--mid-grey);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  font-family: var(--font-sans);
  font-size: 1rem;
  color: var(--charcoal);
  background: var(--white);
  border: 1px solid var(--light-grey);
  border-radius: 2px;
  padding: 0.625rem 0.75rem;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--forest);
  outline: 2px solid var(--forest);
  outline-offset: 1px;
}

.field textarea {
  min-height: 120px;
  resize: vertical;
}

/* Consent / marketing checkboxes */
.check {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  grid-column: 1 / -1;
}

.check input[type='checkbox'] {
  margin-top: 0.2rem;
  width: 1.05rem;
  height: 1.05rem;
  flex-shrink: 0;
  accent-color: var(--forest);
}

.check label {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--charcoal);
  margin: 0;
  line-height: 1.45;
}

.form-actions {
  grid-column: 1 / -1;
  margin-top: 0.25rem;
}

.form-actions .btn {
  width: 100%;
}

@media (min-width: 560px) {
  .form-actions .btn {
    width: auto;
  }
}

/* Collapse the form to a single column on narrow screens. */
@media (max-width: 559px) {
  .form-grid {
    grid-template-columns: 1fr;
  }
}

/* =============================================================================
 * 6. Footer
 * ========================================================================== */
.site-footer {
  margin-top: 0;
  border-top: 1px solid var(--light-grey);
  background: var(--cream);
}

.footer-cols {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  padding-block: 3rem;
}

@media (min-width: 640px) {
  .footer-cols {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 768px) {
  .footer-cols {
    grid-template-columns: repeat(4, 1fr);
  }
}

.footer-brand__emblem {
  height: 56px;
  width: 56px;
}

.footer-brand__name {
  margin: 0.75rem 0 0;
  font-weight: 600;
  font-size: 1.125rem;
  color: var(--forest);
}

.footer-brand__dist {
  margin: 0.5rem 0 0;
  font-size: 0.875rem;
  color: var(--mid-grey);
}

.footer-brand__loc {
  margin: 0.75rem 0 0;
  font-size: 0.875rem;
  color: var(--charcoal);
}

.footer-col__title {
  margin: 0;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--charcoal);
}

.footer-col ul {
  list-style: none;
  margin: 0.75rem 0 0;
  padding: 0;
}

.footer-col li {
  font-size: 0.875rem;
  color: var(--charcoal);
  margin-bottom: 0.25rem;
}

.footer-col a {
  text-decoration: none;
  color: var(--charcoal);
  transition: color 0.15s ease;
}

.footer-col a:hover {
  color: var(--magenta);
}

/* Trust-badge strip */
.trust {
  border-top: 1px solid var(--light-grey);
}

.trust__inner {
  padding-block: 1.5rem;
}

.trust__row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.5rem;
}

.trust__lockup {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--white);
  border-radius: 2px;
  padding: 0.625rem 1rem;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.06);
}

.trust__lockup img {
  height: 32px;
  width: 32px;
}

.trust__divider {
  height: 32px;
  width: 1px;
  background: var(--light-grey);
}

.trust__lockup span:last-child {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--forest);
}

.trust__chips {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 1.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.trust__chips li {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.875rem;
  color: var(--charcoal);
}

.trust__chips svg {
  height: 1rem;
  width: 1rem;
  color: var(--forest);
}

.trust__note {
  margin: 0.75rem 0 0;
  font-size: 0.75rem;
  color: var(--mid-grey);
}

/* Copyright */
.copyright {
  border-top: 1px solid var(--light-grey);
}

.copyright p {
  margin: 0;
  padding-block: 1rem;
  font-size: 0.75rem;
  color: var(--mid-grey);
}

/* ── How ordering works (five-step process) ──────────────────────────────── */
.process {
  background: var(--cream);
  padding-block: 4rem;
}
.process__steps {
  list-style: none;
  margin: 2.5rem 0 0;
  padding: 0;
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
  counter-reset: none;
}
@media (min-width: 640px) {
  .process__steps {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 900px) {
  .process__steps {
    grid-template-columns: repeat(5, 1fr);
  }
}
.step {
  background: var(--white);
  border: 1px solid var(--light-grey);
  border-radius: 4px;
  padding: 1.25rem;
}
/* Glass orb (generated asset, shared with the DEV homepage stepper): the
   dark-green sphere sits behind a white number, feathered into the section. */
.step__orb {
  position: relative;
  display: inline-flex;
  width: 4rem;
  height: 4rem;
}
.step__orb-img {
  display: block;
  width: 100%;
  height: 100%;
}
.step__num {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.5rem;
  line-height: 1;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.45);
}
/* A slight, staggered float so the orbs feel alive — off for reduced-motion. */
@keyframes orbFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}
@media (prefers-reduced-motion: no-preference) {
  .step__orb {
    animation: orbFloat 4.5s ease-in-out infinite;
  }
  .step:nth-child(2) .step__orb {
    animation-delay: 0.6s;
  }
  .step:nth-child(3) .step__orb {
    animation-delay: 1.2s;
  }
  .step:nth-child(4) .step__orb {
    animation-delay: 1.8s;
  }
  .step:nth-child(5) .step__orb {
    animation-delay: 2.4s;
  }
}
.step__title {
  margin: 0.75rem 0 0;
  color: var(--forest);
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.2;
}
.step__blurb {
  margin: 0.4rem 0 0;
  color: var(--charcoal);
  font-size: 0.9rem;
}

/* ── FAQ (native <details> accordion, no JS) ─────────────────────────────── */
.faq {
  background: var(--white);
  padding-block: 4rem;
}
.faq__list {
  max-width: 720px;
  margin: 2rem auto 0;
}
.faq__item {
  border-bottom: 1px solid var(--light-grey);
}
.faq__item:first-child {
  border-top: 1px solid var(--light-grey);
}
.faq__q {
  position: relative;
  cursor: pointer;
  list-style: none;
  padding: 1.1rem 2rem 1.1rem 0;
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--forest);
}
.faq__q:hover {
  color: var(--magenta);
}
.faq__q::-webkit-details-marker {
  display: none;
}
.faq__q::after {
  content: '+';
  position: absolute;
  right: 0.25rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.4rem;
  line-height: 1;
  color: var(--magenta);
}
.faq__item[open] .faq__q::after {
  content: '−';
}
.faq__a {
  padding: 0 0 1.2rem;
}
.faq__a p {
  margin: 0;
  color: var(--charcoal);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ── Thanks / confirmation pages ─────────────────────────────────────────── */
.thanks-card {
  text-align: center;
}
.thanks-card p {
  margin: 0 auto 1rem;
  max-width: 52ch;
  color: var(--charcoal);
}
.thanks-note {
  font-size: 0.9rem;
  color: var(--mid-grey);
}
.thanks-actions {
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

/* =============================================================================
 * Request-an-Order page (plain-JS rebuild of the DEV /quick-order pad, no prices)
 * ========================================================================== */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Header with a home link */
.order-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.order-header__home {
  color: var(--forest);
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
}
.order-header__home:hover {
  color: var(--magenta);
}

/* Title band */
.order-hero {
  background: var(--cream);
  padding-block: 2.5rem;
  border-bottom: 1px solid var(--light-grey);
}
.order-hero__title {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--forest);
  font-size: clamp(32px, 5vw, 48px);
  line-height: 1;
}
.order-hero__lead {
  margin: 0.9rem 0 0;
  max-width: 70ch;
  color: var(--charcoal);
}
.order-hero__note {
  margin: 0.6rem 0 0;
  max-width: 70ch;
  font-size: 0.9rem;
  color: var(--mid-grey);
}

/* Soft gate */
.gate {
  background: var(--white);
  padding-block: 2rem 0;
}
.gate .thanks-card {
  max-width: 640px;
}
.gate .apply__title {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--forest);
  font-size: clamp(24px, 4vw, 32px);
  line-height: 1;
  margin-bottom: 0.75rem;
}

/* Sticky nav */
.order-nav {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--light-grey);
  padding-block: 0.75rem;
}
.order-nav__search {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1rem;
}
.order-nav__search input[type='search'] {
  flex: 1 1 240px;
  min-width: 0;
  height: 2.75rem;
  border: 1px solid var(--light-grey);
  border-radius: 3px;
  padding: 0 0.85rem;
  font-family: var(--font-sans);
  font-size: 1rem;
  color: var(--charcoal);
}
.order-nav__sale {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.9rem;
  color: var(--charcoal);
  white-space: nowrap;
}
.order-nav__cats {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.65rem;
}
.cat-chip {
  border: 1px solid var(--light-grey);
  background: var(--white);
  color: var(--charcoal);
  border-radius: 999px;
  padding: 0.3rem 0.8rem;
  font-size: 0.85rem;
  cursor: pointer;
  transition: background-color 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}
.cat-chip:hover {
  border-color: var(--forest);
  color: var(--forest);
}
.cat-chip--active {
  background: var(--forest);
  border-color: var(--forest);
  color: var(--white);
}

/* Product list */
.order-list {
  padding-block: 1.75rem 7rem; /* leave room for the sticky action bar */
}
.order-empty {
  margin: 2rem 0;
  padding: 1.5rem;
  border: 1px dashed var(--light-grey);
  border-radius: 4px;
  text-align: center;
  color: var(--mid-grey);
}
.cat-group {
  margin-top: 2rem;
}
.cat-group__title {
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--forest);
  scroll-margin-top: 8rem;
}
.cat-group__count {
  font-size: 1rem;
  font-weight: 400;
  color: var(--mid-grey);
}
.cat-group__rows {
  margin-top: 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

/* Product row */
.qrow {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 0.85rem;
  border: 1px solid var(--light-grey);
  border-radius: 4px;
  background: var(--white);
}
.qrow--filled {
  border-color: var(--forest);
  background: rgba(31, 95, 63, 0.05);
}
.qrow__main {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  min-width: 0;
}
.qrow__orb {
  flex: 0 0 auto;
  width: 3.25rem;
  height: 3.25rem;
  display: inline-flex;
}
.qrow__orb-img {
  width: 100%;
  height: 100%;
}
.qrow__info {
  min-width: 0;
}
.qrow__name {
  margin: 0;
  font-weight: 600;
  color: var(--charcoal);
}
.qrow__meta {
  margin: 0.15rem 0 0;
  font-size: 0.8rem;
  color: var(--mid-grey);
}
.qrow__size {
  min-width: 0;
}
.qrow__select {
  width: 100%;
  height: 2.6rem;
  border: 1px solid var(--light-grey);
  border-radius: 3px;
  padding: 0 0.6rem;
  background: var(--white);
  font-size: 0.9rem;
  color: var(--charcoal);
}
.qrow__onesize {
  margin: 0;
  font-size: 0.9rem;
  color: var(--charcoal);
}
.qrow__avail {
  margin: 0.35rem 0 0;
  font-size: 0.78rem;
}
.avail--in {
  color: var(--forest);
}
.avail--lead {
  color: var(--magenta);
}

/* Seasonal-sale pill */
.pill {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 0.12rem 0.45rem;
  border-radius: 999px;
  vertical-align: middle;
}
.pill--sale {
  background: var(--magenta);
  color: var(--white);
}

/* Quantity stepper */
.qty {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}
.qty__btn {
  width: 2.4rem;
  height: 2.4rem;
  border: 1px solid var(--light-grey);
  background: var(--white);
  border-radius: 3px;
  font-size: 1.2rem;
  line-height: 1;
  color: var(--charcoal);
  cursor: pointer;
}
.qty__btn:hover {
  border-color: var(--forest);
  color: var(--forest);
}
.qty__input {
  width: 3.5rem;
  height: 2.4rem;
  text-align: center;
  border: 1px solid var(--light-grey);
  border-radius: 3px;
  font-size: 0.95rem;
  color: var(--charcoal);
}

/* Row layout from tablet up: name | size | qty in a line */
@media (min-width: 720px) {
  .qrow {
    flex-direction: row;
    align-items: center;
    gap: 1rem;
  }
  .qrow__main {
    flex: 1 1 auto;
  }
  .qrow__size {
    flex: 0 0 12rem;
  }
  .qrow__qty {
    flex: 0 0 auto;
  }
}

/* Sticky action bar */
.order-bar {
  position: fixed;
  inset-inline: 0;
  bottom: 0;
  z-index: 40;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(6px);
  border-top: 1px solid var(--light-grey);
  box-shadow: 0 -2px 12px rgba(26, 22, 20, 0.06);
}
.order-bar__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding-block: 0.75rem;
}
.order-bar__count {
  margin: 0;
  font-size: 0.9rem;
  color: var(--mid-grey);
}
.order-bar__count--flash::after {
  content: ' · ' attr(data-flash);
  color: var(--forest);
  font-weight: 600;
}
.order-bar__actions {
  display: flex;
  gap: 0.5rem;
  flex: 1 1 auto;
  justify-content: flex-end;
}

/* Checkout / review */
.checkout {
  background: var(--cream);
  padding-block: 2.5rem 4rem;
}
.checkout__back {
  display: inline-block;
  margin-bottom: 1rem;
  color: var(--mid-grey);
  text-decoration: none;
}
.checkout__back:hover {
  color: var(--magenta);
}
.checkout .apply__title {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--forest);
  font-size: clamp(26px, 4vw, 38px);
  line-height: 1;
}
.checkout__form-head {
  margin-top: 2.5rem;
}
.review-list {
  list-style: none;
  margin: 1.25rem 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.review-line {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem 0.9rem;
  background: var(--white);
  border: 1px solid var(--light-grey);
  border-radius: 4px;
}
.review-line__info {
  flex: 1 1 auto;
  min-width: 0;
}
.review-line__name {
  margin: 0;
  font-weight: 600;
  color: var(--charcoal);
}
.review-line__meta {
  margin: 0.15rem 0 0;
  font-size: 0.8rem;
  color: var(--mid-grey);
}
.review__remove {
  border: none;
  background: none;
  color: var(--mid-grey);
  font-size: 0.85rem;
  text-decoration: underline;
  cursor: pointer;
}
.review__remove:hover {
  color: var(--magenta);
}

/* Inert footer item marker */
.footer-soon {
  color: var(--mid-grey);
  font-size: 0.85em;
}
