/* ═══════════════════════════════════════════════════
   ASW CLOTHING — styles.css v6
   Performance optimised, mobile nav fixed
═══════════════════════════════════════════════════ */

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

:root {
  --black:      #080808;
  --white:      #ffffff;
  --off-white:  #f5f5f4;
  --grey-light: #e8e8e6;
  --grey-mid:   #adadad;
  --grey-dark:  #636363;
  --font: 'DM Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  --nav-h: 66px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
body { font-family: var(--font); background: var(--white); color: var(--black); overflow-x: hidden; }
img  { display: block; max-width: 100%; height: auto; }
a    { color: inherit; text-decoration: none; }

.container         { width: 100%; max-width: 1300px; margin-inline: auto; padding-inline: clamp(20px, 5vw, 80px); }
.container--narrow { max-width: 780px; }

.section-label {
  font-size: 10px; font-weight: 500; letter-spacing: .2em;
  text-transform: uppercase; color: var(--grey-mid); margin-bottom: 10px;
}
.section-title {
  font-size: clamp(26px, 3.5vw, 42px); font-weight: 300;
  letter-spacing: -.025em; line-height: 1.1;
}
.section-header { margin-bottom: clamp(40px, 5vw, 64px); }

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font); font-size: 10px; font-weight: 500;
  letter-spacing: .15em; text-transform: uppercase;
  padding: 14px 32px; border: 1px solid transparent; cursor: pointer;
  transition: background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease), transform .2s var(--ease);
  will-change: transform;
}
.btn:hover          { transform: translateY(-1px); }
.btn--full          { width: 100%; }
.btn--black         { background: var(--black); color: var(--white); border-color: var(--black); }
.btn--black:hover   { background: #222; border-color: #222; }
.btn--outline       { background: transparent; color: var(--black); border-color: var(--black); }
.btn--outline:hover { background: var(--black); color: var(--white); }
.btn--white         { background: transparent; color: var(--white); border-color: rgba(255,255,255,.55); }
.btn--white:hover   { background: var(--white); color: var(--black); border-color: var(--white); }
.btn--ghost         { background: transparent; color: var(--white); border-color: rgba(255,255,255,.3); }
.btn--ghost:hover   { border-color: rgba(255,255,255,.7); }
.btn--white-solid   { background: var(--white); color: var(--black); border-color: var(--white); }
.btn--white-solid:hover { background: transparent; color: var(--white); border-color: var(--white); }

/* ─── REVEAL ─── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .75s var(--ease), transform .75s var(--ease); }
.reveal.visible { opacity: 1; transform: none; }

/* ═══════════════════════════════════════════════════
   NAVBAR
═══════════════════════════════════════════════════ */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--nav-h);
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, box-shadow .3s;
}
.navbar.scrolled { border-bottom-color: var(--grey-light); box-shadow: 0 1px 20px rgba(0,0,0,.05); }

.navbar__inner {
  max-width: 1300px; margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 80px);
  height: 100%; display: flex; align-items: center; justify-content: space-between;
}

.navbar__logo { font-size: 15px; font-weight: 500; letter-spacing: .06em; text-transform: uppercase; }
.navbar__logo span { font-weight: 300; }

/* ── Desktop nav ── */
.navbar__nav--desktop {
  display: flex;
  gap: 36px;
}
.navbar__nav--desktop a {
  font-size: 10px; font-weight: 500; letter-spacing: .15em; text-transform: uppercase;
  position: relative; padding-bottom: 2px; color: var(--black);
}
.navbar__nav--desktop a::after {
  content: ''; position: absolute; bottom: -2px; left: 0; right: 0;
  height: 1px; background: var(--black);
  transform: scaleX(0); transform-origin: right;
  transition: transform .3s var(--ease);
}
.navbar__nav--desktop a:hover::after { transform: scaleX(1); transform-origin: left; }

/* ── Burger button ── */
.navbar__burger {
  display: none;
  flex-direction: column; justify-content: center; align-items: center;
  gap: 5px; width: 40px; height: 40px;
  background: none; border: none; cursor: pointer; padding: 0;
  -webkit-tap-highlight-color: transparent;
}
.navbar__burger span {
  display: block; width: 22px; height: 1.5px;
  background: var(--black);
  transition: transform .35s var(--ease), opacity .25s;
  transform-origin: center;
}
.navbar__burger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.navbar__burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }

/* ── Mobile nav overlay (backdrop) ── */
.mobile-nav-overlay {
  display: none;
  position: fixed; inset: 0;
  z-index: 200;
  background: rgba(0,0,0,.45);
  opacity: 0;
  transition: opacity .3s ease;
  -webkit-tap-highlight-color: transparent;
}
.mobile-nav-overlay.active  { display: block; }
.mobile-nav-overlay.visible { opacity: 1; }

/* ── Mobile nav panel ── */
.mobile-nav {
  position: fixed;
  top: 0; left: 0; bottom: 0;
  width: min(280px, 80vw);
  z-index: 300;
  display: none;
  flex-direction: column;
  justify-content: center;
  background: var(--white);
  padding: 80px 0 40px;
  transform: translateX(-100%);
  transition: transform .35s var(--ease);
  box-shadow: 4px 0 40px rgba(0,0,0,.12);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.mobile-nav.active {
  display: flex;
}
.mobile-nav.open {
  transform: translateX(0);
}
.mobile-nav__link {
  display: block;
  font-size: 13px; font-weight: 500;
  letter-spacing: .16em; text-transform: uppercase;
  padding: 20px 36px;
  border-bottom: 1px solid var(--grey-light);
  color: var(--black);
}
.mobile-nav__link:last-child { border-bottom: none; }

@media (max-width: 768px) {
  .navbar__burger          { display: flex; }
  .navbar__nav--desktop    { display: none; }
}

/* ═══════════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════════ */
.hero {
  position: relative; height: 100svh; min-height: 600px;
  display: flex; align-items: flex-end; overflow: hidden;
}
.hero__media { position: absolute; inset: 0; }
.hero__img   {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 20%;
  will-change: transform;
}
.hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,.65) 0%, rgba(0,0,0,.2) 55%, transparent 100%),
              linear-gradient(to top, rgba(0,0,0,.3) 0%, transparent 40%);
}
.hero__content {
  position: relative; z-index: 2; color: var(--white);
  padding: clamp(48px, 8vw, 100px) clamp(20px, 5vw, 80px); max-width: 620px;
}
.hero__eyebrow { font-size: 10px; font-weight: 500; letter-spacing: .22em; text-transform: uppercase; color: rgba(255,255,255,.6); margin-bottom: 20px; }
.hero__title   { font-size: clamp(44px, 7vw, 96px); font-weight: 200; letter-spacing: -.03em; line-height: .95; margin-bottom: 20px; }
.hero__sub     { font-size: 15px; font-weight: 300; font-style: italic; color: rgba(255,255,255,.65); margin-bottom: 40px; }
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero__scroll-hint { position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%); z-index: 2; }
.hero__scroll-hint span {
  display: block; width: 1px; height: 52px;
  background: linear-gradient(to bottom, rgba(255,255,255,0), rgba(255,255,255,.5));
  animation: scrollpulse 2s ease-in-out infinite;
}
@keyframes scrollpulse { 0%,100%{transform:scaleY(1);opacity:.6} 50%{transform:scaleY(.6);opacity:1} }

/* ═══════════════════════════════════════════════════
   MARQUEE
═══════════════════════════════════════════════════ */
.marquee-wrap { overflow: hidden; background: var(--black); padding: 13px 0; }
.marquee-track {
  display: flex; gap: 44px; width: max-content;
  animation: marquee 28s linear infinite;
  will-change: transform;
}
.marquee-track span { font-size: 10px; font-weight: 500; letter-spacing: .16em; text-transform: uppercase; color: var(--white); white-space: nowrap; }
.marquee-track .dot { color: rgba(255,255,255,.25); letter-spacing: 0; }
@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; }
  .hero__scroll-hint span { animation: none; }
}
@keyframes marquee { from{transform:translateX(0)} to{transform:translateX(-50%)} }

/* ═══════════════════════════════════════════════════
   INTRO
═══════════════════════════════════════════════════ */
.intro { padding-block: clamp(64px, 9vw, 120px); background: var(--off-white); }
.intro__inner { text-align: center; }
.intro__title { font-size: clamp(26px, 4vw, 48px); font-weight: 300; letter-spacing: -.025em; margin-bottom: 18px; }
.intro__body  { font-size: 15px; font-weight: 300; line-height: 1.75; color: var(--grey-dark); max-width: 520px; margin: 0 auto 40px; }
.intro__pills { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }
.pill {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 10px; font-weight: 500; letter-spacing: .1em; text-transform: uppercase;
  background: var(--white); border: 1px solid var(--grey-light); padding: 10px 16px;
}

/* ═══════════════════════════════════════════════════
   COLLECTION
═══════════════════════════════════════════════════ */
.collection      { padding-block: clamp(56px, 8vw, 110px); background: var(--white); }
.collection--alt { background: var(--off-white); }

.product-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 5vw, 80px);
  align-items: start;
}

/* Gallery */
.showcase__gallery { display: flex; flex-direction: column; gap: 10px; }

.showcase__main-wrap {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #efefed;
  contain: layout style;
}
.showcase__main-img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center top;
  transition: opacity .25s ease;
}
.showcase__main-img.switching { opacity: 0; }

.showcase__thumbs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.thumb {
  aspect-ratio: 1 / 1; width: 100%;
  object-fit: cover; object-position: center top;
  cursor: pointer; background: #efefed;
  border: 2px solid transparent;
  transition: border-color .2s, opacity .2s;
  opacity: .6;
  -webkit-tap-highlight-color: transparent;
}
.thumb:hover  { opacity: 1; }
.thumb.active { border-color: var(--black); opacity: 1; }
.thumb.hidden { display: none; }

/* Info */
.showcase__info { display: flex; flex-direction: column; gap: 24px; padding-top: 4px; }
.showcase__name  { font-size: clamp(18px, 2.5vw, 28px); font-weight: 300; letter-spacing: -.02em; }
.showcase__price { font-size: 20px; font-weight: 300; color: var(--grey-dark); margin-top: -12px; }

.showcase__colour-label,
.showcase__size-label {
  font-size: 11px; font-weight: 500; letter-spacing: .12em;
  text-transform: uppercase; margin-bottom: 10px; display: block;
}

.size-guide-link {
  color: var(--grey-dark); text-decoration: underline; cursor: pointer;
  font-weight: 300; text-transform: none; letter-spacing: 0;
}

.colour-swatches { display: flex; gap: 10px; }
.swatch {
  width: 30px; height: 30px; border-radius: 50%;
  border: 2px solid transparent; cursor: pointer;
  outline: 2px solid transparent; outline-offset: 3px;
  transition: outline-color .2s;
  -webkit-tap-highlight-color: transparent;
}
.swatch.active   { outline-color: var(--black); }
.swatch--black   { background: #111; }
.swatch--grey    { background: #a0a0a0; }
.swatch--navy    { background: #1e2d5a; }

.size-options { display: flex; gap: 7px; flex-wrap: wrap; }
.size-btn {
  min-width: 46px; height: 46px; padding: 0 10px;
  font-family: var(--font); font-size: 12px; font-weight: 400; letter-spacing: .04em;
  background: transparent; border: 1px solid var(--grey-light); cursor: pointer;
  transition: background .2s, border-color .2s, color .2s;
  -webkit-tap-highlight-color: transparent;
}
.size-btn:hover  { border-color: var(--black); }
.size-btn.active { background: var(--black); color: var(--white); border-color: var(--black); }

.showcase__features { display: flex; flex-direction: column; border-top: 1px solid var(--grey-light); }
.feature-row {
  display: flex; justify-content: space-between;
  padding: 11px 0; border-bottom: 1px solid var(--grey-light);
  font-size: 12px; font-weight: 300; color: var(--grey-dark);
  gap: 12px;
}
.feature-row span:first-child { font-weight: 500; color: var(--black); letter-spacing: .04em; white-space: nowrap; }

/* ═══════════════════════════════════════════════════
   SIZE TABLE
═══════════════════════════════════════════════════ */
.size-table-wrap { margin-top: 20px; overflow-x: auto; -webkit-overflow-scrolling: touch; }
.size-table-title {
  font-size: 10px; font-weight: 500; letter-spacing: .18em; text-transform: uppercase;
  color: var(--grey-dark); margin-bottom: 8px; margin-top: 16px;
}
.size-table-title:first-child { margin-top: 0; }
.size-table {
  width: 100%; border-collapse: collapse; font-size: 12px;
  margin-bottom: 4px;
}
.size-table th {
  text-align: left; font-size: 10px; font-weight: 500; letter-spacing: .1em;
  text-transform: uppercase; color: var(--grey-dark);
  padding: 8px 12px 8px 0; border-bottom: 1px solid var(--grey-light);
  white-space: nowrap;
}
.size-table td {
  padding: 9px 12px 9px 0; border-bottom: 1px solid var(--grey-light);
  font-weight: 300; color: var(--black); white-space: nowrap;
}
.size-table td:first-child { font-weight: 500; }
.size-table tr:last-child td { border-bottom: none; }

/* ═══════════════════════════════════════════════════
   BUNDLE & SAVE
═══════════════════════════════════════════════════ */
.bundles { padding-block: clamp(64px, 9vw, 130px); background: var(--white); }
.bundles .section-header { text-align: center; }
.bundles__sub { font-size: 14px; font-weight: 300; color: var(--grey-dark); margin-top: 14px; }
.bundles__grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: clamp(14px, 2vw, 28px); align-items: stretch;
  margin-top: clamp(36px, 5vw, 60px);
}

.bundle-card {
  border: 1px solid var(--grey-light);
  padding: clamp(24px, 4vw, 48px) clamp(20px, 3vw, 40px);
  display: flex; flex-direction: column; gap: 24px;
  position: relative; transition: box-shadow .3s;
}
.bundle-card:hover { box-shadow: 0 8px 40px rgba(0,0,0,.07); }
.bundle-card--featured { border-color: var(--black); background: var(--black); color: var(--white); }

.bundle-card__badge {
  position: absolute; top: -1px; left: 50%; transform: translateX(-50%);
  font-size: 9px; font-weight: 500; letter-spacing: .18em; text-transform: uppercase;
  background: var(--black); color: var(--white); padding: 5px 14px; white-space: nowrap;
}
.bundle-card--featured .bundle-card__badge { background: var(--white); color: var(--black); }

.bundle-card__top { text-align: center; }
.bundle-card__label { font-size: 10px; font-weight: 500; letter-spacing: .2em; text-transform: uppercase; color: var(--grey-mid); margin-bottom: 10px; }
.bundle-card--featured .bundle-card__label { color: rgba(255,255,255,.5); }
.bundle-card__price { font-size: clamp(44px, 5.5vw, 68px); font-weight: 200; letter-spacing: -.04em; line-height: 1; }
.bundle-card__per { font-size: 11px; font-weight: 300; color: var(--grey-dark); margin-top: 6px; }
.bundle-card--featured .bundle-card__per { color: rgba(255,255,255,.5); }

.bundle-card__features { list-style: none; display: flex; flex-direction: column; gap: 9px; flex: 1; }
.bundle-card__features li { font-size: 13px; font-weight: 300; color: var(--grey-dark); padding-left: 16px; position: relative; }
.bundle-card__features li::before { content: '—'; position: absolute; left: 0; font-size: 10px; color: var(--grey-mid); }
.bundle-card--featured .bundle-card__features li { color: rgba(255,255,255,.65); }
.bundle-card--featured .bundle-card__features li::before { color: rgba(255,255,255,.3); }
.bundle-card--featured .btn--black { background: var(--white); color: var(--black); border-color: var(--white); }
.bundle-card--featured .btn--black:hover { background: transparent; color: var(--white); border-color: var(--white); }
.bundle-card--featured .btn--outline { border-color: rgba(255,255,255,.35); color: var(--white); }

/* ═══════════════════════════════════════════════════
   STATEMENT
═══════════════════════════════════════════════════ */
.statement { padding-block: clamp(72px, 11vw, 150px); background: var(--off-white); }
.statement__inner { text-align: center; display: flex; flex-direction: column; align-items: center; gap: 28px; }
.statement__rule  { display: block; width: 36px; height: 1px; background: var(--grey-mid); }
.statement__quote { font-size: clamp(22px, 3.5vw, 40px); font-weight: 300; font-style: italic; letter-spacing: -.02em; line-height: 1.25; }
.statement__body  { font-size: 15px; font-weight: 300; line-height: 1.8; color: var(--grey-dark); max-width: 500px; }

/* ═══════════════════════════════════════════════════
   FAQ
═══════════════════════════════════════════════════ */
.faq { padding-block: clamp(64px, 9vw, 130px); background: var(--white); }
.faq__list { display: flex; flex-direction: column; }
.faq__item { border-top: 1px solid var(--grey-light); }
.faq__item:last-child { border-bottom: 1px solid var(--grey-light); }
.faq__trigger {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  background: none; border: none; font-family: var(--font); font-size: 14px; font-weight: 400;
  color: var(--black); text-align: left; padding: 22px 0; cursor: pointer;
  transition: color .2s; gap: 16px;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}
.faq__trigger:hover { color: var(--grey-dark); }
.faq__icon {
  font-size: 20px; font-weight: 200; color: var(--grey-dark);
  flex-shrink: 0; transition: transform .35s var(--ease), color .2s;
  line-height: 1;
}
.faq__trigger[aria-expanded="true"] .faq__icon { transform: rotate(45deg); color: var(--black); }

/* FAQ body uses height transition for reliability on mobile */
.faq__body {
  overflow: hidden;
  height: 0;
  transition: height .4s var(--ease);
}
.faq__body-inner {
  padding-bottom: 24px;
}
.faq__body p { font-size: 14px; font-weight: 300; line-height: 1.8; color: var(--grey-dark); max-width: 560px; }
.faq__body p + p { margin-top: 12px; }
.faq__body a { color: var(--black); text-decoration: underline; }

/* ═══════════════════════════════════════════════════
   CONTACT
═══════════════════════════════════════════════════ */
.contact-strip { padding-block: clamp(64px, 9vw, 130px); background: var(--black); color: var(--white); }
.contact-strip__inner { text-align: center; display: flex; flex-direction: column; align-items: center; gap: 16px; }
.contact-strip__title { font-size: clamp(28px, 4.5vw, 58px); font-weight: 200; letter-spacing: -.03em; }
.contact-strip__sub   { font-size: 14px; font-weight: 300; color: rgba(255,255,255,.45); margin-bottom: 8px; }

/* ═══════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════ */
.footer { background: var(--white); border-top: 1px solid var(--grey-light); padding-block: 48px 28px; }
.footer__top { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 40px; gap: 28px; flex-wrap: wrap; }
.footer__logo { font-size: 15px; font-weight: 500; letter-spacing: .06em; text-transform: uppercase; margin-bottom: 8px; }
.footer__logo span { font-weight: 300; }
.footer__tagline { font-size: 12px; font-weight: 300; color: var(--grey-dark); line-height: 1.65; }
.footer__nav { display: flex; gap: 24px; flex-wrap: wrap; align-items: flex-start; }
.footer__nav a { font-size: 10px; font-weight: 500; letter-spacing: .15em; text-transform: uppercase; color: var(--grey-dark); transition: color .2s; }
.footer__nav a:hover { color: var(--black); }
.footer__bottom { display: flex; align-items: center; justify-content: space-between; gap: 10px; flex-wrap: wrap; padding-top: 22px; border-top: 1px solid var(--grey-light); }
.footer__bottom p { font-size: 11px; font-weight: 300; color: var(--grey-mid); letter-spacing: .03em; }

/* ═══════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════ */
@media (max-width: 900px) {
  .product-showcase { grid-template-columns: 1fr; }
  .bundles__grid    { grid-template-columns: 1fr; max-width: 380px; margin-inline: auto; }
}

@media (max-width: 600px) {
  .hero__actions  { flex-direction: column; align-items: flex-start; }
  .intro__pills   { flex-direction: column; align-items: center; }
  .footer__top    { flex-direction: column; }
  .footer__bottom { flex-direction: column; align-items: flex-start; gap: 6px; }
  .showcase__thumbs { gap: 6px; }
  .size-table { font-size: 11px; }
}

/* ── Size Guide Modal ─────────────────────────────────────── */
.size-guide-overlay {
  position: fixed; inset: 0; z-index: 1000;
  background: rgba(8,8,8,.6);
  display: flex; align-items: flex-end; justify-content: center;
  opacity: 0; visibility: hidden;
  transition: opacity .3s var(--ease), visibility .3s var(--ease);
}
@media (min-width: 600px) {
  .size-guide-overlay { align-items: center; }
}
.size-guide-overlay.active { opacity: 1; visibility: visible; }

.size-guide-modal {
  background: var(--white); color: var(--black);
  width: 100%; max-width: 480px;
  max-height: 92dvh;
  display: flex; flex-direction: column;
  transform: translateY(40px);
  transition: transform .35s var(--ease);
  overflow: hidden;
  /* mobile: sheet from bottom */
  border-radius: 12px 12px 0 0;
}
@media (min-width: 600px) {
  .size-guide-modal {
    border-radius: 2px;
    max-height: 82vh;
    transform: translateY(16px) scale(.98);
  }
}
.size-guide-overlay.active .size-guide-modal {
  transform: translateY(0) scale(1);
}

/* drag handle on mobile */
.size-guide-handle {
  width: 36px; height: 4px; border-radius: 2px;
  background: var(--grey-light);
  margin: 12px auto 0;
  flex-shrink: 0;
}
@media (min-width: 600px) { .size-guide-handle { display: none; } }

.size-guide-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px 18px;
  flex-shrink: 0;
}
.size-guide-title {
  font-size: 11px; font-weight: 500; letter-spacing: .18em;
  text-transform: uppercase; margin: 0;
}
.size-guide-close {
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  background: var(--off-white); border: none; border-radius: 50%;
  cursor: pointer; color: var(--black);
  transition: background .15s;
  flex-shrink: 0;
}
.size-guide-close:hover { background: var(--grey-light); }
.size-guide-close svg { width: 14px; height: 14px; stroke: currentColor; stroke-width: 2; fill: none; }

.size-guide-note {
  font-size: 12px; color: var(--grey-dark); line-height: 1.65;
  padding: 0 24px 18px; margin: 0; flex-shrink: 0;
  border-bottom: 1px solid var(--grey-light);
}

.size-guide-body {
  padding: 0 24px 32px;
  overflow-y: auto;
  flex: 1;
  -webkit-overflow-scrolling: touch;
}

.size-guide-section { padding-top: 24px; }
.size-guide-section + .size-guide-section { padding-top: 20px; }

.size-guide-section-label {
  font-size: 10px; font-weight: 500; letter-spacing: .2em;
  text-transform: uppercase; color: var(--grey-mid);
  margin-bottom: 12px;
}

.size-guide-table {
  width: 100%; border-collapse: collapse;
  font-size: 13px;
}
.size-guide-table thead tr {
  border-bottom: 1px solid var(--grey-light);
}
.size-guide-table th {
  font-size: 10px; font-weight: 500; letter-spacing: .1em;
  text-transform: uppercase; color: var(--grey-dark);
  padding: 0 0 10px; text-align: left;
}
.size-guide-table th:not(:first-child) { text-align: center; }
.size-guide-table td {
  padding: 13px 0;
  border-bottom: 1px solid var(--grey-light);
  font-weight: 300;
}
.size-guide-table td:first-child { font-weight: 500; }
.size-guide-table td:not(:first-child) { text-align: center; color: var(--grey-dark); }
.size-guide-table tbody tr:last-child td { border-bottom: none; }

.size-guide-col-header { display: block; }
.size-guide-col-sub { font-size: 10px; color: var(--grey-mid); font-weight: 400; letter-spacing: .02em; }
