/* =========================================================================
   theme.css — Gimme MWAH
   ------------------------------------------------------------------------
   DELIBERATELY THIN. tokens.css, global.css, hero-rotator.css and
   home-products.css are ported verbatim from gimmemwah.com and own the brand
   presentation — nav, footer, buttons, hero, product cards. Do not restate
   their rules here or the sister brand drifts from the parent.

   This file covers only what the parent has no equivalent for:
     · WordPress page/entry scaffolding
     · the cart link in the nav
     · price on the product card (the parent sells nothing)
     · the trust band and "where to collect" section
     · the 21+ age gate
   ========================================================================= */

/* ---- page scaffolding -------------------------------------------------- */

body { margin: 0; }

img { max-width: 100%; height: auto; }

.wrap {
  max-width: var(--content-max);
  margin-inline: auto;
  padding-inline: var(--content-pad);
}

.section { padding-block: var(--sp-64); }
.section--center { text-align: center; }

@media (max-width: 768px) {
  .wrap { padding-inline: var(--content-pad-mobile); }
  .section { padding-block: var(--sp-48); }
}

.entry__title {
  font-size: clamp(28px, 4.5vw, 44px);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.entry__content { line-height: 1.7; color: var(--text-mid); }
.entry__content a { color: var(--ink); }

/* ---- nav additions ----------------------------------------------------- */

/* Specificity note: woocommerce-layout.css ships
   `.woocommerce img, .woocommerce-page img { height: auto }` at (0,1,1),
   which outranks a single class. Every lockup below is scoped to its parent
   so the logo survives on shop, product, cart and checkout pages — the ones
   carrying the `woocommerce-page` body class. */
.op-nav .op-nav__lockup {
  height: 22px;
  width: auto;
  max-width: none;
  display: block;
}

.op-nav__end {
  display: flex;
  align-items: center;
  gap: var(--sp-16);
}

.op-nav__cart { display: inline-flex; align-items: center; gap: 6px; }

.op-nav__cart-count {
  display: inline-grid;
  place-items: center;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  border-radius: var(--radius-pill);
  background: var(--hot-pink);
  color: var(--ink);
  font-size: 10px;
  letter-spacing: 0;
}

/* Mobile: global.css switches .op-nav to a 1fr auto 1fr grid and hides
   .op-nav__center, leaving hamburger | logo | end. Anchor the outer two so
   the lockup stays optically centred. */
@media (max-width: 768px) {
  .op-nav .op-nav__lockup { height: 18px; }

  .op-nav__end {
    justify-self: end;
    gap: var(--sp-8);
  }

  /* The bag reads as a count chip on mobile; the word is redundant next to
     a hamburger and costs the centred lockup its space. */
  .op-nav__cart-label { display: none; }
}

@media (max-width: 380px) {
  .op-nav .op-nav__lockup { height: 16px; }
}

/* ---- footer additions -------------------------------------------------- */

.op-footer .op-footer__lockup { width: 150px; height: auto; max-width: 100%; display: block; }

.op-footer__tagline {
  margin: var(--sp-12) 0 0;
  font-size: 13px;
  color: var(--text-soft);
}

/* ---- product card: price ----------------------------------------------- */

/* The parent brand does not sell online, so home-products.css has no price
   rule. Matches .op-card__title's weight, sits above the detail link. */
.op-card__price {
  margin: var(--sp-8) 0 0;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
}

.op-card__price .woocommerce-Price-amount { font-weight: 700; }
.op-card__price del { color: var(--text-soft); font-weight: 400; }
.op-card__price ins { text-decoration: none; }

/* ---- trust band -------------------------------------------------------- */

.op-trust {
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.op-trust__grid {
  list-style: none;
  margin: 0;
  padding: var(--sp-32) 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: var(--sp-24);
}

.op-trust__item { display: flex; flex-direction: column; gap: var(--sp-4); }

.op-trust__item strong {
  font-family: var(--font);
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
}

.op-trust__item span { font-size: 12px; color: var(--text-soft); }

/* ---- where to collect -------------------------------------------------- */

.op-find { padding-block: var(--sp-64); background: var(--paper-grey); }

.op-find__header { margin-bottom: var(--sp-32); }

.op-find__title {
  margin: var(--sp-12) 0;
  font-size: clamp(28px, 4.5vw, 44px);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.op-find__lede { margin: 0; color: var(--text-mid); }

.op-find__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--sp-24);
  margin-bottom: var(--sp-48);
}

.op-find__info h3 {
  margin: var(--sp-24) 0 var(--sp-8);
  font-family: var(--font);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--text-soft);
}

.op-find__info h3:first-child { margin-top: 0; }

.op-find__placeholder { margin: 0; color: var(--text-mid); font-style: italic; }

.op-find__map-placeholder {
  display: grid;
  place-items: center;
  min-height: 240px;
  border-radius: var(--radius-map);
  background: var(--map-grey);
  color: var(--text-soft);
  font-family: var(--font);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.op-faq { padding: var(--sp-16) 0; border-bottom: 1px solid var(--line); }

.op-faq summary {
  cursor: pointer;
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
  list-style: none;
}

.op-faq summary::-webkit-details-marker { display: none; }
.op-faq summary::after { content: " +"; color: var(--hot-pink-hover); }
.op-faq[open] summary::after { content: " \2212"; }
.op-faq p { margin: var(--sp-12) 0 0; color: var(--text-mid); line-height: 1.6; }

/* ---- 21+ age gate ------------------------------------------------------ */

.mwah-gate {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  padding: var(--sp-16);
  background: var(--ink);
}

.mwah-gate__dialog {
  width: min(100%, 360px);
  text-align: center;
  color: var(--white);
}

.mwah-gate .mwah-gate__logo { width: 150px; height: auto; max-width: 100%; margin: 0 auto var(--sp-32); display: block; }

.mwah-gate__title {
  margin: 0 0 var(--sp-12);
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--white);
}

.mwah-gate__sub {
  margin: 0 0 var(--sp-24);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
}

.mwah-gate__actions { display: grid; gap: var(--sp-12); }

.mwah-gate__btn {
  width: 100%;
  min-height: 44px;
  font-family: var(--font);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  padding: 16px 24px;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  cursor: pointer;
}

.mwah-gate__btn--yes { background: var(--hot-pink); color: var(--ink); }
.mwah-gate__btn--yes:hover { background: var(--hot-pink-hover); }

.mwah-gate__btn--no {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.4);
}

.mwah-gate__btn--no:hover { border-color: var(--white); }

.mwah-gate__note {
  margin: var(--sp-24) 0 0;
  font-size: 10px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.45);
}

.mwah-gate-lock { overflow: hidden; }

/* ---- nav drawer open state --------------------------------------------- */

/* global.css sets .op-nav__drawer { display: none } and the parent's own
   nav.js supplies the open state. Ours is driven by the hidden attribute. */
.op-nav__drawer:not([hidden]) {
  display: block;
  opacity: 0;
  transition: opacity var(--transition-mid);
}

.op-nav__drawer.is-open { opacity: 1; }

.op-nav__drawer .op-nav__drawer-lockup { width: 150px; height: auto; max-width: 100%; display: block; }

.op-nav__drawer-close {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  border-radius: var(--radius-pill);
}

.op-nav__drawer-close:hover { background: var(--pink-wash); }

@media (prefers-reduced-motion: reduce) {
  .op-nav__drawer:not([hidden]) { transition: none; opacity: 1; }
}

/* ---- limited-edition PDP action ---------------------------------------- */

/* Mirrors product-launch.css, which greens the parent's FIND A STORE button.
   Ours is the Reserve button inside WooCommerce's add-to-cart form. */
.pd-hero.is-limited .single_add_to_cart_button {
  background: var(--launch-green);
  color: var(--ink);
}

@media (hover: hover) {
  .pd-hero.is-limited .single_add_to_cart_button:hover {
    background: color-mix(in srgb, var(--launch-green) 85%, var(--white));
  }
}

/* ---- shop filters ------------------------------------------------------ */

.mwah-filters {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-8);
  margin: 0 0 var(--sp-32);
}

.mwah-filters__pill {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  background: var(--white);
  color: var(--ink);
  font-family: var(--font);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-decoration: none;
  transition: background var(--transition-fast), border-color var(--transition-fast);
}

.mwah-filters__pill:hover { background: var(--pink-wash); border-color: var(--soft-pink); }
.mwah-filters__pill.is-active { background: var(--ink); border-color: var(--ink); color: var(--white); }

/* ---- shop: format guide + FAQ ------------------------------------------ */

.products-format { padding-block: var(--sp-64); background: var(--paper-grey); }
.products-faq { padding-block: var(--sp-64); }

.products-format__title,
.products-faq__title {
  margin: 0 0 var(--sp-12);
  font-size: clamp(24px, 3.5vw, 36px);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.products-format__lede { margin: 0 0 var(--sp-32); color: var(--text-mid); }

.products-format__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--sp-24);
}

.products-format__item {
  padding: var(--sp-24);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  background: var(--white);
}

.products-format__item h3 {
  margin: 0 0 var(--sp-12);
  font-size: 16px;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--ink);
}

.products-format__item p { margin: 0; color: var(--text-mid); line-height: 1.6; }

/* ---- email signup: only what home.css lacks ---------------------------- */

/* home.css owns .op-signup layout. These cover our additions: the success
   state and the inline error, neither of which the parent brand needs. */
.op-signup__confirm {
  margin: 0;
  font-size: 17px;
  font-weight: 700;
  color: var(--ink);
  animation: signup-confirm-in var(--transition-mid) ease-out both;
}

.op-signup__status {
  margin: var(--sp-8) 0 0;
  font-size: 13px;
  font-weight: 600;
  color: var(--hot-pink-hover);
}

@keyframes signup-confirm-in {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: none; }
}

@media (prefers-reduced-motion: reduce) {
  .op-signup__confirm { animation: none; }
}

/* ---- pickup map -------------------------------------------------------- */

.op-find__map-canvas {
  min-height: 320px;
  height: 100%;
  border-radius: var(--radius-map);
  overflow: hidden;
  background: var(--map-grey);
  z-index: 0; /* keep Leaflet panes under the sticky nav */
}

.op-find__address,
.op-find__hours { margin: 0; color: var(--text-mid); line-height: 1.7; }
.op-find__address strong { color: var(--ink); }
.op-find__directions { margin: var(--sp-24) 0 0; }

.mwah-pin { background: none; border: 0; }

.leaflet-container { font-family: var(--font); }
.leaflet-control-attribution { font-size: 10px; }

/* ---- footer additions (structure matches the parent) -------------------- */

.op-footer__wordmark { display: block; }
.op-footer__brand { flex: 0 0 auto; }

.woo-wrap { display: block; }

/* ---- nav socials ------------------------------------------------------- */

.op-nav__social { display: flex; align-items: center; gap: var(--sp-12); }
.op-nav__social-link { font-size: 11px; }

/* ---- locator additions ------------------------------------------------- */

/* home-locator.css sizes .loc-map to 720px; the canvas fills it. */
.op-find__map-canvas {
  width: 100%;
  height: 100%;
  min-height: 320px;
  border-radius: var(--radius-map);
  overflow: hidden;
  background: var(--map-grey);
  z-index: 0; /* keep Leaflet panes under the sticky nav */
}

/* Hours are ours: the parent lists retailers, not opening times. */
.loc-row__hours {
  margin: var(--sp-8) 0 0;
  padding-left: 26px;
  font-size: 12px;
  line-height: 1.6;
  color: var(--text-mid);
  white-space: pre-line;
}

.mwah-pin { background: none; border: 0; }

.leaflet-container { font-family: var(--font); }
.leaflet-control-attribution { font-size: 10px; }

.loc-popup__name { margin: 0 0 4px; font-weight: 800; font-size: 14px; }
.loc-popup__addr { margin: 0 0 8px; font-size: 12px; color: var(--text-mid); }

@media (max-width: 900px) {
  .op-find__map-canvas { min-height: 380px; }
}

/* ---- Find Us header phone ---------------------------------------------- */

.op-find-header__phone {
  margin: var(--sp-12) 0 0;
  font-family: var(--font);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.op-find-header__phone a { color: var(--ink); text-decoration: none; }
.op-find-header__phone a:hover { color: var(--hot-pink-hover); }

/* ---- content pages ------------------------------------------------------ */

/* about.css and legal.css are ported from the parent; these only cover the
   bits our editor-driven content needs that a hand-built page would not. */
.page.legal a { color: var(--ink); }
.page.legal ul,
.page.legal ol { line-height: 1.7; color: var(--text-mid); }
.page.legal li { margin-bottom: var(--sp-8); }
.page.legal em { color: var(--text-soft); }

.about-section ul,
.about-section ol { line-height: 1.7; }
.about-hero__intro p:first-child { margin-top: 0; }

/* ---- footer: mobile columns -------------------------------------------- */

/* global.css lays SITE / LEGAL / FOLLOW in one row at <=768px with
   `flex: 1 1 0; min-width: 0`. That works for the parent's short labels
   (PRODUCTS, FIND US, TERMS) but ours are longer, so the columns collided.
   Two per row with a real minimum, and long labels allowed to wrap. */
@media (max-width: 768px) {
  .op-footer__top {
    gap: 28px 20px;
  }

  .op-footer__col {
    flex: 1 1 calc(50% - 20px);
    min-width: 130px;
  }

  .op-footer__col .op-footer__link {
    display: block;
    overflow-wrap: anywhere;
    line-height: 1.5;
    padding-block: 2px;
  }

  .op-footer__lcb p { max-width: none; }
}

@media (max-width: 380px) {
  .op-footer__col { flex: 1 1 100%; }
}

/* ---- Find Us: contact strip -------------------------------------------- */

.op-find-contact {
  list-style: none;
  margin: var(--sp-24) 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-32);
}

.op-find-contact__item {
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
}

.op-find-contact__label {
  font-family: var(--font);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--text-soft);
}

.op-find-contact__value {
  font-family: var(--font);
  font-size: clamp(20px, 2.6vw, 26px);
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--ink);
  text-decoration: none;
  overflow-wrap: anywhere;
}

.op-find-contact__value:hover {
  color: var(--hot-pink-hover);
  text-decoration: underline;
  text-decoration-color: var(--hot-pink);
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

@media (max-width: 768px) {
  .op-find-contact { gap: var(--sp-24); }
  .op-find-contact__value { font-size: 20px; }
}

/* ---- journal (blog) ---------------------------------------------------- */

.jr { padding-bottom: var(--sp-64); }

.jr-grid {
  list-style: none;
  margin: 0 0 var(--sp-48);
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: var(--sp-32) var(--sp-24);
}

.jr-card__link {
  display: flex;
  flex-direction: column;
  gap: var(--sp-8);
  height: 100%;
  text-decoration: none;
  color: var(--ink);
}

.jr-card__media {
  display: block;
  margin-bottom: var(--sp-8);
  border-radius: var(--radius-card);
  overflow: hidden;
  background: var(--paper-grey);
  aspect-ratio: 4 / 3;
}

.jr-card__media img { width: 100%; height: 100%; object-fit: cover; display: block; }

.jr-card__meta {
  display: flex;
  align-items: center;
  gap: var(--sp-8);
  font-family: var(--font);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--text-soft);
}

.jr-card__cat { color: var(--hot-pink-hover); }

.jr-card__title {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.01em;
  line-height: 1.2;
}

.jr-card__excerpt { font-size: 14px; line-height: 1.6; color: var(--text-mid); }

.jr-card__cta {
  margin-top: auto;
  padding-top: var(--sp-8);
  font-family: var(--font);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--ink);
}

.jr-card__link:hover .jr-card__title { color: var(--hot-pink-hover); }
.jr-card__link:hover .jr-card__cta {
  text-decoration: underline;
  text-decoration-color: var(--hot-pink);
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

.jr-empty { color: var(--text-mid); font-size: 16px; }

/* single post */

.jr-single__media {
  margin: var(--sp-24) 0 var(--sp-32);
}

.jr-single__media img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-card);
}

.jr-single__tags {
  margin-top: var(--sp-32);
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--text-soft);
}

.jr-single__tags a { color: var(--text-soft); }

.jr-single__nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: var(--sp-16);
  margin-top: var(--sp-48);
  padding-top: var(--sp-24);
  border-top: 1px solid var(--line);
}

.jr-single__nav a {
  font-family: var(--font);
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
  text-decoration: none;
}

.jr-single__nav a:hover { color: var(--hot-pink-hover); }

/* pagination */

.jr .navigation.pagination { margin-top: var(--sp-32); }

.jr .nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-8);
  align-items: center;
}

.jr .page-numbers {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  font-family: var(--font);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--ink);
  text-decoration: none;
}

.jr .page-numbers:hover { background: var(--pink-wash); border-color: var(--soft-pink); }
.jr .page-numbers.current { background: var(--ink); border-color: var(--ink); color: var(--white); }

/* ---- bulk order modal --------------------------------------------------- */

.mwah-bulk {
  position: fixed;
  inset: 0;
  z-index: 9998;
  display: grid;
  place-items: center;
  padding: var(--sp-16);
  background: rgba(30, 10, 55, 0.6);
  opacity: 0;
  transition: opacity var(--transition-mid);
  overflow-y: auto;
}

.mwah-bulk.is-open { opacity: 1; }
.mwah-bulk[hidden] { display: none; }

.mwah-bulk__panel {
  position: relative;
  width: min(100%, 680px);
  max-height: calc(100vh - var(--sp-32));
  overflow-y: auto;
  padding: var(--sp-48);
  border-radius: var(--radius-card);
  background: var(--white);
  font-family: var(--font);
}

.mwah-bulk__close {
  position: absolute;
  top: var(--sp-16);
  right: var(--sp-16);
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: var(--radius-pill);
  background: transparent;
  color: var(--ink);
  cursor: pointer;
}

.mwah-bulk__close:hover { background: var(--wash); }

.mwah-bulk__eyebrow {
  margin: 0 0 var(--sp-8);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--text-soft);
}

.mwah-bulk__panel h2 {
  margin: 0 0 var(--sp-12);
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.mwah-bulk__lede {
  margin: 0 0 var(--sp-24);
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-mid);
}

.mwah-bulk__lede strong { color: var(--ink); }

.mwah-bulk__error {
  margin: 0 0 var(--sp-16);
  padding: var(--sp-12) var(--sp-16);
  border-radius: var(--radius-btn);
  background: var(--wash-warm);
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
}

.mwah-bulk__fieldset {
  margin: 0 0 var(--sp-24);
  padding: 0;
  border: 0;
}

.mwah-bulk__fieldset legend {
  padding: 0;
  margin-bottom: var(--sp-12);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--text-soft);
}

.mwah-bulk__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--sp-16);
}

.mwah-bulk__field { margin: 0; }

.mwah-bulk__field label {
  display: block;
  margin-bottom: var(--sp-4);
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
}

.mwah-bulk__field input,
.mwah-bulk__field textarea {
  width: 100%;
  min-height: 44px;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius-btn);
  background: var(--white);
  font-family: var(--font);
  font-size: 15px;
  color: var(--ink);
}

.mwah-bulk__field input:focus-visible,
.mwah-bulk__field textarea:focus-visible,
.mwah-bulk__qty:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 1px;
}

/* Honeypot, off-screen so bots still fill it. */
.mwah-bulk__hp {
  position: absolute !important;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* flavour rows */

.mwah-bulk__lines {
  list-style: none;
  margin: 0;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  overflow: hidden;
}

.mwah-bulk__line {
  display: flex;
  align-items: center;
  gap: var(--sp-12);
  padding: var(--sp-8) var(--sp-12);
  border-bottom: 1px solid var(--line);
}

.mwah-bulk__line:last-child { border-bottom: 0; }
.mwah-bulk__line:nth-child(odd) { background: var(--wash); }

.mwah-bulk__line-label {
  display: flex;
  align-items: center;
  gap: var(--sp-12);
  flex: 1 1 auto;
  min-width: 0;
  cursor: pointer;
}

.mwah-bulk__thumb {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-btn);
  object-fit: cover;
  background: var(--paper-grey);
  flex: 0 0 auto;
}

.mwah-bulk__line-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
  overflow-wrap: anywhere;
}

.mwah-bulk__qty {
  flex: 0 0 96px;
  min-height: 44px;
  padding: 10px 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius-btn);
  background: var(--white);
  font-family: var(--font);
  font-size: 15px;
  font-weight: 700;
  text-align: right;
  color: var(--ink);
}

.mwah-bulk__total {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin: var(--sp-16) 0 0;
  padding-top: var(--sp-12);
  border-top: 1px solid var(--line);
  font-size: 13px;
  letter-spacing: 0.08em;
  color: var(--text-soft);
}

.mwah-bulk__total strong { font-size: 18px; color: var(--ink); letter-spacing: -0.01em; }
.mwah-bulk.is-short .mwah-bulk__total strong { color: var(--brand-hover); }

.mwah-bulk__min {
  margin: var(--sp-8) 0 0;
  font-size: 13px;
  font-weight: 600;
  color: var(--brand-hover);
}

.mwah-bulk__submit { width: 100%; margin-top: var(--sp-8); }

.mwah-bulk__submit[disabled] {
  opacity: 0.45;
  cursor: not-allowed;
}

.mwah-bulk__done p { font-size: 15px; line-height: 1.6; color: var(--text-mid); }

@media (max-width: 600px) {
  .mwah-bulk__panel { padding: var(--sp-32) var(--sp-24); }
  .mwah-bulk__thumb { display: none; }
  .mwah-bulk__qty { flex-basis: 80px; }
}

@media (prefers-reduced-motion: reduce) {
  .mwah-bulk { transition: none; }
}
