@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;600&family=Oswald:wght@400;600&display=swap');
/* =========================
   Zarja WhatsApp Ordering — UI (clean consolidated v.1.20260111)
   - Dark menu theme with teal + orange accents
   - 4-up grid on desktop
   - Modal + cart drawer polish
   - Cart controls minimal (no pills, no backgrounds)
   ========================= */

/* =========================
   Theme tokens
   ========================= */
.zwo{
  /* PURE BLACK BASE (premium) */
  --zwo-bg: #000000;

  /* Panels: still “glassy” but anchored to true black */
  --zwo-panel: rgba(0, 0, 0, 0.78);
  --zwo-panel-solid: rgba(0, 0, 0, 0.96);

  --zwo-border: rgba(255,255,255,.12);
  --zwo-border-strong: rgba(255,255,255,.18);
  --zwo-text: rgba(255,255,255,.94);
  --zwo-muted: rgba(255,255,255,.70);

  --zwo-teal: #9fd2d4;
  --zwo-orange: #ff8a2a;
  --zwo-danger: #ff4d4d;

  --zwo-radius-xl: 18px;
  --zwo-radius-lg: 14px;
  --zwo-radius-md: 12px;

  --zwo-shadow: 0 18px 55px rgba(0,0,0,.45);
  --zwo-shadow-soft: 0 10px 30px rgba(0,0,0,.30);

  --zwo-safe-b: env(safe-area-inset-bottom, 0px);
  --zwo-safe-t: env(safe-area-inset-top, 0px);

  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--zwo-text);

  background: var(--zwo-bg);
  border-radius: var(--zwo-radius-xl);

  /* Keep breathing room so halo doesn’t “kiss” the rounded edge */
  padding: 16px;

  /* IMPORTANT: do not clip outer halos/shadows */
  overflow: visible;
}

.zwo *{ box-sizing: border-box; }
html.zwo-lock, html.zwo-lock body{ overflow: hidden; }
.zwo, .zwo *{ -webkit-tap-highlight-color: transparent; }

.zwo :focus-visible{
  outline: 2px solid color-mix(in srgb, var(--zwo-orange) 70%, #fff 30%);
  outline-offset: 2px;
}

/* =========================
   Categories
   ========================= */
.zwo-header{ margin-bottom: 14px; }

.zwo-categories{
  display:flex;
  gap:10px;
  overflow-x:auto;
  padding:6px 2px;
  scrollbar-width:none;
}
.zwo-categories::-webkit-scrollbar{ display:none; }

/* Sticky wrapper and bar (scoped to .zwo-root) */
.zwo-sticky-wrap{
  position: -webkit-sticky;
  position: sticky;
  top: max(var(--zwo-sticky-top, 0px), 78px);
  z-index: 9999;
  background: transparent; /* let the bar paint its own background */
}

.zwo-category-bar{
  background: var(--zwo-panel-solid, rgba(0,0,0,0.96));
  padding: 6px 0;
  margin: 0 -16px; /* extend to container edges to cover rounded padding */
  padding-inline: 10px; /* inner breathing room for chips */
}

.zwo-sticky-wrap.is-stuck .zwo-category-bar{
  box-shadow: 0 6px 18px rgba(0,0,0,0.32);
}

/* Scoped overrides to mitigate Elementor/theme wrappers that break native sticky
   These are intentionally narrow and only apply inside the plugin root */
.zwo-root,
.zwo-root .elementor-section,
.zwo-root .elementor-column,
.zwo-root .elementor-widget-wrap{
  overflow: visible !important;
  transform: none !important;
}

@media (max-width: 768px){
  .zwo-sticky-wrap{
    top: max(var(--zwo-sticky-top, 0px), 88px);
  }
}

.zwo-chip{
  border:1px solid var(--zwo-border);
  background: rgba(255,255,255,.06);
  color: var(--zwo-text);
  padding: 9px 14px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 750;
  cursor:pointer;
  white-space: nowrap;
  transition: transform .12s ease, background .15s ease, border-color .15s ease, color .15s ease;
}
.zwo-chip:hover{
  border-color: color-mix(in srgb, var(--zwo-orange) 55%, var(--zwo-border) 45%);
  background: rgba(255,255,255,.10);
  transform: translateY(-1px);
}
.zwo-chip.is-active{
  border-color: color-mix(in srgb, var(--zwo-orange) 65%, var(--zwo-border) 35%);
  background: color-mix(in srgb, var(--zwo-orange) 16%, rgba(255,255,255,.06) 84%);
  color:#fff;
}

/* =========================
   Grid (HALO-SAFE + RESPONSIVE)
   - Prevents halo clipping
   - Adds edge breathing room on all breakpoints
   - Keeps your 1 / 2 / 4 column layout
   ========================= */
.zwo-grid{
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));

  /* keep your base spacing */
  gap: 14px;

  /* KEY: allow shadows/halo to render outside cards */
  overflow: visible;

  /* KEY: edge space so first/last halo doesn't hit container edge */
  padding-inline: 10px;

  /* optional: if something later sets isolation/stacking, this helps */
  position: relative;
  z-index: 0;

  /* EDIT: ensure grid itself is not a visible panel */
  background: transparent;
}

@media (min-width: 640px){
  .zwo-grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding-inline: 12px; /* slightly more room on wider screens */
  }
}

@media (min-width: 1024px){
  .zwo-grid{
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;            /* your desktop gap */
    padding-inline: 14px; /* keep halos clean at edges */
  }
}

/* =========================
   Cards (SINGLE SOURCE OF TRUTH)
   - Teal halo (not border)
   - Keeps your current layout + image rules
   ========================= */

.zwo-card{
  position: relative;
  border: 1px solid var(--zwo-border);
  border-radius: var(--zwo-radius-xl);
  overflow: hidden;
  background: rgba(255,255,255,.04);

  /* base depth */
  box-shadow:
    0 10px 30px rgba(0,0,0,.35),
    inset 0 1px 0 rgba(255,255,255,.04);

  transition:
    transform .14s ease,
    background .18s ease,
    border-color .18s ease,
    box-shadow .18s ease;
}

/* Focus: premium teal (no harsh rectangle outline) */
.zwo-card[role="button"]:focus-visible{
  outline: none;
  border-color: rgba(149,200,201,0.30);
  box-shadow:
    0 18px 55px rgba(0,0,0,.50),
    0 0 0 2px rgba(149,200,201,0.22),
    0 0 26px rgba(149,200,201,0.18),
    0 0 90px rgba(149,200,201,0.12),
    inset 0 1px 0 rgba(255,255,255,.04);
}

/* Desktop hover: teal HALO (no “thin border” look) */
  @media (hover:hover){
  .zwo-card:hover{
    position: relative;
    z-index: 3;
    transform: translateY(-2px);
    border-color: rgba(149,200,201,0.22);
    background: rgba(149,200,201,0.06);

    box-shadow:
      0 18px 55px rgba(0,0,0,.50),
      0 0 16px rgba(149,200,201,0.24),
      0 0 34px rgba(149,200,201,0.16),
      0 0 72px rgba(149,200,201,0.09),
      inset 0 1px 0 rgba(255,255,255,.04);
  }
}

/* Mobile tap/press: same halo feel */
@media (hover:none){
  .zwo-card:active{
    transform: translateY(-1px);
    box-shadow:
      0 18px 55px rgba(0,0,0,.50),
      0 0 18px rgba(149,200,201,0.24),
      0 0 44px rgba(149,200,201,0.18),
      0 0 110px rgba(149,200,201,0.12),
      inset 0 1px 0 rgba(255,255,255,.04);
  }
}

.zwo-card.is-soldout{ opacity:.55; }
.zwo-card.is-soldout:hover,
.zwo-card.is-soldout:active{
  transform: none;
  border-color: var(--zwo-border);
  background: rgba(255,255,255,.04);
  box-shadow:
    0 10px 30px rgba(0,0,0,.35),
    inset 0 1px 0 rgba(255,255,255,.04);
}

/* Card image area — sleek 16:10, ALWAYS shows full image */
.zwo-card-imgwrap{
  aspect-ratio: 16 / 10;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;

  padding: clamp(36px, 4vw, 50px);
  background: rgba(255,255,255,.04);
}

.zwo-card-img{
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;

  transform: none !important;
  transition: filter .22s ease;
}

/* “Punch” without cropping: shadow/contrast instead of scaling */
@media (hover:hover){
  .zwo-card:hover .zwo-card-img{
    filter: drop-shadow(0 10px 18px rgba(0,0,0,.35)) contrast(1.03) saturate(1.03);
  }
}
.zwo-card.is-soldout:hover .zwo-card-img{ filter: none; }

.zwo-card-imgplaceholder{
  font-size: 12px;
  color: var(--zwo-muted);
}

.zwo-card-body{
  padding: 12px 12px 14px;
  display: grid;
  gap: 8px;
}

.zwo-card-title{ font-size: 16px; font-weight: 850; letter-spacing: .2px; }
.zwo-card-desc{ font-size: 13px; color: var(--zwo-muted); line-height: 1.35; }
.zwo-card-price{
  font-size: 14px;
  font-weight: 800;
  color: color-mix(in srgb, var(--zwo-teal) 70%, #fff 30%);
}

.zwo-card-btn{
  margin-top: 2px;
  width: 100%;
  border: 1px solid var(--zwo-border);
  background: #ffffff;
  color: #000000;
  padding: 10px 12px;
  border-radius: var(--zwo-radius-md);
  cursor: pointer;
  font-weight: 850;
  transition: background .15s ease, border-color .15s ease, transform .12s ease;
}
@media (hover:hover){
  .zwo-card-btn:hover{
    border-color: #000000;
    background: #000000;
    color: #ffffff;
    transform: translateY(-1px);
  }
}
.zwo-card-btn[data-zwo-primary="1"]{
  border-color: #000000;
  background: #ffffff;
  color: #000000;
}
.zwo-card-btn:disabled{ cursor: not-allowed; opacity: .55; }

.zwo-empty,
.zwo-cart-empty{
  padding: 18px;
  border: 1px dashed var(--zwo-border);
  border-radius: var(--zwo-radius-lg);
  color: var(--zwo-muted);
  background: rgba(255,255,255,.03);
}

/* =========================
   Modal
   ========================= */
.zwo-modal{ position:fixed; inset:0; display:none; z-index:99999; }
.zwo-modal.is-open{ display:block; }
.zwo-modal-backdrop{ position:absolute; inset:0; background: rgba(0,0,0,.55); }

.zwo-modal-panel{
  position:absolute;
  left:50%;
  top:50%;
  transform: translate(-50%, -50%);
  width: min(920px, calc(100vw - 26px));
  max-height: calc(100vh - 26px);
  overflow:auto;
  border-radius: var(--zwo-radius-xl);
  border:1px solid var(--zwo-border);
  background: var(--zwo-panel-solid);
  box-shadow: var(--zwo-shadow);
  padding: 18px;
}

/* close button (base) */
.zwo-modal-close{
  position: sticky;
  top: 0;
  margin-left:auto;
  display:block;
  border:none;
  background: transparent;
  color:#fff;
  width:44px;
  height:44px;
  border-radius: 999px;
  font-size:28px;
  line-height:44px;
  cursor:pointer;
  opacity:.85;
}
.zwo-modal-close:hover{ opacity:1; }

.zwo-modal-header{
  display: grid;
  gap: 14px;
  grid-template-columns: 1fr;
  padding-top: 10px; /* subtle breathing room from top */
}

@media (min-width: 760px){
  .zwo-modal-header{
    grid-template-columns: 340px 1fr;
    align-items: start;
  }
}
.zwo-modal-img{ width:100%; border-radius: var(--zwo-radius-lg); display:block; }
.zwo-modal-title{ font-size:22px; font-weight:900; }
.zwo-modal-desc{ margin-top:6px; color: var(--zwo-muted); }
.zwo-modal-price{
  margin-top:10px;
  font-weight:900;
  color: color-mix(in srgb, var(--zwo-teal) 75%, #fff 25%);
}

.zwo-modal-sections{ margin-top:16px; display:grid; gap:14px; }
.zwo-sec{
  border:1px solid var(--zwo-border);
  border-radius: var(--zwo-radius-xl);
  padding:14px;
  background: rgba(255,255,255,.04);
}
.zwo-sec-title{ font-weight:900; margin-bottom:10px; letter-spacing:.2px; }
.zwo-line{ display:flex; gap:10px; align-items:center; padding: 8px 0; }
.zwo-line input{ width:18px; height:18px; accent-color: var(--zwo-orange); }
.zwo-line-text{ font-size:14px; color: var(--zwo-text); }
.zwo-hint{ font-size:12px; color: var(--zwo-muted); margin-top:8px; }

.zwo-actions{
  margin-top:14px;
  display:flex;
  justify-content:flex-end;
  gap:10px;
  align-items:center;
}

.zwo-add{
  border:1px solid color-mix(in srgb, var(--zwo-teal) 60%, var(--zwo-border) 40%);
  background: color-mix(in srgb, var(--zwo-teal) 18%, rgba(255,255,255,.05) 82%);
  color:#fff;
  padding:10px 14px;
  border-radius: var(--zwo-radius-lg);
  cursor:pointer;
  font-weight:900;
  transition: transform .12s ease, background .15s ease, border-color .15s ease;
}
.zwo-add:hover{
  border-color: var(--zwo-teal);
  background: color-mix(in srgb, var(--zwo-teal) 26%, rgba(255,255,255,.05) 74%);
  transform: translateY(-1px);
}

.zwo-qty{ display:flex; gap:10px; align-items:center; }
.zwo-qty-btn{
  border:1px solid var(--zwo-border);
  background: rgba(255,255,255,.06);
  color:#fff;
  width:44px;
  height:44px;
  border-radius:14px;
  cursor:pointer;
  font-weight:900;
}
.zwo-qty-btn:hover{
  border-color: color-mix(in srgb, var(--zwo-orange) 55%, var(--zwo-border) 45%);
}
.zwo-qty-val{ min-width:28px; text-align:center; font-weight:900; }

/* ============================
   ZWO — Premium Order FAB
   ============================ */

/* If you already have .zwo-cart-fab, this will restyle it */
.zwo .zwo-cart-fab{
  position: fixed;
  right: 18px;
  bottom: calc(18px + var(--zwo-safe-b, 0px));
  z-index: 9999;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  min-height: 54px;
  padding: 12px 16px;
  border-radius: 999px;

  /* Typography: “premium system” */
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 650;
  font-size: 14px;
  letter-spacing: 0.2px;

  color: rgba(255,255,255,.94);

  /* Glass surface */
  background:
    linear-gradient(180deg, rgba(255,255,255,.12), rgba(255,255,255,.06));
  border: 1px solid rgba(255,255,255,.16);

  /* Subtle depth (Apple-ish) */
  box-shadow:
    0 18px 50px rgba(0,0,0,.50),
    0 2px 0 rgba(255,255,255,.06) inset;

  /* Backdrop blur (iOS “glass”) */
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  backdrop-filter: blur(14px) saturate(140%);

  /* Smooth interactions */
  cursor: pointer;
  user-select: none;
  -webkit-tap-highlight-color: transparent;

  transform: translateZ(0);
  transition:
    transform 240ms cubic-bezier(.2,.85,.2,1),
    box-shadow 240ms cubic-bezier(.2,.85,.2,1),
    border-color 240ms cubic-bezier(.2,.85,.2,1),
    background 240ms cubic-bezier(.2,.85,.2,1),
    color 240ms cubic-bezier(.2,.85,.2,1);
}

.zwo .zwo-cart-fab:hover{
  transform: translateY(-1px);
  border-color: rgba(255,255,255,.22);
  box-shadow:
    0 22px 62px rgba(0,0,0,.55),
    0 2px 0 rgba(255,255,255,.07) inset;
}

.zwo .zwo-cart-fab:active{
  transform: translateY(0px) scale(.985);
}

/* Focus ring (keyboard) */
.zwo .zwo-cart-fab:focus-visible{
  outline: none;
  box-shadow:
    0 18px 50px rgba(0,0,0,.50),
    0 2px 0 rgba(255,255,255,.06) inset,
    0 0 0 4px rgba(159, 210, 212, .22);
}

/* “Has items” = slightly more alive */
.zwo .zwo-cart-fab.has-items{
  border-color: rgba(159, 210, 212, .22);
}

/* Optional: small dot “alive” highlight when has items */
.zwo .zwo-cart-fab.has-items::after{
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  margin-left: 2px;

  /* default dot color */
  background: rgba(159, 210, 212, .95);
  box-shadow: 0 0 0 4px rgba(159, 210, 212, .14);

  /* smooth dot-only hover */
  transition: background-color 160ms ease, box-shadow 160ms ease;
}

/* Hover: change ONLY the dot to orange (keep everything else identical) */
.zwo .zwo-cart-fab.has-items:hover::after{
  background: rgba(244, 166, 64, .98);
  box-shadow: 0 0 0 4px rgba(244, 166, 64, .16);
}

/* ============================
   Premium double-pulse glow
   Triggered by JS adding .is-pulse
   ============================ */

@keyframes zwoOrderPulse2x {
  0%   { transform: translateZ(0) scale(1);    box-shadow: 0 18px 50px rgba(0,0,0,.50), 0 2px 0 rgba(255,255,255,.06) inset; }
  12%  { transform: translateZ(0) scale(1.04); box-shadow: 0 24px 70px rgba(0,0,0,.58), 0 0 0 6px rgba(159,210,212,.14), 0 2px 0 rgba(255,255,255,.07) inset; }
  24%  { transform: translateZ(0) scale(1.01); box-shadow: 0 20px 58px rgba(0,0,0,.54), 0 0 0 2px rgba(159,210,212,.10), 0 2px 0 rgba(255,255,255,.06) inset; }
  38%  { transform: translateZ(0) scale(1.045);box-shadow: 0 26px 76px rgba(0,0,0,.60), 0 0 0 8px rgba(159,210,212,.16), 0 2px 0 rgba(255,255,255,.07) inset; }
  55%  { transform: translateZ(0) scale(1.015);box-shadow: 0 21px 60px rgba(0,0,0,.55), 0 0 0 3px rgba(159,210,212,.10), 0 2px 0 rgba(255,255,255,.06) inset; }
  100% { transform: translateZ(0) scale(1);    box-shadow: 0 18px 50px rgba(0,0,0,.50), 0 2px 0 rgba(255,255,255,.06) inset; }
}

.zwo .zwo-cart-fab.is-pulse{
  animation: zwoOrderPulse2x 780ms cubic-bezier(.2,.85,.2,1) both;
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce){
  .zwo .zwo-cart-fab{
    transition: none;
  }
  .zwo .zwo-cart-fab.is-pulse{
    animation: none;
  }
  .zwo .zwo-cart-fab.has-items::after{
    transition: none;
  }
}

/* When cart drawer is open, hide the pill */
.zwo .zwo-cart-drawer.is-open ~ .zwo-cart-fab{
  display:none !important;
}
/* =========================
   Cart Drawer
   ========================= */
.zwo-cart-drawer{ position:fixed; inset:0; z-index:99998; display:none; }
.zwo-cart-drawer.is-open{ display:block; }
.zwo-cart-backdrop{ position:absolute; inset:0; background: rgba(0,0,0,.45); }

.zwo .zwo-cart-panel{
  position:absolute;
  right:0; top:0; bottom:0;
  width: min(460px, 92vw);
  background: var(--zwo-panel-solid);
  border-left: 1px solid var(--zwo-border);
  padding: 16px;
  padding-bottom: calc(16px + var(--zwo-safe-b) + 10px);
  overflow:auto !important;
  -webkit-overflow-scrolling: touch;
  box-shadow: var(--zwo-shadow);
}

/* Desktop: inset (rounded) */
@media (min-width: 1024px){
  .zwo .zwo-cart-panel{
    top: 20px;
    bottom: 20px;
    right: 20px;
    border-radius: var(--zwo-radius-xl);
    border: 1px solid var(--zwo-border);
  }
}

/* Mobile: full screen */
@media (max-width: 1023px){
  .zwo .zwo-cart-panel{
    top:0;
    right:0;
    bottom:0;
    width: 100%;
    border-radius: 0;
    border:none;
  }
}

/* Sticky cart header (Apple-like glass) */
.zwo .zwo-cart-panel {
  overflow: hidden;
}

.zwo .zwo-cart-top {
  position: sticky;
  top: 0;
  z-index: 3;

  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);

  background: rgba(12, 13, 16, 0.72);
  border-bottom: 1px solid rgba(255,255,255,.08);
  
  padding: 14px 0;
  padding-left: 16px;
  padding-right: 16px;
  
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.zwo .zwo-cart-titlewrap {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}

.zwo .zwo-cart-title {
  font-weight: 950;
  font-size: 18px;
  letter-spacing: .2px;
}

.zwo .zwo-cart-subtitle {
  font-size: 12px;
  line-height: 1.2;
  opacity: .72;
}

/* Close button — visible, circular, orange hover */
.zwo .zwo-cart-close{
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(0,0,0,.55);
  color: #fff;
  font-size: 22px;
  font-weight: 900;
  line-height: 1;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  flex: 0 0 auto;
  transition: transform .12s ease, border-color .15s ease, background .15s ease, color .15s ease;
}
.zwo .zwo-cart-close:hover,
.zwo .zwo-cart-close:focus-visible{
  border-color: color-mix(in srgb, var(--zwo-orange) 65%, rgba(255,255,255,.18) 35%);
  background: color-mix(in srgb, var(--zwo-orange) 18%, rgba(0,0,0,.55) 82%);
  color:#fff;
  transform: translateY(-1px);
}

.zwo .zwo-cart-items{ margin-top: 14px; display:grid; gap: 10px; }

/* Cart row */
.zwo .zwo-cart-row{
  display:flex;
  justify-content:space-between;
  gap: 10px;
  padding: 10px;
  border: 1px solid var(--zwo-border);
  border-radius: var(--zwo-radius-xl);
  background: rgba(255,255,255,.04);
  align-items:flex-start;
  box-shadow:none;
}
.zwo .zwo-cart-row::before,
.zwo .zwo-cart-row::after{
  display:none !important;
  content:none !important;
}

.zwo .zwo-cart-row-title{ font-weight:900; }
.zwo .zwo-cart-row-price{
  font-weight: 900;
  font-size: 13px;
  color: color-mix(in srgb, var(--zwo-teal) 70%, #fff 30%);
}

.zwo .zwo-cart-row-left{ padding-right: 10px; }

.zwo .zwo-cart-row-details{
  margin-top: 6px;
  display:grid;
  gap: 6px;
  font-size: 12px;
  color: var(--zwo-muted);
  line-height: 1.35;
  white-space: normal;
  word-break: break-word;
}
.zwo .zwo-cart-detail-line strong{
  color: rgba(255,255,255,.86);
  font-weight: 900;
}

.zwo .zwo-cart-row-right{
  text-align:right;
  display:flex;
  flex-direction:column;
  gap: 8px;
  align-items:flex-end;
  min-width: 140px;
}

/* Controls — minimal +/- (no pill, no background) */
.zwo .zwo-cart-controls{
  display:flex;
  gap: 8px;
  align-items:center;
  justify-content:flex-end;
  flex-wrap: wrap;
}
.zwo .zwo-cart-ctl{
  appearance:none;
  -webkit-appearance:none;
  background: transparent;
  border: none;
  border-radius: 0;
  width:auto;
  height:auto;
  min-width: 18px;
  min-height: 18px;
  padding:0;
  margin:0;
  color: rgba(255,255,255,.88);
  font-size: 18px;
  font-weight: 900;
  line-height: 1;
  cursor:pointer;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  box-shadow:none;
  transform:none;
}
.zwo .zwo-cart-ctl:hover{ color:#fff; }
.zwo .zwo-cart-ctl:focus-visible{
  outline: 2px solid color-mix(in srgb, var(--zwo-teal) 60%, #fff 40%);
  outline-offset: 3px;
  border-radius: 6px;
}

.zwo .zwo-cart-qty{
  min-width: 16px;
  text-align:center;
  font-size: 13px;
  font-weight: 900;
  color: rgba(255,255,255,.85);
}

/* Remove link — no underline, orange on hover */
.zwo .zwo-cart-del{ border:none; background:none; padding:0; }
.zwo .zwo-cart-del--link{
  opacity: .78;
  font-weight: 900;
  font-size: 12px;
  cursor:pointer;
  text-decoration: none !important;
  border-bottom: 0 !important;
  box-shadow: none !important;
  background-image: none !important;
  color: rgba(255,255,255,.72);
  transition: opacity .15s ease, color .15s ease;
}
.zwo .zwo-cart-del--link:hover{
  opacity: 1;
  color: var(--zwo-orange);
}
.zwo .zwo-cart-del--link,
.zwo .zwo-cart-del--link:hover,
.zwo .zwo-cart-del--link:focus,
.zwo .zwo-cart-del--link:active{
  text-decoration: none !important;
  -webkit-text-decoration: none !important;
  text-decoration-line: none !important;
  text-decoration-color: transparent !important;
}

/* Tiny screens: allow wrap */
@media (max-width: 360px){
  .zwo .zwo-cart-controls{ flex-wrap: wrap; }
}

/* Summary blocks */
.zwo .zwo-cart-summary{
  margin-top: 14px;
  border: 1px solid var(--zwo-border);
  border-radius: var(--zwo-radius-xl);
  padding: 12px;
  background: rgba(255,255,255,.04);
}
.zwo .zwo-summary-line{
  display:flex;
  justify-content:space-between;
  font-weight:900;
  padding: 6px 0;
}
.zwo .zwo-summary-total{
  margin-top: 6px;
  padding-top: 10px;
  border-top: 1px solid var(--zwo-border);
}
.zwo .zwo-summary-total span:last-child{
  color: color-mix(in srgb, var(--zwo-orange) 55%, #fff 45%);
}

/* Steps layout */
.zwo .zwo-cart-step {
  display: none;
}

.zwo .zwo-cart-step.is-active {
  display: block;
}

/* Footer button area (sticky for Step 1) */
.zwo .zwo-cart-footer {
  position: sticky;
  bottom: 0;
  z-index: 2;

  padding: 12px 0 0;
  margin-top: 12px;
  background: linear-gradient(to bottom, rgba(12,13,16,0), rgba(12,13,16,.9));
}

.zwo .zwo-cart-next,
.zwo .zwo-cart-send {
  width: 100%;
}

/* Back link / button */
.zwo .zwo-cart-inline-actions {
  margin: 6px 0 10px;
}

.zwo .zwo-cart-back {
  appearance: none;
  background: transparent;
  border: 0;
  color: rgba(255,255,255,.78);
  font-weight: 600;
  padding: 6px 0;
  cursor: pointer;
  font-size: 14px;
  transition: color .15s ease;
}

.zwo .zwo-cart-back:hover {
  color: #fff;
}

.zwo .zwo-cart-back:focus-visible {
  outline: 2px solid color-mix(in srgb, var(--zwo-teal) 60%, #fff 40%);
  outline-offset: 2px;
}

/* Checkout fields */
.zwo .zwo-cart-checkout{
  margin-top: 14px;
  border: 1px solid var(--zwo-border);
  border-radius: var(--zwo-radius-xl);
  padding: 12px;
  display:grid;
  gap: 10px;
  background: rgba(255,255,255,.04);
}
.zwo .zwo-cart-section-title{ font-weight: 950; }

.zwo .zwo-field{ display:grid; gap:6px; }
.zwo .zwo-field span{ font-size:12px; color: var(--zwo-muted); font-weight:900; }

.zwo .zwo-field input,
.zwo .zwo-field select,
.zwo .zwo-field textarea{
  border:1px solid var(--zwo-border);
  border-radius: var(--zwo-radius-lg);
  padding: 10px 12px;
  font-size: 14px;
  outline:none;
  background: rgba(0,0,0,.35);
  color:#fff;
}
.zwo .zwo-field input::placeholder,
.zwo .zwo-field textarea::placeholder{
  color: rgba(255,255,255,.45);
}

/* Send button */
.zwo .zwo-cart-send{
  margin-top: 6px;
  border: 1px solid color-mix(in srgb, var(--zwo-orange) 55%, var(--zwo-border) 45%);
  background: color-mix(in srgb, var(--zwo-orange) 20%, rgba(0,0,0,.65) 80%);
  color:#fff;
  border-radius: var(--zwo-radius-xl);
  padding: 12px 14px;
  font-weight: 950;
  cursor:pointer;
  transition: transform .12s ease, background .15s ease, border-color .15s ease;
}
.zwo .zwo-cart-send:hover{
  border-color: var(--zwo-orange);
  background: color-mix(in srgb, var(--zwo-orange) 28%, rgba(0,0,0,.65) 72%);
  transform: translateY(-1px);
}



/* Mobile: hide the cart pill while the item modal is open (prevents overlap) */
@media (max-width: 1023px){
  .zwo .zwo-modal.is-open ~ .zwo-cart-fab{
    display: none !important;
  }
}

/* Mobile cart: force clean full-screen overlay */
@media (max-width: 1023px){
  .zwo .zwo-cart-panel{
    position: fixed !important;
    inset: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
    height: 100dvh !important;         /* modern iOS */
    max-height: 100dvh !important;
    border-radius: 0 !important;
    border: none !important;
    overflow: auto !important;
    -webkit-overflow-scrolling: touch !important;
    transform: none !important;
  }

  .zwo .zwo-cart-drawer{
    position: fixed !important;
    inset: 0 !important;
  }
}

/* =========================================================
   FINAL MOBILE MODAL LAYOUT (single source of truth)
   - removes duplicate padding/spacing rules
   - action bar sits correctly (no ugly gap)
   - lifted panel so Safari UI doesn't eat it
   - notch-safe close button
   ========================================================= */
@media (max-width: 1023px){

  /* Lift the modal slightly and make it a true viewport panel */
  .zwo-modal-panel{
    top: calc(12px + var(--zwo-safe-t)) !important;
    left: 50% !important;
    transform: translateX(-50%) !important;

    width: calc(100vw - 18px) !important;
    max-height: calc(100dvh - 24px - var(--zwo-safe-t)) !important;

    overflow: auto !important;
    -webkit-overflow-scrolling: touch !important;

    padding: 14px !important;
  }

  /* Keep the close button always visible below notch/status bar */
  .zwo-modal-close{
    top: calc(6px + var(--zwo-safe-t)) !important;
    z-index: 50 !important;
  }

  /* Scrollable middle area (single source of truth — no duplicates) */
  #zwo-modal-content .zwo-modal-sections{
    flex: 1 1 auto !important;
    min-height: 0 !important;

    overflow: auto !important;
    -webkit-overflow-scrolling: touch !important;

    /* room so last option isn't hidden behind action bar */
    padding-bottom: calc(18px + 74px + var(--zwo-safe-b)) !important;
  }
}

  /* Sticky action bar (single rule) */
  #zwo-modal-content .zwo-actions{
    flex: 0 0 auto !important;
    position: sticky !important;
    bottom: 0 !important;
    z-index: 40 !important;

    display: flex !important;
    justify-content: flex-end !important;
    align-items: center !important;
    gap: 12px !important;

    margin: 0 !important;
    padding: 10px 12px calc(10px + var(--zwo-safe-b)) !important;

    background: rgba(20, 24, 28, 0.92) !important;
    backdrop-filter: blur(18px) !important;
    -webkit-backdrop-filter: blur(18px) !important;
    border-top: 1px solid rgba(255,255,255,0.08) !important;
  }

  /* Slightly tighter button so it doesn't feel “too low / too big” */
  .zwo-add{
    padding: 11px 14px !important;
    min-height: 44px !important;
  }

  /* Qty controls: icon-like, consistent with cart */
  .zwo-qty{
    display: inline-flex !important;
    align-items: center !important;
    gap: 10px !important;
  }

  .zwo-qty-btn{
    width: 40px !important;
    height: 40px !important;
    border-radius: 999px !important;
    border: 1px solid rgba(255,255,255,0.14) !important;
    background: rgba(0,0,0,0.25) !important;
    color: #fff !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 20px !important;
    line-height: 1 !important;
    padding: 0 !important;
  }

  .zwo-qty-val{
    min-width: 22px !important;
    text-align: center !important;
    font-weight: 700 !important;
  }

  /* Prevent iOS double-tap zoom weirdness on these controls */
  .zwo-actions,
  .zwo-add,
  .zwo-qty,
  .zwo-qty-btn,
  .zwo-qty-val,
  .zwo-modal button,
  .zwo-modal input,
  .zwo-modal label{
    touch-action: manipulation !important;
  }

/* Optional: unify close button styling (cart + modal) */
.zwo-cart-close,
.zwo-modal [data-zwo-close="1"],
.zwo-modal-close{
  width: 44px;
  height: 44px;
  border-radius: 999px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(0,0,0,0.35);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  color: #fff;
  font-size: 20px;
  line-height: 1;
}
.zwo-cart-close:active,
.zwo-modal [data-zwo-close="1"]:active,
.zwo-modal-close:active{
  transform: scale(0.98);
}
/* =========================
   FORCE Modal Close (X) to match Cart Close button
   Put this at the VERY BOTTOM of the CSS
   ========================= */

.zwo .zwo-modal-panel{ position: relative; }

/* Target both possible close buttons */
.zwo .zwo-modal-close,
.zwo .zwo-modal [data-zwo-close="1"]{
  -webkit-appearance: none !important;
  appearance: none !important;

  width: 42px !important;
  height: 42px !important;
  min-width: 42px !important;
  min-height: 42px !important;

  padding: 0 !important;
  margin: 0 !important;

  border-radius: 999px !important;
  border: 1px solid rgba(255,255,255,.18) !important;
  background: rgba(0,0,0,.55) !important;

  color: #fff !important;
  font-size: 22px !important;
  font-weight: 900 !important;
  line-height: 1 !important;

  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;

  cursor: pointer !important;
  flex: 0 0 auto !important;

  backdrop-filter: blur(10px) !important;
  -webkit-backdrop-filter: blur(10px) !important;

  transition: transform .12s ease, border-color .15s ease, background .15s ease, color .15s ease !important;
}

/* Same orange “glassy hover” feel as the cart close */
@media (hover:hover){
  .zwo .zwo-modal-close:hover,
  .zwo .zwo-modal [data-zwo-close="1"]:hover{
    border-color: color-mix(in srgb, var(--zwo-orange) 65%, rgba(255,255,255,.18) 35%) !important;
    background: color-mix(in srgb, var(--zwo-orange) 18%, rgba(0,0,0,.55) 82%) !important;
    transform: translateY(-1px) !important;
  }
}

.zwo .zwo-modal-close:focus-visible,
.zwo .zwo-modal [data-zwo-close="1"]:focus-visible{
  border-color: color-mix(in srgb, var(--zwo-orange) 65%, rgba(255,255,255,.18) 35%) !important;
  background: color-mix(in srgb, var(--zwo-orange) 18%, rgba(0,0,0,.55) 82%) !important;
}

/* iOS notch safety if needed */
@media (max-width: 1023px){
  .zwo .zwo-modal-close,
  .zwo .zwo-modal [data-zwo-close="1"]{
    margin-top: calc(6px + var(--zwo-safe-t)) !important;
  }
}
/* === Safety patch: make sure backdrop always receives clicks === */
.zwo-modal { pointer-events: none; }
.zwo-modal.is-open { pointer-events: auto; }
.zwo-modal-backdrop { pointer-events: auto; }
.zwo-modal-panel { pointer-events: auto; }

/* =========================
   CARD TYPOGRAPHY + BUTTON FIX (OVERRIDES)
   ========================= */

/* TITLE */
.zwo .zwo-card-title{
  font-family: "Oswald", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif !important;
  font-size: 24px !important;
  font-weight: 600 !important;
  line-height: 1em !important;
  color: #fff !important;
  text-transform: uppercase !important;
  letter-spacing: .4px !important;
}

/* DESCRIPTION */
.zwo .zwo-card-desc{
  font-family: "DM Sans", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif !important;
  font-size: 16px !important;
  font-weight: 400 !important;
  line-height: 1.35em !important;
  color: #C0C0C0 !important;
  text-transform: none !important;
}

/* PRICE */
.zwo .zwo-card-price{
  font-family: "Oswald", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif !important;
  font-size: 20px !important;
  font-weight: 600 !important;
  line-height: 1em !important;
  color: #95C8C9 !important;
  letter-spacing: .2px !important;
}

/* BUTTON (same look for Select + Customize; no “dim” appearance) */
.zwo .zwo-card-btn{
  font-family: "Oswald", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif !important;
  font-size: 18px !important;
  font-weight: 600 !important;
  line-height: 1em !important;
  text-transform: uppercase !important;

  color: #000 !important;
  background: #95C8C9 !important;
  border: 1px solid rgba(149, 200, 201, .95) !important;

  border-radius: 12px !important;
  padding: 12px 14px !important;

  opacity: 1 !important;
  filter: none !important;
  box-shadow: none !important;
}

/* Button hover: go BLACK (clean pop) */
@media (hover:hover){
  .zwo .zwo-card-btn:hover{
    background: #000 !important;
    border-color: #000 !important;
    color: #fff !important;
    transform: translateY(-1px) !important;
  }
}

/* Disabled ONLY for sold out (keep it visibly disabled) */
.zwo .zwo-card-btn:disabled{
  background: rgba(255,255,255,.14) !important;
  border-color: rgba(255,255,255,.16) !important;
  color: rgba(255,255,255,.55) !important;
  opacity: 1 !important;
  cursor: not-allowed !important;
  transform: none !important;
}
/* =========================================================
   CARD BUTTONS — FORCE SAME STYLE FOR Select + Customize
   Paste at VERY BOTTOM of CSS
   ========================================================= */

/* Base: both buttons */
.zwo .zwo-card-btn{
  background: #ffffff !important;
  color: #000000 !important;
  border: 1px solid rgba(0,0,0,.22) !important;
  opacity: 1 !important;
  filter: none !important;
  box-shadow: none !important;
}

/* Select sometimes has data-zwo-primary="1" — force it identical */
.zwo .zwo-card-btn[data-zwo-primary="1"]{
  background: #ffffff !important;
  color: #000000 !important;
  border: 1px solid rgba(0,0,0,.22) !important;
}

/* Hover: both buttons */
@media (hover:hover){
  .zwo .zwo-card-btn:hover{
    background: #000000 !important;
    color: #ffffff !important;
    border-color: #000000 !important;
  }

  /* Hover specifically for the primary button too (just in case) */
  .zwo .zwo-card-btn[data-zwo-primary="1"]:hover{
    background: #000000 !important;
    color: #ffffff !important;
    border-color: #000000 !important;
  }
}
/* =========================================================
   CARD DESCRIPTION — CLAMP LINES + KEEP BUTTONS ALIGNED
   Paste at VERY BOTTOM of CSS
   ========================================================= */

/* Make the card body behave like a vertical stack */
.zwo .zwo-card-body{
  display: flex !important;
  flex-direction: column !important;
  gap: 8px !important;
}


/* Push the button to the bottom so all buttons line up */
.zwo .zwo-card-btn{
  margin-top: auto !important;
}
/* =========================================================
   CARD HEIGHT NORMALIZATION (DESCRIPTIONS + BUTTON ALIGNMENT)
   ========================================================= */

/* Card body as vertical layout */
.zwo .zwo-card-body{
  display: flex !important;
  flex-direction: column !important;
}

/* Description: clamp AND reserve space */
.zwo .zwo-card-desc{
  display: -webkit-box !important;
  -webkit-box-orient: vertical !important;
  -webkit-line-clamp: 3 !important;   /* fixed visual height */
  line-clamp: 3 !important;
  overflow: hidden !important;
  min-height: calc(1.35em * 3) !important; /* reserve 4 lines even if text is short */
}

/* Price stays under description */
.zwo .zwo-card-price{
  margin-top: 4px !important;
}

/* Button always sits at the bottom */
.zwo .zwo-card-btn{
  margin-top: auto !important;
}
/* ===== Mobile card image padding override (force) ===== */
@media (max-width: 900px){
  .zwo .zwo-card-imgwrap{
    padding: 80px !important;
  }
}

/* iPhone 16 Pro Max and similar (tighten a bit more) */
@media (max-width: 480px){
  .zwo .zwo-card-imgwrap{
    padding: 80px !important;
  }
}
/* =====================================================
   iOS MOBILE: KILL DUPLICATE "PHANTOM" CLOSE CIRCLE
   Keep ONLY the real close: [data-zwo-close="1"]
   ===================================================== */
@media (max-width: 1023px){

  /* Make panel the positioning context */
  .zwo .zwo-modal-panel{
    position: relative !important;
    isolation: isolate !important;
  }

  /* Hide any other close-looking elements that might be injected */
  .zwo .zwo-modal-panel .zwo-modal-close,
  .zwo .zwo-modal-panel [class*="close"]:not([data-zwo-close="1"]),
  .zwo .zwo-modal-panel button[aria-label*="close" i]:not([data-zwo-close="1"]),
  .zwo .zwo-modal-panel button[title*="close" i]:not([data-zwo-close="1"]){
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
  }

  /* Keep + pin the REAL close button */
  .zwo .zwo-modal-panel [data-zwo-close="1"]{
    display: inline-flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    pointer-events: auto !important;

    position: absolute !important;
    top: calc(10px + var(--zwo-safe-t)) !important;
    right: 10px !important;
    left: auto !important;

    z-index: 999999 !important;

    /* prevent iOS "double circle" artifacts */
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    box-shadow: none !important;
    filter: none !important;
    transform: translateZ(0) !important;
  }

  /* Kill any pseudo-element rings on the real button */
  .zwo .zwo-modal-panel [data-zwo-close="1"]::before,
  .zwo .zwo-modal-panel [data-zwo-close="1"]::after{
    content: none !important;
    display: none !important;
  }
}
/* Desktop: force modal close (X) to the LEFT */
@media (min-width: 1024px){
  .zwo .zwo-modal-panel{ position: relative !important; }

  /* Prefer the real close */
  .zwo .zwo-modal-panel [data-zwo-close="1"]{
    position: absolute !important;
    top: 10px !important;
    left: 10px !important;
    right: auto !important;
    z-index: 999999 !important;
  }

  /* Fallback if the template uses .zwo-modal-close */
  .zwo .zwo-modal-panel .zwo-modal-close{
    position: absolute !important;
    top: 10px !important;
    left: 10px !important;
    right: auto !important;
    margin-left: 0 !important;
    z-index: 999999 !important;
  }
}
/* =========================================================
   STEP 2 — Add true black “text panel” + separation
   (APPEND-ONLY — do NOT edit earlier rules)
   ========================================================= */

.zwo .zwo-card-body{
  background: rgba(0,0,0,0.85) !important;
  padding: 16px 14px 18px !important;
}

/* Keep image area framed (so card still feels premium) */
.zwo .zwo-card-imgwrap{
  background: rgba(255,255,255,.04) !important;
}
/* =========================================================
   MODAL TYPOGRAPHY — MATCH CARDS + READABLE INGREDIENTS
   Paste at VERY BOTTOM (replaces prior block)
   ========================================================= */

/* Modal Title = card title style */
.zwo .zwo-modal-title{
  font-family: "Oswald", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif !important;
  font-size: 24px !important;
  font-weight: 600 !important;
  line-height: 1em !important;
  letter-spacing: .4px !important;
  text-transform: uppercase !important;
  color: #fff !important;
}

/* Modal Description = card description style */
.zwo .zwo-modal-desc{
  font-family: "DM Sans", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif !important;
  font-size: 16px !important;
  font-weight: 400 !important;
  line-height: 1.35em !important;
  color: #C0C0C0 !important;
}

/* Modal Price = card price + 4px */
.zwo .zwo-modal-price{
  font-family: "Oswald", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif !important;
  font-size: 26px !important;
  font-weight: 700 !important;
  line-height: 1em !important;
  letter-spacing: .3px !important;
  color: #95C8C9 !important;
}

/* Section headings (Included Ingredients / Extra Add-Ons) */
.zwo .zwo-sec-title{
  font-family: "Oswald", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif !important;
  font-size: 18px !important;
  font-weight: 600 !important;
  letter-spacing: .35px !important;
  text-transform: uppercase !important;
  color: #fff !important;
}

/* Ingredient rows: slightly bigger + confident */
.zwo .zwo-line-text{
  font-family: "DM Sans", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif !important;
  font-size: 16px !important;
  font-weight: 600 !important;
  line-height: 1.25em !important;
  color: rgba(255,255,255,.90) !important;
}

/* Improve spacing inside ingredient list */
.zwo .zwo-line{
  padding: 10px 0 !important;
  gap: 12px !important;
}

/* Checkbox slightly larger (better touch + legibility) */
.zwo .zwo-line input{
  width: 20px !important;
  height: 20px !important;
}

/* Hint text under Included Ingredients */
.zwo .zwo-hint{
  font-family: "DM Sans", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif !important;
  font-size: 14px !important;
  line-height: 1.35em !important;
  color: rgba(255,255,255,.65) !important;
}

/* Optional: slightly narrower modal on desktop (keeps premium feel) */
@media (min-width: 760px){
  .zwo .zwo-modal-panel{
    width: min(840px, calc(100vw - 26px)) !important; /* was 920px */
  }
}

/* =========================================================
   MODAL SECTIONS — 2 COLUMNS (DESKTOP) / 1 COLUMN (MOBILE)
   Works with your existing markup
   Paste at VERY BOTTOM
   ========================================================= */

/* Mobile-first: single column */
.zwo .zwo-modal-sections{
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 14px !important;
}

/* Desktop/tablet: two columns */
@media (min-width: 760px){
  .zwo .zwo-modal-sections{
    grid-template-columns: 1fr 1fr !important;
    align-items: start !important;
    gap: 16px !important;
  }

  /* Give each section a bit more presence */
  .zwo .zwo-sec{
    padding: 16px !important;
  }

  /* If you have a textarea/notes section INSIDE sections, force it full width */
  .zwo .zwo-modal-sections .zwo-sec textarea,
  .zwo .zwo-modal-sections .zwo-sec .zwo-field{
    grid-column: 1 / -1 !important;
  }
}
/* =========================================================
   MODAL — FULL BLACK SECTIONS (MATCH CARD DEPTH)
   ========================================================= */

/* Main modal panel: deeper black */
.zwo .zwo-modal-panel{
  background: rgba(0,0,0,0.96) !important;
}

/* Section cards (Included Ingredients / Extra Add-Ons) */
.zwo .zwo-sec{
  background: #000000 !important;
  border: 1px solid rgba(255,255,255,0.08) !important;
}

/* Optional: slightly darker header backing for consistency */
.zwo .zwo-modal-header{
  background: transparent !important;
}

/* Action bar stays glassy but darker */
.zwo #zwo-modal-content .zwo-actions{
  background: rgba(0,0,0,0.92) !important;
  border-top: 1px solid rgba(255,255,255,0.08) !important;
}
/* =========================================================
   MODAL — GRANITE / FROSTED VERTICAL DIVIDER (DESKTOP)
   ========================================================= */
@media (min-width: 760px){
  .zwo #zwo-modal-content .zwo-modal-sections{
    position: relative;
  }

  .zwo #zwo-modal-content .zwo-modal-sections::before{
    content: "";
    position: absolute;
    top: 8px;
    bottom: 8px;
    left: 50%;
    width: 4px;

    background: linear-gradient(
      to bottom,
      rgba(255,255,255,0.02),
      rgba(255,255,255,0.18),
      rgba(255,255,255,0.02)
    );

    box-shadow:
      0 0 0.5px rgba(255,255,255,0.25),
      0 0 8px rgba(0,0,0,0.35);

    pointer-events: none;
  }
}
/* Modal price breathing room */
.zwo .zwo-modal-price{
  margin-top: 6px !important; /* 4–6px sweet spot */
}
/* Subtle matte behind modal text column */
@media (min-width: 760px){
  .zwo .zwo-modal-header > :nth-child(2){
    background: rgba(0,0,0,0.18); /* subtle matte */
    padding: 14px 16px;
    border-radius: 14px;
  }
}
.zwo .zwo-modal-header img{
  margin-top: 6px;
}
/* =========================================================
   EXTRA ADD-ONS — make it more distinctive (padding + edge)
   Paste at VERY BOTTOM
   ========================================================= */
.zwo .zwo-modal-sections .zwo-sec:nth-of-type(2){
  padding: 22px 20px !important;                 /* more breathing room */
  border-color: rgba(149,200,201,0.22) !important; /* subtle teal edge */
  background: rgba(0,0,0,0.98) !important;        /* slightly deeper */
}
/* Tone down Extra Add-Ons border to match Included Ingredients */
.zwo .zwo-modal-sections .zwo-sec:nth-of-type(2){
  border-color: rgba(255,255,255,0.08) !important; /* same as left box */
}
/* Extra Add-Ons: slightly more separation without changing box size */
.zwo .zwo-sec[data-sec="addons"] .zwo-line{
  padding: 12px 0 !important;
}

/* If your markup doesn't have data-sec="addons", use this safer fallback:
   it targets the RIGHT column section on desktop */
@media (min-width: 760px){
  .zwo .zwo-modal-sections > .zwo-sec:nth-child(2) .zwo-line{
    padding: 12px 0 !important;
  }
}
/* Extra Add-Ons: slightly calmer border to match left panel */
@media (min-width: 760px){
  .zwo .zwo-modal-sections > .zwo-sec:nth-child(2){
    border-color: rgba(255,255,255,0.06) !important;
  }
}
.zwo .zwo-modal-sections > .zwo-sec:nth-child(2) .zwo-line:hover{
  background: rgba(255,255,255,0.03);
  border-radius: 8px;
}
/* =========================================================
   FUTURISTIC TOGGLE — glow-fill checkbox replacement
   Works with existing .zwo-line structure (no markup edits)
   ========================================================= */

/* Make each option row feel like a tappable control */
.zwo .zwo-line{
  position: relative;
  border-radius: 12px;
  padding: 10px 12px !important;
  transition: background .18s ease, border-color .18s ease, box-shadow .18s ease, transform .12s ease;
  border: 1px solid rgba(255,255,255,0.04); /* slightly quieter than before */
  background: transparent;
}

/* Hover: barely visible (keep it sleek) */
@media (hover:hover){
  .zwo .zwo-line:hover{
    border-color: rgba(159,210,212,0.06);
    background: rgba(159,210,212,0.015);
  }
}

/* Hide native checkbox visuals but keep it accessible/clickable */
.zwo .zwo-line input[type="checkbox"]{
  opacity: 0 !important;
  width: 22px !important;
  height: 22px !important;
  margin: 0 !important;
  position: relative;
  z-index: 3; /* still clickable */
}

/* Our “futuristic box” */
.zwo .zwo-line input[type="checkbox"] + .zwo-check{
  width: 22px;
  height: 22px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.04);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-left: -22px; /* sits exactly where checkbox was */
  z-index: 2;
  box-shadow: inset 0 0 0 1px rgba(0,0,0,0.20);
  transition: border-color .18s ease, background .18s ease, box-shadow .18s ease, transform .12s ease;
}

/* “Energy core” */
.zwo .zwo-line input[type="checkbox"] + .zwo-check::before{
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 3px;
  background: rgba(159,210,212,0.0);
  box-shadow: 0 0 0 rgba(159,210,212,0.0);
  transform: scale(0.7);
  transition: transform .18s ease, background .18s ease, box-shadow .18s ease;
}

/* Checked state:
   - No big row highlight
   - Slightly darker row background (premium “active” feel)
   - Reduced glow rolloff (less bloom/spread)
*/
.zwo .zwo-line.is-checked{
  border-color: rgba(255,255,255,0.04);
  background: rgba(0,0,0,0.16); /* slightly darker than transparent */
  box-shadow: none;
}

/* Mini box glows when checked (reduced bloom) */
.zwo .zwo-line.is-checked input[type="checkbox"] + .zwo-check{
  border-color: rgba(159,210,212,0.62);
  background: rgba(159,210,212,0.12);
  box-shadow:
    0 0 0 1px rgba(159,210,212,0.14),
    0 0 12px rgba(159,210,212,0.14),
    inset 0 0 12px rgba(159,210,212,0.08);
  transform: translateY(-0.5px);
}

.zwo .zwo-line.is-checked input[type="checkbox"] + .zwo-check::before{
  background: rgba(159,210,212,0.92);
  box-shadow: 0 0 12px rgba(159,210,212,0.42); /* reduced roll/bloom */
  transform: scale(1);
}

/* Disable scan shimmer entirely */
.zwo .zwo-line.is-checked::after{
  content: none;
  display: none;
}

/* Price emphasis: JS wraps ( +$X ) into span.zwo-addon-price */
.zwo .zwo-addon-price{
  font-weight: 700;
  color: rgba(255,255,255,0.65);
  transition: color .18s ease, text-shadow .18s ease, font-weight .18s ease;
}
.zwo .zwo-line.is-checked .zwo-addon-price{
  color: #95C8C9;
  text-shadow: 0 0 12px rgba(149,200,201,0.30);
  font-weight: 800;
}

/* Tap feel */
.zwo .zwo-line.is-pressing{
  transform: scale(0.995);
}
/* =========================================================
   Premium button + qty micro-interactions (desktop)
   ========================================================= */

/* Add to Order button */
.zwo .zwo-add{
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 800;
  color: #ffffff;

  /* Black background */
  background: rgba(0,0,0,0.72);
  border: 1px solid rgba(149,200,201,.22);

  /* Subtle glow at rest */
  box-shadow:
    0 0 0 1px rgba(149,200,201,.18),
    0 0 14px rgba(149,200,201,.14),
    0 10px 26px rgba(0,0,0,.35);

  transition:
    transform .14s ease,
    box-shadow .18s ease,
    background .18s ease,
    filter .18s ease;
}

@media (hover:hover){
  .zwo .zwo-add:hover{
    transform: translateY(-1.5px);
    background: rgba(0,0,0,0.82);

    /* Amplified glow */
    box-shadow:
      0 0 0 1px rgba(149,200,201,.32),
      0 0 28px rgba(149,200,201,.26),
      0 18px 42px rgba(0,0,0,.48);

    filter: brightness(1.08);
  }
}

.zwo .zwo-add:active{
  transform: translateY(0px) scale(.99);
  background: rgba(0,0,0,0.78);
  box-shadow:
    0 0 0 1px rgba(149,200,201,.24),
    0 0 18px rgba(149,200,201,.18),
    0 10px 28px rgba(0,0,0,.40);
}

/* Qty controls */
.zwo .zwo-qty-btn{
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.02);

  transition:
    transform .12s ease,
    box-shadow .18s ease,
    border-color .18s ease,
    background .18s ease,
    filter .18s ease;
}

@media (hover:hover){
  /* Shared hover glow */
  .zwo .zwo-qty-btn:hover{
    border-color: rgba(200,200,200,0.22);
    background: rgba(255,255,255,0.035);
    box-shadow:
      0 0 0 1px rgba(149,200,201,0.14),
      0 0 22px rgba(149,200,201,0.16);
    filter: brightness(1.06);
  }

  /* + goes UP */
  .zwo .zwo-qty-btn:last-child:hover{
    transform: translateY(-1.5px);
  }

  /* − goes DOWN */
  .zwo .zwo-qty-btn:first-child:hover{
    transform: translateY(1.5px);
  }
}

/* Active press (controlled, premium) */
.zwo .zwo-qty-btn:active{
  transform: translateY(0px) scale(.96);
  box-shadow:
    0 0 0 1px rgba(149,200,201,0.12),
    0 0 14px rgba(149,200,201,0.10);
}
/* =====================================================
   Modal focus: dim + frosted backdrop (ALL DEVICES)
   - Mobile: stronger dim (kills page bleed)
   - Desktop: cinematic dim + premium frost + vignette
   - Adds: slight desaturation + refined easing curve
   Paste at VERY BOTTOM
   ===================================================== */

/* Base fallback (used if media queries fail) */
.zwo .zwo-modal{
  background: rgba(0,0,0,0.78) !important;
}

.zwo .zwo-modal-backdrop{
  background: rgba(0,0,0,0.78) !important;

  /* Frost: blur + subtle saturation + slight desaturation (premium focus) */
  backdrop-filter: blur(10px) saturate(1.06) contrast(1.02) brightness(0.98) !important;
  -webkit-backdrop-filter: blur(10px) saturate(1.06) contrast(1.02) brightness(0.98) !important;

  /* Easing refinement (for any future opacity/blur transitions) */
  transition: background 220ms cubic-bezier(.2,.8,.2,1), backdrop-filter 220ms cubic-bezier(.2,.8,.2,1) !important;
}

/* Panel must always be solid */
.zwo .zwo-modal-panel{
  background: rgba(0,0,0,0.98) !important;
}

/* =========================
   MOBILE — disappear hard
   ========================= */
@media (max-width: 1023px){
  .zwo .zwo-modal,
  .zwo .zwo-modal-backdrop{
    background: rgba(0,0,0,0.90) !important;

    /* Keep mobile crisp; minimal “frost” to avoid iOS artifacts */
    backdrop-filter: blur(8px) saturate(1.05) contrast(1.02) brightness(0.98) !important;
    -webkit-backdrop-filter: blur(8px) saturate(1.05) contrast(1.02) brightness(0.98) !important;
  }
}

/* =========================
   DESKTOP — cinematic focus
   ========================= */
@media (min-width: 1024px){

  /* Slightly darker desktop as requested */
  .zwo .zwo-modal,
  .zwo .zwo-modal-backdrop{
    background: rgba(0,0,0,0.80) !important;

    /* Premium frost + subtle desaturation */
    backdrop-filter: blur(12px) saturate(1.05) contrast(1.03) brightness(0.97) !important;
    -webkit-backdrop-filter: blur(12px) saturate(1.05) contrast(1.03) brightness(0.97) !important;
  }

  /* Ultra-subtle vignette for extra focus (desktop only) */
  .zwo .zwo-modal-backdrop::after{
    content: "" !important;
    position: absolute !important;
    inset: 0 !important;
    pointer-events: none !important;

    /* Dark edges, slightly clearer center */
    background: radial-gradient(
      circle at 50% 38%,
      rgba(0,0,0,0.00) 0%,
      rgba(0,0,0,0.18) 55%,
      rgba(0,0,0,0.42) 100%
    ) !important;

    opacity: .85 !important;
    transition: opacity 260ms cubic-bezier(.2,.8,.2,1) !important;
  }
}
/* =====================================================
   ZWO MODAL — PREMIUM FADE (SAFE: NO TRANSFORM)
   Tuned: slower open, still responsive
   ===================================================== */

.zwo #zwo-modal{
  display: block !important;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 320ms cubic-bezier(.2,.8,.2,1), visibility 0s linear 320ms;
}

.zwo #zwo-modal .zwo-modal-backdrop{
  opacity: 0;
  transition: opacity 320ms cubic-bezier(.2,.8,.2,1);
  will-change: opacity;
}

.zwo #zwo-modal .zwo-modal-panel{
  opacity: 0;
  transition: opacity 320ms cubic-bezier(.2,.8,.2,1), filter 320ms cubic-bezier(.2,.8,.2,1);
  will-change: opacity, filter;
  filter: saturate(1) contrast(1);
}

.zwo #zwo-modal.is-open{
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: opacity 320ms cubic-bezier(.2,.8,.2,1), visibility 0s linear 0s;
}
.zwo #zwo-modal.is-open .zwo-modal-backdrop{
  opacity: 1;
}
.zwo #zwo-modal.is-open .zwo-modal-panel{
  opacity: 1;
  filter: saturate(1.02) contrast(1.02);
}

/* Close can stay slightly faster so it feels snappy */
.zwo #zwo-modal.is-closing{
  opacity: 0;
  visibility: visible;
  pointer-events: none;
  transition: opacity 220ms cubic-bezier(.2,.8,.2,1), visibility 0s linear 220ms;
}
.zwo #zwo-modal.is-closing .zwo-modal-backdrop{
  opacity: 0;
}
.zwo #zwo-modal.is-closing .zwo-modal-panel{
  opacity: 0;
}

@media (prefers-reduced-motion: reduce){
  .zwo #zwo-modal,
  .zwo #zwo-modal .zwo-modal-backdrop,
  .zwo #zwo-modal .zwo-modal-panel{
    transition: none !important;
  }
}
/* =====================================================
   ZWO CATEGORY CHIPS — PREMIUM (CALM + “NEXT GEN” CONFIRMATION)
   Updated: more “block” (darker body), confirmation reads better,
   still one-time + non-distracting.
   ===================================================== */

.zwo{
  /* Teal accent (update this one value if needed) */
  --zwo-teal-rgb: 149,200,201; /* #95C8C9 */
}

.zwo #zwo-categories{
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding: 8px 2px 14px;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
  scroll-padding-left: 10px;

  /* subtle containment to avoid scroll jank on mobile */
  overscroll-behavior-x: contain;
}

.zwo #zwo-categories::-webkit-scrollbar{ height: 0; }

/* Base chip */
.zwo .zwo-chip{
  position: relative;
  scroll-snap-align: start;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  padding: 12px 20px;
  border-radius: 999px;

  font-weight: 800;
  letter-spacing: 0.35px;
  text-transform: uppercase;

  color: rgba(255,255,255,0.92);

  /* “premium button” body — more BLOCK / darker (so confirm reads) */
  background: rgba(10,10,12,0.46);
  border: 1px solid rgba(255,255,255,0.14);

  box-shadow:
    0 10px 28px rgba(0,0,0,0.30),
    inset 0 1px 0 rgba(255,255,255,0.08);

  transition:
    transform 320ms cubic-bezier(.22,.85,.25,1),
    background 280ms cubic-bezier(.2,.8,.2,1),
    border-color 280ms cubic-bezier(.2,.8,.2,1),
    box-shadow 320ms cubic-bezier(.22,.85,.25,1),
    filter 280ms cubic-bezier(.2,.8,.2,1);
}

.zwo .zwo-chip:hover{
  transform: translateY(-1px);
  background: rgba(12,12,14,0.52);
  border-color: rgba(255,255,255,0.18);
  filter: saturate(1.02) contrast(1.02);
}

.zwo .zwo-chip:active{
  transform: translateY(0) scale(0.985);
}

/* Keyboard polish */
.zwo .zwo-chip:focus{ outline: none; }
.zwo .zwo-chip:focus-visible{
  box-shadow:
    0 12px 34px rgba(0,0,0,0.34),
    0 0 0 2px rgba(var(--zwo-teal-rgb),0.22),
    0 0 18px rgba(var(--zwo-teal-rgb),0.16),
    inset 0 1px 0 rgba(255,255,255,0.12);
}

/* Active chip = selected, calm but “premium” (more solid) */
.zwo .zwo-chip.is-active{
  background: rgba(12,12,14,0.58);
  border-color: rgba(var(--zwo-teal-rgb),0.50);
  color: rgba(255,255,255,0.98);

  box-shadow:
    0 12px 34px rgba(0,0,0,0.34),
    0 0 0 2px rgba(var(--zwo-teal-rgb),0.18),
    0 0 26px rgba(var(--zwo-teal-rgb),0.12),
    inset 0 1px 0 rgba(255,255,255,0.10);
}

/* One-time confirmation sweep (only when active applies) */
.zwo .zwo-chip.is-active::after{
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;

  background: linear-gradient(
    110deg,
    rgba(255,255,255,0.00) 0%,
    rgba(var(--zwo-teal-rgb),0.16) 42%,
    rgba(255,255,255,0.00) 78%
  );

  opacity: 0;
  transform: translateX(-42%);
  animation: zwoChipConfirmSweep 1050ms cubic-bezier(.2,.8,.2,1) 1;
}

/* Micro ripple on activation (subtle “new gen” feel, no distraction) */
.zwo .zwo-chip.is-active::before{
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  pointer-events: none;

  background: radial-gradient(
    closest-side,
    rgba(var(--zwo-teal-rgb),0.90),
    rgba(var(--zwo-teal-rgb),0.00) 96%
  );

  opacity: 0;
  transform: scale(0.90);
  animation: zwoChipConfirmRipple 720ms cubic-bezier(.22,.85,.25,1) 1;
}

@keyframes zwoChipConfirmSweep{
  0%   { opacity: 0; transform: translateX(-42%); }
  20%  { opacity: 0.45; }
  60%  { opacity: 0.34; }
  100% { opacity: 0; transform: translateX(42%); }
}

@keyframes zwoChipConfirmRipple{
  0%   { opacity: 0; transform: scale(0.90); }
  35%  { opacity: 0.34; transform: scale(1.00); }
  100% { opacity: 0; transform: scale(1.07); }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce){
  .zwo .zwo-chip{ transition: none !important; }
  .zwo .zwo-chip.is-active::before,
  .zwo .zwo-chip.is-active::after{
    animation: none !important;
    opacity: 0 !important;
  }
}

/* (1) CONTINUE button polish — sleek, premium, matches theme */
.zwo .zwo-cart-continue,
.zwo button[data-zwo-continue="1"],
.zwo button[data-zwo-next="1"]{
  appearance: none;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(18,20,24,.72);
  color: rgba(255,255,255,.94);
  border-radius: 14px;
  padding: 12px 14px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  width: 100%;
  cursor: pointer;
  transition: transform 220ms cubic-bezier(.2,.9,.2,1),
              box-shadow 220ms cubic-bezier(.2,.9,.2,1),
              border-color 220ms cubic-bezier(.2,.9,.2,1),
              background 220ms cubic-bezier(.2,.9,.2,1);
  box-shadow: 0 10px 30px rgba(0,0,0,.22);
}

.zwo .zwo-cart-continue:hover,
.zwo button[data-zwo-continue="1"]:hover,
.zwo button[data-zwo-next="1"]:hover{
  transform: translateY(-1px);
  border-color: rgba(159, 210, 212, .45);
  background: rgba(20,24,28,.78);
  box-shadow: 0 14px 40px rgba(0,0,0,.28), 0 0 0 3px rgba(159,210,212,.12);
}

.zwo .zwo-cart-continue:active,
.zwo button[data-zwo-continue="1"]:active,
.zwo button[data-zwo-next="1"]:active{
  transform: translateY(0px);
  box-shadow: 0 10px 28px rgba(0,0,0,.22);
}

/* (3) Disable textarea resize handles (Notes + Delivery Instructions only) */
.zwo textarea[data-zwo-instructions="1"],
.zwo textarea[data-zwo-notes="1"]{
  resize: none !important;
}

/* =========================================================
   STICKY FOOTER: Summary + CONTINUE button at bottom
   ========================================================= */

/* Make cart panel a flex column so footer can pin cleanly */
.zwo .zwo-cart-panel{
  display: flex;
  flex-direction: column;
  max-height: calc(100dvh - 24px);
}

/* Items area scrolls */
.zwo .zwo-cart-items{
  flex: 1 1 auto;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 14px; /* breathing room above footer */
}

/* Footer pinned to bottom */
.zwo .zwo-cart-footer{
  flex: 0 0 auto;
  position: sticky;
  bottom: 0;
  padding-top: 12px;
  padding-bottom: calc(12px + var(--zwo-safe-b));
  background: linear-gradient(to top,
    rgba(7,9,12,.92) 0%,
    rgba(7,9,12,.86) 55%,
    rgba(7,9,12,0) 100%);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

/* Give the summary box a premium "panel" look in the footer */
.zwo .zwo-cart-footer .zwo-cart-summary{
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 16px;
  padding: 12px 12px;
  background: rgba(18,20,24,.56);
  box-shadow: 0 12px 34px rgba(0,0,0,.22);
}

/* CONTINUE button: solid teal background */
.zwo .zwo-cart-continue{
  appearance: none;
  width: 100%;
  margin-top: 10px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 16px;
  padding: 14px 14px;

  background: var(--zwo-teal);
  color: rgba(7,9,12,.94);

  font-weight: 800;
  letter-spacing: .10em;
  text-transform: uppercase;

  cursor: pointer;
  transition:
    transform 260ms cubic-bezier(.2,.9,.2,1),
    box-shadow 260ms cubic-bezier(.2,.9,.2,1),
    filter 260ms cubic-bezier(.2,.9,.2,1);
  box-shadow: 0 14px 42px rgba(0,0,0,.28);
}

/* Hover: orange glow + subtle lift */
.zwo .zwo-cart-continue:hover{
  transform: translateY(-1px);
  box-shadow:
    0 18px 52px rgba(0,0,0,.34),
    0 0 0 3px rgba(255, 138, 42, .16),
    0 10px 34px rgba(255, 138, 42, .18);
  filter: saturate(1.05);
}

/* Active: press */
.zwo .zwo-cart-continue:active{
  transform: translateY(0px) scale(.99);
  box-shadow: 0 14px 42px rgba(0,0,0,.28);
}

/* Mobile: make sure panel uses full height cleanly */
@supports (height: 100dvh){
  .zwo .zwo-cart-panel{ max-height: 100dvh; }
}
/* =========================
   Zarja Credit (Global + Cart)
   ========================= */

.zarja-credit {
  text-align: center;
  padding: 12px 0;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.6px;
  line-height: 1.2;
  position: relative;
  overflow: hidden;
  user-select: none;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

.zarja-credit a {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* subtle divider option when used inside panels */
.zarja-credit--divider {
  border-top: 1px solid rgba(0,0,0,0.06);
  padding-top: 14px;
  margin-top: 12px;
}

/* shimmer text */
.zarja-credit__text {
  background: linear-gradient(90deg, #C9A86A 0%, #ffffff 50%, #C9A86A 100%);
  background-size: 250% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: zarjaShimmer 18s linear infinite;
}

/* “Zarja” a touch stronger */
.zarja-credit__brand {
  background: linear-gradient(90deg, #E4C88F 0%, #ffffff 50%, #E4C88F 100%);
  background-size: 250% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: zarjaStrongShimmer 18s linear infinite;
}

/* hover: slight emphasis (but still classy) */
.zarja-credit a:hover .zarja-credit__text,
.zarja-credit a:focus-visible .zarja-credit__text {
  filter: brightness(1.06);
}

/* focus ring */
.zarja-credit a:focus-visible {
  outline: 2px solid rgba(201,168,106,0.55);
  outline-offset: 3px;
  border-radius: 10px;
}

/* reduced motion */
@media (prefers-reduced-motion: reduce) {
  .zarja-credit__text,
  .zarja-credit__brand {
    animation: none;
  }
}

@keyframes zarjaShimmer {
  0% { background-position: 250% center; }
  100% { background-position: -250% center; }
}

@keyframes zarjaStrongShimmer {
  0% { background-position: 250% center; }
  100% { background-position: -250% center; }
}

/* =========================
   Cart Footer Layout — FINAL
   Buttons + Tight Zarja Credit
   ========================= */

.zwo-cart-footer{
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 0;
}

/* Actions stack */
.zwo-cart-actions{
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* WhatsApp button always last */
.zwo-btn-whatsapp{
  order: 99;
}

/* =========================
   Zarja Credit (Overridden)
   ========================= */

.zwo-cart-footer .zarja-credit{
  margin-top: 2px;
  padding: 5px 0 0;

  /* Reduce visual weight */
  font-size: 10px;
  line-height: 1.05;
  letter-spacing: 0.45px;
  font-weight: 600;

  opacity: 0.85;
}

/* If credit has inner spans */
.zwo-cart-footer .zarja-credit span{
  font-size: 11px;
}
/* =========================================================
   CART: KILL BOTTOM GAP (single source of truth)
   Paste at VERY BOTTOM of CSS
   ========================================================= */

:root{
  --zwo-cart-pad: 16px;
  --zwo-cart-foot-h: 180px; /* space reserved so items never hide under footer */
}

/* 1) Force the cart panel to be the scroll container again (undo overflow:hidden bug)
      and remove the extra bottom padding that creates the “gap”. */
.zwo .zwo-cart-panel{
  overflow: auto !important;
  -webkit-overflow-scrolling: touch;
  padding: var(--zwo-cart-pad) !important;
  padding-bottom: 0 !important;   /* THIS is what removes the dead space */
  display: flex !important;
  flex-direction: column !important;
}

/* 2) Make the active step fill the panel so footer can sit flush */
.zwo .zwo-cart-step.is-active{
  display: flex !important;
  flex-direction: column !important;
  min-height: 100% !important;
}

/* 3) Items area is the flexible body; footer sits at bottom */
.zwo .zwo-cart-items{
  flex: 1 1 auto !important;
  overflow: auto !important;
  -webkit-overflow-scrolling: touch !important;
  padding-bottom: calc(var(--zwo-cart-foot-h) + var(--zwo-safe-b, 0px)) !important;
}

/* 4) Checkout step: ensure no phantom bottom padding is creating a gap */
.zwo .zwo-cart-step[data-zwo-step="checkout"]{
  padding-bottom: calc(var(--zwo-safe-b, 0px)) !important;
}

/* 5) Footer: pin to the REAL floor (no negative bottom hacks needed now) */
.zwo .zwo-cart-footer{
  position: sticky !important;
  bottom: 0 !important;
  z-index: 50 !important;

  /* edge-to-edge within the padded panel */
  margin-left: calc(-1 * var(--zwo-cart-pad)) !important;
  margin-right: calc(-1 * var(--zwo-cart-pad)) !important;
  margin-bottom: 0 !important;

  padding: 12px var(--zwo-cart-pad) calc(var(--zwo-cart-pad) + var(--zwo-safe-b, 0px)) !important;

  /* solid surface so nothing “peeks” under it */
  background: var(--zwo-panel-solid) !important;
  border-top: 1px solid rgba(255,255,255,0.07) !important;
  box-shadow: 0 -14px 30px rgba(0,0,0,0.45) !important;

  backdrop-filter: blur(14px) saturate(140%) !important;
  -webkit-backdrop-filter: blur(14px) saturate(140%) !important;
}
/* =========================================================
   TYPOGRAPHY OVERRIDES — 3 TIERS (Cart Focus)
   Tier A: "YOUR ORDER" (largest)
   Tier B: Item titles + summary labels (slightly smaller)
   Tier C: Details / helper text (smallest)
   Prices: +30% across the board
   Paste at VERY BOTTOM
   ========================================================= */

/* Base font everywhere inside plugin */
.zwo,
.zwo *{
  font-family: "DM Sans", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif !important;
}

/* ---------- TIER A: "YOUR ORDER" ---------- */
.zwo .zwo-cart-title{
  font-family: "Oswald", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif !important;
  text-transform: uppercase !important;
  letter-spacing: .55px !important;
  font-weight: 650 !important;
  font-size: 24px !important;       /* ~30% bigger feel */
  line-height: 1.05 !important;
}

/* Optional: cart subtitle smaller and calm */
.zwo .zwo-cart-subtitle{
  font-size: 12px !important;
  opacity: .72 !important;
}

/* ---------- TIER B: Item titles + summary labels ---------- */
.zwo .zwo-cart-row-title{
  font-family: "Oswald", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif !important;
  text-transform: uppercase !important;
  letter-spacing: .35px !important;
  font-weight: 600 !important;
  font-size: 18px !important;
  line-height: 1.05 !important;
}

/* Subtotal / VAT / Total labels: match "Your Order" tier but slightly smaller */
.zwo .zwo-summary-line span:first-child,
.zwo .zwo-summary-total span:first-child{
  font-family: "Oswald", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif !important;
  text-transform: uppercase !important;
  letter-spacing: .45px !important;
  font-weight: 650 !important;
  font-size: 20px !important;       /* slightly smaller than 24 */
  line-height: 1.05 !important;
}

/* ---------- TIER C: Details / helper text ---------- */
.zwo .zwo-cart-row-details,
.zwo .zwo-cart-subtitle,
.zwo .zwo-field span,
.zwo .zwo-field input,
.zwo .zwo-field select,
.zwo .zwo-field textarea{
  font-family: "DM Sans", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif !important;
  font-size: 13px !important;
  line-height: 1.35 !important;
}

/* ---------- PRICES: +30% (line items + summary + modal) ---------- */

/* Cart line item price */
.zwo .zwo-cart-row-price{
  font-family: "Oswald", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif !important;
  font-weight: 650 !important;
  font-size: 17px !important;       /* bumped */
  letter-spacing: .25px !important;
}

/* Summary amounts (Subtotal/VAT/Total numbers) */
.zwo .zwo-summary-line span:last-child,
.zwo .zwo-summary-total span:last-child{
  font-family: "Oswald", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif !important;
  font-weight: 700 !important;
  font-size: 20px !important;       /* matches label size for strong read */
  letter-spacing: .25px !important;
}

/* Make TOTAL amount slightly stronger than the rest */
.zwo .zwo-summary-total span:last-child{
  font-size: 22px !important;
}

/* Card + modal prices also bump */
.zwo .zwo-card-price{
  font-family: "Oswald", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif !important;
  font-weight: 650 !important;
  font-size: 22px !important;       /* bumped */
  letter-spacing: .25px !important;
}

.zwo .zwo-modal-price{
  font-family: "Oswald", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif !important;
  font-weight: 700 !important;
  font-size: 28px !important;       /* bumped */
  letter-spacing: .25px !important;
}

/* Keep Remove link readable (don’t force Oswald sizing) */
.zwo .zwo-cart-del--link{
  font-family: "DM Sans", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif !important;
  font-size: 12px !important;
}
/* =========================================================
   CHECKOUT STEP — FINAL AUTHORITATIVE OVERRIDE
   Fonts + Uppercase + Spacing + Legibility
   ========================================================= */

/* ======================
   CHECKOUT TITLE
   ====================== */
.zwo [data-zwo-step="checkout"] .zwo-cart-section-title{
  font-family: "Oswald", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif !important;
  text-transform: uppercase !important;
  letter-spacing: .5px !important;
  font-weight: 650 !important;
  font-size: 22px !important;
  line-height: 1.1 !important;
  margin-bottom: 18px !important;
}

/* ======================
   BACK TO ORDER
   ====================== */
.zwo [data-zwo-step="checkout"] .zwo-cart-back{
  font-family: "Oswald", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif !important;
  text-transform: uppercase !important;
  letter-spacing: .35px !important;
  font-weight: 600 !important;
  font-size: 13px !important;
  margin-bottom: 20px !important;
}

/* ======================
   FIELD BLOCK
   ====================== */
.zwo [data-zwo-step="checkout"] .zwo-field{
  margin-bottom: 18px !important;
}

/* ======================
   FIELD LABELS (FORCED)
   ====================== */
.zwo [data-zwo-step="checkout"] .zwo-field > span{
  display: block !important;
  font-family: "Oswald", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif !important;
  text-transform: uppercase !important;
  letter-spacing: .4px !important;
  font-weight: 600 !important;
  font-size: 13px !important;
  margin-bottom: 6px !important;
  opacity: .9 !important;
}

/* ======================
   INPUTS / SELECTS / TEXTAREAS
   ====================== */
.zwo [data-zwo-step="checkout"] input,
.zwo [data-zwo-step="checkout"] select,
.zwo [data-zwo-step="checkout"] textarea{
  font-family: "DM Sans", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif !important;
  text-transform: none !important;
  font-size: 14px !important;
  line-height: 1.35 !important;
  padding-top: 11px !important;
  padding-bottom: 11px !important;
}

/* Extra air for textareas */
.zwo [data-zwo-step="checkout"] textarea{
  min-height: 90px !important;
}

/* ======================
   SECTION BREATHING ROOM
   ====================== */
.zwo [data-zwo-step="checkout"] .zwo-field + .zwo-field{
  margin-top: 6px !important;
}
/* =========================================
   CONTINUE BUTTON — USE EXISTING PRICE COLOR
   (Same blue as prices, no new color)
   ========================================= */

.zwo .zwo-cart-continue{
  background-color: rgba(159, 210, 212, 0.95) !important;
  border-color: rgba(159, 210, 212, 0.95) !important;
  color: #0f2e2f !important; /* keeps contrast premium, not harsh */
}
/* =========================================================
   SEND TO WHATSAPP — CLONE CONTINUE BUTTON (BASE + HOVER)
   Paste at VERY BOTTOM of CSS
   ========================================================= */

.zwo .zwo-cart-send{
  appearance: none !important;
  width: 100% !important;

  margin-top: 10px !important;

  border: 1px solid rgba(255,255,255,.12) !important;
  border-radius: 16px !important;
  padding: 14px 14px !important;

  /* MATCH CONTINUE TEAL */
  background: var(--zwo-teal) !important;
  color: rgba(7,9,12,.94) !important;

  /* MATCH CONTINUE TYPOGRAPHY */
  font-family: inherit !important;          /* uses your Oswald/DM Sans stack if applied */
  font-weight: 800 !important;
  font-size: inherit !important;            /* keep consistent with your current continue sizing */
  letter-spacing: .10em !important;
  text-transform: uppercase !important;

  cursor: pointer !important;

  transition:
    transform 260ms cubic-bezier(.2,.9,.2,1),
    box-shadow 260ms cubic-bezier(.2,.9,.2,1),
    filter 260ms cubic-bezier(.2,.9,.2,1) !important;

  box-shadow: 0 14px 42px rgba(0,0,0,.28) !important;
}

/* MATCH CONTINUE HOVER (same orange glow behavior) */
.zwo .zwo-cart-send:hover{
  transform: translateY(-1px) !important;
  box-shadow:
    0 18px 52px rgba(0,0,0,.34),
    0 0 0 3px rgba(255, 138, 42, .16),
    0 10px 34px rgba(255, 138, 42, .18) !important;
  filter: saturate(1.05) !important;
}

/* MATCH CONTINUE ACTIVE */
.zwo .zwo-cart-send:active{
  transform: translateY(0px) scale(.99) !important;
  box-shadow: 0 14px 42px rgba(0,0,0,.28) !important;
}
/* =========================================================
   ORDER TYPE — FUTURISTIC GLASS SELECT
   Paste at VERY BOTTOM
   ========================================================= */

/* Wrap select in a styled shell (works even if wrapper is not present by using :has fallback where supported) */
.zwo .zwo-field select{
  -webkit-appearance: none !important;
  appearance: none !important;

  width: 100% !important;
  height: 50px !important;

  /* typography */
  font-family: "Oswald", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif !important;
  font-size: 16px !important;
  font-weight: 600 !important;
  letter-spacing: .10em !important;
  text-transform: uppercase !important;

  /* glass body */
  background: rgba(255,255,255,.06) !important;
  border: 1px solid rgba(255,255,255,.14) !important;
  border-radius: 16px !important;

  /* spacing for custom arrow */
  padding: 0 48px 0 14px !important;

  color: rgba(255,255,255,.92) !important;
  outline: none !important;

  backdrop-filter: blur(14px) saturate(140%) !important;
  -webkit-backdrop-filter: blur(14px) saturate(140%) !important;

  box-shadow:
    0 12px 34px rgba(0,0,0,.22),
    inset 0 1px 0 rgba(255,255,255,.08) !important;

  transition:
    border-color 220ms cubic-bezier(.2,.8,.2,1),
    background 220ms cubic-bezier(.2,.8,.2,1),
    box-shadow 220ms cubic-bezier(.2,.8,.2,1),
    transform 220ms cubic-bezier(.2,.8,.2,1) !important;
}

/* Hover / focus */
.zwo .zwo-field select:hover{
  border-color: rgba(149,200,201,.40) !important;
  background: rgba(255,255,255,.075) !important;
}
.zwo .zwo-field select:focus,
.zwo .zwo-field select:focus-visible{
  border-color: rgba(149,200,201,.55) !important;
  box-shadow:
    0 14px 44px rgba(0,0,0,.28),
    0 0 0 3px rgba(149,200,201,.14),
    inset 0 1px 0 rgba(255,255,255,.08) !important;
}

/* Custom arrow (no markup needed) */
.zwo .zwo-field{
  position: relative;
}
.zwo .zwo-field select{
  background-image:
    linear-gradient(45deg, transparent 50%, rgba(255,255,255,.85) 50%),
    linear-gradient(135deg, rgba(255,255,255,.85) 50%, transparent 50%),
    linear-gradient(to right, transparent, transparent) !important;
  background-position:
    calc(100% - 22px) 22px,
    calc(100% - 16px) 22px,
    0 0 !important;
  background-size:
    6px 6px,
    6px 6px,
    100% 100% !important;
  background-repeat: no-repeat !important;
}

/* Optional: make dropdown options readable (limited on iOS — native UI wins) */
.zwo .zwo-field select option{
  text-transform: uppercase;
  font-family: "Oswald", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}
/* =========================================================
   PICKUP LOCATION — SIMPLE CLICKABLE CARD (NO PREVIEW)
   ========================================================= */
.zwo .zwo-pickup-card{
  margin-top: 12px;
}

.zwo .zwo-pickup-link{
  display: block;
  text-decoration: none !important;

  padding: 12px 14px;
  border-radius: 16px;

  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.14);

  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);

  box-shadow:
    0 12px 34px rgba(0,0,0,.22),
    inset 0 1px 0 rgba(255,255,255,.08);

  transition: transform 220ms cubic-bezier(.2,.8,.2,1),
              border-color 220ms cubic-bezier(.2,.8,.2,1),
              background 220ms cubic-bezier(.2,.8,.2,1);
}

@media (hover:hover){
  .zwo .zwo-pickup-link:hover{
    transform: translateY(-1px);
    border-color: rgba(149,200,201,.40);
    background: rgba(255,255,255,.075);
  }
}

/* Typography — now targets the actual elements */
.zwo .zwo-pickup-link strong{
  display:block;
  font-family: "Oswald", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  letter-spacing: .10em;
  text-transform: uppercase;
  font-weight: 700;
  color: rgba(255,255,255,.94);
  font-size: 14px;
}

.zwo .zwo-pickup-link em{
  display:block;
  font-family: "DM Sans", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-style: normal;
  color: rgba(255,255,255,.66);
  font-size: 13px;
  margin-top: 2px;
}

.zwo .zwo-checkout-notice{
  display: grid;
  gap: 4px;
  margin: 8px 0 4px;
  padding: 10px 12px;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 14px;
  background: rgba(255,255,255,.035);
}

.zwo .zwo-checkout-notice strong{
  font-family: "DM Sans", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: rgba(255,255,255,.90);
}

.zwo .zwo-checkout-notice span{
  font-family: "DM Sans", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size: 12px;
  line-height: 1.4;
  color: rgba(255,255,255,.68);
}
/* =========================================
   SEND ORDER — WhatsApp (SVG, CLEAN & TIGHT)
   ========================================= */

.zwo .zwo-btn-whatsapp{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  /* prevent any extra vertical space */
  line-height: 1;
}

/* Text label */
.zwo .zwo-btn-whatsapp .zwo-send-label{
  display: inline-block;
  line-height: 1;
  letter-spacing: .14em;
  text-transform: uppercase;
}

/* REAL WhatsApp icon (inline SVG) */
.zwo .zwo-btn-whatsapp .zwo-wa-svg{
  display: block;          /* removes inline SVG whitespace issues */
  width: 32px;
  height: 32px;
  flex: 0 0 auto;

  /* icon inherits button text color */
  fill: currentColor;
  opacity: .9;
}

/* Hover polish only (no layout changes) */
@media (hover:hover){
  .zwo .zwo-btn-whatsapp:hover .zwo-wa-svg{
    opacity: 1;
  }
}
.zwo .zwo-btn-whatsapp .zwo-wa-icon{
  transform: translateY(-3px);
}

.zwo .zwo-thanks-text{
  margin-top: 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.zwo .zwo-thanks-text strong{
  font-family: "Oswald", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-weight: 700;
  font-size: 16px;
  color: rgba(255,255,255,.94);
}

.zwo .zwo-thanks-text span{
  font-family: "DM Sans", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size: 14px;
  color: rgba(255,255,255,.70);
}

.zwo .zwo-thanks-loader{
  margin-top: 14px;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 2px solid rgba(255,255,255,.12);
  border-top-color: rgba(149,200,201,.80);
  animation: zwoSpin 900ms linear infinite;
}

@keyframes zwoSpin{
  to { transform: rotate(360deg); }
}

@media (prefers-reduced-motion: reduce){
  .zwo .zwo-thanks-loader{ animation: none; }
}

/* =========================================================
   SPICE LEVEL — horizontal + same persona as ingredient toggles
   ========================================================= */

/* Keep spice section on one row and visually lighter than full cards */
.zwo .zwo-sec-spice{
  grid-column: 1 !important;
  padding-top: 10px !important;
}

.zwo .zwo-sec-spice .zwo-sec-title,
.zwo .zwo-sec-combo .zwo-sec-title{
  color: rgba(255,255,255,0.66) !important;
  font-weight: 500 !important;
}

/* Horizontal row */
.zwo .zwo-spice-options{
  display: flex;
  flex-wrap: nowrap;
  gap: 2px;
  align-items: center;
}

/* Each spice option behaves like the same futuristic control */
.zwo .zwo-line-spice{
  display: inline-flex !important;
  align-items: center !important;
  gap: 5px !important;
  padding: 8px 9px !important;
  min-width: 0;
  flex: 0 0 auto;
  justify-content: center;
  min-width: 102px;
}

/* Hide native radio, keep it clickable/accessibility intact */
.zwo .zwo-line input[type="radio"]{
  opacity: 0 !important;
  width: 22px !important;
  height: 22px !important;
  margin: 0 !important;
  position: relative;
  z-index: 3;
}

/* Reuse the same visual shell as checkbox rows */
.zwo .zwo-line input[type="radio"] + .zwo-check{
  width: 22px;
  height: 22px;
  border-radius: 7px;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.04);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-left: -22px;
  z-index: 2;
  box-shadow: inset 0 0 0 1px rgba(0,0,0,0.20);
  transition: border-color .18s ease, background .18s ease, box-shadow .18s ease, transform .12s ease;
}

/* Inner energy core */
.zwo .zwo-line input[type="radio"] + .zwo-check::before{
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 3px;
  background: rgba(159,210,212,0.0);
  box-shadow: 0 0 0 rgba(159,210,212,0.0);
  transform: scale(0.7);
  transition: transform .18s ease, background .18s ease, box-shadow .18s ease;
}

/* Checked state should feel identical to ingredient active state */
.zwo .zwo-line-spice.is-checked{
  border-color: rgba(255,255,255,0.04);
  background: rgba(0,0,0,0.16);
  box-shadow: none;
}

.zwo .zwo-line input[type="radio"]:checked + .zwo-check{
  border-color: rgba(159,210,212,0.42);
  background: rgba(159,210,212,0.08);
  box-shadow:
    0 0 0 1px rgba(159,210,212,0.16),
    0 0 12px rgba(159,210,212,0.10);
}

.zwo .zwo-line input[type="radio"]:checked + .zwo-check::before{
  background: rgba(159,210,212,0.95);
  box-shadow: 0 0 10px rgba(159,210,212,0.35);
  transform: scale(1);
}

/* Press state parity */
.zwo .zwo-line-spice.is-pressing{
  transform: scale(0.995);
}

/* Keep spice labels compact and aligned */
.zwo .zwo-line-spice .zwo-line-text{
  white-space: nowrap;
}

/* Mobile wrap only if absolutely necessary */
@media (max-width: 520px){
  .zwo .zwo-spice-options{
    flex-wrap: wrap;
  }
}

/* =========================================================
   PRIMARY MODE FILTER + CATEGORY META
   ========================================================= */

.zwo .zwo-primary-modes{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin: 0 0 10px 0;
}

.zwo .zwo-primary-pill{
  appearance: none;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.03);
  color: rgba(255,255,255,0.92);
  border-radius: 999px;
  padding: 7px 14px;
  font: inherit;
  font-weight: 800;
  letter-spacing: 0.35px;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform .14s ease, border-color .18s ease, background .18s ease, box-shadow .18s ease;
}

.zwo .zwo-primary-pill:hover{
  border-color: rgba(255,255,255,0.18);
}

.zwo .zwo-primary-pill.is-active{
  background: rgba(255,255,255,0.08);
  border-color: rgba(159,210,212,0.28);
  box-shadow: 0 0 0 1px rgba(159,210,212,0.10), 0 0 14px rgba(159,210,212,0.08);
}

.zwo .zwo-primary-pill:active{
  transform: scale(0.98);
}

.zwo .zwo-category-meta{
  display: none;
  margin: 10px 0 12px 0;
}

.zwo .zwo-category-meta.is-visible{
  display: block;
}

.zwo .zwo-category-meta-inner{
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.03);
  border-radius: 14px;
  padding: 10px 14px;
}

.zwo .zwo-category-meta-text{
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.zwo .zwo-category-meta-name{
  font-weight: 800;
  letter-spacing: .02em;
  color: rgba(255,255,255,0.96);
}

.zwo .zwo-category-meta-desc{
  color: rgba(255,255,255,0.72);
  font-size: 0.94em;
  line-height: 1.35;
}

@media (max-width: 767px){
  .zwo .zwo-primary-modes{
    gap: 6px;
    margin-bottom: 8px;
  }

  .zwo .zwo-primary-pill{
    padding: 6px 12px;
    font-size: 0.92rem;
  }

  .zwo .zwo-category-meta{
    margin-top: 8px;
    margin-bottom: 10px;
  }

  .zwo .zwo-category-meta-inner{
    padding: 9px 12px;
    border-radius: 12px;
  }
}

@media (max-width: 1023px){
  .zwo-sticky-wrap{
    z-index: 20;
  }
}

/* =========================================================
   CATEGORY RAIL MICRO-TRANSITION
   ========================================================= */

.zwo #zwo-categories{
  transition: opacity 160ms cubic-bezier(.2,.8,.2,1), transform 160ms cubic-bezier(.2,.8,.2,1);
  will-change: opacity, transform;
}

.zwo #zwo-categories.is-updating{
  opacity: 0.38;
  transform: translateY(-2px);
}

.zwo .zwo-category-meta{
  transition: opacity 160ms cubic-bezier(.2,.8,.2,1), transform 160ms cubic-bezier(.2,.8,.2,1);
  will-change: opacity, transform;
}

.zwo .zwo-category-meta:not(.is-visible){
  opacity: 0;
  transform: translateY(-2px);
}

.zwo .zwo-category-meta.is-visible{
  opacity: 1;
  transform: translateY(0);
}

/* =========================================================
   COMBO MODULE
   ========================================================= */

.zwo .zwo-sec-combo{
  grid-column: 2 !important;
  align-self: start;
  padding: 18px 20px !important;
  margin-top: -8px;
}

.zwo .zwo-combo-options{
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.zwo .zwo-combo-choice{
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.zwo .zwo-combo-desc{
  color: rgba(255,255,255,0.68);
  font-size: 0.92em;
  line-height: 1.35;
  padding-left: 46px;
}

.zwo .zwo-combo-details{
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 10px;
  padding-left: 46px;
}

.zwo .zwo-combo-field{
  display: flex;
  flex-direction: column;
  gap: 0;
  width: min(100%, 260px);
}

.zwo .zwo-combo-field-label{
  display: none;
  font-size: 0.86em;
  font-weight: 800;
  color: rgba(255,255,255,0.78);
  letter-spacing: .02em;
}

.zwo .zwo-combo-select{
  width: 100%;
  max-width: 260px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.04);
  color: rgba(255,255,255,0.94);
  border-radius: 10px;
  padding: 10px 12px;
  font: inherit;
  font-size: 14px;
}

@media (max-width: 759px){
  .zwo .zwo-sec-spice{
    grid-column: auto !important;
  }

  .zwo .zwo-sec-combo{
    grid-column: auto !important;
  }
}
