/* Bookstore 2 tokens + chrome/homepage rules.
   Source: literature/literature/skins/default/css/__custom.css
   Namespace: --bs2-* so existing .lit-* / .owph-* styles stay intact. */

:root {
  --bs2-page-width: 1290px;
  --bs2-grid-gap: 30px;
  --bs2-radius: 12px;
  --bs2-radius-sm: 8px;
  --bs2-radius-lg: 16px;
  --bs2-bg: #F8F6EF;
  --bs2-surface: #f1efe3;
  --bs2-line: #d9d7cc;
  --bs2-ink: #171715;
  --bs2-muted: #6f6f67;
  --bs2-meta: #a39f98;
  --bs2-accent: #d2a66f;
  --bs2-hover: #ad895d;
  --bs2-dark: #1a0604;
  --bs2-dark-2: #351411;
  --bs2-on-dark: #fbf9f2;
  --bs2-on-dark-muted: #c0b4ae;
  --bs2-heading: var(--font-space-grotesk), "Space Grotesk", sans-serif;
  --bs2-body: var(--font-nunito-sans), "Nunito Sans", sans-serif;
  --bs2-gutter: clamp(1.125rem, 0.84rem + 1.2vw, 2.5rem);
  --bs2-header-h: 4.85rem;
  --bs2-section-y: clamp(3.5rem, 2.5rem + 4vw, 6.5rem);

  /*
   * HERO VIDEO SETTINGS
   * Change these two values to tune the publishing-hero video.
   * --bs2-video-speed:   1 = normal, 0.5 = half speed, 0.35 = slower
   * --bs2-video-overlay: 0 = no dark layer, 1 = fully black (0.62 = current)
   */
  --bs2-video-speed: 0.45;
  --bs2-video-overlay: 0.62;
}

html:has(.bs2) {
  scroll-behavior: smooth;
}

html:has(.bs2),
html:has(.bs2) body {
  background: var(--bs2-bg);
  color: var(--bs2-ink);
}

@media (prefers-reduced-motion: reduce) {
  html:has(.bs2) {
    scroll-behavior: auto;
  }
}

.bs2 {
  background: var(--bs2-bg);
  color: var(--bs2-ink);
  font-family: var(--bs2-body);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.625;
  min-height: 100%;
  overflow-x: hidden;
}

.bs2 .bg-white,
.bs2 [class*="bg-white"] {
  background-color: var(--bs2-bg) !important;
}

html:has(.bs2-hstory),
html:has(.bs2-hstory) body,
html:has(.bs2-hstory) .bs2 {
  overflow-x: clip;
}

html:has(.bs2-hstory) {
  scroll-behavior: auto;
}

.bs2-wrap {
  width: 100%;
  max-width: var(--bs2-page-width);
  margin-inline: auto;
  padding-inline: var(--bs2-gutter);
}

.bs2-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--bs2-heading);
  font-size: 16px;
  font-weight: 500;
  line-height: 19px;
  letter-spacing: 0;
  text-decoration: none;
  border-radius: var(--bs2-radius);
  border: 0;
  padding: 18px 46px;
  background: var(--bs2-accent);
  color: var(--bs2-ink);
  transition: background 0.2s ease, color 0.2s ease;
}

.bs2-btn:hover {
  background: var(--bs2-hover);
  color: var(--bs2-on-dark);
}

.bs2-btn--ghost {
  display: inline-flex;
  align-items: center;
  background: transparent;
  color: var(--bs2-ink);
  font-family: var(--bs2-heading);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0 0 2px;
  border: 0;
  border-bottom: 1px solid var(--bs2-ink);
  border-radius: 0;
}

.bs2-btn--ghost:hover {
  background: transparent;
  color: var(--bs2-hover);
  border-bottom-color: var(--bs2-hover);
}

.bs2-btn--light {
  background: var(--bs2-on-dark);
  color: var(--bs2-dark);
}

.bs2-btn--light:hover {
  background: var(--bs2-accent);
  color: var(--bs2-ink);
}

.bs2-eyebrow {
  margin: 0 0 0.75rem;
  font-family: var(--bs2-heading);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--bs2-accent);
}

.bs2-h1,
.bs2-h2,
.bs2-h3,
.bs2-h4,
.bs2-h6 {
  font-family: var(--bs2-heading);
  font-weight: 400;
  color: var(--bs2-ink);
}

.bs2-h1 {
  font-size: 57px;
  line-height: 1em;
  letter-spacing: -0.04em;
  margin: 0;
}

.bs2-h2 {
  font-size: 47px;
  line-height: 1em;
  letter-spacing: -0.04em;
  margin: 0;
}

.bs2-h3 {
  font-size: 35px;
  line-height: 1.055em;
  letter-spacing: -0.03em;
  margin: 0;
}

.bs2-h4 {
  font-size: 28px;
  line-height: 1.07em;
  letter-spacing: -0.02em;
  margin: 0;
}

.bs2-h6 {
  font-size: 19px;
  line-height: 1.265em;
  letter-spacing: -0.02em;
  margin: 0;
}

.bs2-body {
  margin: 0;
  font-family: var(--bs2-body);
  font-size: 16px;
  line-height: 1.625;
  color: var(--bs2-muted);
}

/* Header */

.bs2-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  overflow: visible;
  background: transparent;
  border-bottom: 0;
}

.bs2-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  min-height: var(--bs2-header-h);
  width: 100%;
  max-width: var(--bs2-page-width);
  margin-inline: auto;
  padding-inline: var(--bs2-gutter);
}

.bs2-header__brand {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: var(--bs2-ink);
}

.bs2-header__logo {
  height: 3.35rem;
  width: auto;
  max-width: 16rem;
  object-fit: contain;
  object-position: left center;
}

.bs2-header__logo--drawer {
  height: 2.85rem;
  max-width: 13.5rem;
}

.bs2-header__nav {
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  gap: 1rem;
  flex: 1;
  min-width: 0;
  align-self: stretch;
}

.bs2-header__nav-wrap {
  flex: 1;
  min-width: 0;
  display: flex;
  align-items: stretch;
  align-self: stretch;
  overflow: visible;
}

.bs2-header__link {
  appearance: none;
  background: none;
  border: 0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  padding: 0;
  font-family: var(--bs2-heading);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.01em;
  text-transform: none;
  text-decoration: none;
  color: var(--bs2-ink);
  white-space: nowrap;
}

.bs2-header__link:hover,
.bs2-header__link[data-active="true"] {
  color: var(--bs2-accent);
}

.bs2-header__link--menu {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.bs2-header__caret {
  display: inline-block;
  width: 0.42rem;
  height: 0.42rem;
  margin-top: -0.15rem;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg);
  transition: transform 0.18s ease;
}

.bs2-header__item:hover .bs2-header__caret,
.bs2-header__item:focus-within .bs2-header__caret,
.bs2-header__item:has(.is-open) .bs2-header__caret {
  transform: rotate(225deg);
}

.bs2-header__link:hover,
.bs2-header__link[data-active="true"] {
  color: var(--bs2-accent);
}

.bs2-header__item {
  position: relative;
  display: flex;
  align-items: center;
  align-self: stretch;
}

.bs2-header__item:hover,
.bs2-header__item:focus-within {
  z-index: 360;
}

.bs2-header__drop {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  min-width: 14rem;
  max-height: 18rem;
  overflow-y: auto;
  margin: 0;
  padding: 0.75rem 0;
  background: var(--bs2-bg);
  border: 1px solid var(--bs2-line);
  box-shadow: 0 12px 32px rgba(26, 6, 4, 0.12);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  z-index: 350;
  transition: opacity 0.15s ease, visibility 0.15s ease;
}

.bs2-header__item:hover .bs2-header__drop,
.bs2-header__item:focus-within .bs2-header__drop,
.bs2-header__drop.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.bs2-header__drop-link {
  display: block;
  padding: 0.55rem 1.15rem;
  font-family: var(--bs2-heading);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: none;
  text-decoration: none;
  color: var(--bs2-ink);
  white-space: nowrap;
}

.bs2-header__drop-link:hover {
  color: var(--bs2-accent);
  background: var(--bs2-surface);
}

.bs2-header__actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-left: auto;
  flex-shrink: 0;
}

.bs2-header__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  min-height: 44px;
  color: var(--bs2-ink);
  text-decoration: none;
  background: transparent;
  border: 0;
  padding: 0;
  cursor: pointer;
}

.bs2-header__icon:hover {
  color: var(--bs2-accent);
}

.bs2-header__cart {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  min-height: 44px;
  text-decoration: none;
  color: var(--bs2-ink);
}

.bs2-header__cart:hover {
  color: var(--bs2-accent);
}

.bs2-header__cart-badge {
  position: absolute;
  top: 4px;
  right: 2px;
  min-width: 1rem;
  height: 1rem;
  padding: 0 0.25rem;
  background: var(--bs2-accent);
  color: var(--bs2-ink);
  font-family: var(--bs2-heading);
  font-size: 0.625rem;
  font-weight: 600;
  line-height: 1rem;
  text-align: center;
}

.bs2-header__cart-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.5rem;
  height: 1.5rem;
}

.bs2 .icon-cart {
  position: relative;
  display: inline-flex;
  width: 1.2em;
  height: 1.2em;
  font-size: inherit !important;
  line-height: 0;
  color: inherit;
}

.bs2 .icon-cart::before {
  content: "" !important;
  display: block;
  width: 100%;
  height: 100%;
  background-color: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='9' cy='20' r='1.35'/%3E%3Ccircle cx='18' cy='20' r='1.35'/%3E%3Cpath d='M3 4h2l2.3 11h10.4L20 8H6.2'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='9' cy='20' r='1.35'/%3E%3Ccircle cx='18' cy='20' r='1.35'/%3E%3Cpath d='M3 4h2l2.3 11h10.4L20 8H6.2'/%3E%3C/svg%3E") center / contain no-repeat;
}

.bs2-cart-count {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  padding: 0 !important;
  line-height: 1 !important;
  text-align: center;
  font-variant-numeric: tabular-nums;
}

@media (min-width: 1024px) {
  .bs2-cart-count {
    top: -4px !important;
    right: -7px !important;
    left: auto !important;
    box-sizing: border-box;
    min-width: 16px;
    height: 16px;
    padding: 0 4px !important;
    font-size: 10px;
    border-radius: 999px;
  }

  html[dir="rtl"] .bs2-cart-count {
    left: -7px !important;
    right: auto !important;
  }
}

@media (max-width: 1023px) {
  .bs2-cart-count {
    top: -5px !important;
    right: -6px !important;
    left: auto !important;
    box-sizing: border-box;
    min-width: 14px;
    height: 14px;
    padding: 0 4px !important;
    font-size: 9px;
    border-radius: 999px;
  }

  html[dir="rtl"] .bs2-cart-count {
    left: -6px !important;
    right: auto !important;
  }
}

.bs2-header__menu-btn {
  display: none;
}

.bs2-mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 60;
  background: var(--bs2-bg);
  color: var(--bs2-ink);
  padding: 1.25rem var(--bs2-gutter) 2rem;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}

.bs2-mobile-nav__top {
  display: flex;
  justify-content: flex-end;
}

.bs2-mobile-nav__list {
  list-style: none;
  margin: 2rem 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.bs2-mobile-nav__list a {
  display: flex;
  align-items: center;
  min-height: 48px;
  font-family: var(--bs2-heading);
  font-size: 36px;
  line-height: 1.2;
  letter-spacing: -0.04em;
  text-decoration: none;
  color: var(--bs2-ink);
}

.bs2-mobile-nav__list a:hover {
  color: var(--bs2-accent);
}

.bs2-mobile-nav__meta {
  margin-top: auto;
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  color: var(--bs2-muted);
}

.bs2-mobile-nav__sub {
  list-style: none;
  margin: 0.25rem 0 0.75rem;
  padding: 0 0 0 0.75rem;
}

.bs2-mobile-nav__sub a {
  font-size: 20px;
  min-height: 40px;
  color: var(--bs2-muted);
}

/* Publishing-house hero (Literature-style) */

.bs2-phero {
  position: relative;
  z-index: 1;
  color: #fbf9f2;
  background: transparent;
  overflow: visible;
  margin-top: calc(var(--bs2-header-h) * -1);
}

.bs2-phero__video-stage {
  position: relative;
  height: 100vh;
  min-height: 28rem;
  overflow: hidden;
  background: #1a0604;
}

.bs2-phero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.bs2-phero__veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: rgba(26, 6, 4, var(--bs2-video-overlay));
}

.bs2-phero[data-video-failed="true"] .bs2-phero__video-stage {
  display: none;
}

.bs2-phero__canvas {
  position: relative;
  min-height: 40rem;
  display: block;
  padding: 4.25rem 0 16rem;
  overflow: visible;
  background: transparent;
}

.bs2-phero__bleed {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 0;
  pointer-events: none;
  background-color: #24110e;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center bottom;
}

.bs2-phero__bleed::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(26, 6, 4, 0.46) 0%, rgba(26, 6, 4, 0.22) 52%, rgba(26, 6, 4, 0) 100%);
}

.bs2-phero__featured {
  position: relative;
  z-index: 2;
}

.bs2-phero__featured-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 1.75rem;
}

.bs2-phero__featured .bs2-h2 {
  color: #fbf9f2;
  margin-top: 0.3rem;
}

.bs2-phero__featured .bs2-eyebrow {
  color: #d2a66f;
}

.bs2-phero__featured-more {
  color: #fbf9f2;
  border-bottom-color: rgba(251, 249, 242, 0.45);
}

.bs2-phero__featured-more:hover {
  color: #d2a66f;
  border-bottom-color: #d2a66f;
}

.bs2-phero__featured .bs2-shelf-carousel {
  margin-top: 0;
}

.bs2-phero__featured .bs2-shelf-carousel .flex.justify-end {
  color: #fbf9f2;
}

.bs2-phero__featured .bs2-shelf-carousel > a.secondary-button {
  display: none !important;
}

.bs2-phero__featured .scrollbar-hide {
  margin-top: 0.5rem;
}

.bs2-phero__featured .group [class*="bg-white"],
.bs2-phero__featured .group [class*="bg-white"] a,
.bs2-phero__featured .group [class*="bg-white"] p,
.bs2-phero__featured .group [class*="bg-white"] span,
.bs2-phero__featured .group [class*="bg-white"] div {
  color: var(--bs2-ink) !important;
}

.bs2-phero__featured .group .secondary-button {
  display: inline-flex !important;
  background: var(--bs2-accent);
  color: var(--bs2-ink) !important;
  border: 0;
  border-radius: var(--bs2-radius);
}

.bs2-phero__featured .group .secondary-button:hover {
  background: var(--bs2-hover);
  color: var(--bs2-on-dark) !important;
}

.bs2-phero__featured .group .icon-compare {
  display: none !important;
}

.bs2-phero__headline {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  text-align: left;
  padding: calc(var(--bs2-header-h) + 2rem) var(--bs2-gutter) 3rem;
  padding-left: max(var(--bs2-gutter), calc((100vw - var(--bs2-page-width)) / 2 + var(--bs2-gutter)));
}

.bs2-phero__headline::before {
  content: "";
  position: absolute;
  width: min(46rem, 80vw);
  height: 18rem;
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(255, 236, 200, 0.32) 0%, rgba(210, 166, 111, 0.08) 42%, transparent 72%);
  pointer-events: none;
  animation: bs2-light-orb 8s ease-in-out infinite;
}

.bs2-phero__headline-kicker {
  position: relative;
  z-index: 1;
  margin: 0 0 1rem;
  font-family: var(--bs2-heading);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(251, 249, 242, 0.72);
}

.bs2-phero__headline-title {
  position: relative;
  z-index: 1;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.12em;
  overflow: visible;
  font-family: "Cormorant Garamond", "DM Serif Display", serif;
  font-size: clamp(2.35rem, 1.1rem + 4.4vw, 5rem);
  font-weight: 600;
  line-height: 1.22;
  letter-spacing: -0.03em;
  background-image: linear-gradient(
    105deg,
    #c9b08a 0%,
    #fff8ea 16%,
    #d2a66f 34%,
    #ffffff 50%,
    #e8d2a8 66%,
    #fff8ea 82%,
    #c9b08a 100%
  );
  background-size: 220% 100%;
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  animation: bs2-light-sweep 7.5s ease-in-out infinite;
}

.bs2-phero__headline-title span {
  display: block;
  overflow: visible;
  padding-bottom: 0.14em;
  line-height: 1.22;
}

.bs2-phero__headline-lede {
  position: relative;
  z-index: 1;
  max-width: 40rem;
  margin: 1.35rem 0 0;
  font-size: clamp(1rem, 0.94rem + 0.3vw, 1.15rem);
  line-height: 1.65;
  color: rgba(251, 249, 242, 0.88);
}

.bs2-phero__headline-lede strong {
  color: #e8c48a;
  font-weight: 700;
  letter-spacing: 0.01em;
}

@keyframes bs2-light-sweep {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes bs2-light-orb {
  0%, 100% { transform: translate(-8%, -6%) scale(1); opacity: 0.7; }
  50% { transform: translate(10%, 8%) scale(1.12); opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
  .bs2-phero__headline-title,
  .bs2-phero__headline::before {
    animation: none;
  }

  .bs2-phero__headline-title {
    background: none;
    color: #fbf9f2;
    -webkit-text-fill-color: #fbf9f2;
  }
}

.bs2-phero__shot {
  position: absolute;
  z-index: 1;
  object-fit: cover;
  object-position: top center;
  display: block;
  pointer-events: none;
  height: auto;
  aspect-ratio: 2 / 3;
  box-shadow: 0 24px 60px rgba(10, 4, 2, 0.4);
}

.bs2-phero__shot--a {
  left: 7%;
  top: 18%;
  width: min(18vw, 14.5rem);
}

.bs2-phero__shot--b {
  right: 15%;
  top: 11%;
  width: min(16vw, 12.75rem);
}

.bs2-phero__shot--c {
  right: 17%;
  bottom: 8%;
  width: min(17vw, 13.5rem);
}

.bs2-phero__copy {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.bs2-phero__title {
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.12em;
  max-width: min(52rem, 100%);
  text-align: center;
}

.bs2-phero__line {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: center;
  gap: 0.22em 0.28em;
  text-wrap: balance;
}

.bs2-phero__sans {
  font-family: "Plus Jakarta Sans", var(--bs2-heading);
  font-weight: 800;
  font-size: clamp(2.15rem, 1.1rem + 4.2vw, 5.5rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
  color: #fff;
}

.bs2-phero__serif {
  font-family: "Cormorant Garamond", "DM Serif Display", serif;
  font-style: italic;
  font-weight: 500;
  font-size: clamp(2rem, 1rem + 3.6vw, 4.75rem);
  line-height: 0.95;
  color: #d2b48c;
}

.bs2-phero__serif--plain {
  font-style: italic;
  font-weight: 600;
  font-size: clamp(2.15rem, 1.1rem + 4.2vw, 5.5rem);
}

.bs2-phero__cta {
  position: relative;
  z-index: 4;
  margin-top: -0.35rem;
  margin-left: min(18vw, 9.5rem);
  width: 8.25rem;
  height: 8.25rem;
  border-radius: 50%;
  background: #c4a574;
  color: #fff;
  text-decoration: none;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: "Plus Jakarta Sans", var(--bs2-heading);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1.2;
  box-shadow: 0 10px 30px rgba(10, 4, 2, 0.28);
  transition: background 0.2s ease, transform 0.2s ease;
}

.bs2-phero__cta:hover {
  background: #b39162;
  color: #fff;
  transform: translateX(4px);
}

.bs2-phero__tag {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 1.75rem;
  z-index: 3;
  margin: 0;
  text-align: center;
  font-family: "Plus Jakarta Sans", var(--bs2-heading);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(251, 249, 242, 0.82);
}

@media (max-width: 1023px) {
  .bs2-phero__shot--a {
    left: 3%;
    width: 28vw;
    height: auto;
  }

  .bs2-phero__shot--b {
    right: 4%;
    width: 24vw;
    height: auto;
  }

  .bs2-phero__shot--c {
    display: none;
  }

  .bs2-phero__cta {
    margin-left: 0;
    margin-top: 1.25rem;
  }
}

@media (max-width: 639px) {
  .bs2-phero__shot {
    opacity: 0.38;
  }

  .bs2-phero__line {
    white-space: normal;
    flex-wrap: wrap;
  }
}

/* Hero */

.bs2-hero {
  position: relative;
  z-index: 2;
  margin-top: -14rem;
  padding: clamp(8rem, 5rem + 8vw, 11rem) 0 var(--bs2-section-y);
  background: linear-gradient(180deg, rgba(252, 251, 247, 0) 0%, rgba(252, 251, 247, 0.42) 38%, var(--bs2-bg) 78%);
  box-shadow: none;
  border: 0;
}

.bs2-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: clamp(1.75rem, 1rem + 3vw, 4rem);
  align-items: center;
}

.bs2-hero__copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.75rem;
}

.bs2-hero__stack {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.35rem;
}

.bs2-rotate {
  display: grid;
  overflow: hidden;
}

.bs2-rotate > span {
  grid-area: 1 / 1;
  display: block;
  white-space: nowrap;
  visibility: hidden;
}

.bs2-rotate > span:first-child {
  visibility: visible;
}

.bs2-hero__kicker {
  color: var(--bs2-muted);
}

.bs2-hero__brand {
  margin-top: 0.85rem;
}

.bs2-hero__tag {
  margin-top: 0.5rem;
  color: var(--bs2-muted);
}

.bs2-hero__visual {
  position: relative;
  min-height: 32rem;
  background: var(--bs2-surface);
  overflow: hidden;
}

.bs2-hero__scenes {
  position: absolute;
  inset: 0;
}

.bs2-hero__scene {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.7s ease, visibility 0.7s ease, transform 0.7s ease;
  transform: scale(1.06);
}

.bs2-hero__scene:first-child,
.bs2-hero__scene[data-active="true"] {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

.bs2-hero__scene img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  padding: 8% 10%;
}

.bs2-hero__scene-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(26, 6, 4, 0.08) 0%, rgba(26, 6, 4, 0.35) 100%),
    linear-gradient(90deg, rgba(252, 251, 247, 0.2) 0%, rgba(26, 6, 4, 0.15) 100%);
  pointer-events: none;
}

.bs2-hero__covers {
  position: absolute;
  inset: 12% 8% 22%;
  display: grid;
  place-items: center;
  perspective: 1200px;
}

.bs2-hero__cover {
  position: absolute;
  width: min(46%, 17.5rem);
  aspect-ratio: 2 / 3;
  padding: 0;
  border: 0;
  background: var(--bs2-dark);
  box-shadow: 0 18px 40px rgba(26, 6, 4, 0.28);
  cursor: pointer;
  transform-origin: center bottom;
  opacity: 0;
  transition: transform 0.9s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.9s ease;
}

.bs2-hero__cover[data-slot="current"] {
  transform: translate(0, 0) rotate(0deg) scale(1);
  opacity: 1;
  z-index: 3;
}

.bs2-hero__cover[data-slot="next"] {
  transform: translate(58%, 6%) rotate(10deg) scale(0.78);
  opacity: 0.55;
  z-index: 2;
}

.bs2-hero__cover[data-slot="prev"] {
  transform: translate(-58%, 6%) rotate(-10deg) scale(0.78);
  opacity: 0.55;
  z-index: 2;
}

.bs2-hero__cover[data-slot="hidden"] {
  transform: translate(0, 20%) scale(0.6);
  opacity: 0;
  z-index: 1;
  pointer-events: none;
}

.bs2-hero__cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.bs2-hero__cover[data-slot="hidden"] {
  pointer-events: none;
}

.bs2-hero__caption {
  position: absolute;
  left: 1.25rem;
  right: 1.25rem;
  bottom: 3.4rem;
  color: var(--bs2-on-dark);
  text-shadow: 0 1px 12px rgba(26, 6, 4, 0.45);
}

.bs2-hero__caption-title {
  margin: 0;
  font-family: var(--bs2-heading);
  font-size: 19px;
  letter-spacing: -0.02em;
}

.bs2-hero__caption-author {
  margin: 0.2rem 0 0;
  font-size: 14px;
  color: var(--bs2-on-dark-muted);
}

.bs2-hero__controls {
  position: absolute;
  left: 1.25rem;
  right: 1.25rem;
  bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  z-index: 4;
}

.bs2-hero__nav {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  padding: 0;
  color: var(--bs2-on-dark);
  background: rgba(26, 6, 4, 0.4);
  border: 1px solid rgba(251, 249, 242, 0.35);
  cursor: pointer;
}

.bs2-hero__nav:hover {
  color: var(--bs2-dark);
  background: var(--bs2-accent);
  border-color: var(--bs2-accent);
}

.bs2-hero__dots {
  display: flex;
  gap: 0.45rem;
}

.bs2-hero__dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: rgba(251, 249, 242, 0.35);
  cursor: pointer;
}

.bs2-hero__dot[aria-selected="true"] {
  background: var(--bs2-accent);
}

/* Intro */

.bs2-intro {
  padding: 0 0 var(--bs2-section-y);
  text-align: center;
}

.bs2-intro .bs2-h1 {
  max-width: 18ch;
  margin-inline: auto;
}

/* Shelves + cards */

.bs2-shelf {
  padding: 0 0 var(--bs2-section-y);
}

.bs2-choice {
  margin-top: clamp(3.5rem, 2.5rem + 4vw, 6rem);
}

.bs2-choice__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.5rem 1rem;
}

.bs2-choice__grid > * {
  min-width: 0;
  width: 100%;
}

.bs2-choice__grid .max-w-\[291px\] {
  max-width: 100%;
}

.bs2-choice .icon-compare {
  display: none !important;
}

.bs2-choice .group .secondary-button {
  display: inline-flex !important;
  background: var(--bs2-accent);
  color: var(--bs2-ink) !important;
  border: 0;
  border-radius: var(--bs2-radius);
}

.bs2-choice .group .secondary-button:hover {
  background: var(--bs2-hover);
  color: var(--bs2-on-dark) !important;
}

@media (max-width: 1023px) {
  .bs2-choice__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.bs2-shelf__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.bs2-shelf__copy {
  max-width: 36rem;
}

.bs2-shelf__title {
  margin-top: 0.35rem;
}

.bs2-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: var(--bs2-grid-gap);
}

.bs2-grid--6 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.bs2-grid--4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

v-product-card {
  display: block;
  min-width: 0;
  width: 100%;
}

.bs2-card {
  display: flex;
  flex-direction: column;
  width: 100%;
  min-width: 0;
  background: var(--bs2-bg);
  color: var(--bs2-ink);
  text-decoration: none;
  overflow: hidden;
}

.bs2-card__media {
  position: relative;
  aspect-ratio: 3 / 4;
  background: var(--bs2-surface);
  overflow: hidden;
  border-radius: var(--bs2-radius);
}

.bs2-card__cover {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.bs2-card__img,
.bs2-card__media img,
.bs2-card__media .shimmer {
  position: absolute;
  inset: 0;
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  max-height: none !important;
  object-fit: cover;
  object-position: center;
  border: 0;
  transform: none;
}

.bs2-card__img--hover {
  z-index: 1;
  opacity: 0;
  transition: opacity 0.28s ease;
  pointer-events: none;
}

@media (hover: hover) {
  .bs2-card:hover .bs2-card__img--hover,
  v-product-card:hover .bs2-card__img--hover {
    opacity: 1;
  }
}

.bs2-card__badge {
  position: absolute;
  top: 0.65rem;
  left: 0.65rem;
  z-index: 2;
  margin: 0;
  background: var(--bs2-accent);
  color: var(--bs2-ink);
  font-family: var(--bs2-heading);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.28rem 0.55rem;
  border-radius: var(--bs2-radius-sm);
}

.bs2-card__wish {
  position: absolute;
  top: 0.55rem;
  right: 0.55rem;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.85rem;
  height: 1.85rem;
  padding: 0;
  border: 1px solid var(--bs2-line);
  border-radius: 999px;
  background: var(--bs2-bg);
  color: var(--bs2-ink);
  cursor: pointer;
}

.bs2-card__wish.is-active,
.bs2-card__wish .icon-heart-fill {
  color: #8a2e24;
}

.bs2-card__body {
  padding: 0.55rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  min-width: 0;
}

.bs2-card__title {
  margin: 0;
  font-family: var(--bs2-heading);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: var(--bs2-ink);
  text-decoration: none;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.bs2-card__title:hover {
  color: var(--bs2-hover);
}

.bs2-card__price {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.4rem;
  margin: 0;
  font-family: var(--bs2-heading);
  font-size: 15px;
  line-height: 1.25;
  color: var(--bs2-ink);
}

.bs2-card__price * {
  margin: 0 !important;
  font-size: inherit !important;
  font-weight: 500 !important;
  color: inherit !important;
}

.bs2-card__price-was,
.bs2-card__price .strikethrough,
.bs2-card__price s {
  color: var(--bs2-meta) !important;
  text-decoration: line-through;
}

.bs2-card__cart {
  display: none;
  margin-top: 0.35rem;
  width: 100%;
  border: 0;
  background: var(--bs2-accent);
  color: var(--bs2-ink);
  font-family: var(--bs2-heading);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.7rem 0.75rem;
  cursor: pointer;
  border-radius: var(--bs2-radius);
}

.bs2-card__cart:hover {
  background: var(--bs2-hover);
  color: var(--bs2-on-dark);
}

.bs2-card--list {
  flex-direction: row;
  align-items: stretch;
  gap: 1.15rem;
  width: 100%;
  padding: 1.15rem 0;
  border-bottom: 1px solid var(--bs2-line);
  overflow: visible;
  background: transparent;
}

.bs2-card--list .bs2-card__media {
  flex: 0 0 7.25rem;
  width: 7.25rem;
  aspect-ratio: 3 / 4;
  overflow: hidden;
}

.bs2-card--list .bs2-card__body {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 1rem 1.5rem;
  flex: 1;
  min-width: 0;
  padding: 0.15rem 0 0;
}

.bs2-card--list .bs2-card__info {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  min-width: 0;
}

.bs2-card--list .bs2-card__title {
  font-size: 1.2rem;
  line-height: 1.3;
  -webkit-line-clamp: 2;
}

.bs2-card--list .bs2-card__cart {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  flex-shrink: 0;
  margin-top: 0;
  padding: 0.75rem 1.25rem;
}

.bs2-catalog__list {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.bs2-catalog__list > * {
  width: 100%;
}

@media (min-width: 768px) {
  .bs2-card--list .bs2-card__media {
    flex-basis: 9.5rem;
    width: 9.5rem;
  }

  .bs2-card--list .bs2-card__title {
    font-size: 1.35rem;
  }
}

@media (max-width: 639px) {
  .bs2-card--list .bs2-card__body {
    flex-direction: column;
    align-items: flex-start;
  }

  .bs2-card--list .bs2-card__cart {
    width: 100%;
  }
}

.bs2-shelf-carousel__track {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  margin-top: 0.35rem;
  padding-top: 0.5rem;
  padding-bottom: 0.35rem;
}

.bs2-shelf-carousel__track::-webkit-scrollbar {
  display: none;
}

.bs2-shelf-carousel__track > * {
  flex: 0 0 10.75rem;
  width: 10.75rem;
  max-width: 10.75rem;
  scroll-snap-align: start;
}

.bs2-shelf-carousel__track .bs2-card {
  width: 100%;
  max-width: none;
}

.bs2-phero__featured .bs2-card {
  background: var(--bs2-bg);
  padding: 0;
  overflow: hidden;
  border-radius: var(--bs2-radius);
}

.bs2-phero__featured .bs2-card__title,
.bs2-phero__featured .bs2-card__price {
  color: var(--bs2-ink) !important;
}

.bs2-phero__featured .bs2-card__title,
.bs2-card__title {
  font-weight: 400 !important;
}

.bs2-phero__featured .bs2-card__body {
  padding: 0.55rem 0.75rem 0.7rem;
}

.bs2-phero__featured .bs2-shelf-carousel > .flex.justify-end a,
.bs2-shelf .bs2-shelf-carousel > a.secondary-button {
  display: none !important;
}

@media (min-width: 768px) {
  .bs2-shelf-carousel__track {
    gap: 1.35rem;
  }

  .bs2-shelf-carousel__track > * {
    flex-basis: 14.5rem;
    width: 14.5rem;
    max-width: 14.5rem;
  }

  .bs2-card__title {
    font-size: 18px;
  }

  .bs2-card__price {
    font-size: 16px;
  }
}

@media (min-width: 1024px) {
  .bs2-card:not(.bs2-card--list) {
    --bs2-card-cart-h: 2.75rem;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
  }

  .bs2-card:not(.bs2-card--list):hover,
  v-product-card:hover .bs2-card:not(.bs2-card--list) {
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  }

  .bs2-card:not(.bs2-card--list) .bs2-card__img,
  .bs2-card:not(.bs2-card--list):hover .bs2-card__img,
  v-product-card:hover .bs2-card:not(.bs2-card--list) .bs2-card__img {
    transform: none;
  }

  .bs2-card:not(.bs2-card--list) .bs2-card__body {
    position: relative;
    z-index: 1;
    margin-top: calc(-1 * var(--bs2-card-cart-h));
    padding: 0.55rem 0.75rem 0.55rem;
    background: var(--bs2-bg);
    transform: translateY(var(--bs2-card-cart-h));
    transition: transform 0.3s ease-out;
  }

  .bs2-card:not(.bs2-card--list):hover .bs2-card__body,
  v-product-card:hover .bs2-card:not(.bs2-card--list) .bs2-card__body {
    transform: translateY(0);
  }

  .bs2-card:not(.bs2-card--list) .bs2-card__cart {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    height: var(--bs2-card-cart-h);
    margin: 0;
    padding: 0 0.75rem;
    box-sizing: border-box;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
  }

  .bs2-card:not(.bs2-card--list):hover .bs2-card__cart,
  v-product-card:hover .bs2-card:not(.bs2-card--list) .bs2-card__cart {
    opacity: 1;
    pointer-events: auto;
  }

  .bs2-card--list .bs2-card__cart {
    display: inline-flex;
    height: auto;
    opacity: 1;
    max-height: none;
  }

  .bs2-phero__featured .bs2-card:not(.bs2-card--list) .bs2-card__body {
    background: var(--bs2-bg);
  }
}

.bs2-empty {
  margin: 0;
  color: var(--bs2-muted);
}

/* Story + stats */

.bs2-story {
  padding: 0;
}

.bs2-story__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: var(--bs2-grid-gap);
  align-items: start;
}

.bs2-story__copy {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.bs2-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--bs2-grid-gap);
  margin-top: 2.5rem;
  margin-bottom: var(--bs2-section-y);
  padding-top: 2rem;
  border-top: 1px solid var(--bs2-line);
}

.bs2-stat__value {
  font-family: var(--bs2-heading);
  font-size: 57px;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--bs2-ink);
}

.bs2-stat__label {
  margin: 0.4rem 0 0;
  font-family: var(--bs2-heading);
  font-size: 19px;
  letter-spacing: -0.02em;
  color: var(--bs2-muted);
}

/* Features */

.bs2-features {
  margin-top: clamp(2.75rem, 2rem + 4vw, 5rem);
  padding: 0 0 var(--bs2-section-y);
}

.bs2-features__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--bs2-grid-gap);
}

.bs2-feature {
  background: var(--bs2-surface);
  padding: 2rem 1.5rem;
  border-radius: var(--bs2-radius);
}

.bs2-feature__icon {
  margin-bottom: 1.25rem;
}

.bs2-feature__title {
  margin: 0 0 0.6rem;
}

.bs2-feature__body {
  margin: 0;
}

/* Testimonial */

.bs2-quote {
  position: relative;
  z-index: 2;
  padding: 0 0 2.5rem;
  margin-bottom: 0;
  text-align: left;
  background: var(--bs2-bg);
}

.bs2-quote__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.9fr);
  gap: clamp(1.75rem, 1rem + 3vw, 3.5rem);
  align-items: center;
}

.bs2-quote__copy .bs2-h2 {
  margin: 0.3rem 0 1.5rem;
}

.bs2-quote__heading {
  font-family: "Cormorant Garamond", "DM Serif Display", serif;
  font-weight: 600;
  font-style: italic;
  letter-spacing: -0.02em;
}

.bs2-quote__rotator {
  display: grid;
  justify-items: start;
  overflow: hidden;
}

.bs2-quote__rotator > blockquote {
  grid-area: 1 / 1;
  margin: 0;
  width: 100%;
  visibility: hidden;
}

.bs2-quote__rotator > blockquote:first-child {
  visibility: visible;
}

.bs2-quote__text {
  max-width: 22em;
  margin: 0;
}

.bs2-quote__cite {
  display: block;
  margin-top: 1.5rem;
  font-family: var(--bs2-heading);
  font-size: 19px;
  letter-spacing: -0.02em;
  color: var(--bs2-ink);
  font-style: normal;
}

.bs2-quote__place {
  display: block;
  margin-top: 0.25rem;
  font-family: var(--bs2-body);
  font-size: 15px;
  color: var(--bs2-muted);
}

.bs2-quote__media {
  margin: 0;
}

.bs2-quote__media img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
  border-radius: 1.25rem;
}

@media (max-width: 1023px) {
  .bs2-quote__grid {
    grid-template-columns: 1fr;
  }
}

/* Dark CTA band */

.bs2-cta {
  background: var(--bs2-dark);
  color: var(--bs2-on-dark);
  padding: clamp(3.5rem, 2.5rem + 4vw, 6rem) 0;
  text-align: center;
  display: block;
  visibility: visible;
}

.bs2-cta .bs2-h2,
.bs2-cta .bs2-h6 {
  color: var(--bs2-on-dark);
}

.bs2-cta .bs2-h2 {
  line-height: 1.18;
  overflow: visible;
}

.bs2-cta .bs2-rotate {
  overflow: visible;
}

.bs2-cta .bs2-rotate > span {
  color: inherit;
  line-height: 1.18;
  padding-block: 0.12em 0.08em;
  overflow: visible;
}

.bs2-cta__sub {
  margin: 0.85rem 0 1.75rem;
  color: var(--bs2-on-dark-muted);
}

@media (max-width: 767px) {
  .bs2-cta {
    padding: 3.25rem 0 3.75rem;
  }

  .bs2-cta .bs2-rotate > span {
    white-space: normal;
  }

  .bs2-cta .bs2-h2 {
    font-size: 1.7rem;
    line-height: 1.28;
  }

  .bs2-cta .bs2-h6 {
    font-size: 0.95rem;
    line-height: 1.45;
  }
}

/* Lighthouse video */

.bs2-lighthouse {
  position: relative;
  background: var(--bs2-bg);
}

.bs2-lighthouse__stage {
  position: relative;
  height: min(72vh, 40rem);
  overflow: hidden;
  background: #1a0604;
}

.bs2-lighthouse__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.bs2-lighthouse__veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(26, 6, 4, 0.28) 0%,
    rgba(26, 6, 4, 0.12) 45%,
    rgba(26, 6, 4, 0.55) 100%
  );
}

.bs2-lighthouse__caption {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: 2.5rem;
}

.bs2-lighthouse__eyebrow {
  margin: 0 0 0.85rem;
  font-family: var(--bs2-heading);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(251, 249, 242, 0.78);
}

.bs2-lighthouse__line {
  margin: 0;
  font-family: var(--bs2-heading);
  font-size: clamp(1.75rem, 1rem + 3.5vw, 4rem);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.04em;
  color: var(--bs2-on-dark);
  text-wrap: balance;
  text-shadow: 0 1px 24px rgba(26, 6, 4, 0.35);
}

.bs2-lighthouse__matter {
  padding-block: 4rem 3.5rem;
}

.bs2-lighthouse__lede {
  max-width: 42rem;
  margin-top: 1rem;
}

.bs2-lighthouse__facts {
  list-style: none;
  margin: 2rem 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--bs2-grid-gap);
}

.bs2-lighthouse__facts li {
  padding-top: 1rem;
  border-top: 1px solid var(--bs2-line);
}

.bs2-lighthouse__fact-value {
  margin: 0;
  font-family: var(--bs2-heading);
  font-size: clamp(1.75rem, 1.2rem + 2vw, 2.75rem);
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--bs2-ink);
}

.bs2-lighthouse__fact-label {
  margin: 0.45rem 0 0;
  font-family: var(--bs2-heading);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--bs2-muted);
}

.bs2-lighthouse__actions {
  display: none;
}

.bs2-newbooks {
  margin-top: 3.25rem;
  padding-bottom: 1rem;
}

.bs2-newbooks__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 1.75rem;
}

.bs2-newbooks__head .bs2-h2 {
  margin-top: 0.3rem;
}

.bs2-newbooks__grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1.5rem 1rem;
}

.bs2-newbooks__grid > * {
  min-width: 0;
  width: 100%;
}

.bs2-newbooks__grid .max-w-\[291px\] {
  max-width: 100%;
}

.bs2-newbooks .icon-compare,
.bs2-shelf .icon-compare {
  display: none !important;
}

.bs2-newbooks .group .secondary-button {
  display: inline-flex !important;
  background: var(--bs2-accent);
  color: var(--bs2-ink) !important;
  border: 0;
  border-radius: var(--bs2-radius);
}

.bs2-newbooks .group .secondary-button:hover {
  background: var(--bs2-hover);
  color: var(--bs2-on-dark) !important;
}

.bs2-newbooks__shimmer {
  min-height: 18rem;
  background: linear-gradient(90deg, #efe8dc 0%, #f7f1e6 50%, #efe8dc 100%);
  background-size: 200% 100%;
  animation: bs2-shimmer 1.4s ease-in-out infinite;
}

@keyframes bs2-shimmer {
  0% { background-position: 100% 0; }
  100% { background-position: -100% 0; }
}

@media (max-width: 1100px) {
  .bs2-newbooks__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .bs2-newbooks__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .bs2-newbooks__head {
    flex-direction: column;
    align-items: flex-start;
  }
}

.bs2-lighthouse[data-video-failed="true"] .bs2-lighthouse__stage {
  display: none;
}

.bs2-cart,
.bs2-account {
  background: var(--bs2-bg);
  color: var(--bs2-ink);
}

.bs2-cart__panel {
  background: var(--bs2-bg);
  border-color: var(--bs2-line);
}

.bs2-simple {
  padding: var(--bs2-section-y) 0;
}

.bs2-simple .bs2-h1 {
  max-width: 16ch;
  margin-bottom: 1.5rem;
}

.bs2-simple__body {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  max-width: 42rem;
}

.bs2-simple__list {
  list-style: none;
  margin: 0.5rem 0 0;
  padding: 0;
  display: grid;
  gap: var(--bs2-grid-gap);
}

.bs2-simple__card {
  padding: 1.5rem 0;
  border-top: 1px solid var(--bs2-line);
}

.bs2-simple__card .bs2-h4 {
  margin-bottom: 0.5rem;
}

.bs2-simple__card a {
  color: inherit;
  text-decoration: none;
}

.bs2-simple__card a:hover {
  color: var(--bs2-hover);
}

/* Footer */

.bs2-footer {
  position: relative;
  z-index: 1;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 56rem;
  border-top: 0;
  padding: 8rem 0 2.75rem;
  color: #f8f6ef;
  background: transparent;
}

.bs2-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    url("footer-background.jpg") center top / cover no-repeat,
    #1a0604;
}

.bs2-footer::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 18rem;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    var(--bs2-bg) 0%,
    rgba(248, 246, 239, 0.88) 22%,
    rgba(248, 246, 239, 0.45) 48%,
    rgba(248, 246, 239, 0.12) 72%,
    rgba(248, 246, 239, 0) 100%
  );
}

.bs2-footer > .bs2-wrap {
  position: relative;
  z-index: 2;
  width: 100%;
}

.bs2-footer__mark {
  position: relative;
  z-index: 1;
  margin: 0 0 4.25rem;
  text-align: center;
  font-family: "Cormorant Garamond", "DM Serif Display", serif;
  font-size: clamp(4.2rem, 2.2rem + 8vw, 9.5rem);
  font-weight: 600;
  line-height: 0.9;
  letter-spacing: 0.08em;
  background-image: linear-gradient(
    105deg,
    #c9b08a 0%,
    #fff8ea 16%,
    #d2a66f 34%,
    #ffffff 50%,
    #e8d2a8 66%,
    #fff8ea 82%,
    #c9b08a 100%
  );
  background-size: 220% 100%;
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  animation: bs2-light-sweep 7.5s ease-in-out infinite;
}

.bs2-footer__grid {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr 1fr 1fr;
  gap: var(--bs2-grid-gap);
  align-items: start;
}

.bs2-footer__brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.65rem;
  font-family: var(--bs2-heading);
  font-size: 23px;
  letter-spacing: -0.02em;
  text-decoration: none;
  color: #f8f6ef;
}

.bs2-footer__logo {
  display: none;
}

.bs2-footer__brand:hover {
  color: #fff8ea;
}

.bs2-footer__blurb {
  margin: 0.85rem 0 0;
  max-width: 22rem;
}

.bs2-footer__title {
  margin: 0 0 1rem;
  font-family: var(--bs2-heading);
  font-size: 19px;
  letter-spacing: -0.02em;
  color: #f8f6ef;
}

.bs2-footer__title--spacer {
  visibility: hidden;
}

.bs2-footer__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.bs2-footer__list a,
.bs2-footer__meta {
  color: rgba(248, 246, 239, 0.78);
  text-decoration: none;
  font-size: 15px;
  line-height: 1.5;
}

.bs2-footer__list a:hover,
.bs2-footer__meta a:hover {
  color: #fff8ea;
}

.bs2-footer__meta a {
  color: inherit;
  text-decoration: none;
}

.bs2-footer__meta p {
  margin: 0 0 0.55rem;
}

.bs2-footer__copy {
  margin: 3rem 0 0;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(248, 246, 239, 0.22);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  text-align: left;
  color: rgba(248, 246, 239, 0.7);
  font-size: 14px;
}

.bs2-footer__powered {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-left: auto;
  color: inherit;
  text-decoration: none;
}

.bs2-footer__powered:hover {
  color: #fff8ea;
}

.bs2-footer .bs2-body {
  color: rgba(248, 246, 239, 0.8);
}

@media (prefers-reduced-motion: reduce) {
  .bs2-footer__mark {
    animation: none;
    background: none;
    color: #f8f6ef;
    -webkit-text-fill-color: #f8f6ef;
  }
}

.bs2-footer__powered-logo {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.bs2-hero .bs2-eyebrow {
  font-size: 20px;
  letter-spacing: 0.1em;
}

@media (max-width: 1279px) {
  .bs2-h1,
  .bs2-stat__value {
    font-size: 45px;
    line-height: 1.14em;
  }

  .bs2-h2 {
    font-size: 36px;
    line-height: 1.14em;
  }

  .bs2-h3 {
    font-size: 28px;
    line-height: 1.07em;
  }

  .bs2-h4 {
    font-size: 22px;
    line-height: 1.27em;
  }

  .bs2-h6,
  .bs2-card__title,
  .bs2-card__price,
  .bs2-stat__label,
  .bs2-footer__title,
  .bs2-quote__cite {
    font-size: 18px;
  }

  .bs2-btn {
    padding: 16px 42px;
  }

  .bs2-grid--4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .bs2-footer__grid {
    grid-template-columns: 1.2fr 0.8fr 1fr 1fr;
  }
}

@media (max-width: 1023px) {
  .bs2-header__nav {
    display: none;
  }

  .bs2-header__menu-btn {
    display: inline-flex;
  }

  .bs2-header__inner {
    display: flex;
  }

  .bs2-header__nav-wrap {
    display: none;
  }

  .bs2-shelf-carousel > .flex.justify-end {
    display: none;
  }

  .bs2-header__logo {
    height: 2.65rem;
    max-width: 12rem;
    margin-block: 0;
  }

  .bs2-footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem 1.5rem;
  }

  .bs2-grid--6 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .bs2-story__grid,
  .bs2-features__grid {
    grid-template-columns: 1fr;
  }

  .bs2-shelf__header {
    flex-direction: column;
    align-items: flex-start;
  }

  .bs2-hero__grid {
    grid-template-columns: 1fr;
  }

  .bs2-hero__visual {
    min-height: 26rem;
  }
}

@media (max-width: 767px) {
  .bs2 {
    font-size: 15px;
  }

  .bs2-h1,
  .bs2-stat__value {
    font-size: 36px;
    line-height: 1.25em;
  }

  .bs2-h2 {
    font-size: 31px;
    line-height: 1.2em;
  }

  .bs2-h3 {
    font-size: 26px;
    line-height: 1.27em;
  }

  .bs2-h6,
  .bs2-card__title,
  .bs2-card__price {
    font-size: 17px;
  }

  .bs2-btn {
    font-size: 15px;
    padding: 14px 38px;
  }

  .bs2-grid--6,
  .bs2-grid--4 {
    grid-template-columns: 1fr;
  }

  .bs2-stats,
  .bs2-footer__grid {
    grid-template-columns: 1fr;
  }

  .bs2-footer {
    min-height: 40rem;
    padding: 5.5rem 0 2.25rem;
  }

  .bs2-footer__mark {
    margin-bottom: 2.75rem;
    font-size: clamp(3.1rem, 18vw, 4.8rem);
    letter-spacing: 0.06em;
  }

  .bs2-footer__grid {
    gap: 2rem;
  }

  .bs2-footer__logo {
    height: 6.25rem;
    max-width: 10.5rem;
  }

  .bs2-footer__blurb {
    max-width: none;
  }

  .bs2-footer__copy {
    flex-direction: column;
    align-items: flex-start;
    margin-top: 2rem;
  }

  .bs2-footer__powered {
    margin-left: 0;
  }

  .bs2-mobile-nav__list a {
    font-size: 28px;
  }

  .bs2-header__logo {
    height: 2.65rem;
    max-width: 12rem;
    margin-block: 0;
  }

  .bs2-hero__visual {
    min-height: 22rem;
  }

  .bs2-hero__cover {
    width: min(52%, 14rem);
  }

  .bs2-lighthouse__stage {
    height: min(56vh, 28rem);
  }

  .bs2-lighthouse__facts {
    grid-template-columns: 1fr;
  }
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.bs2 .font-outfit {
  font-family: var(--bs2-heading);
}

.bs2-commerce {
  padding-block: 2.5rem 4rem;
}

.bs2-commerce__title {
  font-family: var(--bs2-heading);
  font-size: clamp(1.75rem, 1.2rem + 2vw, 2.5rem);
  font-weight: 500;
  margin: 0 0 0.35rem;
  color: var(--bs2-ink);
}

.bs2-catalog__layout {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  width: 100%;
}

.bs2-catalog__tools {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.7rem 1rem;
  width: 100%;
}

.bs2-catalog__toolbar {
  margin-left: auto;
  flex: 0 0 auto;
}

.bs2-catalog__toolbar .flex.justify-between {
  justify-content: flex-end;
  align-items: center;
  gap: 1rem;
}

.bs2-catalog__toolbar button.flex {
  padding: 0.7rem 0.95rem !important;
  min-height: 2.7rem;
}

.bs2-catalog__main {
  min-width: 0;
  width: 100%;
}

.bs2-catalog__grid {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 1.5rem;
  align-items: start;
  margin-top: 0 !important;
}

.bs2-catalog__grid > * {
  min-width: 0;
  width: 100%;
  max-width: 100%;
}

.bs2-filters--shimmer .bs2-filter-drop {
  min-width: 9.5rem;
  width: 9.5rem;
}

.bs2-filters--shimmer .shimmer {
  background: var(--bs2-surface);
}

@media (max-width: 1100px) {
  .bs2-catalog__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 767px) {
  .bs2-catalog__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .bs2-catalog__toolbar {
    margin-left: 0;
    width: 100%;
  }
}

.bs2-filters {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.7rem;
  flex: 1 1 auto;
  width: auto;
  min-width: 0 !important;
  max-width: none !important;
  max-height: none !important;
  overflow: visible !important;
  padding: 0 !important;
}

.bs2-filters__head {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  width: auto;
  padding: 0;
  border: 0;
  margin: 0;
}

.bs2-filters__title {
  margin: 0;
  font-family: var(--bs2-heading);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--bs2-muted);
}

.bs2-filters__clear {
  appearance: none;
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
  font-family: var(--bs2-heading);
  font-size: 13px;
  color: var(--bs2-ink);
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

.bs2-filters__clear:hover {
  color: var(--bs2-hover);
}

.bs2-filters .bs2-filters__clear {
  margin-left: 0.15rem;
  flex: 0 0 auto;
  align-self: center;
  white-space: nowrap;
}

.bs2-filters > .border-b,
.bs2-filter-drop {
  position: relative;
  flex: 0 1 auto;
  min-width: 9.5rem;
  margin: 0;
  border: 1px solid var(--bs2-line) !important;
  background: var(--bs2-bg);
}

.bs2-filter-drop.is-open {
  z-index: 50;
}

.bs2-filters .flex.cursor-pointer.select-none {
  padding: 0.7rem 0.95rem !important;
  gap: 0.75rem;
}

.bs2-filters .flex.cursor-pointer.select-none p {
  font-family: var(--bs2-heading);
  font-size: 14px !important;
  font-weight: 500 !important;
  color: var(--bs2-ink);
}

.bs2-filters .icon-arrow-down,
.bs2-filters .icon-arrow-up,
.bs2-filters .icon-arrow-down,
.bs2-filters .icon-arrow-up {
  font-size: 1rem !important;
  color: var(--bs2-muted);
}

.bs2-filters .z-10.rounded-lg {
  position: absolute;
  top: calc(100% + 0.35rem);
  left: 0;
  z-index: 40;
  min-width: 16.5rem;
  max-height: 18rem;
  overflow: auto;
  margin: 0;
  padding: 0.75rem 0.85rem !important;
  border: 1px solid var(--bs2-line);
  border-radius: var(--bs2-radius) !important;
  background: var(--bs2-bg) !important;
  box-shadow: 0 12px 32px rgba(26, 6, 4, 0.12);
}

.bs2-filters .relative:has(.icon-search),
.bs2-filters p.text-xs.text-gray-600 {
  display: none;
}

.bs2-filters ul {
  color: var(--bs2-ink);
}

.bs2-filters li .rounded:hover {
  background: var(--bs2-surface) !important;
}

.bs2-filters .icon-uncheck,
.bs2-filters .icon-check-box,
.bs2-filters .text-navyBlue,
.bs2-filters .peer-checked\:text-navyBlue {
  color: var(--bs2-accent) !important;
}

.bs2-filters label {
  color: var(--bs2-ink) !important;
  font-family: var(--bs2-body);
  font-size: 14px !important;
}

.bs2-commerce .rounded-lg.border.border-zinc-200,
.bs2-commerce button.flex.w-full.max-w-\[200px\] {
  border-color: var(--bs2-line) !important;
  background: var(--bs2-bg) !important;
  border-radius: var(--bs2-radius) !important;
  color: var(--bs2-ink);
  font-family: var(--bs2-heading);
}

.bs2-commerce .bg-gray-100 {
  background: var(--bs2-surface) !important;
}

.bs2-commerce .icon-compare {
  display: none !important;
}

.bs2-commerce .group .secondary-button {
  display: inline-flex !important;
  background: var(--bs2-accent);
  color: var(--bs2-ink) !important;
  border: 0;
  border-radius: var(--bs2-radius);
}

.bs2-commerce .group .secondary-button:hover {
  background: var(--bs2-hover);
  color: var(--bs2-on-dark) !important;
}

.bs2-commerce .fixed.bottom-0 {
  background: var(--bs2-bg);
  border-top-color: var(--bs2-line);
  z-index: 420;
}

.bs2-commerce .fixed.bottom-0 .fixed.z-\[1000\] {
  background: var(--bs2-bg);
  color: var(--bs2-ink);
}

.bs2-commerce .fixed.bottom-0 .text-lg,
.bs2-commerce .fixed.bottom-0 .font-semibold {
  font-family: var(--bs2-heading);
  color: var(--bs2-ink);
}

.bs2-commerce .bg-navyBlue {
  background-color: var(--bs2-accent) !important;
}

.bs2-commerce .text-blue-600 {
  color: var(--bs2-hover) !important;
}

@media (max-width: 767px) {
  .bs2-filters {
    display: grid;
    gap: 0;
  }

  .bs2-filters > .border-b,
  .bs2-filter-drop {
    min-width: 0;
    width: 100%;
    border-left: 0 !important;
    border-right: 0 !important;
  }

  .bs2-filters .z-10.rounded-lg {
    position: static;
    min-width: 0;
    max-height: none;
    box-shadow: none;
    border: 0;
    padding: 0 0.25rem 0.75rem !important;
  }
}

.bs2-field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1rem;
}

.bs2-field label {
  font-family: var(--bs2-heading);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--bs2-muted);
}

.bs2-field input,
.bs2-field textarea,
.bs2-field select,
.bs2-auth input:not([type="checkbox"]):not([type="hidden"]),
.bs2-checkout-page input,
.bs2-checkout-page textarea,
.bs2-checkout-page select {
  width: 100%;
  border: 1px solid var(--bs2-line);
  background: var(--bs2-bg);
  color: var(--bs2-ink);
  padding: 0.85rem 1rem;
  font-family: var(--bs2-body);
  font-size: 16px;
  border-radius: var(--bs2-radius-sm);
}

.bs2-field .error,
.bs2-auth .error,
.bs2-auth .control-error {
  color: #8a2e24;
  font-size: 13px;
}

.bs2-auth-page {
  padding-block: clamp(2.5rem, 2rem + 2vw, 4rem) var(--bs2-section-y);
}

.bs2-auth {
  max-width: 32rem;
  margin: 0 auto;
}

.bs2-auth .bs2-h1 {
  margin: 0.2rem 0 0.75rem;
}

.bs2-auth__lead {
  color: var(--bs2-muted);
  margin: 0 0 1.75rem;
  font-size: 16px;
  line-height: 1.55;
}

.bs2-auth label {
  font-family: var(--bs2-heading);
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--bs2-muted);
}

.bs2-auth input:not([type="checkbox"]):not([type="hidden"]) {
  border-radius: var(--bs2-radius-sm) !important;
  color: var(--bs2-ink) !important;
  background: var(--bs2-bg) !important;
  border-color: var(--bs2-line) !important;
}

.bs2-auth input:not([type="checkbox"]):not([type="hidden"]):hover,
.bs2-auth input:not([type="checkbox"]):not([type="hidden"]):focus {
  border-color: var(--bs2-accent) !important;
  outline: none;
}

.bs2-auth__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.bs2-auth__row--between {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin: 0.25rem 0 1.25rem;
}

.bs2-auth__check {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 0 1rem;
}

.bs2-auth__check label {
  text-transform: none;
  letter-spacing: 0;
  font-family: var(--bs2-body);
  font-size: 14px;
  color: var(--bs2-muted);
}

.bs2-auth__check .icon-uncheck,
.bs2-auth__check .icon-check-box {
  color: var(--bs2-accent);
}

.bs2-auth__subtle {
  color: var(--bs2-ink);
  font-size: 14px;
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.bs2-auth__submit {
  width: 100%;
  margin: 0.5rem 0 0;
}

.bs2-auth__links {
  margin-top: 1.5rem;
  color: var(--bs2-muted);
  font-size: 15px;
}

.bs2-auth__links a {
  color: var(--bs2-ink);
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.bs2-auth__links a:hover,
.bs2-auth__subtle:hover {
  color: var(--bs2-hover);
}

.bs2-empty-img,
.bs2-catalog__empty-img {
  width: 200px;
  max-width: 70%;
  height: auto;
  object-fit: contain;
}

@media (max-width: 640px) {
  .bs2-auth__row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .bs2-empty-img,
  .bs2-catalog__empty-img {
    width: 140px;
  }
}

.bs2-cart-page {
  padding-block: 2rem 4rem;
}

.bs2-cart-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.bs2-cart-row {
  display: grid;
  grid-template-columns: 5rem minmax(0, 1fr) auto;
  gap: 1rem 1.25rem;
  align-items: center;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--bs2-line);
}

.bs2-cart-row__thumb {
  display: block;
  width: 5rem;
  height: 6.5rem;
  overflow: hidden;
  background: var(--bs2-surface);
  border-radius: var(--bs2-radius-sm);
}

.bs2-cart-row img {
  width: 5rem;
  height: 6.5rem;
  object-fit: cover;
  display: block;
}

.bs2-cart-row__info strong {
  display: block;
  font-size: 1.05rem;
  margin-bottom: 0.15rem;
}

.bs2-cart-row__price {
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

.bs2-cart-totals {
  margin-top: 1.5rem;
  max-width: 22rem;
  margin-left: auto;
}

.bs2-cart-totals div {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.6rem;
}

.bs2-pdp {
  display: block;
  padding-block: 1.75rem 4.5rem;
}

.bs2-pdp .container {
  width: 100%;
  max-width: none;
  margin-inline: 0;
  padding-inline: 0;
}

.bs2-pdp__crumbs {
  margin: 0 0 1.5rem;
  font-family: var(--bs2-heading);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--bs2-muted);
}

.bs2-pdp__crumbs a {
  color: var(--bs2-muted);
  text-decoration: none;
}

.bs2-pdp__crumbs a:hover {
  color: var(--bs2-ink);
}

.bs2-pdp__stage {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(1.5rem, 1rem + 3vw, 3.5rem);
  align-items: start;
}

.bs2-pdp__gallery {
  display: grid;
  grid-template-columns: 4.5rem minmax(0, 1fr);
  gap: 1rem;
  align-items: start;
  position: sticky;
  top: calc(var(--bs2-header-h) + 1rem);
}

.bs2-pdp__thumbs {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.bs2-pdp__thumb-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  max-height: 34rem;
  overflow: auto;
}

.bs2-pdp__thumb-nav {
  cursor: pointer;
  color: var(--bs2-muted);
  font-size: 1.25rem;
}

.bs2-pdp__thumb {
  width: 4.5rem;
  height: 4.5rem;
  object-fit: cover;
  cursor: pointer;
  border: 1px solid transparent;
  background: var(--bs2-surface);
  display: block;
  border-radius: var(--bs2-radius-sm);
}

.bs2-pdp__thumb.is-active {
  border-color: var(--bs2-accent);
}

.bs2-pdp__media {
  background: var(--bs2-surface);
  min-height: 28rem;
  overflow: hidden;
  border-radius: var(--bs2-radius-lg);
}

.bs2-pdp__photo {
  display: block;
  width: 100%;
  height: auto;
  max-height: 40rem;
  object-fit: contain;
  object-position: center;
  background: var(--bs2-surface);
  cursor: zoom-in;
}

.bs2-pdp__shimmer {
  min-height: 36rem;
  background: var(--bs2-surface);
  border-radius: var(--bs2-radius-lg);
}

.bs2-pdp__shimmer--mobile {
  min-height: 22rem;
  aspect-ratio: 3 / 4;
}

.bs2-pdp__gallery-mobile {
  display: none;
  width: 100%;
  max-width: 100%;
  margin-bottom: 0.5rem;
}

.bs2-pdp__carousel {
  position: relative;
}

.bs2-pdp__scroll {
  display: flex;
  gap: 0;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
  scrollbar-width: none;
}

.bs2-pdp__scroll::-webkit-scrollbar {
  display: none;
}

.bs2-pdp__scroll-item {
  flex: 0 0 100%;
  min-width: 100%;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  aspect-ratio: 3 / 4;
  background: var(--bs2-surface);
  overflow: hidden;
  border-radius: var(--bs2-radius-lg);
}

.bs2-pdp__scroll-media {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  background: var(--bs2-surface);
  cursor: zoom-in;
}

.bs2-pdp__scroll-item video.bs2-pdp__scroll-media {
  cursor: default;
}

.bs2-pdp__carousel-btn {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  transform: translateY(-50%);
  border: 0;
  border-radius: 999px;
  background: rgba(252, 251, 247, 0.92);
  color: var(--bs2-ink);
  box-shadow: 0 1px 8px rgba(23, 23, 21, 0.14);
  cursor: pointer;
}

.bs2-pdp__carousel-btn:hover {
  background: var(--bs2-bg);
}

.bs2-pdp__carousel-btn--prev {
  left: 0.5rem;
}

.bs2-pdp__carousel-btn--next {
  right: 0.5rem;
}

.bs2-pdp__dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.75rem;
}

.bs2-pdp__dot {
  width: 0.45rem;
  height: 0.45rem;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: var(--bs2-line);
  cursor: pointer;
  transition: width 0.2s ease, background 0.2s ease;
}

.bs2-pdp__dot.is-active {
  width: 1.1rem;
  background: var(--bs2-accent);
}

.bs2-pdp__details {
  min-width: 0;
}

.bs2-pdp__title {
  margin: 0;
  font-family: var(--bs2-heading);
  font-size: clamp(1.75rem, 1.3rem + 1.4vw, 2.6rem);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--bs2-ink);
}

.bs2-pdp__wish {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  flex-shrink: 0;
  border: 1px solid var(--bs2-line);
  background: var(--bs2-bg);
  color: var(--bs2-ink);
  cursor: pointer;
  font-size: 1.35rem;
}

.bs2-pdp__wish:hover {
  border-color: var(--bs2-accent);
  color: var(--bs2-accent);
}

.bs2-pdp__price {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.2rem;
  margin: 1.15rem 0 0;
  font-family: var(--bs2-heading);
  font-size: 1.65rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.25;
  color: var(--bs2-ink);
}

.bs2-pdp__price p,
.bs2-pdp__price .final-price,
.bs2-pdp__price .price-label,
.bs2-pdp__price .font-semibold {
  display: block;
  position: static;
  margin: 0;
  line-height: 1.3 !important;
}

.bs2-pdp__price .final-price.line-through,
.bs2-pdp__price .line-through {
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--bs2-muted);
}

.bs2-pdp__short {
  margin: 1.25rem 0 0;
  color: var(--bs2-muted);
  font-size: 1.05rem;
  line-height: 1.65;
}

.bs2-pdp__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 0.85rem;
  margin-top: 1.75rem;
}

.bs2-pdp__qty,
.bs2-pdp .border-navyBlue {
  border-color: var(--bs2-line) !important;
  background: var(--bs2-surface);
  color: var(--bs2-ink);
  border-radius: var(--bs2-radius-sm) !important;
  padding: 0.65rem 1rem;
  gap: 1rem;
  min-height: 3.35rem;
}

.bs2-pdp__cart {
  flex: 1;
  min-width: 10rem;
  max-width: none !important;
  width: auto !important;
  padding: 0.9rem 1.75rem;
  border-radius: var(--bs2-radius) !important;
}

.bs2-pdp .bs2-btn.bs2-pdp__cart {
  background: var(--bs2-accent);
  color: var(--bs2-ink);
  border: 0;
}

.bs2-pdp .bs2-btn.bs2-pdp__cart:hover {
  background: var(--bs2-hover);
  color: var(--bs2-on-dark);
}

.bs2-pdp__buy,
.bs2-pdp button.bs2-pdp__buy,
.bs2-pdp .bs2-btn--ghost.bs2-pdp__buy {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.85rem;
  width: 100%;
  min-height: 3.35rem;
  padding: 0.95rem 1.5rem;
  border: 1px solid var(--bs2-ink);
  border-radius: var(--bs2-radius);
  background: var(--bs2-ink);
  color: var(--bs2-on-dark);
  font-family: var(--bs2-heading);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.bs2-pdp__buy:hover,
.bs2-pdp button.bs2-pdp__buy:hover,
.bs2-pdp .bs2-btn--ghost.bs2-pdp__buy:hover {
  background: var(--bs2-accent);
  border-color: var(--bs2-accent);
  color: var(--bs2-ink);
}

.bs2-pdp__extras {
  margin-top: 1.25rem;
}

.bs2-pdp__compare {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-family: var(--bs2-heading);
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--bs2-muted);
  cursor: pointer;
}

.bs2-pdp__compare:hover {
  color: var(--bs2-ink);
}

.bs2-pdp__body {
  margin-top: 3.5rem;
  display: grid;
  gap: 2.5rem;
  width: 100%;
  max-width: none;
}

.bs2-pdp__section {
  padding-top: 1.75rem;
  border-top: 1px solid var(--bs2-line);
}

.bs2-pdp__reviews.is-collapsed {
  padding-top: 1rem;
}

.bs2-pdp__reviews.is-collapsed .container {
  margin: 0;
  padding: 0 !important;
}

.bs2-pdp__reviews.is-collapsed .h-\[476px\],
.bs2-pdp__reviews.is-collapsed .max-md\:h-60 {
  height: auto !important;
  min-height: 0 !important;
  padding: 0.4rem 0 0;
  place-content: start;
  justify-items: start;
  text-align: left;
}

.bs2-pdp__reviews.is-collapsed img {
  display: none !important;
}

.bs2-pdp__reviews.is-collapsed p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--bs2-muted);
}

.bs2-pdp__reviews.is-collapsed .mt-8 {
  margin-top: 0.7rem !important;
}

.bs2-pdp__reviews.is-collapsed .border-navyBlue {
  border-radius: var(--bs2-radius);
  border-color: var(--bs2-line);
  padding: 0.45rem 0.9rem;
  font-family: var(--bs2-heading);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.bs2-pdp__reviews-shimmer {
  display: grid;
  gap: 0.45rem;
  max-width: 22rem;
  padding: 0.35rem 0 0;
}

.bs2-zoom {
  position: fixed;
  inset: 0;
  z-index: 1100;
  background: var(--bs2-bg);
}

body.bs2-zoom-open .bs2-header {
  visibility: hidden;
  pointer-events: none;
}

.bs2-zoom__close {
  position: fixed;
  top: max(0.75rem, env(safe-area-inset-top, 0px));
  right: max(0.75rem, env(safe-area-inset-right, 0px));
  z-index: 1110;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border: 1px solid var(--bs2-line);
  background: var(--bs2-bg);
  color: var(--bs2-ink);
  cursor: pointer;
}

.bs2-zoom__close:hover {
  background: var(--bs2-accent);
}

.bs2-zoom__close .icon-cancel {
  font-size: 1.5rem;
  line-height: 1;
}

.bs2-pdp__section > .bs2-h4 + .bs2-pdp__copy,
.bs2-pdp__section > .bs2-h4 + .bs2-pdp__attrs {
  margin-top: 0.95rem;
}

.bs2-pdp__copy,
.bs2-pdp__copy p,
.bs2-pdp__attrs-html,
.bs2-pdp__attrs-html p {
  color: var(--bs2-muted);
}

.bs2-pdp__copy p,
.bs2-pdp__attrs-html p {
  margin: 0 0 0.85em;
}

.bs2-pdp__copy p:last-child,
.bs2-pdp__attrs-html p:last-child {
  margin-bottom: 0;
}

.bs2-pdp__attrs-html p:empty,
.bs2-pdp__attrs-html--solo p:empty,
.bs2-pdp__copy p:empty {
  display: none !important;
  margin: 0 !important;
  height: 0;
  padding: 0;
}

.bs2-pdp__attrs dd.bs2-pdp__attrs-html--solo:has(> p:only-child:empty) {
  display: none;
}

.bs2-pdp__copy ul,
.bs2-pdp__copy ol,
.bs2-pdp__attrs-html ul,
.bs2-pdp__attrs-html ol {
  margin: 0 0 0.85em;
  padding-inline-start: 1.25rem;
}

.bs2-pdp__copy a,
.bs2-pdp__attrs-html a {
  color: var(--bs2-ink);
  text-decoration: underline;
}

.bs2-pdp__attrs {
  display: grid;
  grid-template-columns: 10rem minmax(0, 1fr);
  gap: 0.65rem 1.25rem;
  margin: 1rem 0 0;
}

.bs2-pdp__attrs dt {
  font-family: var(--bs2-heading);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--bs2-ink);
}

.bs2-pdp__attrs dd {
  margin: 0;
  color: var(--bs2-muted);
}

.bs2-pdp__attrs dt.bs2-pdp__attrs-html-label,
.bs2-pdp__attrs dd.bs2-pdp__attrs-html {
  grid-column: 1 / -1;
}

.bs2-pdp__attrs dd.bs2-pdp__attrs-html {
  overflow-x: auto;
}

.bs2-pdp__attrs dt.bs2-pdp__attrs-html-label {
  margin-bottom: -0.25rem;
}

.bs2-pdp__attrs dd.bs2-pdp__attrs-html--solo {
  margin-top: 0;
}

.bs2-pdp__copy table,
.bs2-pdp__attrs-html table {
  width: 100%;
  max-width: 28rem;
  margin: 0;
  border-collapse: separate;
  border-spacing: 0;
  overflow: hidden;
  border-radius: var(--bs2-radius);
  background: var(--bs2-bg);
}

.bs2-pdp__copy th,
.bs2-pdp__copy td,
.bs2-pdp__attrs-html th,
.bs2-pdp__attrs-html td {
  border: 1px solid var(--bs2-line);
  padding: 0.55rem 0.8rem;
  text-align: left;
  vertical-align: top;
  font-size: 0.95rem;
  line-height: 1.4;
}

.bs2-pdp__copy th,
.bs2-pdp__attrs-html th,
.bs2-pdp__copy td:first-child,
.bs2-pdp__attrs-html td:first-child {
  width: 42%;
  font-family: var(--bs2-heading);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--bs2-ink);
  background: var(--bs2-surface);
}

.bs2-pdp__copy td:last-child,
.bs2-pdp__attrs-html td:last-child {
  color: var(--bs2-muted);
}

.bs2-pdp__copy table tr:first-child th:first-child,
.bs2-pdp__copy table tr:first-child td:first-child,
.bs2-pdp__attrs-html table tr:first-child th:first-child,
.bs2-pdp__attrs-html table tr:first-child td:first-child {
  border-top-left-radius: var(--bs2-radius);
}

.bs2-pdp__copy table tr:first-child th:last-child,
.bs2-pdp__copy table tr:first-child td:last-child,
.bs2-pdp__attrs-html table tr:first-child th:last-child,
.bs2-pdp__attrs-html table tr:first-child td:last-child {
  border-top-right-radius: var(--bs2-radius);
}

.bs2-pdp__copy table tr:last-child th:first-child,
.bs2-pdp__copy table tr:last-child td:first-child,
.bs2-pdp__attrs-html table tr:last-child th:first-child,
.bs2-pdp__attrs-html table tr:last-child td:first-child {
  border-bottom-left-radius: var(--bs2-radius);
}

.bs2-pdp__copy table tr:last-child th:last-child,
.bs2-pdp__copy table tr:last-child td:last-child,
.bs2-pdp__attrs-html table tr:last-child th:last-child,
.bs2-pdp__attrs-html table tr:last-child td:last-child {
  border-bottom-right-radius: var(--bs2-radius);
}

.bs2-pdp__related {
  margin-top: 3.5rem;
}

.bs2-pdp__related-title {
  margin: 0;
  font-family: var(--bs2-heading);
  font-size: clamp(1.35rem, 1.1rem + 0.8vw, 1.75rem);
  font-weight: 500;
  letter-spacing: -0.03em;
  color: var(--bs2-ink);
}

.bs2-pdp__related .bs2-shelf-carousel {
  margin-top: 0;
}

.bs2-pdp__gallery:not(:has(.bs2-pdp__thumbs)) {
  grid-template-columns: 1fr;
}

@media (max-width: 1180px) {
  .bs2-pdp__stage {
    grid-template-columns: 1fr;
  }

  .bs2-pdp__gallery {
    display: none !important;
  }

  .bs2-pdp__gallery-mobile {
    display: block;
  }

  .bs2-pdp__attrs {
    grid-template-columns: 1fr;
    gap: 0.2rem 0;
  }
}

.bs2-404 {
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 0.75rem;
  padding: 4rem 1.5rem;
}

.bs2-404 h1 {
  font-family: var(--bs2-heading);
  font-size: 2rem;
  margin: 0;
}

.bs2-404 p {
  color: var(--bs2-muted);
  margin: 0 0 1rem;
}

.bs2-account-shell {
  display: grid;
  grid-template-columns: 16rem minmax(0, 1fr);
  gap: 2rem;
  padding-block: 2rem 4rem;
}

.bs2-checkout-page {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: start;
  gap: 2.5rem 3rem;
  padding-block: 1.5rem 4rem;
}

/* Bagisto Blade shop bridge */
.bs2 #app,
.bs2 main#main {
  background: var(--bs2-bg);
  color: var(--bs2-ink);
}

.bs2 .bs2-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  overflow: visible;
  background: transparent;
  box-shadow: none;
}

.bs2 .bs2-header::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: var(--bs2-bg);
  border-bottom: 1px solid var(--bs2-line);
}

.bs2 .bs2-header.bs2-header--glass::before {
  background: rgba(255, 255, 255, 0.94);
  border-bottom-color: rgba(226, 220, 210, 0.65);
  backdrop-filter: blur(14px) saturate(1.2);
  -webkit-backdrop-filter: blur(14px) saturate(1.2);
  box-shadow: 0 6px 20px rgba(26, 6, 4, 0.06);
}

.bs2 .bs2-header > * {
  position: relative;
  z-index: 1;
  overflow: visible;
}

.bs2 .bs2-header [class*="z-[1000"] {
  z-index: 400 !important;
}

.bs2-header .min-h-\[78px\] {
  min-height: var(--bs2-header-h) !important;
}

.bs2-page {
  padding-top: var(--bs2-header-h);
}

.bs2-header__search {
  display: flex;
  align-items: center;
  min-width: 0;
}

.bs2-header__search input {
  border: 1px solid var(--bs2-line);
  background: var(--bs2-surface);
  color: var(--bs2-ink);
  padding: 0.55rem 0.85rem 0.55rem 2.25rem;
  font-size: 14px;
  width: min(14rem, 28vw);
  border-radius: 999px;
}

.bs2-header__search .icon-camera,
.bs2-header__search [class*="image-search"] {
  display: none !important;
}

@media (max-width: 1100px) {
  .bs2-header__search input {
    width: 9rem;
  }
}

.bs2-header__search .icon-search {
  position: absolute;
  left: 0.6rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--bs2-muted);
}

.bs2-hero__lede {
  max-width: 34rem;
  margin: 0;
  color: var(--bs2-muted);
}

.bs2-hero__lede + .bs2-hero__lede {
  margin-top: 0.75rem;
}

/* Century band */

.bs2-century {
  padding-block: var(--bs2-section-y);
  background: var(--bs2-dark);
  color: var(--bs2-on-dark);
}

.bs2-century__inner {
  max-width: 48rem;
  text-align: center;
}

.bs2-century .bs2-eyebrow {
  color: var(--bs2-accent);
}

.bs2-century__title {
  color: var(--bs2-on-dark);
  margin: 0.5rem 0 1.25rem;
}

.bs2-century__lede {
  color: var(--bs2-on-dark-muted);
  margin: 0 auto 1rem;
}

.bs2-century__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.bs2-century .bs2-btn--ghost {
  color: var(--bs2-on-dark);
  border-color: rgba(251, 249, 242, 0.35);
}

.bs2-century .bs2-btn--ghost:hover {
  border-color: var(--bs2-on-dark);
  color: var(--bs2-on-dark);
}

/* About teaser */

.bs2-about-teaser {
  padding-block: var(--bs2-section-y);
  background: var(--bs2-surface);
}

.bs2-about-teaser__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.95fr);
  gap: clamp(1.75rem, 1rem + 3vw, 3.5rem);
  align-items: center;
  max-width: var(--bs2-page-width);
}

.bs2-about-teaser__copy .bs2-body {
  margin: 0 0 1rem;
}

.bs2-about-teaser__copy .bs2-btn--ghost {
  margin-top: 0.75rem;
}

.bs2-about-teaser__media {
  margin: 0;
}

.bs2-about-teaser__media img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center;
  border-radius: 1.25rem;
}

@media (max-width: 1023px) {
  .bs2-about-teaser__grid {
    grid-template-columns: 1fr;
  }
}

/* CMS pages */

.bs2-cms {
  padding-block: clamp(2.5rem, 2rem + 2vw, 4rem) var(--bs2-section-y);
}

.bs2-cms__inner {
  max-width: 46rem;
}

.bs2-cms__title {
  margin: 0.35rem 0 1.5rem;
}

.bs2-cms__body h1 {
  display: none;
}

.bs2-cms__body ul {
  margin: 1rem 0 1.5rem;
  padding-left: 1.25rem;
  color: var(--bs2-muted);
}

.bs2-cms__body li {
  margin-bottom: 0.55rem;
}

.bs2-cms__body p {
  margin: 0 0 1rem;
  color: var(--bs2-muted);
}

.bs2-policy__prose {
  max-width: 46rem;
}

.bs2-policy__date {
  margin: 0 0 1.5rem !important;
  font-family: var(--bs2-heading);
  font-size: 14px;
  letter-spacing: 0.04em;
  color: var(--bs2-meta) !important;
}

.bs2-policy__prose h2 {
  margin: 2rem 0 0.75rem;
  font-family: var(--bs2-heading);
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--bs2-ink);
}

.bs2-policy__prose h3 {
  margin: 1.25rem 0 0.5rem;
  font-family: var(--bs2-heading);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--bs2-ink);
}

.bs2-policy__prose a {
  color: var(--bs2-ink);
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.bs2-policy__prose a:hover {
  color: var(--bs2-hover);
}

.bs2-policy__lede {
  margin: 0 0 1.75rem;
  color: var(--bs2-muted);
}

.bs2-policy .bs2-h3 {
  margin: 1.75rem 0 0.7rem;
}

.bs2-policy__list {
  margin: 0 0 0.5rem;
  padding-left: 1.25rem;
  color: var(--bs2-muted);
}

.bs2-policy__list li {
  margin-bottom: 0.55rem;
}

.bs2-policy__foot {
  margin-top: 2rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--bs2-line);
}

.bs2-about__lede,
.bs2-heritage__lede {
  max-width: 42rem;
  margin: 0.75rem 0 2rem;
  color: var(--bs2-muted);
}

.bs2-about__prose {
  max-width: 46rem;
}

.bs2-about__prose .bs2-h3 {
  margin: 2rem 0 0.75rem;
}

.bs2-about__prose .bs2-body {
  margin: 0 0 1rem;
}

.bs2-about__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2.5rem;
}

.bs2-timeline {
  margin-top: 3.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--bs2-line);
}

.bs2-timeline__list {
  list-style: none;
  margin: 1.75rem 0 0;
  padding: 0;
  display: grid;
  gap: 0;
}

.bs2-timeline__list li {
  display: grid;
  grid-template-columns: 5.5rem minmax(0, 1fr);
  gap: 1.25rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--bs2-line);
  align-items: baseline;
}

.bs2-timeline__year {
  font-family: var(--bs2-heading);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.04em;
  color: var(--bs2-accent);
}

.bs2-timeline__text {
  color: var(--bs2-muted);
  font-size: 15px;
  line-height: 1.5;
}

.bs2-heritage__gear {
  margin-top: 3rem;
  padding: 2rem;
  background: var(--bs2-surface);
}

.bs2-heritage__closing {
  max-width: 42rem;
  margin: 1.75rem 0 0;
  color: var(--bs2-muted);
}

.bs2-heritage__list {
  list-style: none;
  margin: 1.25rem 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem 1.5rem;
}

.bs2-heritage__list li {
  position: relative;
  padding-left: 1rem;
  color: var(--bs2-muted);
  font-size: 15px;
}

.bs2-heritage__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.35rem;
  height: 0.35rem;
  background: var(--bs2-accent);
}

.bs2-mobile-auth {
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--bs2-line);
  background: var(--bs2-surface);
}

.bs2-mobile-auth__title {
  margin: 0;
  font-family: var(--bs2-heading);
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--bs2-ink);
}

.bs2-mobile-auth__copy {
  margin: 0.35rem 0 0;
  font-size: 14px;
  line-height: 1.45;
  color: var(--bs2-muted);
}

.bs2-mobile-auth__actions {
  display: grid;
  gap: 0.65rem;
  margin-top: 1rem;
}

.bs2-mobile-auth__actions .bs2-btn,
.bs2-mobile-auth__actions .bs2-btn--ghost {
  width: 100%;
  padding: 0.85rem 1.25rem;
  font-size: 14px;
}

.bs2-mobile-auth .bs2-btn--ghost {
  margin-top: 0.75rem;
}

.bs2-mobile-nav__primary {
  display: grid;
  gap: 0.35rem;
  padding: 1rem 1.5rem 0.5rem;
  border-bottom: 1px solid var(--bs2-line);
}

.bs2-mobile-nav__primary a {
  font-family: var(--bs2-heading);
  font-size: 1.15rem;
  color: var(--bs2-ink);
  text-decoration: none;
  padding: 0.45rem 0;
}

.bs2-mobile-nav__label {
  margin: 1rem 1.5rem 0;
  font-family: var(--bs2-heading);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bs2-meta);
}

@media (max-width: 639px) {
  .bs2-heritage__list {
    grid-template-columns: 1fr;
  }

  .bs2-timeline__list li {
    grid-template-columns: 1fr;
    gap: 0.25rem;
  }

  .bs2-phero__cta {
    margin-left: 0;
  }
}

/* old static lighthouse block must not be hidden if cache serves it */

.bs2-shelf .container {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
}

.bs2-pdp,
.bs2-commerce,
.bs2-cart-page {
  padding-block: 1.5rem 4rem;
}

.bs2-checkout-page__form,
.bs2-checkout-page__summary {
  min-width: 0;
  width: 100%;
}

.bs2-track {
  border: 1px solid var(--bs2-line);
  padding: 1.25rem;
  margin-top: 1.5rem;
}

.bs2-track h2 {
  font-family: var(--bs2-heading);
  font-size: 1.15rem;
  margin: 0 0 0.75rem;
}

@media (max-width: 1023px) {
  .bs2-pdp__stage,
  .bs2-checkout-page,
  .bs2-account-shell {
    grid-template-columns: 1fr;
  }

  .bs2-cart-totals {
    margin-left: 0;
    max-width: none;
  }
}

/* Account dropdown — match bookstore theme */
header.bs2-header .absolute.z-20.w-max {
  border-radius: var(--bs2-radius) !important;
  background: var(--bs2-bg) !important;
  border: 1px solid var(--bs2-line);
  box-shadow: 0 12px 32px rgba(26, 6, 4, 0.12) !important;
  min-width: 16.75rem;
}

.bs2-account-drop {
  display: grid;
  gap: 0.35rem;
  min-width: 14.5rem;
}

.bs2-account-drop__title {
  margin: 0;
  font-family: var(--bs2-heading);
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--bs2-ink);
}

.bs2-account-drop__copy {
  margin: 0;
  font-size: 13px;
  line-height: 1.45;
  color: var(--bs2-muted);
}

.bs2-account-drop__rule {
  height: 1px;
  margin: 0.85rem 0 0;
  background: var(--bs2-line);
  border: 0;
}

.bs2-account-drop__actions {
  display: grid;
  gap: 0.6rem;
  margin-top: 1rem;
}

.bs2-account-drop__actions .bs2-btn,
.bs2-account-drop__actions .bs2-btn--ghost {
  width: 100%;
  padding: 0.75rem 1.15rem;
  font-size: 14px;
}

.bs2-account-drop__link {
  display: block;
  padding: 0.55rem 0;
  font-family: var(--bs2-heading);
  font-size: 14px;
  color: var(--bs2-ink);
  text-decoration: none;
}

.bs2-account-drop__link:hover {
  color: var(--bs2-accent);
}

.bs2-header__mobile-search {
  width: 100%;
  padding: 0 1rem 0.85rem;
}

.bs2-header__mobile-search-inner {
  position: relative;
  display: flex;
  align-items: center;
}

.bs2-header__mobile-search input {
  width: 100%;
  border: 1px solid var(--bs2-line);
  background: var(--bs2-surface);
  color: var(--bs2-ink);
  border-radius: 999px;
  padding: 0.65rem 2.5rem 0.65rem 2.35rem;
  font-size: 14px;
  font-weight: 500;
}

.bs2-header__mobile-search .icon-search {
  position: absolute;
  left: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--bs2-muted);
  pointer-events: none;
}

.bs2-header__search-toggle {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  min-height: 40px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--bs2-ink);
  cursor: pointer;
}

.bs2-header__search-toggle .icon-search,
.bs2-header__search-toggle .icon-cancel {
  position: static !important;
  left: auto !important;
  top: auto !important;
  transform: none !important;
  font-size: 1.35rem;
  line-height: 1;
  color: inherit;
}

.bs2-header__mobile-actions {
  display: flex;
  align-items: center;
}

.bs2-contact-page {
  padding-block: clamp(2.5rem, 2rem + 2vw, 4rem) 5.5rem;
}

.bs2-contact-page__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(2rem, 4vw, 4.5rem);
  align-items: start;
}

.bs2-contact-page .bs2-auth {
  max-width: none;
  margin: 0;
}

.bs2-contact-page .bs2-auth .bs2-h1 {
  margin: 0.2rem 0 0.75rem;
}

.bs2-contact-info .bs2-h1 {
  margin: 0.2rem 0 0.75rem;
}

.bs2-contact-info__lead {
  color: var(--bs2-muted);
  margin: 0 0 1.75rem;
  font-size: 16px;
  line-height: 1.55;
}

.bs2-contact-info__list {
  display: grid;
  gap: 1.15rem;
  margin: 0 0 1.75rem;
}

.bs2-contact-info__item {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
}

.bs2-contact-info__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 2.5rem;
  width: 2.5rem;
  height: 2.5rem;
  margin-top: 0.1rem;
  border: 1px solid var(--bs2-line);
  border-radius: var(--bs2-radius-sm);
  background: var(--bs2-surface);
  color: var(--bs2-accent);
}

.bs2-contact-info__icon svg {
  width: 1.15rem;
  height: 1.15rem;
}

.bs2-contact-info__list dt {
  font-family: var(--bs2-heading);
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--bs2-muted);
  margin: 0 0 0.25rem;
}

.bs2-contact-info__list dd {
  margin: 0;
  color: var(--bs2-ink);
  font-size: 16px;
  line-height: 1.45;
}

.bs2-contact-info__list a,
.bs2-contact-map__open a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.bs2-contact-info__list a:hover,
.bs2-contact-map__open a:hover {
  color: var(--bs2-hover);
}

.bs2-contact-map {
  overflow: hidden;
  border: 1px solid var(--bs2-line);
  border-radius: var(--bs2-radius-lg);
  aspect-ratio: 4 / 3;
  background: var(--bs2-surface);
}

.bs2-contact-map iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.bs2-contact-map__open {
  margin: 0.7rem 0 0;
  font-family: var(--bs2-heading);
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--bs2-muted);
}

@media (max-width: 900px) {
  .bs2-contact-page__grid {
    grid-template-columns: 1fr;
  }
}

.bs2-auth textarea {
  width: 100%;
  min-height: 10rem;
  border: 1px solid var(--bs2-line) !important;
  border-radius: var(--bs2-radius-sm) !important;
  background: var(--bs2-bg) !important;
  color: var(--bs2-ink) !important;
  padding: 0.85rem 1rem;
  font-family: var(--bs2-body);
  font-size: 16px;
}

.bs2-account-page {
  padding-bottom: 4.5rem;
}

.bs2-account-page h2,
.bs2-account-page .text-2xl,
.bs2-account-page .text-xl {
  font-family: var(--bs2-heading);
  color: var(--bs2-ink);
}

.bs2-account-page .border-zinc-200,
.bs2-account-page .border-gray-300 {
  border-color: var(--bs2-line) !important;
}

.bs2-account-page .bg-zinc-100,
.bs2-account-page .hover\:bg-zinc-100:hover,
.bs2-account-page .hover\:bg-gray-100:hover,
.bs2-account-page .hover\:bg-gray-50:hover {
  background: var(--bs2-surface) !important;
}

.bs2-account-page .text-zinc-500,
.bs2-account-page .text-neutral-500,
.bs2-account-page .text-gray-600,
.bs2-account-page .text-gray-800 {
  color: var(--bs2-muted) !important;
}

.bs2-account-page .text-blue-600,
.bs2-account-page .text-blue-700,
.bs2-account-page [class*="text-blue-"] {
  color: var(--bs2-hover) !important;
}

.bs2-account-page .primary-button,
.bs2-account-page .bg-navyBlue {
  background: var(--bs2-accent) !important;
  color: var(--bs2-ink) !important;
  border: 0;
  border-radius: var(--bs2-radius);
}

.bs2-account-page .bg-gray-600 {
  background: var(--bs2-ink) !important;
}

.bs2-account-page input,
.bs2-account-page select,
.bs2-account-page button.rounded-lg,
.bs2-account-page button.rounded-md {
  border-radius: var(--bs2-radius-sm) !important;
  border-color: var(--bs2-line) !important;
  background: var(--bs2-bg) !important;
  color: var(--bs2-ink);
}

.bs2-account-page .row.bg-zinc-100 {
  background: var(--bs2-surface) !important;
  color: var(--bs2-ink) !important;
}

@media (max-width: 639px) {
  .bs2-footer__grid {
    grid-template-columns: 1fr;
  }

  .bs2-wrap {
    overflow-x: hidden;
  }
}

/* One-page checkout — match bookstore theme */
.bs2-checkout-onepage {
  padding-block: 1.5rem 4rem;
}

.bs2-checkout-onepage #steps-container {
  margin-top: 1.75rem;
}

@media (min-width: 768px) {
  .bs2-checkout-onepage #steps-container {
    margin-top: 2.25rem;
  }

  .bs2-checkout-onepage #steps-container > div:first-child > .mb-7,
  .bs2-checkout-onepage #steps-container > div:first-child .mb-7.mt-8 {
    margin-top: 0.5rem !important;
  }
}

.bs2-checkout-onepage h1,
.bs2-checkout-onepage h2 {
  font-family: var(--bs2-heading);
  color: var(--bs2-ink);
  letter-spacing: -0.02em;
}

.bs2-checkout-onepage .text-navyBlue,
.bs2-checkout-onepage .text-blue-700,
.bs2-checkout-onepage .text-blue-600,
.bs2-checkout-onepage [class*="text-blue-"] {
  color: var(--bs2-hover) !important;
}

.bs2-checkout-onepage .bg-navyBlue,
.bs2-checkout-onepage .primary-button {
  background: var(--bs2-accent) !important;
  color: var(--bs2-ink) !important;
  border: 0;
  border-radius: var(--bs2-radius) !important;
  font-family: var(--bs2-heading);
  font-weight: 600;
}

.bs2-checkout-onepage .primary-button:hover,
.bs2-checkout-onepage .bg-navyBlue:hover {
  background: var(--bs2-hover) !important;
  color: var(--bs2-on-dark) !important;
}

.bs2-checkout-onepage input:not([type="checkbox"]):not([type="radio"]):not([type="hidden"]),
.bs2-checkout-onepage textarea,
.bs2-checkout-onepage select {
  border-radius: var(--bs2-radius-sm) !important;
  border-color: var(--bs2-line) !important;
  background: var(--bs2-bg) !important;
  color: var(--bs2-ink) !important;
}

.bs2-checkout-onepage input:not([type="checkbox"]):not([type="radio"]):not([type="hidden"]):hover,
.bs2-checkout-onepage input:not([type="checkbox"]):not([type="radio"]):not([type="hidden"]):focus,
.bs2-checkout-onepage textarea:hover,
.bs2-checkout-onepage textarea:focus,
.bs2-checkout-onepage select:hover,
.bs2-checkout-onepage select:focus {
  border-color: var(--bs2-accent) !important;
  outline: none;
}

.bs2-checkout-onepage label {
  font-family: var(--bs2-heading);
  color: var(--bs2-muted);
}

.bs2-checkout-onepage [class*="bg-gray-100"],
.bs2-checkout-onepage [class*="!bg-gray-100"] {
  background: var(--bs2-surface) !important;
}

.bs2-checkout-onepage [class*="border-zinc-200"],
.bs2-checkout-onepage [class*="border-zinc-"] {
  border-color: var(--bs2-line) !important;
}

.bs2-checkout-onepage .rounded-xl,
.bs2-checkout-onepage .rounded-lg,
.bs2-checkout-onepage .rounded-2xl,
.bs2-checkout-onepage .rounded-md {
  border-radius: var(--bs2-radius) !important;
}

.bs2-checkout-onepage [class*="icon-radio"] {
  color: var(--bs2-accent) !important;
}

.bs2-checkout-onepage img[class*="rounded"] {
  border-radius: var(--bs2-radius-sm) !important;
}

.bs2-checkout-onepage .z-10.rounded-lg.bg-white,
.bs2-checkout-onepage [class*="bg-white"] {
  background: var(--bs2-bg) !important;
}

html:has(.bs2-checkout-onepage),
html:has(.bs2-checkout-onepage) body,
html:has(.bs2-checkout-onepage) .bs2 {
  overflow-x: clip;
}

.bs2-checkout-onepage .grid.grid-cols-\[1fr_auto\] {
  align-items: start;
}

.bs2-checkout-onepage #steps-container {
  overflow: visible;
}

.bs2-checkout-onepage__aside {
  position: sticky !important;
  top: calc(var(--bs2-header-h) + 1rem) !important;
  align-self: start;
  z-index: 4;
  max-height: calc(100vh - var(--bs2-header-h) - 2rem);
  overflow-y: auto;
}

@media (min-width: 768px) {
  .bs2-checkout-onepage #steps-container > div > .mb-7,
  .bs2-checkout-onepage #steps-container .mb-7.mt-8,
  .bs2-checkout-onepage #steps-container .overflow-hidden {
    overflow: visible !important;
    background: transparent !important;
    border: 0 !important;
    border-radius: 0 !important;
    margin-top: 0 !important;
    margin-bottom: 2rem !important;
  }

  .bs2-checkout-onepage #steps-container .bs2-checkout-step__head,
  .bs2-checkout-onepage #steps-container .flex.cursor-pointer.select-none.items-center.justify-between {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0 0 0.9rem !important;
    margin: 0 0 1.25rem;
    border-bottom: 1px solid var(--bs2-line);
    background: transparent !important;
    border-radius: 0 !important;
  }

  .bs2-checkout-onepage #steps-container .flex.cursor-pointer.select-none.items-center.justify-between h2 {
    margin: 0;
    font-family: var(--bs2-heading);
    font-size: 1.5rem;
    font-weight: 500;
    letter-spacing: -0.03em;
    line-height: 1.2;
    color: var(--bs2-ink);
  }

  .bs2-checkout-onepage #steps-container .flex.cursor-pointer.select-none.items-center.justify-between [class*="icon-arrow"] {
    color: var(--bs2-muted);
    font-size: 1.15rem;
  }
}

@media (max-width: 767px) {
  .bs2-checkout-onepage {
    padding-block: 1rem 3rem;
  }

  .bs2-checkout-onepage #steps-container {
    overflow: visible;
  }

  .bs2-checkout-onepage__aside {
    position: static;
    width: 100%;
    max-width: none;
    padding-inline: 0 !important;
  }
}

/* Heritage story — STILL-style pinned year timeline */
.bs2-hstory {
  background: var(--bs2-bg);
  color: var(--bs2-ink);
}

.bs2-hstory__intro,
.bs2-hstory__close {
  padding-block: clamp(3.5rem, 8vh, 7rem) var(--bs2-section-y);
}

.bs2-hstory__intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.9fr);
  gap: clamp(1.75rem, 4vw, 4rem);
  align-items: center;
}

.bs2-hstory__intro-media img {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center 40%;
  border-radius: var(--bs2-radius-lg);
  background: var(--bs2-surface);
}

.bs2-hstory__eyebrow {
  margin: 0 0 1rem;
  font-family: var(--bs2-heading);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bs2-accent);
}

.bs2-hstory__display {
  margin: 0 0 1.5rem;
  max-width: 18ch;
  font-family: "Cormorant Garamond", "DM Serif Display", serif;
  font-size: clamp(2.4rem, 1.2rem + 4vw, 4.6rem);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: var(--bs2-ink);
}

.bs2-hstory__display--close {
  max-width: 16ch;
}

.bs2-hstory__lede {
  margin: 0 0 1rem;
  max-width: 40rem;
  color: var(--bs2-muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

.bs2-hstory__scroll {
  margin: 2.5rem 0 0;
  font-family: var(--bs2-heading);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bs2-meta);
}

.bs2-hstory__track {
  position: relative;
}

.bs2-hstory__pin {
  position: relative;
  height: calc(100dvh - var(--bs2-header-h));
  overflow: hidden;
  background: var(--bs2-bg);
}

.bs2-hstory__year {
  position: absolute;
  left: -0.08em;
  top: 42%;
  transform: translateY(-50%);
  z-index: 0;
  margin: 0;
  font-family: "Cormorant Garamond", "DM Serif Display", serif;
  font-size: clamp(8rem, 28vw, 22rem);
  font-weight: 500;
  line-height: 0.8;
  letter-spacing: -0.06em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(23, 23, 21, 0.1);
  pointer-events: none;
  user-select: none;
  transition: opacity 0.35s ease, transform 0.55s ease;
}

.bs2-hstory__year.is-swap {
  opacity: 0.35;
  transform: translateY(-46%);
}

.bs2-hstory__stage {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(16rem, 0.9fr) 3.75rem;
  gap: clamp(1.25rem, 3vw, 3rem);
  align-items: center;
  height: 100%;
  padding-block: 1.25rem 1.75rem;
}

.bs2-hstory__copy {
  position: relative;
  min-height: 22rem;
}

.bs2-hstory__chapter {
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  max-width: 36rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(1.15rem);
  transition: opacity 0.45s ease, transform 0.55s cubic-bezier(0.22, 1, 0.36, 1), visibility 0.45s;
  pointer-events: none;
}

.bs2-hstory__chapter.is-active {
  position: relative;
  opacity: 1;
  visibility: visible;
  transform: none;
  pointer-events: auto;
}

.bs2-hstory__chapter-meta {
  margin: 0 0 0.65rem;
  font-family: var(--bs2-heading);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--bs2-muted);
}

.bs2-hstory__kicker {
  margin: 0 0 0.35rem;
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--bs2-accent);
}

.bs2-hstory__title {
  margin: 0 0 1rem;
  font-family: "Cormorant Garamond", "DM Serif Display", serif;
  font-size: clamp(1.85rem, 1.2rem + 1.8vw, 3rem);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: var(--bs2-ink);
}

.bs2-hstory__rule {
  display: block;
  width: 3.25rem;
  height: 1px;
  margin: 0 0 1.15rem;
  background: var(--bs2-line);
}

.bs2-hstory__body {
  margin: 0 0 0.85rem;
  max-width: 34rem;
  color: var(--bs2-muted);
  font-size: 0.98rem;
  line-height: 1.7;
}

.bs2-hstory__media {
  min-width: 0;
}

.bs2-hstory__frame {
  position: relative;
  aspect-ratio: 3 / 4;
  width: min(100%, calc(min(78vh, 46rem) * 3 / 4));
  height: auto;
  overflow: hidden;
  border-radius: var(--bs2-radius-lg);
  background: var(--bs2-surface);
}

.bs2-hstory__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transition: opacity 0.55s ease;
}

.bs2-hstory__image.is-active {
  opacity: 1;
}

.bs2-hstory__fig {
  margin: 0.75rem 0 0;
  font-family: var(--bs2-heading);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--bs2-meta);
  line-height: 1.45;
}

.bs2-hstory__years {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.15rem;
  align-self: stretch;
  padding-left: 0.85rem;
}

.bs2-hstory__years-line {
  position: absolute;
  left: 0;
  top: 8%;
  bottom: 8%;
  width: 1px;
  background: var(--bs2-line);
}

.bs2-hstory__year-btn {
  appearance: none;
  background: none;
  border: 0;
  padding: 0.28rem 0;
  margin: 0;
  text-align: left;
  font-family: var(--bs2-heading);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--bs2-meta);
  cursor: pointer;
  transition: color 0.25s ease, transform 0.25s ease;
}

.bs2-hstory__year-btn.is-active {
  color: var(--bs2-ink);
  transform: translateX(2px);
  font-weight: 600;
}

.bs2-hstory__year-btn:hover {
  color: var(--bs2-ink);
}

.bs2-hstory__close-prose {
  max-width: 40rem;
  color: var(--bs2-muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

.bs2-hstory__close-prose p {
  margin: 0 0 1rem;
}

@media (max-width: 1023px) {
  .bs2-hstory__stage {
    grid-template-columns: minmax(0, 1fr) 3.25rem;
    grid-template-rows: auto minmax(0, 1fr);
    gap: 0.85rem 1rem;
  }

  .bs2-hstory__media {
    grid-column: 1;
    grid-row: 1;
  }

  .bs2-hstory__copy {
    grid-column: 1;
    grid-row: 2;
    min-height: 0;
    overflow: auto;
  }

  .bs2-hstory__years {
    grid-column: 2;
    grid-row: 1 / span 2;
  }

  .bs2-hstory__frame {
    width: min(100%, calc(52vh * 3 / 4));
  }

  .bs2-hstory__year {
    font-size: clamp(6rem, 22vw, 12rem);
    top: 28%;
    opacity: 0.85;
  }

  .bs2-hstory__title {
    font-size: clamp(1.5rem, 5vw, 2.1rem);
  }

  .bs2-hstory__body {
    font-size: 0.92rem;
  }
}

@media (max-width: 639px) {
  .bs2-hstory__pin {
    height: calc(100dvh - var(--bs2-header-h));
  }

  .bs2-hstory__stage {
    grid-template-columns: 1fr;
    grid-template-rows: auto minmax(0, 1fr) auto;
    padding-block: 0.75rem 0.85rem;
    gap: 0.65rem;
  }

  .bs2-hstory__media {
    grid-column: 1;
    grid-row: 1;
  }

  .bs2-hstory__copy {
    grid-column: 1;
    grid-row: 2;
  }

  .bs2-hstory__years {
    grid-column: 1;
    grid-row: 3;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    gap: 0.15rem;
    overflow-x: auto;
    padding: 0.15rem 0 0.35rem;
    scrollbar-width: none;
  }

  .bs2-hstory__years::-webkit-scrollbar {
    display: none;
  }

  .bs2-hstory__years-line {
    display: none;
  }

  .bs2-hstory__year-btn {
    flex: 0 0 auto;
    padding: 0.35rem 0.55rem;
    font-size: 11px;
  }

  .bs2-hstory__year-btn.is-active {
    transform: none;
    color: var(--bs2-ink);
    box-shadow: inset 0 -1px 0 var(--bs2-accent);
  }

  .bs2-hstory__frame {
    width: min(100%, calc(48vh * 3 / 4));
  }

  .bs2-hstory__year {
    display: none;
  }

  .bs2-hstory__fig {
    font-size: 10px;
  }

  .bs2-hstory__display {
    max-width: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .bs2-hstory__chapter,
  .bs2-hstory__image,
  .bs2-hstory__year,
  .bs2-hstory__year-btn {
    transition: none;
  }

  .bs2-hstory__track {
    height: auto;
  }

  .bs2-hstory__pin {
    position: relative;
    top: 0;
    height: auto;
    overflow: visible;
  }

  .bs2-hstory__copy {
    display: grid;
    gap: 3rem;
    min-height: 0;
  }

  .bs2-hstory__chapter {
    position: relative;
    opacity: 1;
    visibility: visible;
    transform: none;
    pointer-events: auto;
  }
}

/* About Us — purpose, values, team */
.bs2-about-page {
  padding-bottom: var(--bs2-section-y);
}

.bs2-about-hero {
  padding-block: clamp(3.5rem, 8vh, 6.5rem) var(--bs2-section-y);
}

.bs2-about-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.9fr);
  gap: clamp(1.75rem, 4vw, 4rem);
  align-items: center;
}

.bs2-about-hero__media img {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center 35%;
  border-radius: var(--bs2-radius-lg);
  background: var(--bs2-surface);
}

.bs2-about-hero__title {
  margin: 0 0 1.5rem;
  max-width: 16ch;
  font-family: "Cormorant Garamond", "DM Serif Display", serif;
  font-size: clamp(2.6rem, 1.2rem + 4.2vw, 4.75rem);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--bs2-ink);
}

.bs2-about-hero__lines {
  list-style: none;
  margin: 0 0 1.75rem;
  padding: 0;
  max-width: 36rem;
}

.bs2-about-hero__lines li {
  font-family: "Cormorant Garamond", "DM Serif Display", serif;
  font-size: clamp(1.2rem, 1rem + 0.8vw, 1.55rem);
  font-style: italic;
  line-height: 1.45;
  color: var(--bs2-ink);
}

.bs2-about-hero__lede {
  margin: 0;
  max-width: 40rem;
  color: var(--bs2-muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

.bs2-about-who {
  padding-block: var(--bs2-section-y);
  background: var(--bs2-surface);
}

.bs2-about-who__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: clamp(1.75rem, 4vw, 4rem);
  align-items: center;
}

.bs2-about-who__copy .bs2-h2 {
  margin: 0 0 1.25rem;
  max-width: 16ch;
}

.bs2-about-who__copy p {
  margin: 0 0 1rem;
  color: var(--bs2-muted);
  line-height: 1.7;
}

.bs2-about-who__media img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  background: var(--bs2-bg);
  border-radius: var(--bs2-radius-lg);
}

.bs2-about-who__media figcaption {
  margin-top: 0.7rem;
  font-family: var(--bs2-heading);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bs2-meta);
}

.bs2-about-values {
  padding-block: var(--bs2-section-y);
}

.bs2-about-values .bs2-h2 {
  margin: 0 0 2rem;
}

.bs2-about-values__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}

.bs2-about-card,
.bs2-about-power {
  padding: 1.75rem 1.6rem 1.9rem;
  background: var(--bs2-surface);
  border: 1px solid var(--bs2-line);
  border-radius: var(--bs2-radius);
}

.bs2-about-card__label {
  margin: 0 0 0.85rem;
  font-family: var(--bs2-heading);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bs2-accent);
}

.bs2-about-card h3,
.bs2-about-power h3 {
  margin: 0 0 1rem;
  font-family: "Cormorant Garamond", "DM Serif Display", serif;
  font-size: clamp(1.45rem, 1.1rem + 1vw, 1.9rem);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.bs2-about-card p,
.bs2-about-power p,
.bs2-about-card li,
.bs2-about-power dd {
  color: var(--bs2-muted);
  font-size: 0.98rem;
  line-height: 1.65;
}

.bs2-about-card p {
  margin: 0 0 0.85rem;
}

.bs2-about-card ul {
  margin: 0;
  padding-left: 1.1rem;
}

.bs2-about-card li {
  margin-bottom: 0.65rem;
}

.bs2-about-power__lede {
  margin: 0 0 1.5rem;
  max-width: 46rem;
}

.bs2-about-power__list {
  margin: 0;
  display: grid;
  gap: 1.15rem;
}

.bs2-about-power__list > div {
  display: grid;
  grid-template-columns: 2.4rem minmax(0, 1fr);
  gap: 0.85rem;
  align-items: start;
}

.bs2-about-power__list dt {
  font-family: "Cormorant Garamond", "DM Serif Display", serif;
  font-size: 1.85rem;
  font-weight: 600;
  line-height: 1;
  color: var(--bs2-accent);
}

.bs2-about-power__list dd {
  margin: 0;
}

.bs2-about-power__list strong {
  color: var(--bs2-ink);
  font-family: var(--bs2-heading);
  font-weight: 600;
}

.bs2-about-beyond {
  padding-block: var(--bs2-section-y);
  background: var(--bs2-dark);
  color: var(--bs2-on-dark);
}

.bs2-about-beyond .bs2-eyebrow {
  color: var(--bs2-accent);
}

.bs2-about-beyond__title {
  margin: 0 0 1.25rem;
  max-width: 18ch;
  font-family: "Cormorant Garamond", "DM Serif Display", serif;
  font-size: clamp(2rem, 1.2rem + 2.4vw, 3.4rem);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--bs2-on-dark);
}

.bs2-about-beyond__lede {
  margin: 0 0 2rem;
  max-width: 42rem;
  color: var(--bs2-on-dark-muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

.bs2-about-beyond__words {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1.75rem;
  font-family: var(--bs2-heading);
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--bs2-accent);
}

.bs2-about-team {
  padding-block: var(--bs2-section-y);
}

.bs2-about-team .bs2-h2 {
  margin: 0 0 2.25rem;
}

.bs2-about-team__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.5rem 1.25rem;
}

.bs2-about-person h3 {
  margin: 1rem 0 0.2rem;
  font-family: var(--bs2-heading);
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.bs2-about-person__role {
  margin: 0 0 0.75rem;
  font-family: var(--bs2-heading);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--bs2-accent);
}

.bs2-about-person p:last-child {
  margin: 0;
  color: var(--bs2-muted);
  font-size: 0.92rem;
  line-height: 1.6;
}

.bs2-about-person__photo {
  background: var(--bs2-surface);
  overflow: hidden;
  border-radius: var(--bs2-radius-lg);
}

.bs2-about-person__photo img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: top center;
}

.bs2-about-page .bs2-about__actions {
  margin-top: 0.5rem;
}

@media (max-width: 1023px) {
  .bs2-about-hero__grid,
  .bs2-hstory__intro-grid {
    grid-template-columns: 1fr;
  }

  .bs2-about-hero__media img,
  .bs2-hstory__intro-media img {
    max-height: 32rem;
    aspect-ratio: 4 / 5;
  }

  .bs2-about-who__grid,
  .bs2-about-values__grid,
  .bs2-about-team__grid {
    grid-template-columns: 1fr 1fr;
  }

  .bs2-about-who__media img {
    aspect-ratio: 16 / 10;
  }
}

@media (max-width: 639px) {
  .bs2-about-who__grid,
  .bs2-about-values__grid,
  .bs2-about-team__grid {
    grid-template-columns: 1fr;
  }

  .bs2-about-hero__title {
    max-width: none;
  }

  .bs2-about-beyond__words {
    gap: 0.5rem 1.1rem;
    font-size: 12px;
  }
}

.bs2-success-art {
  display: grid;
  place-items: center;
  width: min(42vw, 168px);
  max-width: 168px;
  padding: 0.65rem;
  background: var(--bs2-dark);
  border-radius: 50%;
  overflow: hidden;
}

.bs2-success-img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  mix-blend-mode: normal;
}

@media (min-width: 768px) {
  .bs2-success-art {
    width: 180px;
    max-width: 180px;
  }
}

@media (min-width: 1024px) {
  .bs2-success-art {
    width: 200px;
    max-width: 200px;
  }
}

@media (max-width: 479px) {
  .bs2-success-art {
    width: min(36vw, 128px);
    max-width: 128px;
  }
}

.bs2-confirm__overlay,
.bs2-confirm__layer {
  position: fixed;
  inset: 0;
  z-index: 2000;
}

.bs2-confirm__overlay {
  background: rgba(23, 23, 21, 0.45);
}

.bs2-confirm__layer {
  overflow-y: auto;
}

.bs2-confirm__center {
  display: flex;
  min-height: 100%;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
}

.bs2-confirm__dialog {
  width: min(100%, 26rem);
  background: var(--bs2-bg);
  border: 1px solid var(--bs2-line);
  color: var(--bs2-ink);
  box-shadow: 0 18px 48px rgba(23, 23, 21, 0.18);
  overflow: hidden;
  border-radius: var(--bs2-radius);
}

.bs2-confirm__body {
  display: flex;
  gap: 0.9rem;
  padding: 1.35rem 1.4rem 1.25rem;
}

.bs2-confirm__icon {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid var(--bs2-line);
  color: var(--bs2-hover);
  border-radius: var(--bs2-radius-sm);
}

.bs2-confirm__icon .icon-error {
  font-size: 1.25rem;
  line-height: 1;
}

.bs2-confirm__copy {
  min-width: 0;
  flex: 1;
  text-align: left;
}

.bs2-confirm__title {
  margin: 0;
  font-family: var(--bs2-heading);
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.3;
  color: var(--bs2-ink);
}

.bs2-confirm__message {
  margin: 0.4rem 0 1.1rem;
  font-family: var(--bs2-body);
  font-size: 0.9rem;
  line-height: 1.45;
  color: var(--bs2-muted);
}

.bs2-confirm__actions {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.bs2-confirm__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.5rem;
  padding: 0.55rem 1.15rem;
  border: 1px solid var(--bs2-ink);
  border-radius: var(--bs2-radius);
  font-family: var(--bs2-heading);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
}

.bs2-confirm__btn--ghost {
  background: transparent;
  color: var(--bs2-ink);
}

.bs2-confirm__btn--ghost:hover {
  background: var(--bs2-surface);
}

.bs2-confirm__btn--solid {
  border-color: var(--bs2-accent);
  background: var(--bs2-accent);
  color: var(--bs2-ink);
}

.bs2-confirm__btn--solid:hover {
  border-color: var(--bs2-hover);
  background: var(--bs2-hover);
  color: var(--bs2-on-dark);
}

@media (max-width: 639px) {
  .bs2-confirm__center {
    align-items: flex-end;
    padding: 0.75rem;
  }

  .bs2-confirm__dialog {
    width: 100%;
  }

  .bs2-confirm__body {
    padding: 1.1rem 1rem 1rem;
  }

  .bs2-confirm__actions {
    width: 100%;
  }

  .bs2-confirm__btn {
    flex: 1;
  }
}

.bs2-toast {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.85rem;
  width: max-content;
  max-width: min(24rem, calc(100vw - 2rem));
  padding: 0.8rem 1rem;
  border: 1px solid var(--bs2-line);
  border-radius: var(--bs2-radius);
  background: var(--bs2-dark);
  color: var(--bs2-on-dark);
  box-shadow: 0 12px 32px rgba(26, 6, 4, 0.18);
  font-family: var(--bs2-heading);
}

.bs2-toast__message {
  display: flex;
  align-items: center;
  margin: 0;
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.35;
  color: var(--bs2-on-dark);
}

.bs2-toast__icon {
  margin-inline-end: 0.55rem;
  font-size: 1.15rem;
  line-height: 1;
  color: var(--bs2-accent);
}

.bs2-toast__close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--bs2-on-dark-muted);
  cursor: pointer;
}

.bs2-toast__close .icon-cancel {
  font-size: 1rem;
}

.bs2-toast--success {
  background: var(--bs2-dark);
  border-color: var(--bs2-accent);
}

.bs2-toast--error {
  background: var(--bs2-dark-2);
  border-color: #c45c4a;
}

.bs2-toast--error .bs2-toast__icon {
  color: #e7b3a8;
}

.bs2-toast--warning,
.bs2-toast--info {
  background: var(--bs2-surface);
  color: var(--bs2-ink);
  border-color: var(--bs2-line);
}

.bs2-toast--warning .bs2-toast__message,
.bs2-toast--info .bs2-toast__message {
  color: var(--bs2-ink);
}

.bs2-toast--warning .bs2-toast__icon {
  color: var(--bs2-hover);
}

.bs2-toast--info .bs2-toast__icon {
  color: var(--bs2-muted);
}

.bs2-cart-continue {
  font-family: var(--bs2-heading);
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: var(--bs2-muted);
  text-decoration: none;
}

.bs2-cart-continue:hover {
  color: var(--bs2-ink);
  text-decoration: underline;
}

.bs2-account-page .mb-4:has([name="company_name"]),
.bs2-account-page .mb-4:has([name="vat_id"]) {
  display: none !important;
}

.bs2-shipment-track__link {
  color: var(--bs2-ink);
  font-weight: 600;
  margin-inline-end: 0.4rem;
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.bs2-shipment-track__link:hover {
  color: var(--bs2-accent);
}

