/* =============================================================================
   OptiCheckout — standalone template demo pages  (/demo/<slug>)
   Layers on top of style.css + demo.css. The .co-* checkout facsimile is the
   shared design system (demo.css); this file adds the full-browser page chrome
   and the per-skin layout variants (bleed split, accordion, tinted total, warm,
   focused, roomy) plus the two bespoke surfaces (thank-you, side cart).
   Everything here is scoped under .demo-page so the in-page homepage demos are
   never affected.
   ============================================================================= */

.demo-page {
  background: var(--bg-2);
  min-height: 100vh;
}

/* ---------------------------------------------------------------------------
   Page chrome: a slim, slick sticky top bar carrying every control
   (back · name · surface switch · device switch · reset · CTA).
   --------------------------------------------------------------------------- */
.demo-topbar {
  position: sticky; top: 0; z-index: 40;
  display: flex; align-items: center; gap: 8px 12px; flex-wrap: wrap;
  min-height: 58px; padding: 8px clamp(12px, 2.4vw, 24px);
  background: rgba(255, 255, 255, .82);
  backdrop-filter: saturate(170%) blur(14px);
  border-bottom: 1px solid var(--line);
}
.demo-topbar__back {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 14px; font-weight: 600; color: var(--ink-2);
  white-space: nowrap;
}
.demo-topbar__back:hover { color: var(--accent-ink); }
.demo-topbar__back svg { width: 17px; height: 17px; flex: none; }
.demo-topbar__id { display: flex; align-items: baseline; gap: 9px; margin-left: 2px; min-width: 0; }
.demo-topbar__name { font-size: 15.5px; font-weight: 700; letter-spacing: -.01em; color: var(--ink); white-space: nowrap; }
.demo-topbar__kind {
  font-size: 11px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  color: var(--accent-ink); background: var(--accent-soft); border: 1px solid var(--accent-line);
  padding: 3px 9px; border-radius: 100px; white-space: nowrap;
}
.demo-topbar__spacer { flex: 1 1 auto; }
.demo-topbar__cta {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 14px; font-weight: 700; color: #fff; background: var(--accent);
  padding: 9px 17px; border-radius: 100px; white-space: nowrap;
  box-shadow: 0 1px 2px rgba(11,91,67,.25), 0 8px 18px -10px rgba(11,91,67,.5);
  transition: background .16s var(--ease), transform .12s var(--ease);
}
.demo-topbar__cta:hover { background: var(--accent-2); color: #fff; transform: translateY(-1px); }

/* segmented switches (surface + device) */
.demo-seg {
  display: inline-flex; align-items: center; gap: 2px;
  background: var(--bg-2); border: 1px solid var(--line-2); border-radius: 100px; padding: 3px;
}
.demo-seg button {
  font-family: var(--font); font-size: 13px; font-weight: 600; cursor: pointer;
  border: 0; background: none; color: var(--ink-2);
  display: inline-flex; align-items: center; gap: 6px;
  padding: 7px 13px; border-radius: 100px; white-space: nowrap;
  transition: color .16s var(--ease), background .16s var(--ease), box-shadow .16s var(--ease);
}
.demo-seg button svg { width: 15px; height: 15px; flex: none; }
.demo-seg button:hover { color: var(--ink); }
.demo-seg button.is-active { background: #fff; color: var(--accent-ink); box-shadow: var(--shadow-sm); }

/* reset pill */
.demo-tool {
  font-family: var(--font); font-size: 13px; font-weight: 600; cursor: pointer;
  display: inline-flex; align-items: center; gap: 6px;
  border: 1px solid var(--line-2); background: #fff; color: var(--ink-2);
  padding: 8px 13px; border-radius: 100px; transition: all .16s var(--ease);
}
.demo-tool:hover { color: var(--accent-ink); border-color: var(--accent-line); }
.demo-tool svg { width: 15px; height: 15px; flex: none; }

/* ---------------------------------------------------------------------------
   Full-bleed stage: the checkout fills the whole browser, no window frame.
   --------------------------------------------------------------------------- */
.demo-stage { width: 100%; }
.demo-page .co-demo { width: 100%; }

/* the stage flows the page — no fixed inner scroll box */
.demo-page .co-view {
  height: auto; overflow: visible;
  background: #f4f5f2;
  border-radius: 0;
  scroll-behavior: smooth;
  scroll-margin-top: 64px;
}
.demo-page .co-view.is-desktop { min-height: calc(100vh - 58px); }
/* keep the carded (non-bleed) checkouts from stretching too wide on big monitors;
   the split-bleed skins (Cedar/Maple) are meant to run edge to edge. */
.demo-page .co-view.is-desktop .co:not(.co--bleed) .co-body { max-width: 1200px; margin-inline: auto; }

/* one checkout / thank-you surface visible at a time */
.demo-surface { display: none; }
.demo-surface.is-active { display: block; }

/* tablet + phone: a device centred on a soft grey rail */
.demo-page .co-view.is-tablet,
.demo-page .co-view.is-phone {
  background: #e5e7e1;
  padding: clamp(20px, 3vw, 40px) clamp(12px, 3vw, 40px);
}
.demo-page .co-view.is-tablet .co,
.demo-page .co-view.is-tablet .ty,
.demo-page .co-view.is-tablet .sc {
  max-width: 860px; margin-inline: auto;
  border-radius: 20px; overflow: hidden; box-shadow: var(--shadow-lg);
}
.demo-page .co-view.is-phone .co,
.demo-page .co-view.is-phone .ty,
.demo-page .co-view.is-phone .sc {
  max-width: 412px; margin-inline: auto;
  border-radius: 26px; overflow: hidden; box-shadow: var(--shadow-lg);
}
/* both constrained devices collapse the two-column checkout to one */
.demo-page .co-view.is-tablet .co-grid,
.demo-page .co-view.is-phone .co-grid { grid-template-columns: 1fr; }
.demo-page .co-view.is-tablet .co-sum,
.demo-page .co-view.is-phone .co-sum { position: static; }
.demo-page .co-view.is-tablet .co--bleed .co-grid,
.demo-page .co-view.is-phone .co--bleed .co-grid { grid-template-columns: 1fr; background: none; }
.demo-page .co-view.is-tablet .co--bleed .co-sum,
.demo-page .co-view.is-phone .co--bleed .co-sum { position: static; background: #eef0ea; }
.demo-page .co-view.is-tablet .co--warm.co--bleed .co-sum,
.demo-page .co-view.is-phone .co--warm.co--bleed .co-sum { background: #f4ede1; }

/* ---------------------------------------------------------------------------
   Caption band beneath the stage: what this is + explore other templates
   --------------------------------------------------------------------------- */
.demo-caption { border-top: 1px solid var(--line); background: var(--bg); }
.demo-caption__in { max-width: 780px; margin: 0 auto; padding: clamp(34px, 5vw, 56px) clamp(16px, 3vw, 28px) 8px; text-align: center; }
.demo-caption__hint {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 600; color: var(--accent-ink);
  background: var(--accent-soft); border: 1px solid var(--accent-line);
  padding: 6px 14px; border-radius: 100px; margin: 0 0 18px;
}
.demo-caption__hint svg { width: 15px; height: 15px; }
.demo-caption h1 { font-size: clamp(1.5rem, 3vw, 2rem); margin: 0 0 10px; }
.demo-caption__desc { color: var(--ink-2); font-size: 16px; margin: 0 auto 18px; max-width: 60ch; }
.demo-caption .demo-chips { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; }
.demo-chips .chip {
  font-size: 12.5px; font-weight: 600; color: var(--accent-ink);
  background: var(--accent-soft); border: 1px solid var(--accent-line);
  padding: 5px 12px; border-radius: 100px;
}
.demo-caption__foot { margin-top: 22px; font-size: 13.5px; color: var(--ink-3); max-width: 64ch; margin-inline: auto; }
.demo-caption__foot a { font-weight: 600; white-space: nowrap; display: inline-flex; align-items: center; gap: 5px; }
.demo-caption__foot a svg { width: 15px; height: 15px; }

/* other-templates strip at the very bottom */
.demo-more { max-width: 1180px; margin: 0 auto; padding: 34px clamp(14px,3vw,28px) 56px; }
.demo-more__h { font-size: 13px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--ink-3); text-align: center; margin-bottom: 18px; }
.demo-more__row { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.demo-more__row a {
  font-size: 14px; font-weight: 600; color: var(--ink-2);
  background: #fff; border: 1px solid var(--line-2); border-radius: 100px; padding: 9px 16px;
  transition: all .16s var(--ease);
}
.demo-more__row a:hover { color: var(--accent-ink); border-color: var(--accent-line); background: var(--accent-soft); }
.demo-more__row a[aria-current="page"] { color: #fff; background: var(--accent); border-color: var(--accent); }

/* ---------------------------------------------------------------------------
   Rail as flex (handles any number of steps + a static "Cart" pre-step)
   --------------------------------------------------------------------------- */
.demo-page .co-rail { display: flex; align-items: center; gap: 8px; }
.demo-page .co-rail__line { flex: 1 1 auto; min-width: 18px; }
/* static, always-done "Cart" indicator that the step machine does NOT drive */
.co-rail__cart { display: inline-flex; align-items: center; gap: 10px; }
.co-rail__cart .co-rail__dot { background: var(--co-accent); border-color: var(--co-accent); color: #fff; }
.co-rail__cart .co-rail__lbl { color: #34413b; }
.co-rail__cart .co-rail__dot svg { width: 16px; height: 16px; }

/* breadcrumb rail (Maple) */
.co-crumbs {
  display: flex; align-items: center; gap: 8px; flex-wrap: wrap;
  padding-bottom: 20px; margin-bottom: 24px; border-bottom: 1px solid #ece9de;
  font-size: 14.5px;
}
.co-crumbs a, .co-crumbs span { color: #8a938e; font-weight: 600; }
.co-crumbs a:hover { color: var(--co-accent-ink); }
.co-crumbs .is-here { color: #18271f; }
.co-crumbs .co-crumbs__sep { color: #c7ccc4; }

/* ---------------------------------------------------------------------------
   BLEED SPLIT  (Cedar, Maple): white form left, flush grey summary right.
   A background gradient paints the split so the grey fills full column height
   regardless of which side is taller.
   --------------------------------------------------------------------------- */
.co--bleed .co-body { padding: 0; }
.co--bleed .co-grid {
  grid-template-columns: minmax(0, 1fr) 420px; gap: 0; align-items: stretch;
  background: linear-gradient(90deg,
     #fff 0, #fff calc(100% - 420px),
     #eef0ea calc(100% - 420px), #eef0ea 100%);
}
.co--bleed .co-main {
  background: transparent; border: 0; border-radius: 0; box-shadow: none;
  padding: 38px clamp(24px, 4vw, 60px) 56px;
}
.co--bleed .co-sum {
  background: transparent; border: 0; border-radius: 0; box-shadow: none;
  padding: 38px clamp(22px, 2.6vw, 40px) 48px;
  position: sticky; top: 96px; align-self: start;
}
.co--bleed .co-line { border-color: #e2e2d7; }
.co--bleed .co-coupon, .co--bleed .co-totals, .co--bleed .co-total { border-color: #e2e2d7; }
.co--bleed .co-fs__bar { background: #e0e3dc; }

/* warm neutral wash (Maple) */
.co--warm .co { background: #fbf7f0; }
.co--warm .co-top { background: #f6efe3; border-bottom-color: #ecdfca; }
.co--warm.co--bleed .co-grid {
  background: linear-gradient(90deg,
     #fffdf9 0, #fffdf9 calc(100% - 420px),
     #f4ede1 calc(100% - 420px), #f4ede1 100%);
}
.co--warm .co-input, .co--warm .co-select { background: #fffdf9; border-color: #e4d8c4; }
.co--warm .co-crumbs { border-bottom-color: #ecdfca; }

/* ---------------------------------------------------------------------------
   FOCUSED  (Beacon): a narrower, calmer single-column feel with soft shadows
   --------------------------------------------------------------------------- */
.co--focused .co-body { max-width: 1040px; margin-inline: auto; }
.co--focused .co-rail { max-width: 560px; margin-inline: auto; padding-bottom: 26px; }
.co--focused .co-card { box-shadow: 0 1px 2px rgba(16,31,26,.05), 0 18px 40px -26px rgba(16,31,26,.22); }
.co--focused .co-check { background: #f7f8f4; }

/* ---------------------------------------------------------------------------
   ROOMY  (Quay): each section framed as its own soft sub-card inside a step
   --------------------------------------------------------------------------- */
.co-subcard {
  background: #fff; border: 1px solid #e7e4d9; border-radius: 14px;
  padding: 22px 22px 24px; margin-bottom: 18px;
  box-shadow: 0 1px 2px rgba(16,31,26,.03);
}
.co-subcard:last-child { margin-bottom: 0; }
.co-subcard__head { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.co-subcard__title { font-size: 17px; font-weight: 700; color: #18271f; }
.co--roomy .co-main { padding: 22px; background: transparent; border: 0; box-shadow: none; }
.co--roomy .co-grid { gap: 22px; }

/* ---------------------------------------------------------------------------
   TINTED total  (Harbor, Quay): green order-total footer row on the summary
   --------------------------------------------------------------------------- */
.co-sum--tinted .co-total {
  margin: 14px -22px -22px; padding: 18px 22px;
  border-top: 1px solid #d9e7df;
  background: #eef6f1; border-radius: 0 0 16px 16px;
}
.co-sum--tinted .co-total__v { color: var(--co-accent-ink); }
.co--bleed .co-sum--tinted .co-total { margin-inline: 0; border-radius: 12px; }

/* ---------------------------------------------------------------------------
   ACCORDION  (Harbor): stacked section cards, one open at a time
   --------------------------------------------------------------------------- */
.co-acc {
  background: #fff; border: 1px solid #e7e4d9; border-radius: 14px;
  margin-bottom: 14px; overflow: hidden;
  box-shadow: 0 1px 2px rgba(16,31,26,.03);
  transition: box-shadow .2s var(--ease);
}
.co-acc.is-open { box-shadow: 0 1px 2px rgba(16,31,26,.05), 0 18px 40px -28px rgba(16,31,26,.22); }
.co-acc__head {
  display: flex; align-items: center; gap: 13px; width: 100%;
  background: none; border: 0; cursor: default; font-family: var(--font);
  padding: 20px 22px; text-align: left;
}
.co-acc.is-done .co-acc__head, .co-acc:not(.is-open) .co-acc__head { cursor: pointer; }
.co-acc__badge {
  width: 30px; height: 30px; border-radius: 8px; flex: none;
  display: grid; place-items: center; font-size: 14px; font-weight: 700;
  background: #eef1ee; color: #7c857f; transition: all .2s var(--ease);
}
.co-acc.is-open .co-acc__badge { background: var(--co-accent); color: #fff; }
.co-acc.is-done .co-acc__badge { background: var(--co-accent); color: #fff; }
.co-acc__badge svg { width: 16px; height: 16px; }
.co-acc__title { font-size: 17px; font-weight: 700; color: #18271f; }
.co-acc__edit { margin-left: auto; font-size: 13px; font-weight: 600; color: var(--co-accent-ink); display: none; }
.co-acc.is-done .co-acc__edit { display: inline; }
.co-acc__body { display: none; padding: 0 22px 24px; }
.co-acc.is-open .co-acc__body { display: block; animation: cofade .28s var(--ease); }
.co-cta--inline { width: auto; padding: 13px 22px; }

/* policy footer (Harbor) */
.co-foot {
  display: flex; flex-wrap: wrap; gap: 8px 22px; justify-content: center;
  padding: 26px 20px 8px; margin-top: 8px;
  border-top: 1px solid #ece9de; font-size: 13.5px;
}
.co-foot a { color: #6b756f; font-weight: 500; }
.co-foot a:hover { color: var(--co-accent-ink); }

/* ---------------------------------------------------------------------------
   Device interiors (the width + rail live in the chrome block above; these are
   the interior tweaks that keep a narrow device legible)
   --------------------------------------------------------------------------- */
.co-view.is-phone .co--bleed .co-main,
.co-view.is-phone .co--bleed .co-sum { padding: 20px 16px; }
.co-view.is-tablet .co--bleed .co-main,
.co-view.is-tablet .co--bleed .co-sum { padding: 28px clamp(20px,4vw,40px); }
.co-view.is-phone .co-crumbs { font-size: 13px; }
.co-view.is-phone .co-rail__lbl,
.co-view.is-tablet .co-rail__lbl { display: none; }
.co-view.is-phone .co-acc__head, .co-view.is-phone .co-acc__body { padding-left: 16px; padding-right: 16px; }

/* =============================================================================
   THANK-YOU  (Momentum layout): green header, centred confirm, info cards
   ============================================================================= */
.ty { background: #fff; color: #1a2a24; min-height: 620px; }
.ty-top {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 34px; background: var(--co-accent); color: #fff;
}
.ty-top__brand { font-weight: 800; font-size: 20px; letter-spacing: -.01em; }
.ty-top__phone {
  display: inline-flex; align-items: center; gap: 8px; font-weight: 700; font-size: 14px;
  background: #10231c; color: #fff; padding: 8px 16px; border-radius: 100px;
}
.ty-top__phone svg { width: 15px; height: 15px; }
.ty-wrap { max-width: 1000px; margin: 0 auto; padding: 48px clamp(18px, 4vw, 32px) 64px; }
.ty-hero { text-align: center; }
.ty-check {
  width: 62px; height: 62px; border-radius: 50%; margin: 0 auto 22px;
  display: grid; place-items: center;
  background: color-mix(in srgb, var(--co-accent) 12%, #fff);
  color: var(--co-accent-ink);
  border: 1px solid color-mix(in srgb, var(--co-accent) 32%, #fff);
}
.ty-check svg { width: 30px; height: 30px; }
.ty-hero h1 { font-size: clamp(1.9rem, 4vw, 2.6rem); margin: 0 0 10px; color: #16241f; }
.ty-hero__sub { font-size: 17px; color: #5c6a64; margin: 0 0 6px; }
/* Confirmation status rows. Left-aligned icon-chip + text (the real Momentum
   "rc-line" treatment) so the icon stays glued to the top of its sentence and
   never strands to the far edge when the text wraps on a phone. */
.ty-status {
  max-width: 460px; margin: 22px auto 0; text-align: left;
  border: 1px solid #e7e4d9; border-radius: 14px; overflow: hidden;
  background: color-mix(in srgb, var(--co-accent) 4%, #fff);
}
.ty-status__row { display: flex; align-items: flex-start; gap: 12px; padding: 14px 16px; }
.ty-status__row + .ty-status__row { border-top: 1px solid #eee9dc; }
.ty-status__ic {
  width: 30px; height: 30px; border-radius: 8px; flex: none; display: grid; place-items: center;
  background: color-mix(in srgb, var(--co-accent) 11%, #fff); color: var(--co-accent-ink);
}
.ty-status__ic svg { width: 16px; height: 16px; }
.ty-status__tx { font-size: 14px; line-height: 1.5; color: #6b756f; padding-top: 4px; }
.ty-status__tx b { color: #22302a; font-weight: 600; overflow-wrap: anywhere; }
.ty-cta { display: flex; gap: 12px; justify-content: center; margin-top: 26px; flex-wrap: wrap; }
.ty-btn {
  font-weight: 700; font-size: 15px; padding: 13px 24px; border-radius: 100px;
  display: inline-flex; align-items: center; gap: 8px; cursor: pointer; border: 1px solid transparent;
}
.ty-btn svg { width: 17px; height: 17px; }
.ty-btn--dark { background: #16241f; color: #fff; }
.ty-btn--dark:hover { background: #22332b; color: #fff; }
.ty-btn--ghost { background: #fff; color: #16241f; border-color: #d8d4c7; }
.ty-btn--ghost:hover { border-color: var(--accent-line); color: var(--accent-ink); }

.ty-cards {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
  margin-top: 40px; border: 1px solid #e7e4d9; border-radius: 16px; overflow: hidden;
}
.ty-card { display: flex; align-items: center; gap: 13px; padding: 20px 22px; border-left: 1px solid #eee9dc; }
.ty-card:first-child { border-left: 0; }
.ty-card__ic { width: 38px; height: 38px; border-radius: 9px; flex: none; display: grid; place-items: center; background: color-mix(in srgb, var(--co-accent) 11%, #fff); color: var(--co-accent-ink); }
.ty-card__ic svg { width: 19px; height: 19px; }
.ty-card__k { font-size: 11px; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; color: #8a938e; }
.ty-card__v { font-size: 16px; font-weight: 700; color: #18271f; }
/* "What happens next" progress tracker. A 4-across connected-dots row on wide
   screens; stacks to a vertical timeline in the phone frame + narrow viewports
   (rules further down). */
.ty-next { margin-top: 30px; border: 1px solid #e7e4d9; border-radius: 16px; padding: 24px 28px; }
.ty-next h3 { font-size: 19px; margin: 0 0 22px; }
.ty-next__steps { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(4, 1fr); }
.ty-next__step { position: relative; display: flex; flex-direction: column; align-items: center; gap: 10px; text-align: center; }
.ty-next__step:not(:last-child)::after {
  content: ""; position: absolute; top: 14px; left: 50%; width: 100%; height: 2px; background: #e7e4d9;
}
.ty-next__step.is-done::after { background: var(--co-accent); }
.ty-next__dot {
  position: relative; z-index: 1; width: 30px; height: 30px; border-radius: 50%;
  display: grid; place-items: center; background: #fff; border: 2px solid #dfe3dc; color: transparent;
}
.ty-next__dot svg { width: 16px; height: 16px; }
.ty-next__step.is-done .ty-next__dot { background: var(--co-accent); border-color: var(--co-accent); color: #fff; }
.ty-next__lbl { font-size: 13px; font-weight: 600; color: #8a938e; }
.ty-next__step.is-done .ty-next__lbl { color: #22302a; }

.ty-sum { margin-top: 30px; border: 1px solid #e7e4d9; border-radius: 16px; padding: 26px 28px; }
.ty-sum h3 { font-size: 19px; margin: 0 0 18px; }
.ty-sum__grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 30px; }
.ty-sum__line { display: flex; align-items: center; gap: 13px; padding: 12px 0; border-top: 1px solid #eee9dc; }
.ty-sum__line:first-of-type { border-top: 0; }
.ty-sum__line .co-thumb { width: 46px; height: 46px; }
.ty-sum__main { flex: 1; min-width: 0; }
.ty-sum__name { font-size: 14.5px; font-weight: 600; color: #22302a; }
.ty-sum__opt { font-size: 12px; color: #8a938e; margin-top: 2px; }
.ty-sum__qty { font-size: 12.5px; color: #8a938e; font-weight: 500; margin-top: 3px; }
.ty-sum__price { font-size: 14.5px; font-weight: 700; color: #22302a; }
.ty-tot .co-trow { font-size: 14.5px; }
.ty-tot .co-total { border-top: 1px solid #eee9dc; margin-top: 8px; padding-top: 14px; }
.ty-tot .co-total__v { color: var(--co-accent-ink); }

/* Shipping + billing address cards. */
.ty-addr {
  margin-top: 22px; border: 1px solid #e7e4d9; border-radius: 16px; padding: 24px 28px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
}
.ty-addr__k { font-size: 11px; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; color: #8a938e; margin-bottom: 9px; }
.ty-addr__v { font-size: 14px; line-height: 1.65; color: #22302a; }
.ty-addr__same { display: inline-flex; align-items: center; gap: 7px; font-size: 13.5px; font-weight: 600; color: var(--co-accent-ink); }
.ty-addr__same svg { width: 15px; height: 15px; }

/* "Need help?" support banner. */
.ty-help {
  margin-top: 22px; display: flex; align-items: center; gap: 16px;
  border: 1px solid #e7e4d9; border-radius: 16px; padding: 20px 24px;
  background: color-mix(in srgb, var(--co-accent) 4%, #fff);
}
.ty-help__ic {
  width: 40px; height: 40px; border-radius: 10px; flex: none; display: grid; place-items: center;
  background: color-mix(in srgb, var(--co-accent) 11%, #fff); color: var(--co-accent-ink);
}
.ty-help__ic svg { width: 20px; height: 20px; }
.ty-help__tx { flex: 1; min-width: 0; }
.ty-help__h { font-size: 15px; font-weight: 700; color: #18271f; }
.ty-help__s { font-size: 13.5px; color: #6b756f; margin-top: 2px; }
.ty-help__btn {
  flex: none; display: inline-flex; align-items: center; gap: 8px; cursor: pointer;
  font-weight: 700; font-size: 14px; padding: 11px 20px; border-radius: 100px;
  border: 1px solid #d8d4c7; color: #16241f; background: #fff;
}
.ty-help__btn svg { width: 16px; height: 16px; }
.ty-help__btn:hover { border-color: var(--accent-line); color: var(--accent-ink); }
@media (max-width: 760px) {
  .ty-cards { grid-template-columns: 1fr 1fr; }
  .ty-card:nth-child(3) { border-left: 0; }
  .ty-card:nth-child(n+3) { border-top: 1px solid #eee9dc; }
  .ty-sum__grid { grid-template-columns: 1fr; gap: 20px; }
}
.co-view.is-phone .ty-cards { grid-template-columns: 1fr; }
.co-view.is-phone .ty-card { border-left: 0; border-top: 1px solid #eee9dc; }
.co-view.is-phone .ty-card:first-child { border-top: 0; }
.co-view.is-phone .ty-sum__grid { grid-template-columns: 1fr; gap: 20px; }
.co-view.is-phone .ty-top { padding: 16px 18px; }
.co-view.is-phone .ty-wrap { padding: 32px 16px 44px; }
/* phone thank-you: full-width status card, vertical next-steps timeline,
   stacked address + help. */
.co-view.is-phone .ty-status { max-width: none; }
.co-view.is-phone .ty-next,
.co-view.is-phone .ty-addr { padding: 20px 18px; }
.co-view.is-phone .ty-help { padding: 18px; }
.co-view.is-phone .ty-next__steps { grid-template-columns: 1fr; }
.co-view.is-phone .ty-next__step { flex-direction: row; text-align: left; gap: 14px; padding-bottom: 22px; }
.co-view.is-phone .ty-next__step:last-child { padding-bottom: 0; }
.co-view.is-phone .ty-next__step:not(:last-child)::after { top: 30px; left: 14px; width: 2px; height: 100%; }
.co-view.is-phone .ty-addr { grid-template-columns: 1fr; gap: 18px; }
.co-view.is-phone .ty-help { flex-direction: column; align-items: flex-start; }
.co-view.is-phone .ty-help__btn { align-self: stretch; justify-content: center; }
/* tablet thank-you: two cards per row, stacked summary */
.co-view.is-tablet .ty-cards { grid-template-columns: 1fr 1fr; }
.co-view.is-tablet .ty-card:nth-child(3) { border-left: 0; }
.co-view.is-tablet .ty-card:nth-child(n+3) { border-top: 1px solid #eee9dc; }
.co-view.is-tablet .ty-sum__grid { grid-template-columns: 1fr; gap: 22px; }

/* =============================================================================
   SIDE CART  (slide-out drawer over a dimmed store page)
   ============================================================================= */
/* Fill the stage so the dimmed store + drawer never leave a blank band below on
   a tall phone/tablet viewport (the drawer is absolute top/bottom 0, so it grows
   with the surface). Floors at 640px on very short viewports. */
.sc { position: relative; min-height: max(640px, calc(100vh - 58px)); overflow: hidden; background: #fff; }
/* [hidden] must beat author display rules (.sc-line{display:flex},
   .sc-item__ea{display:block}) — otherwise the promo/gift/per-unit rows leak into
   the default state. Mirrors the real plugin's `.wccp-sc [hidden]{display:none!important}`. */
.sc [hidden] { display: none !important; }
/* dimmed store page behind the drawer */
.sc-bg {
  position: absolute; inset: 0; padding: 0;
  background: #f4f5f2;
  filter: saturate(.5) brightness(.98);
}
.sc-bg::after { content: ""; position: absolute; inset: 0; background: rgba(16,31,26,.42); }
.sc-bg__top { height: 66px; background: #e9efec; border-bottom: 1px solid #dbe3df; display: flex; align-items: center; padding: 0 34px; font-weight: 700; color: #16241f; }
.sc-bg__hero { height: 220px; background: linear-gradient(135deg, #2b3a33, #16241f); display: grid; place-items: center; color: rgba(255,255,255,.6); font-size: 22px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.sc-bg__body { padding: 30px 34px; }
.sc-bg__notice { background: #eef4f0; border-left: 3px solid var(--co-accent); padding: 14px 18px; border-radius: 8px; color: #3a463f; font-size: 14px; margin-bottom: 26px; }
.sc-bg__cols { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.sc-bg__ph { height: 260px; background: #e7e9e3; border-radius: 12px; overflow: hidden; }
.sc-bg__ln { height: 16px; background: #e7e9e3; border-radius: 6px; margin-bottom: 14px; }
.sc-bg__ln.s { width: 55%; } .sc-bg__ln.m { width: 78%; }

/* the drawer — full slide-in from the right, mirroring the real plugin's
   translateX(100%) → 0 open with a soft leftward shadow. */
.sc-drawer {
  position: absolute; top: 0; right: 0; bottom: 0; width: min(440px, 92%);
  background: #fff; box-shadow: -24px 0 60px -22px rgba(16,31,26,.42);
  display: flex; flex-direction: column;
  animation: scin .5s cubic-bezier(.32,.72,0,1) both;
}
@keyframes scin { from { transform: translateX(100%); } to { transform: none; } }
.sc-head { display: flex; align-items: center; gap: 10px; padding: 15px 20px 14px; border-bottom: 1px solid #eee9dc; flex: none; }
.sc-head__ic { color: var(--co-accent); display: grid; place-items: center; flex: none; }
.sc-head__ic svg { width: 21px; height: 21px; }
.sc-head h3 { font-size: 16px; font-weight: 650; letter-spacing: -.01em; margin: 0; }
.sc-head__count { font-size: 11.5px; font-weight: 700; color: var(--co-accent-ink); background: var(--accent-soft); border: 1px solid var(--accent-line); padding: 2px 9px; border-radius: 100px; }
.sc-head__x { margin-left: auto; width: 34px; height: 34px; border-radius: 9px; border: 1px solid #e2ddd0; background: #fff; cursor: pointer; display: grid; place-items: center; color: #6b756f; transition: border-color .14s var(--ease), color .14s var(--ease), background .14s var(--ease); flex: none; }
.sc-head__x:hover { border-color: var(--accent-line); color: var(--accent-ink); background: #faf8f2; }
.sc-head__x svg { width: 16px; height: 16px; }

/* free-shipping meter — a tinted gradient module with an animated bar and a
   celebratory "unlocked" state. */
.sc-fs { padding: 13px 20px 14px; border-bottom: 1px solid #eee9dc; background: linear-gradient(180deg, #faf8f2, #fff); flex: none; }
.sc-fs__t { display: flex; align-items: center; gap: 8px; font-size: 13px; color: #34413b; margin-bottom: 8px; line-height: 1.4; }
.sc-fs__t svg { width: 16px; height: 16px; color: var(--accent-2); flex: none; }
.sc-fs__t b { color: #17251f; font-weight: 700; }
.sc-fs__bar { height: 8px; border-radius: 100px; background: #eae4d6; overflow: hidden; }
.sc-fs__fill { height: 100%; border-radius: 100px; background: linear-gradient(90deg, var(--accent-2), var(--co-accent)); transition: width .5s cubic-bezier(.32,.72,0,1); }
.sc-fs.is-done .sc-fs__t { color: #127a4e; }
.sc-fs.is-done .sc-fs__t b { color: #0f5c3a; }
.sc-fs.is-done .sc-fs__t svg { color: #127a4e; }
.sc-fs.is-done .sc-fs__fill { background: linear-gradient(90deg, var(--co-accent), #0f5c3a); }

.sc-scroll { flex: 1; overflow-y: auto; padding: 4px 20px; }
.sc-item { display: flex; gap: 13px; padding: 16px 0; border-bottom: 1px solid #eee9dc; }
.sc-item__thumb { width: 62px; height: 72px; border-radius: 11px; flex: none; overflow: hidden; background: #eef1ec; box-shadow: inset 0 0 0 1px rgba(16,31,26,.06); }
.sc-item__main { flex: 1; min-width: 0; }
.sc-item__name { font-size: 14px; font-weight: 600; color: #22302a; letter-spacing: -.01em; line-height: 1.3; }
.sc-item__opt { font-size: 12px; color: #8a938e; margin: 2px 0 7px; }
.sc-item__social { display: flex; align-items: center; flex-wrap: wrap; gap: 5px 12px; margin-bottom: 10px; }
.sc-item__rating { display: inline-flex; align-items: center; gap: 3px; font-size: 11.5px; color: #6b756f; }
.sc-item__rating svg { width: 12px; height: 12px; color: #e0a82e; flex: none; }
.sc-item__rating .c { margin-left: 3px; color: #8a938e; }
.sc-item__stock { display: inline-flex; align-items: center; gap: 4px; font-size: 10.5px; font-weight: 700; color: var(--amber); background: var(--amber-soft); border: 1px solid #f4d8a8; border-radius: 100px; padding: 2px 8px; }
.sc-item__stock svg { width: 11px; height: 11px; flex: none; }
.sc-item__row { display: flex; align-items: center; gap: 14px; }
.sc-item__save { font-family: var(--font); font-size: 11.5px; color: #586660; font-weight: 600; background: none; border: 0; cursor: pointer; display: inline-flex; align-items: center; gap: 5px; text-decoration: underline; text-underline-offset: 2px; transition: color .14s var(--ease); }
.sc-item__save:hover { color: var(--co-accent-ink); }
.sc-item__save svg { width: 13px; height: 13px; }
.sc-item__aside { display: flex; flex-direction: column; align-items: flex-end; justify-content: space-between; flex: none; }
.sc-item__del { width: 24px; height: 24px; border-radius: 7px; color: #a7ada7; cursor: pointer; background: none; border: 0; display: grid; place-items: center; transition: color .14s var(--ease), background .14s var(--ease); }
.sc-item__del:hover { color: #c2410c; background: #fbede6; }
.sc-item__del svg { width: 15px; height: 15px; }
.sc-item__price { text-align: right; }
.sc-item__price > span[data-sc-itemprice] { display: block; font-size: 14px; font-weight: 650; white-space: nowrap; color: #17251f; }
.sc-item__ea { display: block; font-size: 11px; color: #8a938e; margin-top: 2px; white-space: nowrap; }

/* qty stepper — match the drawer's compact 9px-radius pill */
.sc-qty { border-radius: 9px; }

.sc-fbt { padding: 16px 0 6px; border-top: 1px solid #eee9dc; margin-top: 2px; }
.sc-fbt__h { display: flex; align-items: center; gap: 8px; font-size: 11px; font-weight: 800; letter-spacing: .07em; text-transform: uppercase; color: #69736b; margin-bottom: 4px; }
.sc-fbt__h svg { width: 14px; height: 14px; color: var(--co-accent); }
.sc-fbt__h .n { margin-left: auto; color: #127a4e; background: rgba(31,168,108,.12); border: 1px solid rgba(31,168,108,.3); border-radius: 100px; padding: 1px 8px; font-size: 11px; font-weight: 800; text-transform: none; letter-spacing: 0; }
.sc-fbt__note { display: flex; align-items: center; gap: 6px; font-size: 11.5px; font-weight: 600; color: #127a4e; margin: 0 0 12px; }
.sc-fbt__note svg { width: 14px; height: 14px; flex: none; }
.sc-fbt__strip { display: flex; gap: 10px; overflow-x: auto; padding-bottom: 14px; scroll-snap-type: x proximity; -webkit-mask-image: linear-gradient(90deg, #000 0, #000 calc(100% - 26px), transparent 100%); mask-image: linear-gradient(90deg, #000 0, #000 calc(100% - 26px), transparent 100%); }
.sc-fbt__strip::-webkit-scrollbar { height: 6px; }
.sc-fbt__strip::-webkit-scrollbar-thumb { background: #d7d3c6; border-radius: 100px; }
.sc-fbt__card { flex: none; width: 136px; scroll-snap-align: start; border: 1px solid #eee9dc; border-radius: 12px; background: #faf8f2; overflow: hidden; transition: border-color .14s var(--ease); }
.sc-fbt__card:hover { border-color: #ded7c8; }
.sc-fbt__img { position: relative; height: 62px; overflow: hidden; background: #eef1ec; }
.sc-fbt__img .p-art { position: absolute; inset: 0; width: 100%; height: 100%; }
.sc-fbt__add {
  position: absolute; top: 7px; right: 7px; width: 30px; height: 30px; border-radius: 50%;
  border: 0; background: var(--co-accent); color: #fff; cursor: pointer;
  display: grid; place-items: center; box-shadow: 0 2px 7px rgba(16,31,26,.24);
  transition: transform .14s var(--ease), box-shadow .14s var(--ease), filter .14s var(--ease);
}
.sc-fbt__add:hover { box-shadow: 0 4px 11px rgba(16,31,26,.32); filter: brightness(1.07); }
.sc-fbt__add:active { transform: scale(.92); }
.sc-fbt__add.is-added { background: #127a4e; font-weight: 700; }
.sc-fbt__add svg { width: 16px; height: 16px; }
.sc-fbt__body { padding: 7px 10px 9px; }
.sc-fbt__nm { font-size: 12.5px; font-weight: 600; color: #22302a; line-height: 1.25; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.sc-fbt__pr { font-size: 12.5px; font-weight: 650; color: #17251f; margin-top: 5px; }

.sc-foot { border-top: 1px solid #eee9dc; padding: 12px 20px 18px; background: #fff; box-shadow: 0 -10px 24px -20px rgba(16,31,26,.5); flex: none; }

/* progressive extras — promo code + note/gift-wrap disclosures */
.sc-extras { margin-bottom: 10px; }
.sc-ex { width: 100%; font-family: var(--font); display: flex; align-items: center; gap: 9px; background: none; border: 0; border-top: 1px solid #eee9dc; padding: 11px 2px; font-size: 13px; font-weight: 600; color: #22302a; text-align: left; cursor: pointer; transition: color .14s var(--ease); }
.sc-extras .sc-ex:first-child { border-top: 0; }
.sc-ex > svg:first-child { width: 16px; height: 16px; color: #586660; flex: none; }
.sc-ex__l { flex: 1; }
.sc-ex .chev { width: 16px; height: 16px; color: #9aa19c; flex: none; transition: transform .2s var(--ease); }
.sc-ex.is-open .chev { transform: rotate(180deg); }
.sc-ex:hover { color: var(--co-accent-ink); }
.sc-ex__panel { padding: 2px 2px 10px; }
.sc-promo { display: flex; gap: 8px; }
.sc-promo input { flex: 1; min-width: 0; font-family: var(--font); font-size: 13px; color: #17251f; border: 1px solid #ded7c8; border-radius: 9px; padding: 9px 11px; text-transform: uppercase; }
.sc-promo input:focus { outline: none; border-color: var(--accent-2); box-shadow: 0 0 0 3px rgba(18,148,108,.14); }
.sc-promo button { font-family: var(--font); font-size: 13px; font-weight: 650; padding: 0 15px; border-radius: 9px; border: 1px solid #ded7c8; background: #fff; color: #17251f; cursor: pointer; transition: border-color .14s var(--ease); }
.sc-promo button:hover:not(:disabled) { border-color: #69736b; }
.sc-promo button:disabled { color: #127a4e; border-color: #bfe6d2; background: #e7f6ee; cursor: default; }
.sc-note-in { width: 100%; font-family: var(--font); font-size: 13px; color: #17251f; border: 1px solid #ded7c8; border-radius: 9px; padding: 9px 11px; resize: vertical; min-height: 52px; }
.sc-note-in:focus { outline: none; border-color: var(--accent-2); box-shadow: 0 0 0 3px rgba(18,148,108,.14); }
.sc-gift { display: flex; align-items: center; gap: 10px; margin-top: 11px; font-size: 13px; color: #17251f; cursor: pointer; }
.sc-gift input { width: 17px; height: 17px; accent-color: var(--co-accent); flex: none; }
.sc-gift__l { flex: 1; display: inline-flex; align-items: center; gap: 7px; }
.sc-gift__l svg { width: 16px; height: 16px; color: #586660; flex: none; }
.sc-gift__fee { color: #586660; font-size: 12.5px; font-weight: 600; }

.sc-line { display: flex; align-items: center; justify-content: space-between; font-size: 13px; color: #586660; margin-bottom: 6px; }
.sc-line--disc { color: #127a4e; font-weight: 600; }

.sc-sub { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 2px; }
.sc-sub__l { font-size: 14px; font-weight: 600; color: #18271f; }
.sc-sub__v { font-size: 20px; font-weight: 700; letter-spacing: -.01em; color: #14211c; }
.sc-sub__note { font-size: 11.5px; color: #8a938e; margin-bottom: 12px; }
.sc-checkout {
  width: 100%; font-family: var(--font); font-size: 15px; font-weight: 650; cursor: pointer;
  border: 0; border-radius: 13px; padding: 14px 22px; color: #fff; background: var(--co-accent);
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  box-shadow: 0 8px 18px -9px rgba(11,91,67,.65);
  transition: filter .16s var(--ease), transform .1s var(--ease);
}
.sc-checkout:hover { filter: brightness(1.06); }
.sc-checkout:active { transform: translateY(1px); }
.sc-checkout svg { width: 17px; height: 17px; transition: transform .16s var(--ease); }
.sc-checkout:hover svg { transform: translateX(3px); }
.sc-trust { display: flex; align-items: center; justify-content: center; gap: 12px; margin-top: 11px; font-size: 11.5px; color: #6b756f; }
.sc-trust span { display: inline-flex; align-items: center; gap: 5px; }
.sc-trust svg { width: 13px; height: 13px; color: var(--co-accent); }
.sc-trust__dot { width: 3px; height: 3px; border-radius: 50%; background: #c4c9c3; }

.co-view.is-phone .sc-bg__cols { grid-template-columns: 1fr; }
.co-view.is-phone .sc-drawer { width: 100%; }
.co-view.is-phone .sc-bg__top, .co-view.is-phone .sc-bg__body { padding-left: 18px; padding-right: 18px; }
.co-view.is-tablet .sc-drawer { width: min(400px, 78%); }

/* ---------------------------------------------------------------------------
   Responsive collapse for the standalone checkout grid.

   Mirrors the real classic templates: on a TABLET the two-column layout is kept
   with a slimmer summary (real Beacon/Harbor/Quay narrow the summary to ~320px
   in a 761–1024 band); once collapsed to a single column it is centred at a
   comfortable lane width (real templates cap at 600–684px) instead of sprawling
   edge to edge. Bleed skins (Cedar/Maple) can't hold their split on a narrow
   screen, so they collapse to one centred column with the summary as a tinted
   card below — same as the real Cedar (@880) and Maple (@1024).
   --------------------------------------------------------------------------- */

/* TABLET (761–1024).
   Default: most skins collapse to one centred column — matching the real
   Glide/Arc (@900) and Cedar/Maple (@880–1024) classic templates. */
@media (min-width: 761px) and (max-width: 1024px) {
  .demo-page .co-grid {
    grid-template-columns: 1fr; gap: 22px;
    max-width: 620px; margin-inline: auto;
  }
  .demo-page .co-sum { position: static; }
  /* bleed split can't survive a tablet width — collapse it, centred.
     The 3-class .co--warm.co--bleed selector is spelled out so the warm skin's
     gradient (Maple) is actually killed and can't leak as a phantom stripe. */
  .co--bleed .co-grid,
  .co--warm.co--bleed .co-grid { grid-template-columns: 1fr; background: none; }
  .co--bleed .co-main { padding: 30px clamp(20px, 4vw, 40px) 40px; }
  .co--bleed .co-sum {
    position: static; background: #eef0ea; border: 1px solid #e2e2d7;
    border-radius: 14px; padding: 26px; margin-top: 22px;
  }
  .co--warm.co--bleed .co-sum { background: #f4ede1; }

  /* Beacon / Harbor / Quay keep TWO columns with a slim summary on a tablet,
     exactly like their real classic templates' 761–1024 band (1fr + 320px).
     The [data-skin] selector (specificity 0,3,1) out-ranks the default above. */
  .demo-page[data-skin="beacon"] .co-grid,
  .demo-page[data-skin="harbor"] .co-grid,
  .demo-page[data-skin="quay"] .co-grid {
    grid-template-columns: minmax(0, 1fr) 320px; gap: 24px;
    max-width: none; margin-inline: 0;
  }
  .demo-page[data-skin="beacon"] .co-sum,
  .demo-page[data-skin="harbor"] .co-sum,
  .demo-page[data-skin="quay"] .co-sum { position: sticky; }
}

/* MOBILE: single column, centred at a real-template lane width (~600px). */
@media (max-width: 760px) {
  .demo-page .co-grid {
    grid-template-columns: 1fr; gap: 22px;
    max-width: 600px; margin-inline: auto;
  }
  .demo-page .co-sum { position: static; }
  .co--bleed .co-grid,
  .co--warm.co--bleed .co-grid { grid-template-columns: 1fr; background: none; }
  .co--bleed .co-main { padding: 24px 2px 32px; }
  .co--bleed .co-sum {
    position: static; background: #eef0ea; border: 1px solid #e2e2d7;
    border-radius: 14px; padding: 22px; margin-top: 20px;
  }
  .co--warm.co--bleed .co-sum { background: #f4ede1; }
  .ty-cards { grid-template-columns: 1fr 1fr; }
}
/* Narrow top bar: drop the CTA + kind pill, and shrink the segments to icons
   so the surface + device switches always stay reachable. */
@media (max-width: 900px) {
  .demo-topbar__cta { display: none; }
}
@media (max-width: 720px) {
  .demo-seg button span { display: none; }
  .demo-seg button { padding: 8px 11px; }
  .demo-tool span { display: none; }
  .demo-tool { padding: 8px 10px; }
}
@media (max-width: 560px) {
  .demo-topbar__kind { display: none; }
  .demo-topbar__back span { display: none; }

  /* Thank-you: the 2×2 info grid is too tight on a phone — the values ("Visa
     ending 4242", "Jul 20, 2026") wrap awkwardly. Stack to one column, like the
     device phone-frame already does. */
  .ty-cards { grid-template-columns: 1fr; }
  .ty-card { border-left: 0; border-top: 1px solid #eee9dc; }
  .ty-card:first-child { border-top: 0; }
  .ty-sum__grid { grid-template-columns: 1fr; gap: 20px; }
  .ty-top { padding: 16px 18px; }
  .ty-wrap { padding: 34px 16px 46px; }
  .ty-sum { padding: 22px 18px; }

  /* Match the phone device-frame: full-width status card, vertical next-steps
     timeline, stacked address + help so nothing crowds at real phone widths. */
  .ty-status { max-width: none; }
  .ty-next, .ty-addr { padding: 20px 18px; }
  .ty-help { padding: 18px; }
  .ty-next__steps { grid-template-columns: 1fr; }
  .ty-next__step { flex-direction: row; text-align: left; gap: 14px; padding-bottom: 22px; }
  .ty-next__step:last-child { padding-bottom: 0; }
  .ty-next__step:not(:last-child)::after { top: 30px; left: 14px; width: 2px; height: 100%; }
  .ty-addr { grid-template-columns: 1fr; gap: 18px; }
  .ty-help { flex-direction: column; align-items: flex-start; }
  .ty-help__btn { align-self: stretch; justify-content: center; }

  /* Side cart: the drawer should take the whole width on a phone (a 92% drawer
     left an ugly sliver of the dimmed store page down the side). */
  .demo-page .sc-drawer { width: 100%; }
  .demo-page .sc-bg__cols { grid-template-columns: 1fr; }
  .demo-page .sc-bg__top, .demo-page .sc-bg__body { padding-left: 18px; padding-right: 18px; }
}
@media (min-width: 561px) and (max-width: 760px) {
  /* Side cart: on a small tablet keep the drawer prominent but off the very edge
     (phones go full-width in the ≤560 block above; this band must not re-widen). */
  .demo-page .sc-drawer { width: min(460px, 88%); }
}
@media (prefers-reduced-motion: reduce) {
  .sc-drawer, .co-acc__body { animation: none; }
  .demo-topbar__cta:hover, .sc-checkout:hover { transform: none; }
}
