@import url("https://fonts.googleapis.com/css2?family=Jost:wght@300;400;600&display=swap");

/*
 * Fullscreen "magazine spread" page-turner for storefront lookbooks.
 * Recreated from the Claude Design handoff (Summer 2026 Lookbook). The product
 * card + variant drawer are intentionally the existing scroll-view components
 * (see lookbook.css); only the page-turner chrome lives here.
 */

.fs-lb,
.fs-lb * {
  box-sizing: border-box;
}

/* Brand requirement: every bit of lookbook text renders lowercase. Covers the
 * page-turner chrome and the reused product card / variant drawer (appended to
 * body). The native theme cart drawer is intentionally left to the theme. */
.fs-lb,
.fs-lb *,
.fs-lookbook-card,
.fs-lookbook-card *,
.fs-lookbook-variant,
.fs-lookbook-variant * {
  text-transform: lowercase !important;
}

.fs-lb {
  --fs-lb-charcoal: #1c1d1d;
  --fs-lb-chrome-text: #ffffff;
  --fs-lb-ctrl-border: rgba(255, 255, 255, 0.28);
  --fs-lb-ctrl-bg: rgba(255, 255, 255, 0.08);
  --fs-lb-ctrl-bg-hover: rgba(255, 255, 255, 0.2);
  --fs-lb-dot: #ffffff;
  /* Bottom dock band. Closed = just the controls row; opening the shop grows
   * it (see .is-shop-open) and the spread is sized above it, so products push
   * the spread up rather than sitting in permanently reserved space. */
  --fs-lb-dock-h: 54px;
  --fs-lb-dock-open: 128px;
  --fs-lb-font-body: "Jost", "Futura PT", "Century Gothic", system-ui, sans-serif;
  --fs-lb-font-head: "Function Pro Book", "Jost", "Futura PT", "Century Gothic", system-ui, sans-serif;

  position: fixed;
  inset: 0;
  z-index: 2147483000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--fs-lb-charcoal);
  overflow: hidden;
  font-family: var(--fs-lb-font-body);
  color: #111;
  -webkit-font-smoothing: antialiased;
}

.fs-lb.is-shop-open {
  --fs-lb-dock-h: var(--fs-lb-dock-open);
}

/* Lock the underlying theme page while the lookbook owns the viewport. */
html.fs-lb-lock,
html.fs-lb-lock body {
  overflow: hidden !important;
}

/* Keep the reused product card + variant drawer above every magazine layer. */
.fs-lb ~ .fs-lookbook-card,
body > .fs-lookbook-card {
  z-index: 2147483600;
}

.fs-lb ~ .fs-lookbook-variant,
body > .fs-lookbook-variant {
  z-index: 2147483640;
}

/* The theme's native cart drawer (z-index 9999) would otherwise open behind
 * the fullscreen lookbook overlay. Lift it above every lookbook layer so it
 * appears on Add to bag. Scoped to the lookbook page (this sheet only loads here). */
.native-cart-drawer {
  z-index: 2147483700 !important;
}

/* ---- Stage + pages ---- */
.fs-lb__main {
  position: relative;
  flex: 1 1 auto;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  /* Bottom padding lifts the spread above the dock band; it animates so opening
   * the shop pushes the spread up smoothly. */
  padding: 8px 8px var(--fs-lb-dock-h);
  min-height: 0;
  transition: padding-bottom 0.42s cubic-bezier(0.62, 0, 0.2, 1);
}

.fs-lb__stage {
  position: relative;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45), 0 6px 22px rgba(0, 0, 0, 0.3);
  flex: 0 0 auto;
  touch-action: pan-y;
  border-radius: 1px;
  /* Animates alongside the dock when the shop opens/closes. */
  transition: width 0.42s cubic-bezier(0.62, 0, 0.2, 1), height 0.42s cubic-bezier(0.62, 0, 0.2, 1);
}

.fs-lb__track {
  display: flex;
  height: 100%;
  will-change: transform;
  transition: transform 0.6s cubic-bezier(0.62, 0, 0.2, 1);
}

.fs-lb__page {
  flex: 0 0 100%;
  height: 100%;
  position: relative;
  background: #f3f1ec;
  overflow: hidden;
}

.fs-lb[data-ppv="2"] .fs-lb__page {
  flex-basis: 50%;
}

/* Blank spacer page: empty paper. Hidden on mobile (1-up) — spread alignment
 * (cover/back standalone, facing-page spacers) only applies to 2-up. */
.fs-lb__page--blank {
  background: #f3f1ec;
}

.fs-lb[data-ppv="1"] .fs-lb__page--blank {
  display: none;
}

.fs-lb__page-media {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  -webkit-user-drag: none;
  user-select: none;
}

.fs-lb__motion-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  display: flex;
  align-items: center;
  gap: 7px;
  background: rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(4px);
  color: #fff;
  padding: 6px 11px;
  border-radius: 2px;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  z-index: 6;
}

.fs-lb__motion-dot {
  width: 0;
  height: 0;
  border-left: 7px solid #fff;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
}

.fs-lb__gutter {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 48px;
  transform: translateX(-50%);
  pointer-events: none;
  z-index: 5;
  display: none;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0),
    rgba(0, 0, 0, 0.08) 47%,
    rgba(0, 0, 0, 0.13) 50%,
    rgba(0, 0, 0, 0.08) 53%,
    rgba(0, 0, 0, 0)
  );
}

.fs-lb[data-ppv="2"] .fs-lb__gutter {
  display: block;
}

/* ---- Hotspot dots ---- */
.fs-lb__dot {
  position: absolute;
  transform: translate(-50%, -50%);
  width: 18px;
  height: 18px;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
  z-index: 7;
}

.fs-lb__dot-ring {
  position: absolute;
  inset: 2px;
  border-radius: 50%;
  animation: fs-lb-pulse 2.4s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

.fs-lb__dot-core {
  position: relative;
  display: block;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--fs-lb-dot);
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.45), 0 0 0 2px rgba(255, 255, 255, 0.8);
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.25s;
}

.fs-lb__dot:hover .fs-lb__dot-core,
.fs-lb__dot:focus-visible .fs-lb__dot-core,
.fs-lb__dot.is-active .fs-lb__dot-core {
  transform: scale(1.65);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.5), 0 0 0 2px #fff, 0 0 0 8px rgba(255, 255, 255, 0.45);
}

@keyframes fs-lb-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.55);
  }
  70% {
    box-shadow: 0 0 0 13px rgba(255, 255, 255, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}

/* ---- Arrows ---- */
.fs-lb__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 22;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--fs-lb-ctrl-border);
  background: var(--fs-lb-ctrl-bg);
  backdrop-filter: blur(6px);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--fs-lb-chrome-text);
  font-size: 25px;
  line-height: 1;
  opacity: 0.92;
  transition: opacity 0.4s, background 0.3s;
}

.fs-lb__arrow:hover {
  background: var(--fs-lb-ctrl-bg-hover);
}

.fs-lb__arrow--prev {
  left: 18px;
}

.fs-lb__arrow--next {
  right: 18px;
}

.fs-lb__arrow[disabled] {
  opacity: 0.28;
  cursor: default;
}

.fs-lb__arrow-glyph {
  display: block;
  margin-top: -3px;
}

/* ---- Chrome (top + bottom) ---- */
.fs-lb__chrome {
  position: absolute;
  left: 0;
  right: 0;
  z-index: 24;
  transition: opacity 0.45s ease;
}

.fs-lb.is-chrome-hidden .fs-lb__chrome,
.fs-lb.is-chrome-hidden .fs-lb__arrow {
  opacity: 0;
  pointer-events: none;
}

.fs-lb__chrome--top {
  top: 0;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 22px 26px 40px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0));
}

.fs-lb__brand {
  display: block;
  margin-top: 3px;
}

.fs-lb__brand-mark {
  height: 15px;
  width: auto;
  display: block;
}

.fs-lb__top-actions {
  display: flex;
  align-items: center;
  gap: 6px;
}

.fs-lb__icon-button {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--fs-lb-ctrl-border);
  background: var(--fs-lb-ctrl-bg);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--fs-lb-chrome-text);
  transition: background 0.3s;
}

.fs-lb__icon-button:hover {
  background: var(--fs-lb-ctrl-bg-hover);
}

a.fs-lb__icon-button {
  text-decoration: none;
}

.fs-lb__home-icon {
  width: 18px;
  height: 18px;
  display: block;
}

/* CSS-drawn line icons (no external icon font dependency). */
.fs-lb__icon {
  display: inline-block;
  position: relative;
  width: 18px;
  height: 18px;
}

.fs-lb__icon--expand::before,
.fs-lb__icon--expand::after {
  content: "";
  position: absolute;
  width: 7px;
  height: 7px;
  border: 1.6px solid currentColor;
}

.fs-lb__icon--expand::before {
  top: 0;
  left: 0;
  border-right: none;
  border-bottom: none;
}

.fs-lb__icon--expand::after {
  bottom: 0;
  right: 0;
  border-left: none;
  border-top: none;
}

.fs-lb.is-fullscreen .fs-lb__icon--expand::before {
  top: 0;
  left: 0;
  border-right: none;
  border-bottom: none;
  transform: translate(4px, 4px);
}

.fs-lb.is-fullscreen .fs-lb__icon--expand::after {
  bottom: 0;
  right: 0;
  border-left: none;
  border-top: none;
  transform: translate(-4px, -4px);
}

.fs-lb__icon--grid {
  width: 15px;
  height: 15px;
}

.fs-lb__icon--grid::before,
.fs-lb__icon--grid::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(currentColor, currentColor),
    linear-gradient(currentColor, currentColor),
    linear-gradient(currentColor, currentColor),
    linear-gradient(currentColor, currentColor);
  background-size: 6px 6px;
  background-repeat: no-repeat;
  background-position: 0 0, 9px 0, 0 9px, 9px 9px;
}

.fs-lb__icon--close::before,
.fs-lb__icon--close::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1.6px;
  background: currentColor;
}

.fs-lb__icon--close::before {
  transform: rotate(45deg);
}

.fs-lb__icon--close::after {
  transform: rotate(-45deg);
}

/* ---- Bottom chrome (dock) ----
 * Closed: just the controls row. Opening the "shop this spread" toggle grows
 * the dock band (--fs-lb-dock-h) and pushes the spread up to make room — the
 * products get a real row instead of permanently reserved space. */
.fs-lb__chrome--bottom {
  bottom: 0;
  height: var(--fs-lb-dock-h);
  padding: 0 22px 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  transition: opacity 0.45s ease, height 0.42s cubic-bezier(0.62, 0, 0.2, 1);
}

/* "Shop this spread" toggle — a clear pill button that locks the products open. */
.fs-lb__shop-toggle {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 14px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--fs-lb-chrome-text);
  cursor: pointer;
  font-family: inherit;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: lowercase;
  white-space: nowrap;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.fs-lb__shop-toggle[hidden] {
  display: none;
}

.fs-lb__shop-toggle:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.8);
}

.fs-lb.is-shop-open .fs-lb__shop-toggle {
  background: #ffffff;
  border-color: #ffffff;
  color: #1c1d1d;
}

.fs-lb__shop-chevron {
  width: 6px;
  height: 6px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: translateY(-1px) rotate(-135deg);
  transition: transform 0.3s ease;
}

.fs-lb.is-shop-open .fs-lb__shop-chevron {
  transform: translateY(1px) rotate(45deg);
}

.fs-lb__spread-list {
  display: flex;
  gap: 10px;
  max-width: 100%;
  overflow-x: auto;
  padding: 2px 4px;
  max-height: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  pointer-events: none;
  transition: max-height 0.4s ease, opacity 0.35s ease, transform 0.35s ease, visibility 0s linear 0.4s;
}

.fs-lb__spread-list[hidden] {
  display: none;
}

.fs-lb.is-shop-open .fs-lb__spread-list {
  max-height: 150px;
  opacity: 1;
  visibility: visible;
  transform: none;
  pointer-events: auto;
  transition: max-height 0.4s ease, opacity 0.35s ease, transform 0.35s ease;
}

.fs-lb__chip {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 3px;
  padding: 6px 12px 6px 6px;
  cursor: pointer;
  text-align: left;
  transition: background 0.25s, border-color 0.25s;
}

.fs-lb__chip:hover {
  background: #ffffff;
}

.fs-lb__chip-thumb {
  width: 32px;
  height: 40px;
  flex: 0 0 auto;
  overflow: hidden;
  background: #f3f1ec;
  border-radius: 1px;
}

.fs-lb__chip-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.fs-lb__chip-text {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.fs-lb__chip-name {
  font-size: 12px;
  letter-spacing: 0.01em;
  color: #1c1d1d;
  white-space: nowrap;
  text-transform: lowercase;
}

.fs-lb__chip-price {
  font-size: 11px;
  letter-spacing: 0.04em;
  color: #1c1d1d;
  opacity: 0.7;
  margin-top: 2px;
  font-variant-numeric: tabular-nums;
}

.fs-lb__progress {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
  max-width: 560px;
}

.fs-lb__counter {
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--fs-lb-chrome-text);
  opacity: 0.78;
  font-variant-numeric: tabular-nums;
  flex: 0 0 auto;
  min-width: 84px;
}

.fs-lb__track-bar {
  flex: 1 1 auto;
  height: 2px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 2px;
  overflow: hidden;
}

.fs-lb__track-fill {
  height: 100%;
  width: 0;
  background: var(--fs-lb-chrome-text);
  opacity: 0.85;
  transition: width 0.6s cubic-bezier(0.62, 0, 0.2, 1);
}

.fs-lb__pages-button {
  flex: 0 0 auto;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--fs-lb-chrome-text);
  font-family: inherit;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.8;
  transition: opacity 0.25s;
}

.fs-lb__pages-button:hover {
  opacity: 1;
}

/* ---- Thumbnail rail ---- */
.fs-lb__rail {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(20, 21, 21, 0.96);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 16px 18px 18px;
  z-index: 30;
  box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.4);
  animation: fs-lb-rail-up 0.4s cubic-bezier(0.66, 0, 0.22, 1);
}

.fs-lb__rail[hidden] {
  display: none;
}

@keyframes fs-lb-rail-up {
  from {
    transform: translateY(110%);
  }
  to {
    transform: translateY(0);
  }
}

.fs-lb__rail-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.fs-lb__rail-title {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.62);
}

.fs-lb__rail-close {
  background: none;
  border: none;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.7);
  display: flex;
}

.fs-lb__rail-list {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 8px;
}

.fs-lb__thumb {
  flex: 0 0 auto;
  width: 62px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  text-align: center;
}

.fs-lb__thumb-frame {
  width: 62px;
  height: 93px;
  overflow: hidden;
  background: #2a2b2b;
  outline: 1px solid rgba(255, 255, 255, 0.18);
  outline-offset: -1px;
}

.fs-lb__thumb.is-active .fs-lb__thumb-frame {
  outline: 2px solid #fff;
}

.fs-lb__thumb-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0.55;
  transition: opacity 0.2s;
}

.fs-lb__thumb.is-active .fs-lb__thumb-frame img {
  opacity: 1;
}

.fs-lb__thumb-n {
  font-size: 9px;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 5px;
  letter-spacing: 0.08em;
}

/* ---- Cover / intro ---- */
.fs-lb__cover {
  position: absolute;
  inset: 0;
  z-index: 80;
  background: radial-gradient(120% 120% at 50% 30%, #232423 0%, #161716 70%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px;
  animation: fs-lb-fade 0.5s ease;
}

.fs-lb__cover[hidden] {
  display: none;
}

.fs-lb__cover-kicker {
  margin: 0 0 26px;
  font-size: 10px;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

.fs-lb__cover-mark {
  height: 24px;
  width: auto;
  display: block;
  margin: 0 auto 30px;
}

.fs-lb__cover-title {
  font-family: var(--fs-lb-font-head);
  font-weight: 400;
  font-size: 34px;
  line-height: 1.18;
  letter-spacing: -0.01em;
  color: #fff;
  text-transform: lowercase;
  margin: 0 0 14px;
}

.fs-lb__cover-summary {
  max-width: 360px;
  margin: 0 auto 34px;
  font-size: 13.5px;
  line-height: 1.65;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.62);
}

.fs-lb__cover-code {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 auto 24px;
  padding: 9px 16px;
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.32);
  color: rgba(255, 255, 255, 0.82);
  cursor: pointer;
  font-family: inherit;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.fs-lb__cover-code strong {
  letter-spacing: 0.18em;
  color: #fff;
}

.fs-lb__cover-enter {
  background: #fff;
  color: #161716;
  border: none;
  cursor: pointer;
  font-family: var(--fs-lb-font-head);
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: lowercase;
  padding: 16px 40px;
  transition: opacity 0.15s;
}

.fs-lb__cover-enter:hover {
  opacity: 0.88;
}

.fs-lb__cover-enter:active {
  opacity: 0.6;
}

.fs-lb__cover-hint {
  margin: 24px 0 0;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.34);
}

@keyframes fs-lb-fade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* ---- Print-edition signup (last-page takeover) ---- */
.fs-lb__signup {
  position: absolute;
  inset: 0;
  z-index: 88;
  background: radial-gradient(120% 120% at 50% 30%, #232423 0%, #161716 70%);
  animation: fs-lb-fade 0.4s ease;
}

.fs-lb__signup[hidden] {
  display: none;
}

.fs-lb__signup-scroll {
  position: absolute;
  inset: 0;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 56px 20px 40px;
}

.fs-lb__signup-close {
  position: fixed;
  top: 18px;
  right: 22px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--fs-lb-ctrl-border);
  background: var(--fs-lb-ctrl-bg);
  color: var(--fs-lb-chrome-text);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}

.fs-lb__signup-close:hover {
  background: var(--fs-lb-ctrl-bg-hover);
}

.fs-lb__signup-card {
  width: 100%;
  max-width: 420px;
  margin: auto;
  background: var(--fs-lb-cream, #f6f6f3);
  color: #1c1d1d;
  padding: 30px 28px 26px;
  border-radius: 2px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
  animation: fs-lb-cover-up 0.45s cubic-bezier(0.62, 0, 0.2, 1);
}

@keyframes fs-lb-cover-up {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.fs-lb__signup-kicker {
  margin: 0 0 10px;
  font-size: 10px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--fs-lb-grey-muted, #6d655d);
}

.fs-lb__signup-title {
  margin: 0 0 8px;
  font-family: var(--fs-lb-font-head);
  font-weight: 400;
  font-size: 27px;
  line-height: 1.15;
  letter-spacing: -0.01em;
  text-transform: lowercase;
}

.fs-lb__signup-copy {
  margin: 0 0 22px;
  font-size: 13px;
  line-height: 1.6;
  letter-spacing: 0.01em;
  color: #555;
}

.fs-lb__form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.fs-lb__form-hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.fs-lb__form-row {
  display: flex;
  gap: 12px;
}

.fs-lb__form-row > .fs-lb__field {
  flex: 1 1 0;
  min-width: 0;
}

.fs-lb__form-row--city .fs-lb__field--city {
  flex: 1.4 1 0;
}

.fs-lb__form-row--city .fs-lb__field--state {
  flex: 0.9 1 0;
}

.fs-lb__form-row--city .fs-lb__field--zip {
  flex: 0.9 1 0;
}

.fs-lb__field {
  display: flex;
  flex-direction: column;
  gap: 5px;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: lowercase;
  color: #6d655d;
}

.fs-lb__field-opt {
  text-transform: lowercase;
  color: #999;
  letter-spacing: 0.04em;
}

.fs-lb__field input,
.fs-lb__field select {
  width: 100%;
  height: 42px;
  padding: 0 12px;
  border: 1px solid #cfcdc6;
  border-radius: 4px;
  background: #fff;
  color: #1c1d1d;
  font-family: inherit;
  font-size: 14px;
  letter-spacing: 0.01em;
  /* Override the lookbook's global lowercase so typed values keep their case. */
  text-transform: none !important;
  transition: border-color 0.2s;
  -webkit-appearance: none;
  appearance: none;
}

.fs-lb__field select {
  cursor: pointer;
  background-image: linear-gradient(45deg, transparent 50%, #777 50%), linear-gradient(135deg, #777 50%, transparent 50%);
  background-position: calc(100% - 16px) center, calc(100% - 11px) center;
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
  padding-right: 28px;
}

.fs-lb__field input:focus,
.fs-lb__field select:focus {
  outline: none;
  border-color: #1c1d1d;
}

.fs-lb__form-error {
  margin: 2px 0 0;
  font-size: 12px;
  letter-spacing: 0.01em;
  color: #c00000;
}

.fs-lb__form-error[hidden] {
  display: none;
}

.fs-lb__form-submit {
  margin-top: 6px;
  height: 50px;
  border: none;
  background: #1c1d1d;
  color: #fff;
  cursor: pointer;
  font-family: var(--fs-lb-font-head);
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: lowercase;
  transition: opacity 0.2s;
}

.fs-lb__form-submit:hover {
  opacity: 0.88;
}

.fs-lb__form-submit[disabled] {
  opacity: 0.5;
  cursor: default;
}

.fs-lb__form-note {
  margin: 12px 0 0;
  text-align: center;
  font-size: 11px;
  letter-spacing: 0.04em;
  color: #999;
}

.fs-lb__signup-success {
  text-align: center;
}

.fs-lb__signup-success .fs-lb__signup-copy {
  margin-bottom: 24px;
}

.fs-lb__signup-cta {
  display: inline-block;
  padding: 15px 36px;
  background: #1c1d1d;
  color: #fff;
  text-decoration: none;
  font-family: var(--fs-lb-font-head);
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: lowercase;
  transition: opacity 0.2s;
}

.fs-lb__signup-cta:hover {
  opacity: 0.88;
}

@media (max-width: 820px) {
  .fs-lb {
    --fs-lb-dock-h: 52px;
    --fs-lb-dock-open: 120px;
  }

  /* Free up room in the controls row for the shop pill — the progress bar
   * already conveys position, so the numeric counter can drop on small screens. */
  .fs-lb__counter {
    display: none;
  }

  .fs-lb__progress {
    gap: 12px;
  }

  .fs-lb__chrome--top {
    padding: 16px 16px 36px;
  }

  .fs-lb__arrow {
    width: 42px;
    height: 42px;
  }

  .fs-lb__cover-title {
    font-size: 28px;
  }

  .fs-lb__signup-scroll {
    padding: 52px 16px 32px;
  }

  .fs-lb__signup-card {
    padding: 26px 20px 22px;
  }

  .fs-lb__signup-title {
    font-size: 24px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .fs-lb__track,
  .fs-lb__track-fill,
  .fs-lb__dot-core,
  .fs-lb__chrome,
  .fs-lb__arrow {
    transition: none;
  }

  .fs-lb__dot-ring,
  .fs-lb__cover,
  .fs-lb__rail,
  .fs-lb__signup,
  .fs-lb__signup-card {
    animation: none;
  }
}
