/** Shopify CDN: Minification failed

Line 690:0 Unexpected "}"

**/
/* =====================================================================
   TIGHTKNIT — PDP styles (Shopify-compatible)
   Mirrors willa-brand.css tokens. Self-contained (no homepage CSS).
   Each section maps 1:1 to a Shopify section — see pdp.html top comment.
   ===================================================================== */

@font-face {
  font-family: "Figtree";
  src: url("Figtree-VariableFont_wght.ttf") format("truetype-variations"),
       url("Figtree-VariableFont_wght.ttf") format("truetype");
  font-weight: 300 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "ABC Laica";
  src: url("ABCLaica-RegularItalic-Trial.otf") format("opentype");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "PP Neue Gstaad";
  src: url("PPNeueGstaad-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --font:         "PP Neue Gstaad", system-ui, -apple-system, "Helvetica Neue", Helvetica, Arial, sans-serif;
  --font-display: "Figtree", system-ui, sans-serif;
  --font-italic:  "ABC Laica", Georgia, serif;

  --bg:        #f2eada;
  --cream:     #f8f1de;
  --warm:      #ece2cc;
  --warm-deep: #ddd0b3;
  --ink:        #282828;
  --ink-soft:   #4a4541;
  --note:       #8a7f6a;
  --pink:       #ffcff9;
  --pink-soft:  #fce6f5;
  --pink-deep:  #e8a8d8;
  --sand:       #f2cca6;
  --tan:        #b57f5c;
  --espresso:   #744435;
  --line-soft:  rgba(28, 28, 28, 0.08);
  --line:       rgba(28, 28, 28, 0.16);
  --r:    16px;
  --r-lg: 28px;
  --container: 1280px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}
img, svg, video { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; }
a { color: inherit; }

/* =====================================================================
   ANNOUNCEMENT BAR (sections/announcement-bar.liquid)
   ===================================================================== */
.pdp-topbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--ink);
  color: var(--bg);
}
.pdp-topbar__bar {
  text-align: center;
  padding: 12px 16px;
  font-size: 13px;
  letter-spacing: 0.02em;
  font-family: var(--font-display);
  font-weight: 500;
}
.pdp-topbar__bar strong { font-weight: 800; }

/* =====================================================================
   HERO (sections/main-product.liquid)
   ===================================================================== */
.pdp {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.pdp-hero {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 64px;
  padding: 56px 0;
  align-items: start;
}
@media (max-width: 960px) {
  .pdp-hero { grid-template-columns: 1fr; gap: 32px; padding: 32px 0; }
  .pdp { padding: 0 20px; }
}

.pdp-hero__gallery {
  position: sticky;
  top: 80px;
}
@media (max-width: 960px) {
  .pdp-hero__gallery { position: static; }
}

.pdp-hero__main {
  width: 100%;
  aspect-ratio: 4 / 5;
  background: var(--warm);
  background-size: cover;
  background-position: center;
  border-radius: var(--r-lg);
  border: 1px solid var(--line-soft);
  transition: background-image .25s;
}
.pdp-hero__thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 14px;
}
.pdp-hero__thumb {
  aspect-ratio: 1 / 1;
  border-radius: var(--r);
  background-size: cover;
  background-position: center;
  border: 2px solid transparent;
  background-color: var(--warm);
  transition: border-color .15s, transform .15s;
}
.pdp-hero__thumb:hover { transform: translateY(-2px); }
.pdp-hero__thumb.is-active { border-color: var(--ink); }

/* =====================================================================
   BUY BOX
   ===================================================================== */
.pdp-eyebrow {
  font-family: var(--font-italic);
  font-style: italic;
  font-size: 18px;
  color: var(--ink-soft);
  margin-bottom: 6px;
}
.pdp-h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(34px, 4vw, 48px);
  letter-spacing: -0.04em;
  line-height: 1.05;
}
.pdp-subhead {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--note);
  margin-top: 10px;
}
.pdp-rating {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 14px;
  flex-wrap: wrap;
}
.pdp-rating__stars { color: var(--pink-deep); font-size: 14px; letter-spacing: 0.05em; }
.pdp-rating__meta { font-size: 13px; color: var(--ink-soft); }

.pdp-price-row {
  display: flex;
  align-items: baseline;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 18px;
}
.pdp-price {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 32px;
  letter-spacing: -0.03em;
  color: var(--ink);
}
.pdp-price-was {
  color: var(--note);
  font-size: 18px;
}
.pdp-price-meta {
  font-size: 13px;
  color: var(--ink-soft);
  margin-left: 4px;
}

.pdp-pullquote {
  margin-top: 20px;
  padding: 18px 20px;
  background: var(--cream);
  border-left: 3px solid var(--pink-deep);
  border-radius: 0 var(--r) var(--r) 0;
  font-family: var(--font-italic);
  font-style: italic;
  font-size: 16px;
  line-height: 1.45;
}

/* =====================================================================
   STEP HEADER
   ===================================================================== */
.pdp-step { margin-top: 32px; }
.pdp-step__head {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 14px;
}
.pdp-step__num {
  font-family: var(--font-italic);
  font-size: 13px;
  color: var(--note);
}
.pdp-step__name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 18px;
  letter-spacing: -0.02em;
}

/* =====================================================================
   BUNDLE PICKER
   ===================================================================== */
.pdp-bundles { display: grid; gap: 12px; }
.pdp-bundle {
  position: relative;
  display: grid;
  grid-template-areas:
    "title price"
    "benefit benefit";
  grid-template-columns: 1fr auto;
  gap: 4px 16px;
  padding: 18px 20px;
  background: var(--cream);
  border: 2px solid var(--line-soft);
  border-radius: var(--r);
  cursor: pointer;
  transition: border-color .15s, background .15s, transform .15s;
}
.pdp-bundle:hover { transform: translateY(-1px); }
.pdp-bundle.is-selected {
  border-color: var(--ink);
  background: var(--bg);
}
.pdp-bundle input { position: absolute; opacity: 0; pointer-events: none; }
.pdp-bundle__badge {
  position: absolute;
  top: -10px;
  left: 16px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
  color: var(--ink);
  white-space: nowrap;
}
.pdp-bundle__badge--best    { background: var(--pink); }
.pdp-bundle__badge--popular { background: var(--sand); }
.pdp-bundle__title {
  grid-area: title;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 17px;
  letter-spacing: -0.01em;
}
.pdp-bundle__price {
  grid-area: price;
  text-align: right;
  font-size: 14px;
  color: var(--ink-soft);
}
.pdp-bundle__price strong {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 18px;
  color: var(--ink);
  margin-right: 4px;
}
.pdp-bundle__price s { color: var(--note); margin-right: 4px; }
.pdp-bundle__benefit {
  grid-area: benefit;
  font-family: var(--font-italic);
  font-style: italic;
  font-size: 14px;
  color: var(--ink-soft);
}

/* =====================================================================
   SHADE + SIZE PICKERS
   ===================================================================== */
.pdp-picker { margin-top: 28px; }
.pdp-picker__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 12px;
  flex-wrap: wrap;
  gap: 8px;
}
.pdp-picker__label {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.pdp-picker__note {
  font-family: var(--font-italic);
  font-style: italic;
  font-size: 13px;
  color: var(--note);
}
.pdp-picker__chart {
  font-size: 13px;
  color: var(--ink-soft);
  text-decoration: underline;
}
.pdp-picker__hint {
  font-size: 13px;
  color: var(--note);
  margin-top: 8px;
}

.pdp-shades {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.pdp-shade {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}
.pdp-shade input { position: absolute; opacity: 0; pointer-events: none; }
.pdp-shade__chip {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 2px solid transparent;
  outline: 1px solid var(--line-soft);
  outline-offset: -1px;
  transition: border-color .15s, transform .15s, outline-offset .15s;
}
.pdp-shade:hover .pdp-shade__chip { transform: scale(1.05); }
.pdp-shade.is-active .pdp-shade__chip {
  border-color: var(--ink);
  outline-offset: 2px;
}
.pdp-shade__name { font-size: 12px; color: var(--ink-soft); }

.pdp-sizes {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.pdp-size {
  background: var(--cream);
  border: 2px solid var(--line-soft);
  border-radius: var(--r);
  padding: 12px 16px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.02em;
  min-width: 56px;
  text-align: center;
  cursor: pointer;
  transition: border-color .15s, background .15s;
}
.pdp-size input { position: absolute; opacity: 0; pointer-events: none; }
.pdp-size:hover { border-color: var(--note); }
.pdp-size.is-active {
  border-color: var(--ink);
  background: var(--bg);
}

/* =====================================================================
   ADD TO CART
   ===================================================================== */
.pdp-cta {
  display: block;
  width: 100%;
  margin-top: 28px;
  background: var(--ink);
  color: var(--bg);
  padding: 18px 24px;
  border: 0;
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 16px;
  letter-spacing: 0.02em;
  text-align: center;
  text-decoration: none;
  transition: transform .15s, box-shadow .15s;
}
.pdp-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(28, 28, 28, 0.18);
}
.pdp-express-placeholder {
  margin-top: 14px;
  padding: 14px;
  border: 1px dashed var(--line);
  border-radius: var(--r);
  text-align: center;
  font-size: 12px;
  color: var(--note);
  font-family: var(--font-italic);
  font-style: italic;
}

.pdp-trust {
  list-style: none;
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 20px;
  font-size: 13px;
  color: var(--ink-soft);
}

/* =====================================================================
   SOCIAL PROOF STRIP
   ===================================================================== */
.pdp-social {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding: 48px 0;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}
@media (max-width: 720px) {
  .pdp-social { grid-template-columns: 1fr; }
}
.pdp-social__quote {
  background: var(--cream);
  border-radius: var(--r);
  padding: 20px;
  border: 1px solid var(--line-soft);
}
.pdp-social__stars {
  color: var(--pink-deep);
  font-size: 13px;
  letter-spacing: 0.05em;
  display: block;
  margin-bottom: 8px;
}
.pdp-social__quote p {
  font-family: var(--font-italic);
  font-style: italic;
  font-size: 16px;
  line-height: 1.45;
}
.pdp-social__quote cite {
  display: block;
  margin-top: 10px;
  font-size: 12px;
  color: var(--note);
  font-style: normal;
}

/* =====================================================================
   SECTION HEADERS, UPSELL, GUARANTEE, FAQ
   ===================================================================== */
.pdp-section-h {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(24px, 3vw, 32px);
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 20px;
  text-align: center;
}

.pdp-upsell { padding: 48px 0; }
.pdp-upsell__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
@media (max-width: 720px) {
  .pdp-upsell__grid { grid-template-columns: 1fr; }
}
.pdp-upsell__item {
  background: var(--cream);
  border: 2px solid var(--line-soft);
  border-radius: var(--r);
  padding: 20px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  grid-template-areas:
    "check name price"
    "check desc desc";
  gap: 6px 16px;
  cursor: pointer;
  transition: border-color .15s;
}
.pdp-upsell__item:hover { border-color: var(--note); }
.pdp-upsell__item input {
  grid-area: check;
  align-self: center;
  width: 20px;
  height: 20px;
  accent-color: var(--ink);
}
.pdp-upsell__name {
  grid-area: name;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 15px;
}
.pdp-upsell__price {
  grid-area: price;
  font-size: 14px;
  text-align: right;
  white-space: nowrap;
}
.pdp-upsell__price s { color: var(--note); margin-right: 4px; }
.pdp-upsell__price em {
  font-family: var(--font-italic);
  font-size: 11px;
  color: var(--pink-deep);
  display: block;
}
.pdp-upsell__desc {
  grid-area: desc;
  font-size: 13px;
  color: var(--ink-soft);
  font-family: var(--font-italic);
  font-style: italic;
}

.pdp-guarantee {
  padding: clamp(56px, 7vw, 96px) 0;
  text-align: center;
  border-top: 1px solid var(--line-soft);
}
.pdp-guarantee .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.pdp-guarantee__eyebrow {
  font-family: var(--font-italic);
  font-style: italic;
  font-size: 14px;
  color: var(--note);
  margin-bottom: 8px;
}
.pdp-guarantee__body {
  max-width: 620px;
  margin: 0 auto;
  font-size: 16px;
  color: var(--ink-soft);
  line-height: 1.6;
}

.pdp-faq { padding: clamp(56px, 7vw, 96px) 0; }
.pdp-faq__list {
  max-width: 720px;
  margin: 0 auto;
}
.pdp-faq__item {
  border-bottom: 1px solid var(--line-soft);
  padding: 18px 0;
}
.pdp-faq__item:first-of-type { border-top: 1px solid var(--line-soft); }
.pdp-faq__item summary {
  list-style: none;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: var(--font-size-body-1);
  font-weight: 400;
  letter-spacing: 0;
  padding: 16px 40px 16px 0;
  position: relative;
  color: var(--ink);
  transition: opacity 0.2s ease;
}
.pdp-faq__item summary:hover { opacity: 0.7; }
.pdp-faq__item summary::-webkit-details-marker { display: none; }
.pdp-faq__item summary::after {
  content: "+";
  position: absolute;
  right: 4px;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 400;
  color: var(--ink);
  transition: transform 0.2s ease;
}
.pdp-faq__item[open] summary::after { content: "−"; }
.pdp-faq__item p {
  padding: 0 40px 18px 0;
  font-size: var(--font-size-body-1);
  color: var(--ink-soft);
  line-height: 1.6;
  max-width: 70ch;
}

/* =====================================================================
   STICKY MOBILE BUY BAR
   ===================================================================== */
.pdp-stickybar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 90;
  display: none;
  background: var(--ink);
  color: var(--bg);
  padding: 12px 16px;
  box-shadow: 0 -8px 24px rgba(28, 28, 28, 0.18);
  transform: translateY(110%);
  transition: transform 0.3s ease;
}
.pdp-stickybar--visible { transform: translateY(0); }
.pdp-stickybar__inner {
  display: flex;
  align-items: center;
  gap: 12px;
}
.pdp-stickybar__copy {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-width: 0;
  font-size: 13px;
}
.pdp-stickybar__copy strong {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 14px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.pdp-stickybar__cta {
  background: var(--pink);
  color: var(--ink);
  border: 0;
  padding: 12px 18px;
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.02em;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
}
@media (max-width: 720px) {
  .pdp-stickybar { display: block; }
  body { padding-bottom: 80px; }
}
}

/* =====================================================================
   INLINE ADD-ONS (above ATC) — compact CRO placement
   ===================================================================== */
.pdp__addons {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 16px 0 14px;
  padding: 14px 14px 12px;
  background: var(--cream, #fbf6ee);
  border: 1px solid var(--line-soft, #e6e0d3);
  border-radius: var(--r, 12px);
}
.pdp__addons-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 2px;
}
.pdp__addons-label {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--ink, #1c1c1c);
}
.pdp__addon {
  display: grid;
  grid-template-columns: 22px 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 10px 4px;
  cursor: pointer;
  border-top: 1px solid var(--line-soft, #ece5d6);
  transition: background-color .12s;
}
.pdp__addon:first-of-type { border-top: 0; }
.pdp__addon:hover { background-color: rgba(0,0,0,0.02); }
.pdp__addon input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
  width: 0;
  height: 0;
}
.pdp__addon-check {
  width: 20px;
  height: 20px;
  border: 1.5px solid var(--ink, #1c1c1c);
  border-radius: 5px;
  background: #fff;
  position: relative;
  flex-shrink: 0;
  transition: background-color .12s, border-color .12s;
}
.pdp__addon-check::after {
  content: "";
  position: absolute;
  inset: 3px 4px 4px 3px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 10'><path fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' d='M1 5.5 L4.5 9 L11 1.5'/></svg>");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0;
  transition: opacity .12s;
}
.pdp__addon input:checked ~ .pdp__addon-check {
  background: var(--ink, #1c1c1c);
  border-color: var(--ink, #1c1c1c);
}
.pdp__addon input:checked ~ .pdp__addon-check::after { opacity: 1; }
.pdp__addon input:focus-visible ~ .pdp__addon-check {
  outline: 2px solid var(--ink, #1c1c1c);
  outline-offset: 2px;
}
.pdp__addon-body {
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.pdp__addon-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  line-height: 1.3;
  color: var(--ink, #1c1c1c);
}
.pdp__addon-desc {
  font-size: 12px;
  line-height: 1.35;
  color: var(--ink-soft, #6b6357);
  margin-top: 2px;
}
.pdp__addon-price {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  font-family: var(--font-display);
  font-size: 13px;
  white-space: nowrap;
}
.pdp__addon-price s {
  color: var(--note, #9b9281);
  font-weight: 400;
  font-size: 11px;
  margin-bottom: 1px;
}
.pdp__addon-price strong {
  font-weight: 800;
  color: var(--ink, #1c1c1c);
}
.pdp__addon-price em {
  font-family: var(--font-italic, var(--font-display));
  font-style: italic;
  font-weight: 500;
  font-size: 11px;
  color: var(--pink-deep, #b3576b);
  margin-top: 2px;
}

/* =====================================================================
   PROOF STRIP — torture-tested
   ===================================================================== */
.proof-strip { text-align: center; }
.proof-strip__heading {
  margin: 0 auto 14px;
  max-width: 22ch;
}
.proof-strip__subhead {
  font-family: var(--font-italic);
  font-style: italic;
  color: var(--ink-soft);
  font-size: clamp(15px, 1.6vw, 17px);
  line-height: 1.5;
  max-width: 56ch;
  margin: 0 auto 44px;
}
.proof-strip__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
@media (max-width: 900px) {
  .proof-strip__grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
}
.proof-cell {
  background: var(--cream);
  border: 1px solid var(--line-soft);
  border-radius: var(--r);
  padding: 28px 20px 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform .25s ease, border-color .25s ease;
}
.proof-cell:hover {
  transform: translateY(-2px);
  border-color: var(--ink);
}
.proof-cell__media {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: calc(var(--r) - 4px);
  background: #fff;
  border: 1px solid var(--line-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  overflow: hidden;
}
.proof-cell__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.proof-cell__glyph {
  font-family: var(--font-display);
  font-size: 36px;
  color: var(--pink-deep);
}
.proof-cell__threat {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  color: var(--ink);
  margin: 0 0 6px;
  letter-spacing: -0.01em;
}
.proof-cell__outcome {
  font-family: var(--font-italic);
  font-style: italic;
  font-size: 14px;
  color: var(--pink-deep);
  margin: 0;
}
.proof-strip__footnote {
  font-family: var(--font-italic);
  font-style: italic;
  color: var(--note);
  font-size: 13px;
  margin: 36px 0 0;
}

/* =====================================================================
   COST PER WEAR — the math, plainly
   ===================================================================== */
.cpw {
  background: var(--cream);
  text-align: center;
}
.cpw__heading {
  margin: 0 auto 40px;
  max-width: 20ch;
}
.cpw__grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 32px;
  max-width: 880px;
  margin: 0 auto;
}
@media (max-width: 760px) {
  .cpw__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}
.cpw__col {
  background: #fff;
  border: 1px solid var(--line-soft);
  border-radius: var(--r);
  padding: 36px 28px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}
.cpw__col--good {
  background: var(--pink-soft);
  border-color: var(--pink);
  box-shadow: 0 1px 0 var(--pink);
}
.cpw__col-label {
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--note);
  margin: 0 0 14px;
}
.cpw__col--good .cpw__col-label { color: var(--ink); }
.cpw__equation {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(20px, 2.4vw, 26px);
  color: var(--ink-soft);
  margin: 0 0 12px;
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  letter-spacing: -0.01em;
}
.cpw__op {
  color: var(--note);
  font-weight: 400;
  font-size: 0.85em;
}
.cpw__num { white-space: nowrap; }
.cpw__total {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(36px, 5vw, 56px);
  letter-spacing: -0.04em;
  line-height: 1;
  margin: 6px 0 12px;
}
.cpw__total--bad {
  color: var(--note);
  text-decoration: line-through;
  text-decoration-thickness: 2px;
  text-decoration-color: rgba(28, 28, 28, 0.25);
}
.cpw__total--good { color: var(--ink); }
.cpw__caption {
  font-family: var(--font-italic);
  font-style: italic;
  font-size: 14px;
  color: var(--ink-soft);
  margin: 0;
  max-width: 24ch;
  line-height: 1.45;
}
.cpw__divider {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: var(--note);
}
@media (max-width: 760px) {
  .cpw__divider { flex-direction: row; gap: 12px; padding: 4px 0; }
}
.cpw__divider-line {
  width: 1px;
  height: 60px;
  background: var(--line-soft);
}
@media (max-width: 760px) {
  .cpw__divider-line { width: 60px; height: 1px; }
}
.cpw__divider-mark {
  font-family: var(--font-italic);
  font-style: italic;
  font-size: 14px;
  color: var(--pink-deep);
}
.cpw__footnote {
  font-family: var(--font-italic);
  font-style: italic;
  color: var(--ink-soft);
  font-size: 14px;
  margin: 36px auto 0;
  max-width: 50ch;
}
