/* ============================================================
   Flow — Global product chrome
   Cart drawer + sticky add-to-cart bar + toast.
   Loaded on every product page regardless of layout type.
   ============================================================ */

/* Variables shared by global product chrome.
   Scoped to `body.has-flow-cart` — added by inc/product-enqueue.php on
   EVERY WooCommerce-active page — so the cart drawer (which now renders
   site-wide via wp_footer) gets its colors on non-product pages too
   (shop, cart, checkout, SM v3, homepage, etc.). The single-product
   selectors are kept for belt-and-suspenders. */
body.has-flow-cart,
body.woocommerce.single-product,
body.single-product {
  --pg-ink: #000;
  --pg-ink-soft: #2A2A2A;
  --pg-ink-mute: #6B6B6B;
  --pg-bg: #FFFFFF;
  --pg-paper: #FFFFFF;
  --pg-rule: #E4E2DE;
  --pg-rule-soft: #EEECE8;
  --pg-mono: "IBM Plex Mono", ui-monospace, "SF Mono", monospace;
  --pg-serif: "Cormorant Garamond", "EB Garamond", Georgia, serif;
  --pg-sans: 'General Sans', "Outfit", -apple-system, BlinkMacSystemFont, sans-serif;
}

/* Push body below the fixed main-nav. */
body.woocommerce.single-product .product-main,
body.single-product .product-main { padding-top: 64px; }

/* ─── Nav cart icon — desktop ─────────────────────────────────
   Sits in .nav-right where "Sign in" used to be. Click → opens drawer.
   Count badge is live-updated via WC fragments (span#nav-cart-count).
   ──────────────────────────────────────────────────────────── */
.nav-cart-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
  font-family: inherit;
  color: #1d1d1f;
  border-radius: 50%;
  transition: background 200ms ease;
}
.nav-cart-btn:hover { background: rgba(0,0,0,0.05); }
.nav-cart-btn:active { background: rgba(0,0,0,0.09); }
.nav-cart-icon { display: inline-flex; width: 20px; height: 20px; }
.nav-cart-icon svg { width: 100%; height: 100%; }

/* Count badge — top-right of the icon. Hidden when count is 0. */
.nav-cart-btn .dot {
  position: absolute;
  top: -2px;
  right: -2px;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  border-radius: 9px;
  background: #1d1d1f;
  color: #fff;
  font-family: var(--pg-mono);
  font-size: 10px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0;
  border: 2px solid var(--white, #fff);
  box-sizing: content-box;
  line-height: 1;
}
.nav-cart-btn .dot:empty { display: none; }
.mobile-menu-cart .mm-cart-count:empty { display: none; }

/* ─── Mobile menu cart row ─────────────────────────────────── */
.mobile-menu-cart {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 18px 20px;
  font-size: 16px;
  font-weight: 500;
  color: #1d1d1f;
  border: 0;
  border-bottom: 1px solid var(--porcelain, #F5F5F4);
  background: none;
  font-family: inherit;
  cursor: pointer;
  text-align: left;
}
.mobile-menu-cart .mm-cart-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.mobile-menu-cart .mm-cart-count {
  min-width: 22px;
  height: 22px;
  padding: 0 7px;
  border-radius: 11px;
  background: #1d1d1f;
  color: #fff;
  font-family: var(--pg-mono);
  font-size: 11px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0;
}

/* ─── Sticky bar ─── */
:root { --flow-sticky-cta-h: 89px; } /* sticky add-to-cart bar: 88px row + 1px border */
.sticky-bar {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: color-mix(in srgb, #fff 92%, transparent);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid var(--pg-rule);
  transform: translateY(100%);
  transition: transform 280ms cubic-bezier(0.2, 0.7, 0.2, 1);
  z-index: 40;
}
.sticky-bar.visible { transform: translateY(0); }
/* When the sticky bar is showing it's position:fixed and overlaps the bottom
   of the page — reserve clearance under the footer so its last rows aren't
   hidden behind the bar (72px bar + a little breathing room). Toggled by
   product-global.js via the body class. */
body.sticky-cta-shown .site-footer { padding-bottom: 96px; }
/* Self-sufficient container for the sticky bar: the .prod-container padding /
   max-width is only defined under .product-blueprint, but this bar is global
   (also used by the workshop layout, which has no .prod-container rule). Without
   this, the bar had no side gutter and the thumbnail was flush/cut off on the
   left. Vars fall back so it works on any layout. */
.sticky-bar .prod-container {
  width: 100%;
  max-width: var(--container-prod, 1280px);
  margin: 0 auto;
  padding: 0 var(--gutter, 24px);
}
.sticky-bar .row {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  height: 88px;
  gap: 24px;
}
.sticky-bar .info { display: flex; align-items: center; gap: 18px; }
.sticky-thumb {
  width: 58px; height: 76px;
  background: var(--pg-paper);
  border: 1px solid var(--pg-rule-soft);
  position: relative;
  overflow: hidden;
}
.sticky-thumb img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  padding: 0;
}
.sticky-meta { line-height: 1.35; }
.sticky-meta .t {
  font-family: var(--font, 'General Sans', -apple-system, sans-serif);
  font-size: 16px;
  color: var(--pg-ink);
}
.sticky-meta .p {
  font-family: var(--pg-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--pg-ink-mute);
}
.sticky-bar .actions { display: flex; align-items: center; gap: 12px; }
.sticky-bar .btn-primary {
  height: 48px;
  background: var(--sunset-gradient-accent);
  color: #fff;
  font-family: var(--pg-sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 22px;
  border: 0;
  border-radius: 999px;
  transition: filter 200ms, transform 200ms;
  cursor: pointer;
}
.sticky-bar .btn-primary:hover { filter: brightness(1.05); transform: translateY(-1px); }

/* ─── Drawer scrim + container ────────────────────────────────
   Visual refresh per the Berleaf Cart + Checkout design handoff
   (zDZjDP80ifnXeXWlzFQc0A). Cart logic stays native WC — these are
   purely visual styles applied over the new mini-cart.php markup.
   Font fallbacks: Cormorant Garamond → Georgia (serif),
                    IBM Plex Mono     → ui-monospace (mono).
   The serif/mono families are only globally loaded on Blueprint
   product pages today; non-Blueprint pages degrade to system fonts.
   ─────────────────────────────────────────────────────────── */
.drawer-veil {
  position: fixed;
  inset: 0;
  background: rgba(20,20,18,0.32);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  /* Above the fixed main-nav (z-index: 200 in flow-styles.css) and the
     mobile menu (z-index: 500/510) so the scrim dims the whole page,
     nav included, when the drawer is open. */
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.32s cubic-bezier(0.22, 1, 0.36, 1);
}
.drawer-veil.open { opacity: 1; pointer-events: auto; }

.drawer {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: min(480px, 100vw);
  background: var(--pg-bg, #fff);
  z-index: 1001;
  transform: translateX(102%);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow: -16px 0 60px rgba(0,0,0,0.12);
  display: flex;
  flex-direction: column;
}
.drawer.open { transform: translateX(0); }

/* drawer-body becomes a flex column hosting header + items + footer.
   Putting the whole thing inside the fragment-swap target keeps the
   header count live as items change — no extra JS needed. */
#drawer-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 0;
  font-family: 'General Sans', -apple-system, sans-serif;
}

/* Header — serif heading + count + close icon */
#drawer-body .drawer-hd {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 28px 18px;
  border-bottom: 1px solid var(--pg-rule-soft);
}
#drawer-body .drawer-hd h3 {
  margin: 0;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 400;
  font-size: 24px;
  letter-spacing: -0.01em;
  color: #0a0a0a;
}
#drawer-body .drawer-hd .count {
  color: #6b6b66;
  margin-left: 8px;
  font-variant-numeric: tabular-nums;
  font-family: 'IBM Plex Mono', ui-monospace, 'SF Mono', monospace;
  font-size: 14px;
  letter-spacing: 0;
}
#drawer-body .icon-btn {
  appearance: none;
  border: 0;
  background: transparent;
  width: 28px; height: 28px;
  display: inline-flex; align-items: center; justify-content: center;
  cursor: pointer;
  color: #6b6b66;
  border-radius: 50%;
  transition: background 0.15s cubic-bezier(0.22, 1, 0.36, 1), color 0.15s cubic-bezier(0.22, 1, 0.36, 1);
}
#drawer-body .icon-btn:hover { background: #f3f1ec; color: #0a0a0a; }

/* Items — scrollable middle region */
#drawer-body .drawer-items {
  flex: 1 1 auto;
  overflow-y: auto;
  list-style: none;
  margin: 0;
  padding: 8px 28px 28px;
}

/* Cart item row — 88×110 thumb · meta · actions */
#drawer-body .cart-item {
  display: grid;
  grid-template-columns: 88px 1fr auto;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--pg-rule-soft);
  align-items: start;
  list-style: none;
}
#drawer-body .cart-item:last-child { border-bottom: 0; }
#drawer-body .cart-thumb {
  width: 88px; height: 110px;
  background: #f3f1ec;
  position: relative;
  overflow: hidden;
}
#drawer-body .cart-thumb a,
#drawer-body .cart-thumb img {
  display: block;
  width: 100%;
  height: 100%;
}
#drawer-body .cart-thumb img {
  /* contain + padding so transparent product PNGs (e.g. the Blueprint book)
     show in full, matching the rail/hero treatment. float:none/margin:0
     neutralize any residual WC widget image styling. */
  object-fit: contain;
  padding: 2px;
  float: none;
  margin: 0;
}

#drawer-body .cart-item-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-top: 2px;
  min-width: 0;
}
#drawer-body .cart-item-meta .name {
  font-size: 14px;
  font-weight: 500;
  color: #0a0a0a;
  line-height: 1.35;
}
#drawer-body .cart-item-meta .name a { color: inherit; text-decoration: none; }
#drawer-body .cart-item-meta .name a:hover { text-decoration: underline; text-underline-offset: 3px; }
#drawer-body .cart-item-meta .subtitle {
  color: #6b6b66;
  font-size: 12px;
  line-height: 1.4;
}
#drawer-body .cart-item-meta .variant {
  color: #6b6b66;
  font-size: 12px;
  line-height: 1.4;
}
#drawer-body .cart-item-meta .variant p { margin: 0; }
#drawer-body .cart-item-meta .variant dl { margin: 0; }
#drawer-body .cart-item-meta .unit {
  color: #0a0a0a;
  font-size: 12.5px;
  font-variant-numeric: tabular-nums;
  font-family: 'IBM Plex Mono', ui-monospace, 'SF Mono', monospace;
  margin-top: 8px;
}
#drawer-body .cart-item-meta .unit .woocommerce-Price-amount {
  font-family: inherit;
}

/* Item actions — remove × top-right, qty pill bottom-right */
#drawer-body .cart-item-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  height: 100%;
  min-height: 100px;
}
#drawer-body .remove-x,
#drawer-body a.remove.remove-x {
  appearance: none;
  border: 0;
  background: transparent;
  cursor: pointer;
  /* !important beats WC core's `.woocommerce a.remove { color: red !important; width:1em; height:1em }`.
     Without explicit px dimensions the 1em box collapses to 0 under font-size:0 and the icon vanishes. */
  color: #6b6b66 !important;
  width: 26px !important;
  height: 26px !important;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 0;
  line-height: 1;
  border-radius: 50%;
  transition: color 0.15s cubic-bezier(0.22, 1, 0.36, 1), background 0.15s cubic-bezier(0.22, 1, 0.36, 1);
}
#drawer-body .remove-x svg { display: block; width: 15px; height: 15px; }
#drawer-body .remove-x:hover,
#drawer-body a.remove.remove-x:hover { color: #0a0a0a !important; background: #f3f1ec; }

/* Live qty stepper — −/value/+ pill. Buttons post to flow_update_cart_qty
   (see product-global.js); the whole #drawer-body re-renders from the
   returned WC fragments, so values stay authoritative. */
#drawer-body .cart-item-actions .qty {
  display: inline-flex;
  align-items: center;
  border: 1px solid #d6d3cc;
  border-radius: 999px;
  height: 30px;
  overflow: hidden;
  background: #fff;
  transition: opacity 0.15s cubic-bezier(0.22, 1, 0.36, 1);
}
#drawer-body .cart-item-actions .qty .qd {
  appearance: none;
  border: 0;
  background: transparent;
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #0a0a0a;
  padding: 0;
  transition: background 0.15s cubic-bezier(0.22, 1, 0.36, 1);
}
#drawer-body .cart-item-actions .qty .qd:hover { background: #f3f1ec; }
#drawer-body .cart-item-actions .qty .qd svg { display: block; }
#drawer-body .cart-item-actions .qty .v {
  min-width: 30px;
  text-align: center;
  font-variant-numeric: tabular-nums;
  font-family: 'IBM Plex Mono', ui-monospace, 'SF Mono', monospace;
  font-size: 12px;
  color: #0a0a0a;
}
/* In-flight: dim + block further clicks until fragments return. */
#drawer-body .cart-item-actions .qty.is-loading {
  opacity: 0.5;
  pointer-events: none;
}

/* Footer — sticky bottom, totals + CTAs */
#drawer-body .drawer-ft {
  flex: 0 0 auto;
  border-top: 1px solid var(--pg-rule-soft, #EEECE8);
  padding: 20px 28px 24px;
  background: var(--pg-bg, #fff);
}
#drawer-body .ft-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 4px 0;
  font-size: 13px;
}
#drawer-body .ft-row.total {
  border-top: 1px solid var(--pg-rule-soft);
  margin-top: 8px;
  padding-top: 12px;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 20px;
  color: #0a0a0a;
}
#drawer-body .ft-row .v {
  font-variant-numeric: tabular-nums;
  color: #0a0a0a;
}
#drawer-body .ft-row.total .v {
  font-family: inherit;
}
#drawer-body .ft-row .muted { color: #6b6b66; }
#drawer-body .ft-row .v.muted { color: #9b9b95; }

/* Cart action buttons (scoped to avoid colliding with site .btn rules) */
#drawer-body .drawer-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 12px 0 0;
}
#drawer-body .btn-cart-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  height: 52px;
  padding: 0 22px;
  background: #0a0a0a;
  color: #fff;
  font-family: 'General Sans', -apple-system, sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  border: 0;
  border-radius: 0;
  cursor: pointer;
  transition: background 0.18s cubic-bezier(0.22, 1, 0.36, 1);
}
#drawer-body .btn-cart-primary:hover { background: #2a2a26; }
#drawer-body .btn-cart-primary.block { width: 100%; }

#drawer-body .btn-cart-subtle {
  appearance: none;
  background: transparent;
  color: #0a0a0a;
  border: 0;
  padding: 8px 0;
  font-family: 'General Sans', -apple-system, sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: underline;
  text-underline-offset: 4px;
  cursor: pointer;
  align-self: center;
}

#drawer-body .btn-cart-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: #0a0a0a;
  border: 1px solid #0a0a0a;
  padding: 10px 16px;
  font-family: 'General Sans', -apple-system, sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.18s cubic-bezier(0.22, 1, 0.36, 1), color 0.18s cubic-bezier(0.22, 1, 0.36, 1);
}
#drawer-body .btn-cart-ghost:hover { background: #0a0a0a; color: #fff; }
#drawer-body .btn-cart-sm { padding: 10px 16px; font-size: 11px; }

/* Hide WC-injected plugin buttons (e.g. "View cart"/"Checkout" added
   by `woocommerce_widget_shopping_cart_buttons`) — our own CTAs cover
   the actions. If plugins inject other buttons here they'll get a
   minimal style so they're not invisible. */
#drawer-body .drawer-actions .button,
#drawer-body .drawer-actions a.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  padding: 0 16px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid #d6d3cc;
  background: #fff;
  color: #0a0a0a;
  border-radius: 0;
}
#drawer-body .drawer-actions .button.wc-forward { display: none; }
#drawer-body .drawer-actions .button.checkout { display: none; }

/* Empty state */
#drawer-body .drawer-empty {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 28px;
  color: #6b6b66;
}
#drawer-body .drawer-empty h4 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 400;
  font-size: 22px;
  color: #0a0a0a;
  margin: 0 0 8px;
}
#drawer-body .drawer-empty p {
  margin: 0 0 18px;
  font-size: 13px;
  line-height: 1.5;
}

/* ─── WC Stripe Express Checkout (Apple Pay / Google Pay / Link) ───
   Rendered by the Stripe plugin after the add-to-cart form. We only
   tune spacing + the "— OR —" separator typography so it sits with our
   editorial type; Stripe owns the wallet button itself (its look is
   locked by Apple/Google brand rules). Inline display:none on these
   elements is toggled by Stripe JS — don't override it. */
#wc-stripe-express-checkout-element {
  max-width: 100%;
}
#wc-stripe-express-checkout-button-separator {
  font-family: 'IBM Plex Mono', ui-monospace, 'SF Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #6b6b66;
}

/* Product hero: sit the Stripe express ("Pay with Link" / wallet) button to the
   RIGHT of the add-to-cart button instead of stacked below it. The Stripe plugin
   injects #wc-stripe-express-checkout-element as a sibling of form.cart inside
   .flow-add-to-cart-wrap (via woocommerce_after_add_to_cart_form), so a flex row
   on the wrapper lines them up. Wraps to a new line on narrow screens. Only
   visible where the express button actually renders (configured Stripe + a wallet
   available); on local/unconfigured it stays the correct empty state. */
.flow-add-to-cart-wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}
.flow-add-to-cart-wrap form.cart { margin: 0; }
.flow-add-to-cart-wrap #wc-stripe-express-checkout-element {
  /* !important beats Stripe's inline margin-top/clear so it aligns in the row */
  margin: 0 !important;
  clear: none !important;
  flex: 0 0 auto;
  min-width: 180px; /* Stripe needs a min width to lay out the wallet button */
}
/* The "— OR —" separator reads awkwardly in a horizontal row — hide it in the
   hero (mirrors the checkout express-checkout pattern). */
.flow-add-to-cart-wrap #wc-stripe-express-checkout-button-separator { display: none !important; }

/* ─── Toast (bottom-right) ─── */
.toast {
  position: fixed;
  left: auto;
  right: 24px;
  bottom: 24px;
  transform: translateY(16px);
  background: var(--pg-ink);
  color: #fff;
  padding: 14px 22px;
  border-radius: 999px;
  box-shadow: 0 10px 30px rgba(20, 20, 18, 0.18);
  font-family: var(--pg-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0;
  pointer-events: none;
  transition: opacity 200ms, transform 200ms;
  z-index: 1100; /* above the drawer (1001) so add-to-cart confirmations stay visible */
  display: flex;
  gap: 14px;
  align-items: center;
}
.toast.show { opacity: 1; transform: translateY(0); }
.toast .check { color: #fff; }

/* Error variant — readable sentence-case, multi-line, longer dwell. Used for WC
   error/success notices lifted off the top of the cart & checkout pages. */
.toast.is-error {
  background: #B3261E;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  text-transform: none;
  letter-spacing: 0.005em;
  font-size: 13px;
  line-height: 1.45;
  white-space: pre-line; /* honor "\n" between multiple messages */
  text-align: left;
  align-items: flex-start;
  max-width: min(380px, calc(100vw - 40px));
  border-radius: 14px;
  padding: 14px 18px;
}
.toast.is-error .check {
  flex-shrink: 0;
  margin-top: 1px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 12px;
  line-height: 1;
}

/* Raise above the bottom sticky bars (product sticky-bar / cart mobile bar). */
@media (max-width: 900px) {
  .toast { right: 12px; bottom: 96px; }
}

/* ─── Sticky add-to-cart bar — mobile fit ─── */
@media (max-width: 600px) {
  .sticky-bar .prod-container { padding: 0 16px; }
  .sticky-bar .row { height: 62px; gap: 12px; }
  .sticky-thumb { display: none; }
  .sticky-meta .t { font-size: 14px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 44vw; }
  .sticky-meta .p { font-size: 10px; letter-spacing: 0.12em; }
  .sticky-bar .btn-primary { height: 44px; padding: 0 16px; font-size: 11px; letter-spacing: 0.1em; }
}

/* Mobile/tablet overflow guard for the editorial product layouts. Scoped to the
   product body classes + ≤900 (where the sticky section label is already static,
   so this won't break sticky positioning) — clips any stray horizontal bleed. */
@media (max-width: 900px) {
  body.product-layout-blueprint,
  body.product-layout-builder { overflow-x: hidden; }
}

/* Comfortable tap target for WooCommerce form inputs (account, checkout, etc.). */
.woocommerce form .form-row .input-text { min-height: 48px; }
