/* ============================================================
   LINGEA — layout & components
   ============================================================ */

.app { min-height: 100vh; display: flex; flex-direction: column; }
.app > main { flex: 1 0 auto; }

/* ---------- Announcement ---------- */
.announce {
  display: flex; align-items: center; justify-content: center; gap: 14px;
  background: var(--ink); color: var(--paper);
  font-family: var(--sans); font-weight: 300;
  font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  padding: 11px 16px; text-align: center; white-space: nowrap;
}
.announce .dot { opacity: .5; }
@media (max-width: 720px) { .announce span:not(.dot) { display: none; } .announce span:first-child { display: inline; } .announce .dot { display: none; } }

/* ---------- Header ---------- */
.site-head {
  position: sticky; top: 0; z-index: 100;
  background: transparent;
  transition: background .5s var(--ease), border-color .5s var(--ease), box-shadow .5s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-head.solid {
  background: rgba(252,251,248,0.9);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--line);
}
.head-inner {
  height: var(--header-h);
  max-width: var(--maxw); margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: center;
}
.head-nav { display: flex; align-items: center; gap: 32px; }
.head-nav.right { justify-content: flex-end; }
.nav-link {
  font-family: var(--sans); font-weight: 400;
  font-size: 11.5px; letter-spacing: 0.18em; text-transform: uppercase;
  white-space: nowrap;
  color: var(--ink); position: relative; padding: 4px 0;
  transition: color .3s;
}
.nav-link::after {
  content: ""; position: absolute; left: 0; bottom: -2px; width: 0; height: 1px;
  background: var(--accent-deep); transition: width .4s var(--ease);
}
.nav-link:hover::after { width: 100%; }
.nav-link:hover { color: var(--accent-deep); }

.wordmark {
  font-family: var(--display); font-weight: 500;
  font-size: 30px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ink); line-height: 1; padding: 0 6px;
}
.wordmark.big { font-size: 40px; }

.bag-btn { display: inline-flex; align-items: center; gap: 6px; }
.bag-count {
  font-family: var(--sans); font-size: 11px; letter-spacing: .04em;
  min-width: 14px; color: var(--accent-deep);
}

@media (max-width: 760px) {
  .head-nav.left { gap: 18px; }
  .head-nav .nav-link:not(.bag-btn) { display: none; }
  .head-nav.left .nav-link:first-child { display: inline; }
  .wordmark { font-size: 24px; }
}

/* ---------- Hero ---------- */
.hero {
  display: grid; grid-template-columns: 1fr 1.05fr; align-items: stretch;
  min-height: calc(100vh - var(--header-h) - 40px);
  border-bottom: 1px solid var(--line);
}
.hero-text {
  display: flex; flex-direction: column; justify-content: center;
  padding: 6vh var(--gutter) 6vh;
}
.hero-h1 { font-size: clamp(56px, 8.2vw, 138px); margin: 22px 0 0; }
.hero-p { max-width: 440px; margin: 30px 0 0; font-size: 17px; }
.hero-cta { display: flex; align-items: center; gap: 30px; margin-top: 40px; flex-wrap: wrap; }
.hero-img {
  position: relative; background: #fff; display: block;
  border-left: 1px solid var(--line); overflow: hidden;
}
.hero-img img { width: 100%; height: 100%; object-fit: cover; object-position: center; transition: transform 1.6s var(--ease); }
.hero-img:hover img { transform: scale(1.03); }
.hero-tag {
  position: absolute; left: 28px; bottom: 26px;
  display: flex; flex-direction: column; gap: 4px;
  background: rgba(252,251,248,0.86); backdrop-filter: blur(6px);
  padding: 12px 18px; text-align: left;
}
.hero-tag-price { font-family: var(--display); font-size: 22px; }
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; }
  .hero-img { aspect-ratio: 1/1; border-left: 0; border-top: 1px solid var(--line); order: -1; }
  .hero-text { padding-top: 7vh; padding-bottom: 7vh; }
}

/* ---------- Manifesto ---------- */
.manifesto { padding: clamp(70px, 12vh, 150px) var(--gutter); max-width: 1060px; }
.manifesto-line { font-size: clamp(30px, 4.1vw, 60px); margin: 20px 0 0; max-width: 18ch; }
.manifesto-sub { margin-top: 34px; max-width: 54ch; font-size: 17px; }

/* ---------- Section head ---------- */
.section-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; margin-bottom: 46px; }
.section-title { font-size: clamp(34px, 4vw, 60px); margin: 14px 0 0; }
.section-title.small { font-size: clamp(28px, 3vw, 42px); }

/* ---------- Featured editorial rows ---------- */
.featured { display: flex; flex-direction: column; }
.feat-row {
  display: grid; grid-template-columns: 1.1fr 1fr; align-items: center;
  border-top: 1px solid var(--line);
}
.feat-row.rev .feat-img { order: 2; }
.feat-img { background: #fff; display: block; aspect-ratio: 5/4; overflow: hidden; border-right: 1px solid var(--line); }
.feat-row.rev .feat-img { border-right: 0; border-left: 1px solid var(--line); }
.feat-img img { width: 100%; height: 100%; object-fit: contain; transition: transform 1.5s var(--ease); }
.feat-img:hover img { transform: scale(1.04); }
.feat-meta { padding: clamp(40px, 6vw, 96px); }
.feat-name { font-size: clamp(44px, 5.2vw, 84px); margin: 18px 0 26px; }
.feat-name em { font-style: italic; color: var(--accent-deep); }
.feat-story { max-width: 46ch; }
.feat-foot { display: flex; align-items: center; gap: 32px; margin-top: 34px; }
.feat-price { font-family: var(--display); font-size: 26px; }
@media (max-width: 880px) {
  .feat-row, .feat-row.rev { grid-template-columns: 1fr; }
  .feat-row.rev .feat-img { order: -1; border-left: 0; }
  .feat-img { border-right: 0; }
}

/* ---------- Product grid + cards ---------- */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(20px, 3vw, 44px) clamp(18px, 2.4vw, 36px); }
@media (max-width: 900px) { .grid-3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .grid-3 { grid-template-columns: 1fr; } }

.coll-preview { padding: clamp(60px, 10vh, 130px) var(--gutter); }

.pcard { display: block; text-align: left; width: 100%; }
.pcard-img { position: relative; background: #fff; border: 1px solid var(--line-soft); overflow: hidden; }
.pcard-img .pimg { transition: transform 1.3s var(--ease); }
.pcard:hover .pcard-img .pimg img { transform: scale(1.05); }
.pcard-edition {
  position: absolute; top: 14px; left: 14px;
  font-family: var(--sans); font-size: 10px; letter-spacing: .18em; text-transform: uppercase;
  color: var(--ink-soft); background: rgba(252,251,248,.8); padding: 4px 9px;
}
.pcard-meta { padding: 18px 4px 0; }
.pcard-namerow { display: flex; align-items: baseline; justify-content: space-between; gap: 14px; }
.pcard-name { font-family: var(--display); font-weight: 400; font-size: 24px; margin: 0; line-height: 1.1; }
.pcard-variant { color: var(--accent-deep); font-style: italic; font-size: 20px; }
.pcard-price { font-family: var(--display); font-size: 20px; white-space: nowrap; }
.pcard-type { font-family: var(--sans); font-weight: 300; font-size: 12.5px; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-faint); margin: 8px 0 0; }

/* ---------- De-risk ---------- */
.derisk { background: var(--ivory); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: clamp(64px, 10vh, 130px) 0; }
.derisk-head { max-width: 720px; margin-bottom: 60px; }
.derisk-head .section-title { font-size: clamp(30px, 3.4vw, 50px); max-width: 16ch; }
.derisk-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(28px, 4vw, 64px); }
.derisk-cell { border-top: 1px solid var(--ink); padding-top: 26px; }
.derisk-ic { color: var(--accent-deep); display: block; margin-bottom: 20px; }
.derisk-cell h3 { font-family: var(--display); font-weight: 400; font-size: 27px; margin: 0 0 14px; }
@media (max-width: 820px) { .derisk-grid { grid-template-columns: 1fr; gap: 36px; } }

/* ---------- Trust row (optional) ---------- */
.trust-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 36px; }
.trust-cell h4 { font-family: var(--display); font-weight: 400; font-size: 21px; margin: 14px 0 8px; }
.trust-cell p { font-size: 13.5px; line-height: 1.6; color: var(--ink-soft); margin: 0; }
.trust-ic { color: var(--accent-deep); }
@media (max-width: 820px) { .trust-row { grid-template-columns: 1fr 1fr; } }

/* ---------- Quote band ---------- */
.quote-band { background: var(--ink); color: var(--paper); padding: clamp(80px, 14vh, 170px) 0; text-align: center; }
.quote-band .wrap { display: flex; flex-direction: column; align-items: center; }
.quote-line { font-size: clamp(28px, 3.8vw, 54px); max-width: 20ch; margin: 0 0 28px; line-height: 1.2; }
.quote-band .eyebrow { color: var(--accent-soft); }
.quote-band .btn.ghost { color: var(--paper); border-color: rgba(252,251,248,.5); }
.quote-band .btn.ghost:hover { background: var(--paper); color: var(--ink); border-color: var(--paper); }

/* ---------- Collection page ---------- */
.coll-page { padding-top: clamp(40px, 6vh, 70px); }
.coll-hero { padding-bottom: clamp(34px, 5vh, 56px); border-bottom: 1px solid var(--line); margin-bottom: clamp(40px, 6vh, 64px); }
.coll-title { font-size: clamp(46px, 7vw, 104px); margin: 16px 0 0; }
.coll-intro { max-width: 50ch; margin: 24px 0 0; }
.coll-filter { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 40px; }
.filter-pill {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--sans); font-weight: 400; font-size: 11.5px; letter-spacing: .16em; text-transform: uppercase;
  padding: 12px 20px; border: 1px solid var(--line); border-radius: 100px; color: var(--ink-soft);
  transition: all .35s var(--ease);
}
.filter-pill:hover { border-color: var(--ink); color: var(--ink); }
.filter-pill.active { background: var(--ink); border-color: var(--ink); color: var(--paper); }
.filter-count { font-size: 10px; opacity: .6; }
.coll-grid { padding-bottom: clamp(70px, 12vh, 140px); }

/* ---------- Product detail ---------- */
.prod-page { padding-top: clamp(24px, 4vh, 40px); }
.prod-crumb { display: flex; align-items: center; gap: 10px; font-family: var(--sans); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-faint); margin-bottom: 30px; }
.prod-crumb button { color: var(--ink-faint); transition: color .3s; }
.prod-crumb button:hover { color: var(--accent-deep); }
.crumb-here { color: var(--ink); }

.prod-main { display: grid; grid-template-columns: 1.15fr 1fr; gap: clamp(36px, 5vw, 88px); align-items: start; padding-bottom: clamp(60px, 9vh, 120px); }
.prod-gallery { position: sticky; top: calc(var(--header-h) + 24px); }
.prod-img-main { position: relative; background: #fff; border: 1px solid var(--line-soft); }
.prod-img-main .pimg { aspect-ratio: 1/1; }
.prod-edition-tag { position: absolute; top: 18px; left: 18px; font-family: var(--sans); font-size: 10px; letter-spacing: .2em; text-transform: uppercase; color: var(--ink-soft); background: rgba(252,251,248,.85); padding: 5px 11px; }

.prod-info { padding-top: 8px; }
.prod-name { font-size: clamp(46px, 5.4vw, 78px); margin: 14px 0 0; line-height: 1.04; }
.prod-name em { font-style: italic; color: var(--accent-deep); }
.prod-short { font-family: var(--display); font-weight: 300; font-size: clamp(20px, 2vw, 26px); line-height: 1.4; color: var(--ink-soft); margin: 24px 0 0; max-width: 38ch; }
.prod-price { font-family: var(--display); font-size: 34px; margin: 26px 0 0; }

.prod-size { margin-top: 34px; }
.prod-size-label { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.size-guide { font-family: var(--sans); font-size: 10.5px; letter-spacing: .12em; text-transform: uppercase; color: var(--accent-deep); border-bottom: 1px solid var(--accent-soft); padding-bottom: 2px; }
.size-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 8px; }
.size-chip { font-family: var(--sans); font-size: 13px; padding: 11px 0; border: 1px solid var(--line); color: var(--ink-soft); transition: all .25s var(--ease); }
.size-chip:hover { border-color: var(--ink); color: var(--ink); }
.size-chip.active { background: var(--ink); border-color: var(--ink); color: var(--paper); }
.size-warn { font-family: var(--sans); font-size: 12px; color: var(--accent-deep); margin: 12px 0 0; letter-spacing: .04em; }

.prod-actions { margin-top: 34px; }
.add-btn.done { background: var(--accent-deep); border-color: var(--accent-deep); color: var(--paper); }
.prod-made { font-family: var(--sans); font-size: 12px; letter-spacing: .04em; color: var(--ink-faint); text-align: center; margin: 14px 0 0; }

.prod-story { margin-top: 40px; padding-top: 34px; border-top: 1px solid var(--line); font-size: 16px; max-width: 50ch; }

.spec { margin: 34px 0 0; padding: 0; }
.spec-row { display: grid; grid-template-columns: 130px 1fr; gap: 18px; padding: 14px 0; border-top: 1px solid var(--line-soft); }
.spec-row dt { font-family: var(--sans); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-faint); padding-top: 2px; }
.spec-row dd { font-family: var(--display); font-weight: 400; font-size: 18px; margin: 0; color: var(--ink); }

.prod-accs { margin-top: 36px; border-top: 1px solid var(--line); }
.acc { border-bottom: 1px solid var(--line); }
.acc-head { display: flex; align-items: center; justify-content: space-between; width: 100%; padding: 20px 0; font-family: var(--sans); font-weight: 400; font-size: 12px; letter-spacing: .16em; text-transform: uppercase; color: var(--ink); }
.acc-sign { color: var(--accent-deep); }
.acc-body { overflow: hidden; max-height: 0; transition: max-height .5s var(--ease); }
.acc.open .acc-body { max-height: 320px; }
.acc-inner { padding: 0 0 22px; font-size: 14.5px; max-width: 52ch; }

.prod-related { padding-bottom: clamp(70px, 12vh, 140px); }

/* ---------- Story page ---------- */
.story-page { }
.story-hero { padding: clamp(50px, 9vh, 110px) var(--gutter) clamp(40px, 6vh, 70px); max-width: 1080px; }
.story-h1 { font-size: clamp(54px, 8vw, 130px); margin: 18px 0 0; }
.story-lede { font-size: clamp(18px, 1.9vw, 23px); max-width: 56ch; margin: 32px 0 0; line-height: 1.6; color: var(--ink-soft); }

.story-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(28px, 4vw, 60px); padding-bottom: clamp(60px, 9vh, 120px); }
.story-col { border-top: 1px solid var(--ink); padding-top: 24px; }
.story-num { font-family: var(--display); font-style: italic; font-size: 24px; color: var(--accent-deep); }
.story-col h3 { font-family: var(--display); font-weight: 400; font-size: 27px; margin: 12px 0 14px; }
@media (max-width: 820px) { .story-cols { grid-template-columns: 1fr; gap: 36px; } }

.story-feature { display: grid; grid-template-columns: 1.1fr 1fr; align-items: center; background: var(--ivory); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.story-feat-img { background: #fff; aspect-ratio: 4/3; display: block; overflow: hidden; border-right: 1px solid var(--line); }
.story-feat-img img { width: 100%; height: 100%; object-fit: contain; transition: transform 1.5s var(--ease); }
.story-feat-img:hover img { transform: scale(1.04); }
.story-feat-text { padding: clamp(40px, 6vw, 92px); }
.story-feat-text h2 { font-size: clamp(40px, 4.6vw, 68px); margin: 16px 0 22px; }
.story-feat-text .body { max-width: 44ch; margin-bottom: 26px; }
@media (max-width: 880px) { .story-feature { grid-template-columns: 1fr; } .story-feat-img { border-right: 0; } }

.story-materials { padding: clamp(64px, 10vh, 130px) var(--gutter); }
.story-mat-head { margin-bottom: 50px; }
.story-mat-head .section-title { margin-bottom: 22px; }
.mat-list { margin: 0; }
.mat-row { display: grid; grid-template-columns: 200px 1fr; gap: 30px; padding: 28px 0; border-top: 1px solid var(--line); }
.mat-row dt { font-family: var(--display); font-weight: 400; font-size: 28px; }
.mat-row dd { margin: 0; max-width: 60ch; padding-top: 6px; }
@media (max-width: 720px) { .mat-row { grid-template-columns: 1fr; gap: 10px; } }

.story-derisk { background: var(--ink); color: var(--paper); }
.story-derisk-in { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 5vw, 80px); align-items: center; padding: clamp(60px, 9vh, 120px) var(--gutter); }
.story-derisk-img { background: #fff; aspect-ratio: 4/3; overflow: hidden; }
.story-derisk-img img { width: 100%; height: 100%; object-fit: contain; }
.story-derisk-text .section-title { color: var(--paper); margin: 16px 0 26px; max-width: 14ch; }
.story-derisk-text .eyebrow { color: var(--accent-soft); }
.story-derisk-list { list-style: none; padding: 0; margin: 0 0 34px; color: rgba(252,251,248,.78); }
.story-derisk-list li { padding: 16px 0; border-top: 1px solid rgba(252,251,248,.16); font-size: 15px; }
.story-derisk-list strong { color: var(--paper); font-weight: 400; }
.story-derisk-text .btn.ghost { color: var(--paper); border-color: rgba(252,251,248,.5); }
.story-derisk-text .btn.ghost:hover { background: var(--paper); color: var(--ink); border-color: var(--paper); }
@media (max-width: 820px) { .story-derisk-in { grid-template-columns: 1fr; } }

.story-cta { text-align: center; padding: clamp(80px, 13vh, 160px) var(--gutter); display: flex; flex-direction: column; align-items: center; }
.story-cta-h { font-size: clamp(38px, 5vw, 72px); margin: 16px 0 0; }

/* ---------- Footer ---------- */
.site-foot { background: var(--ink); color: var(--paper); padding: clamp(60px, 9vh, 110px) 0 40px; margin-top: auto; }
.foot-top { display: grid; grid-template-columns: 1.1fr 1.6fr; gap: 60px; padding-bottom: 56px; border-bottom: 1px solid rgba(252,251,248,.16); }
.foot-brand .wordmark { color: var(--paper); }
.foot-brand .body { color: rgba(252,251,248,.62); }
.foot-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 36px; }
.foot-col { display: flex; flex-direction: column; align-items: flex-start; gap: 12px; }
.foot-col .eyebrow { color: var(--accent-soft); margin-bottom: 6px; }
.foot-col button { font-family: var(--sans); font-weight: 300; font-size: 14px; color: rgba(252,251,248,.72); transition: color .3s; text-align: left; }
.foot-col button:hover { color: var(--paper); }
.foot-col.news .body { color: rgba(252,251,248,.62); }
.news-form { display: flex; align-items: center; border-bottom: 1px solid rgba(252,251,248,.4); width: 100%; max-width: 280px; }
.news-form input { flex: 1; background: none; border: none; color: var(--paper); font-family: var(--sans); font-weight: 300; font-size: 14px; padding: 10px 0; outline: none; }
.news-form input::placeholder { color: rgba(252,251,248,.45); }
.news-form button { color: var(--paper); padding: 8px; transition: transform .4s var(--ease); }
.news-form button:hover { transform: translateX(4px); }
.foot-bottom { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding-top: 30px; font-family: var(--sans); font-size: 12px; letter-spacing: .06em; color: rgba(252,251,248,.5); }
.foot-legal { display: flex; gap: 22px; }
.foot-legal button { color: rgba(252,251,248,.5); transition: color .3s; }
.foot-legal button:hover { color: var(--paper); }
@media (max-width: 820px) {
  .foot-top { grid-template-columns: 1fr; gap: 44px; }
  .foot-cols { grid-template-columns: 1fr 1fr; }
  .foot-bottom { flex-direction: column; align-items: flex-start; gap: 14px; }
}

/* ---------- Bag drawer ---------- */
.bag-scrim { position: fixed; inset: 0; background: rgba(26,24,21,0); z-index: 190; pointer-events: none; transition: background .5s var(--ease); }
.bag-scrim.show { background: rgba(26,24,21,0.42); pointer-events: auto; }
.bag {
  position: fixed; top: 0; right: 0; height: 100%; width: min(440px, 100vw);
  background: var(--paper); z-index: 200; transform: translateX(100%);
  transition: transform .55s var(--ease); display: flex; flex-direction: column;
  box-shadow: -30px 0 80px rgba(26,24,21,0.12);
}
.bag.open { transform: none; }
.bag-head { display: flex; align-items: center; justify-content: space-between; padding: 26px 28px; border-bottom: 1px solid var(--line); }
.bag-x { color: var(--ink); transition: opacity .3s; }
.bag-x:hover { opacity: .55; }

.bag-empty { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 18px; text-align: center; padding: 40px; }
.bag-empty .serif-quote { font-size: 28px; }

.bag-lines { flex: 1; overflow-y: auto; padding: 8px 28px; }
.bag-line { display: grid; grid-template-columns: 92px 1fr; gap: 18px; padding: 24px 0; border-bottom: 1px solid var(--line-soft); }
.bag-thumb { background: #fff; border: 1px solid var(--line-soft); aspect-ratio: 1; display: block; }
.bag-thumb .pimg { aspect-ratio: 1; }
.bag-line-top { display: flex; justify-content: space-between; gap: 12px; }
.bag-line-meta h4 { font-family: var(--display); font-weight: 400; font-size: 20px; margin: 0; line-height: 1.1; }
.bag-line-meta h4 span { color: var(--accent-deep); font-style: italic; }
.bag-line-type { font-family: var(--sans); font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-faint); margin: 6px 0 0; }
.bag-remove { font-family: var(--sans); font-size: 10.5px; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-faint); height: fit-content; transition: color .3s; }
.bag-remove:hover { color: var(--accent-deep); }
.bag-line-bottom { display: flex; align-items: center; justify-content: space-between; margin-top: 16px; }
.qty { display: inline-flex; align-items: center; border: 1px solid var(--line); }
.qty button { width: 30px; height: 30px; display: grid; place-items: center; color: var(--ink); transition: background .3s; }
.qty button:hover { background: var(--ivory); }
.qty span { min-width: 30px; text-align: center; font-family: var(--sans); font-size: 13px; }
.bag-line-price { font-family: var(--display); font-size: 19px; }

.bag-foot { border-top: 1px solid var(--line); padding: 22px 28px 28px; }
.bag-note { display: flex; align-items: center; gap: 9px; font-family: var(--sans); font-size: 11.5px; letter-spacing: .08em; text-transform: uppercase; color: var(--accent-deep); margin-bottom: 18px; }
.bag-subtotal { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 18px; }
.bag-sub-val { font-family: var(--display); font-size: 30px; }
.bag-tax { font-family: var(--sans); font-size: 11px; color: var(--ink-faint); text-align: center; margin: 14px 0 0; letter-spacing: .03em; }
