/* ==========================================================================
   MONTERROSO — site styles
   Palette: Navy / Burgundy / White
   ========================================================================== */

:root {
  --navy:        #0E1A2F;
  --navy-2:      #16243F;
  --navy-3:      #22324F;
  --burgundy:    #6E1F32;
  --burgundy-2:  #8A2A41;
  --rose:        #C4707E;
  --white:       #FFFFFF;
  --paper:       #F7F6F4;
  --paper-2:     #EDEBE7;
  --grey:        #8A93A6;
  --grey-dark:   #5A6275;
  --line-light:  #DCD9D4;

  --display: 'Bodoni Moda', Didot, 'Playfair Display', Georgia, serif;
  --text: 'Archivo', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  --label: 'Archivo Narrow', 'Arial Narrow', Arial, sans-serif;

  --gutter: 24px;
  --max: 1280px;
  --header-h: 68px;
}

*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--navy);
  font-family: var(--text);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

body.is-locked { overflow: hidden; }

img, svg { max-width: 100%; }
img { display: block; height: auto; }

a { color: var(--burgundy); text-decoration: none; }
a:hover { color: var(--burgundy-2); }

h1, h2, h3 { margin: 0; font-weight: 400; line-height: 1.15; }

:focus-visible {
  outline: 2px solid var(--rose);
  outline-offset: 3px;
}

.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding-inline: var(--gutter);
}

.skip {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--burgundy);
  color: var(--white);
  padding: 12px 18px;
  z-index: 200;
}
.skip:focus { left: 8px; top: 8px; color: var(--white); }

/* ---------- type helpers ---------- */

.eyebrow {
  font-family: var(--label);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--grey-dark);
  margin: 0;
}
.on-navy .eyebrow, .eyebrow--light { color: var(--grey); }

.display-xl { font-family: var(--display); font-size: clamp(38px, 7vw, 76px); letter-spacing: 0.01em; }
.display-l  { font-family: var(--display); font-size: clamp(28px, 4.4vw, 46px); letter-spacing: 0.01em; }
.display-m  { font-family: var(--display); font-size: clamp(22px, 3vw, 30px); letter-spacing: 0.02em; }

.lede { font-size: clamp(15px, 1.5vw, 18px); line-height: 1.7; color: var(--grey-dark); text-wrap: pretty; }
.on-navy .lede { color: #C3CAD8; }

/* ---------- buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 12px 26px;
  border: 1px solid transparent;
  border-radius: 0;
  font-family: var(--label);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 140ms ease, color 140ms ease, border-color 140ms ease;
}

.btn--primary { background: var(--burgundy); color: var(--white); }
.btn--primary:hover { background: var(--burgundy-2); color: var(--white); }

.btn--light { background: var(--white); color: var(--navy); }
.btn--light:hover { background: var(--paper-2); color: var(--navy); }

.btn--ghost { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.45); }
.btn--ghost:hover { background: rgba(255,255,255,0.1); color: var(--white); border-color: var(--white); }

.btn--outline { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn--outline:hover { background: var(--navy); color: var(--white); }

.btn--block { width: 100%; }

.btn-row { display: flex; flex-wrap: wrap; gap: 14px; }

/* ---------- header ---------- */

.header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: var(--navy);
  color: var(--white);
  border-bottom: 1px solid var(--navy-3);
}

.header__bar {
  max-width: var(--max);
  margin: 0 auto;
  padding-inline: var(--gutter);
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.header__side { display: flex; align-items: center; gap: 4px; flex: 1 0 0; }
.header__side--right { justify-content: flex-end; }

.iconbtn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 48px;
  min-width: 48px;
  padding: 0 10px;
  background: none;
  border: 0;
  color: var(--white);
  font-family: var(--label);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
}
.iconbtn:hover { color: var(--rose); }
.iconbtn svg { flex-shrink: 0; }

.iconbtn__text { display: none; }
@media (min-width: 720px) { .iconbtn__text { display: inline; } }

.brandmark {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--white);
}
.brandmark:hover { color: var(--white); }
.brandmark__word {
  font-family: var(--display);
  font-size: 17px;
  letter-spacing: 0.22em;
  text-indent: 0.22em;
  white-space: nowrap;
}
@media (max-width: 420px) {
  .brandmark__word { font-size: 13px; letter-spacing: 0.14em; text-indent: 0.14em; }
}

.announce {
  background: var(--burgundy);
  color: var(--white);
  text-align: center;
  font-family: var(--label);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 8px 16px;
}

/* ---------- drawer ---------- */

.scrim {
  position: fixed;
  inset: 0;
  background: rgba(6, 12, 22, 0.6);
  opacity: 0;
  visibility: hidden;
  transition: opacity 200ms ease, visibility 200ms ease;
  z-index: 90;
}
.scrim.is-open { opacity: 1; visibility: visible; }

.drawer {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: min(400px, 88vw);
  background: var(--navy);
  color: var(--white);
  transform: translateX(-102%);
  transition: transform 240ms ease;
  z-index: 100;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  overscroll-behavior: contain;
}
.drawer.is-open { transform: translateX(0); }

.drawer__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  border-bottom: 1px solid var(--navy-3);
  position: sticky;
  top: 0;
  background: var(--navy);
}

.drawer__nav { padding: 8px 0 28px; }

.drawer details { border-bottom: 1px solid var(--navy-3); }

.drawer summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 20px;
  font-family: var(--display);
  font-size: 24px;
  letter-spacing: 0.14em;
  text-indent: 0.14em;
  color: var(--white);
  min-height: 48px;
}
.drawer summary::-webkit-details-marker { display: none; }
.drawer summary:hover { color: var(--rose); }

.chev {
  flex-shrink: 0;
  transition: transform 180ms ease;
  color: var(--grey);
}
.drawer details[open] .chev { transform: rotate(180deg); }

.drawer__sub { list-style: none; margin: 0; padding: 0 20px 18px; }
.drawer__sub li { margin: 0; }
.drawer__sub a {
  display: flex;
  align-items: center;
  min-height: 48px;
  padding: 4px 0 4px 2px;
  color: #C3CAD8;
  font-family: var(--label);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.drawer__sub a:hover { color: var(--rose); }

.drawer__flat { list-style: none; margin: 0; padding: 14px 20px 0; }
.drawer__flat a {
  display: flex;
  align-items: center;
  min-height: 48px;
  color: #C3CAD8;
  font-family: var(--label);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--navy-3);
}
.drawer__flat a:hover { color: var(--rose); }

.drawer__foot {
  margin-top: auto;
  padding: 22px 20px 28px;
  border-top: 1px solid var(--navy-3);
  color: var(--grey);
  font-size: 13px;
  line-height: 1.7;
}

/* ---------- hero ---------- */

.hero {
  background: var(--navy);
  color: var(--white);
  padding-block: clamp(56px, 10vw, 110px);
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute;
  right: -12%;
  bottom: -30%;
  width: 60%;
  padding-top: 50%;
  background: radial-gradient(circle at 50% 50%, rgba(110,31,50,0.5), rgba(110,31,50,0) 68%);
  pointer-events: none;
}
.hero__inner { position: relative; z-index: 1; max-width: 760px; }
.hero__mark { margin-bottom: 26px; }
.hero h1 { margin: 14px 0 0; color: var(--white); }
.hero .lede { margin: 20px 0 0; max-width: 560px; }
.hero .btn-row { margin-top: 34px; }

/* ---------- section shell ---------- */

.section { padding-block: clamp(52px, 8vw, 96px); }
.section--navy { background: var(--navy); color: var(--white); }
.section--paper2 { background: var(--paper-2); }
.section--white { background: var(--white); }

.section__head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 34px;
}
.section__head h2 { margin-top: 10px; }
.section--navy .section__head h2 { color: var(--white); }

.linkarrow {
  font-family: var(--label);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
}
.section--navy .linkarrow { color: var(--rose); }
.section--navy .linkarrow:hover { color: var(--white); }

/* ---------- gender split ---------- */

.split { display: grid; grid-template-columns: 1fr; gap: 20px; }
@media (min-width: 780px) { .split { grid-template-columns: 1fr 1fr; gap: 24px; } }

.split__panel {
  position: relative;
  min-height: 380px;
  padding: 34px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: var(--white);
  background: var(--navy-2);
  overflow: hidden;
}
.split__panel--burgundy { background: var(--burgundy); }
.split__art {
  position: absolute;
  top: 26px;
  right: 20px;
  width: 46%;
  max-width: 210px;
  opacity: 0.5;
}
.split__panel h3 { font-family: var(--display); font-size: clamp(30px, 5vw, 44px); letter-spacing: 0.08em; position: relative; }
.split__panel p { position: relative; margin: 10px 0 22px; color: rgba(255,255,255,0.82); font-size: 15px; max-width: 34ch; }
.split__panel .btn { position: relative; align-self: flex-start; }

/* ---------- product grid ---------- */

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: clamp(16px, 2.4vw, 28px);
}

@media (min-width: 1040px) {
  #featured-grid { grid-template-columns: repeat(3, 1fr); }
}

.card {
  background: var(--white);
  border: 1px solid var(--line-light);
  display: flex;
  flex-direction: column;
}
.section--white .card { background: var(--paper); }

.card__media {
  aspect-ratio: 4 / 5;
  max-width: 100%;
  background: var(--paper-2);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  position: relative;
}
.card__media svg { width: 78%; height: auto; }

.card__flag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--burgundy);
  color: var(--white);
  font-family: var(--label);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 5px 9px;
}

.card__body { padding: 16px 16px 18px; display: flex; flex-direction: column; gap: 6px; flex-grow: 1; }
.card__kicker { font-family: var(--label); font-size: 10.5px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--grey-dark); }
.card__name { font-family: var(--display); font-size: 20px; letter-spacing: 0.02em; color: var(--navy); }
.card__price { font-family: var(--label); font-size: 15px; font-weight: 700; letter-spacing: 0.06em; color: var(--burgundy); }
.card__swatches { display: flex; gap: 6px; margin-top: 2px; }
.card__swatch { width: 14px; height: 14px; border-radius: 50%; border: 1px solid var(--line-light); }
.card__cta { margin-top: auto; padding-top: 14px; }

/* ---------- category strip ---------- */

.tiles { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 14px; }

.tile {
  background: var(--navy-2);
  border: 1px solid var(--navy-3);
  color: var(--white);
  padding: 22px 18px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  min-height: 150px;
  transition: background 140ms ease, border-color 140ms ease;
}
.tile:hover { background: var(--burgundy); border-color: var(--burgundy); color: var(--white); }
.tile__name { font-family: var(--label); font-size: 13px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; margin-top: auto; }

/* ---------- story band ---------- */

.story { display: grid; grid-template-columns: 1fr; gap: 32px; align-items: center; }
@media (min-width: 860px) { .story { grid-template-columns: 1fr 1.15fr; gap: 60px; } }
.story__art { display: flex; justify-content: center; }
.story__art svg { width: min(260px, 70%); height: auto; }
.story blockquote { margin: 0; }
.story cite { display: block; margin-top: 18px; font-style: normal; font-family: var(--label); font-size: 11px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--rose); }

/* ---------- support cards ---------- */

.support { display: grid; grid-template-columns: 1fr; gap: 18px; }
@media (min-width: 720px) { .support { grid-template-columns: repeat(3, 1fr); } }

.support__card {
  background: var(--white);
  border: 1px solid var(--line-light);
  padding: 26px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.support__card h3 { font-family: var(--display); font-size: 23px; color: var(--navy); }
.support__card p { margin: 0; color: var(--grey-dark); font-size: 14.5px; }
.support__card .linkarrow { margin-top: auto; }

.support__icon { color: var(--burgundy); }

/* ---------- newsletter ---------- */

.signup { display: grid; grid-template-columns: 1fr; gap: 26px; align-items: center; }
@media (min-width: 860px) { .signup { grid-template-columns: 1.1fr 1fr; gap: 50px; } }

/* ---------- forms ---------- */

.field { display: flex; flex-direction: column; gap: 7px; margin-bottom: 18px; }
.field label {
  font-family: var(--label);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--grey-dark);
}
.on-navy .field label { color: var(--grey); }

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 50px;
  padding: 13px 14px;
  font-family: var(--text);
  font-size: 16px;
  color: var(--navy);
  background: var(--white);
  border: 1px solid var(--line-light);
  border-radius: 0;
}
.field textarea { min-height: 150px; resize: vertical; line-height: 1.6; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: 2px solid var(--burgundy);
  outline-offset: 0;
  border-color: var(--burgundy);
}

.inline-form { display: flex; flex-wrap: wrap; gap: 12px; }
.inline-form input { flex: 1 1 220px; min-width: 0; }

.hp { position: absolute; left: -9999px; }

.formnote { font-size: 13px; color: var(--grey-dark); margin: 14px 0 0; }
.on-navy .formnote { color: var(--grey); }

/* ---------- shop page ---------- */

.pagehead { background: var(--navy); color: var(--white); padding-block: clamp(40px, 6vw, 70px); }
.pagehead h1 { margin: 12px 0 0; color: var(--white); }
.pagehead p { margin: 14px 0 0; max-width: 56ch; color: #C3CAD8; }

.filters {
  background: var(--white);
  border-bottom: 1px solid var(--line-light);
  position: sticky;
  top: var(--header-h);
  z-index: 40;
}
.filters__inner { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; padding-block: 14px; }

.chip {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 8px 15px;
  border: 1px solid var(--line-light);
  background: var(--white);
  color: var(--navy);
  font-family: var(--label);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  white-space: nowrap;
}
.chip:hover { border-color: var(--navy); color: var(--navy); }
.chip[aria-pressed="true"] { background: var(--navy); border-color: var(--navy); color: var(--white); }

.chip-scroll { display: flex; gap: 10px; overflow-x: auto; padding-bottom: 2px; max-width: 100%; }

.filters__count { margin-left: auto; font-family: var(--label); font-size: 11px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--grey-dark); }

.empty { text-align: center; padding: 70px 20px; color: var(--grey-dark); }

/* ---------- FAQ ---------- */

.faq details {
  background: var(--white);
  border: 1px solid var(--line-light);
  margin-bottom: 12px;
}
.faq summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 20px;
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  font-family: var(--label);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--navy);
}
.faq summary::-webkit-details-marker { display: none; }
.faq details[open] summary { color: var(--burgundy); }
.faq details[open] .chev { transform: rotate(180deg); }
.faq__body { padding: 0 20px 20px; color: var(--grey-dark); font-size: 15px; }
.faq__body p { margin: 0 0 12px; }
.faq__body p:last-child { margin-bottom: 0; }

/* ---------- contact columns ---------- */

.contact-cols { display: grid; grid-template-columns: 1fr; gap: 40px; }
@media (min-width: 900px) { .contact-cols { grid-template-columns: 1.25fr 1fr; gap: 64px; } }

.infolist { list-style: none; margin: 0; padding: 0; }
.infolist li { padding: 16px 0; border-bottom: 1px solid var(--line-light); }
.infolist dt, .infolist .k {
  font-family: var(--label);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--grey-dark);
  margin-bottom: 5px;
}
.infolist .v { font-size: 16px; color: var(--navy); }

/* ---------- footer ---------- */

.footer { background: var(--navy); color: var(--white); padding-block: 56px 34px; }
.footer__grid { display: grid; grid-template-columns: 1fr; gap: 34px; }
@media (min-width: 720px) { .footer__grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 30px; } }

.footer h4 {
  margin: 0 0 14px;
  font-family: var(--label);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--grey);
}
.footer ul { list-style: none; margin: 0; padding: 0; }
.footer ul a {
  display: flex;
  align-items: center;
  min-height: 40px;
  color: #C3CAD8;
  font-size: 14.5px;
}
.footer ul a:hover { color: var(--rose); }
.footer__blurb { color: var(--grey); font-size: 14px; max-width: 38ch; margin: 16px 0 0; }

.footer__base {
  margin-top: 40px;
  padding-top: 22px;
  border-top: 1px solid var(--navy-3);
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  justify-content: space-between;
  color: var(--grey);
  font-family: var(--label);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

/* ---------- misc ---------- */

.stack-sm > * + * { margin-top: 10px; }
.center { text-align: center; }
.hide { display: none !important; }

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
}

/* ---------- bag panel ---------- */

.bag {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(430px, 92vw);
  background: var(--navy);
  color: var(--white);
  transform: translateX(102%);
  transition: transform 240ms ease;
  z-index: 100;
  display: flex;
  flex-direction: column;
  overscroll-behavior: contain;
}
.bag.is-open { transform: translateX(0); }

.bag__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  border-bottom: 1px solid var(--navy-3);
  flex-shrink: 0;
}

.bag__items {
  flex-grow: 1;
  overflow-y: auto;
  padding: 6px 20px 10px;
}

.bag__empty {
  padding: 60px 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
}
.bag__emptyline {
  margin: 0;
  font-family: var(--display);
  font-size: 24px;
  color: var(--white);
}

.bagitem {
  display: flex;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--navy-3);
}
.bagitem__media {
  width: 76px;
  flex-shrink: 0;
  aspect-ratio: 4 / 5;
  background: var(--navy-2);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
}
.bagitem__media svg { width: 100%; height: auto; }
.bagitem__body { flex-grow: 1; min-width: 0; }
.bagitem__kicker {
  margin: 0;
  font-family: var(--label);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--grey);
}
.bagitem__name {
  margin: 5px 0 0;
  font-family: var(--display);
  font-size: 19px;
  color: var(--white);
}
.bagitem__price {
  margin: 4px 0 0;
  font-family: var(--label);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--rose);
}

.qty { display: flex; align-items: center; gap: 4px; margin-top: 10px; flex-wrap: wrap; }
.qty__btn {
  width: 40px;
  height: 40px;
  background: transparent;
  border: 1px solid var(--navy-3);
  color: var(--white);
  font-size: 17px;
  line-height: 1;
  cursor: pointer;
}
.qty__btn:hover { border-color: var(--rose); color: var(--rose); }
.qty__n {
  min-width: 36px;
  text-align: center;
  font-family: var(--label);
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
}
.qty__rm {
  margin-left: 8px;
  min-height: 40px;
  padding: 0 8px;
  background: none;
  border: 0;
  color: var(--grey);
  font-family: var(--label);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
}
.qty__rm:hover { color: var(--rose); }

.bag__foot {
  flex-shrink: 0;
  padding: 18px 20px 24px;
  border-top: 1px solid var(--navy-3);
  background: var(--navy);
}
.bag__foot:empty { display: none; }
.bag__row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  font-family: var(--label);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--grey);
}
.bag__total { font-family: var(--display); font-size: 26px; letter-spacing: 0.02em; color: var(--white); text-transform: none; }
.bag__note { margin: 8px 0 14px; font-size: 12.5px; line-height: 1.55; color: var(--grey); }
.bag__note--warn { color: var(--rose); }
.bag__foot .btn + .bag__note { margin-top: 12px; }
.bag__foot .btn--ghost { margin-top: 4px; }
.bag__foot .btn[disabled] { opacity: 0.55; cursor: not-allowed; }
