/** Shopify CDN: Minification failed

Line 2660:0 Expected "}" to go with "{"

**/
/* Beckham AB variant — "Mellow" structure, Beckham skin.
   Loaded after beckham-base.css; consumes its tokens only. */

@import url('https://fonts.googleapis.com/css2?family=Assistant:wght@300..800&display=swap');

/* ---------- Variant design language ----------
   Same palette, same logo, different voice: the variant swaps the serif
   editorial type for the theme's own configured sans (Assistant) at
   bolder weights, softer radii, tinted panels. One token override
   retypes every bk-* component. */

.bk-mellow-theme {
  --bk-font-display: 'Assistant', -apple-system, 'Segoe UI', Roboto, sans-serif;
  --bk-font-display-condensed: 'Assistant', -apple-system, sans-serif;
  --bk-font-text: 'Assistant', -apple-system, 'Segoe UI', Roboto, sans-serif;
  --bk-font-label: 'Assistant', -apple-system, sans-serif;
  --bk-ls-label: 0.12em;
  --bk-lh-body: 1.55;
}

.bk-mellow-theme h1,
.bk-mellow-theme h2,
.bk-mellow-theme h3,
.bk-mellow-theme .h1,
.bk-mellow-theme .h2,
.bk-mellow-theme .h3 {
  font-family: var(--bk-font-display);
  font-weight: 700;
  letter-spacing: -0.01em;
}

.bk-mellow-theme .beckham-hero__heading,
.bk-mellow-theme .beckham-editorial__heading,
.bk-mellow-theme .beckham-reviews__heading {
  font-weight: 700;
  letter-spacing: -0.01em;
}

/* ---------- Shared variant primitives ---------- */

.bk-mellow-heading {
  margin: 0;
  font-family: var(--bk-font-display);
  font-size: clamp(2.6rem, 1.8rem + 2vw, 3.8rem);
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: var(--bk-lh-tight);
  color: var(--bk-navy);
  text-align: center;
  overflow-wrap: break-word;
}

.bk-mellow-subheading {
  margin: var(--bk-space-3) auto 0;
  max-width: 56rem;
  font-family: var(--bk-font-text);
  font-size: var(--bk-text-base);
  line-height: var(--bk-lh-body);
  color: var(--bk-navy-soft);
  text-align: center;
}

.bk-mellow-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 4.4rem;
  padding: var(--bk-space-3) var(--bk-space-6);
  border: 0.1rem solid var(--bk-navy);
  border-radius: 999px;
  background: var(--bk-navy);
  font-family: var(--bk-font-label);
  font-size: var(--bk-text-sm);
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--bk-cream);
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  transition: background 0.2s var(--bk-ease-out), color 0.2s var(--bk-ease-out), transform 0.2s var(--bk-ease-out);

  &:hover {
    background: var(--bk-navy-deep);
    transform: translateY(-0.1rem);
  }

  &:focus-visible {
    outline: 0.2rem solid var(--bk-focus-ring);
    outline-offset: 0.2rem;
  }
}

.bk-mellow-btn--gold {
  border-color: var(--bk-gold-soft);
  background: var(--bk-gold-soft);
  color: var(--bk-navy-deep);

  &:hover {
    background: var(--bk-gold-tint);
    color: var(--bk-navy-deep);
  }
}

.bk-mellow-btn--ghost {
  background: transparent;
  color: var(--bk-navy);

  &:hover {
    background: var(--bk-navy);
    color: var(--bk-cream);
  }
}

.bk-mellow-stars {
  position: relative;
  /* inline-flex drops inter-element whitespace nodes so the absolute
     fill layer always registers exactly over the outline base.
     width/flex guards: as a flex item the wrapper blockifies and would
     stretch to the container, making the % fill compute against the
     container instead of the star run. */
  display: inline-flex;
  width: max-content;
  flex: none;
  font-size: var(--bk-text-sm);
  line-height: 1;
  letter-spacing: 0.1em;
  color: var(--bk-warm-300);
  white-space: nowrap;
}

.bk-mellow-stars__fill {
  position: absolute;
  inset-block-start: 0;
  inset-inline-start: 0;
  overflow: hidden;
  white-space: nowrap;
  color: var(--bk-gold-deep);
}

.bk-mellow-stars--review {
  font-size: var(--bk-text-md);
}

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

.bk-hero-split {
  padding-block: var(--bk-space-7);
}

.bk-hero-split__grid {
  display: grid;
  gap: var(--bk-space-6);
  align-items: center;

  @media screen and (min-width: 990px) {
    grid-template-columns: 11fr 9fr;
    gap: var(--bk-space-8);
  }
}

.bk-hero-split__copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--bk-space-4);
}

.bk-hero-split__eyebrow {
  display: inline-block;
  padding: 0.5rem var(--bk-space-3);
  border-radius: 999px;
  background: var(--bk-gold-tint);
  font-family: var(--bk-font-label);
  font-size: var(--bk-text-xs);
  font-weight: 700;
  letter-spacing: var(--bk-ls-label);
  text-transform: uppercase;
  color: var(--bk-navy-deep);
}

.bk-hero-split__heading {
  margin: 0;
  font-family: var(--bk-font-display);
  font-size: clamp(3.6rem, 2.4rem + 3.4vw, 6.4rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.02;
  color: var(--bk-navy);
}

.bk-hero-split__subheading {
  margin: 0;
  font-family: var(--bk-font-text);
  font-size: var(--bk-text-md);
  line-height: var(--bk-lh-body);
  color: var(--bk-navy-soft);
}

.bk-hero-split__rating {
  display: flex;
  align-items: center;
  gap: var(--bk-space-2);
  font-family: var(--bk-font-label);
  font-size: var(--bk-text-sm);
  font-weight: 600;
  color: var(--bk-navy-soft);
}

.bk-hero-split__chips {
  display: flex;
  flex-wrap: wrap;
  gap: var(--bk-space-2);
  margin: 0;
  padding: 0;
  list-style: none;
}

.bk-hero-split__chip {
  padding: 0.6rem var(--bk-space-3);
  border: 0.1rem solid var(--bk-warm-100);
  border-radius: 999px;
  background: var(--bk-paper);
  font-family: var(--bk-font-label);
  font-size: var(--bk-text-xs);
  font-weight: 600;
  color: var(--bk-navy);
}

.bk-hero-split__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: var(--bk-space-3);
  margin-block-start: var(--bk-space-2);
}

.bk-hero-split__cta {
  padding-inline: var(--bk-space-7);
  min-height: 5rem;
  font-size: var(--bk-text-base);
}

.bk-hero-split__media {
  min-width: 0;
}

.bk-hero-split__panel {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: 2.4rem;
  background: radial-gradient(120% 120% at 30% 20%, var(--bk-warm-50) 0%, var(--bk-cream-deep) 100%);
  overflow: hidden;
}

.bk-hero-split__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bk-hero-split__badge {
  position: absolute;
  inset-block-start: var(--bk-space-4);
  inset-inline-end: var(--bk-space-4);
  display: inline-flex;
  align-items: center;
  padding: 0.8rem var(--bk-space-4);
  border-radius: 999px;
  background: var(--bk-navy);
  font-family: var(--bk-font-label);
  font-size: var(--bk-text-sm);
  font-weight: 700;
  color: var(--bk-cream);
  box-shadow: var(--bk-shadow-md);
}

@media screen and (max-width: 989px) {
  .bk-hero-split {
    padding-block: var(--bk-space-6);
  }

  .bk-hero-split__panel {
    aspect-ratio: 4 / 3;
  }
}

/* ---------- Marquee ---------- */

.bk-marquee {
  overflow: hidden;
  padding-block: var(--bk-space-2);
  border-block-end: 0.1rem solid rgba(243, 236, 224, 0.14);
  background: var(--bk-navy-deep);
}

.bk-marquee__track {
  display: flex;
  width: max-content;
  animation: bk-marquee-scroll var(--bk-marquee-duration, 32s) linear infinite;
}

.bk-marquee:hover .bk-marquee__track {
  animation-play-state: paused;
}

.bk-marquee__group {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.bk-marquee__item {
  display: inline-flex;
  align-items: center;
  gap: var(--bk-space-4);
  padding-inline: var(--bk-space-4);
  font-family: var(--bk-font-label);
  font-size: var(--bk-text-2xs);
  font-weight: 600;
  letter-spacing: var(--bk-ls-label);
  text-transform: uppercase;
  color: var(--bk-cream);
  white-space: nowrap;
}

.bk-marquee__separator {
  color: var(--bk-gold-soft);
}

.bk-marquee__link {
  color: inherit;
  text-decoration: none;

  &:hover {
    text-decoration: underline;
    text-underline-offset: 0.3rem;
  }

  &:focus-visible {
    outline: 0.2rem solid var(--bk-focus-ring);
    outline-offset: 0.2rem;
  }
}

@keyframes bk-marquee-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .bk-marquee {
    padding-inline-end: 0;
  }

  .bk-marquee::after,
  .bk-marquee__toggle {
    display: none;
  }

  .bk-marquee__track {
    animation: none;
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
  }

  .bk-marquee__group[aria-hidden='true'] {
    display: none;
  }
}

/* ---------- Product cards grid ---------- */

.bk-pcards {
  padding-block: var(--bk-space-8);
}

.bk-pcards__header {
  margin-block-end: var(--bk-space-6);
}

.bk-pcards__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--bk-space-4);

  /* tablet: two comfortable columns regardless of the desktop setting */
  @media screen and (min-width: 750px) and (max-width: 989px) {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--bk-space-5);
  }

  @media screen and (min-width: 990px) {
    grid-template-columns: repeat(var(--bk-pcards-columns, 3), minmax(0, 1fr));
    gap: var(--bk-space-5);
  }
}

.bk-pcard {
  position: relative;
  display: flex;
  flex-direction: column;
  border-radius: 2rem;
  background: var(--bk-paper);
  box-shadow: var(--bk-shadow-sm);
  overflow: hidden;
  isolation: isolate;
  transition: box-shadow 0.25s var(--bk-ease-out), transform 0.25s var(--bk-ease-out);

  &:hover {
    box-shadow: var(--bk-shadow-md);
    transform: translateY(-0.3rem);
  }
}

.bk-pcard__media {
  position: relative;
  aspect-ratio: 1 / 1;
  margin: var(--bk-space-3);
  border-radius: 1.4rem;
  background: radial-gradient(120% 120% at 30% 20%, var(--bk-warm-50) 0%, var(--bk-warm-100) 100%);
  overflow: hidden;
}

.bk-pcard__chips {
  position: absolute;
  z-index: 1;
  inset-block-end: var(--bk-space-2);
  inset-inline: var(--bk-space-2);
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.bk-pcard__chip {
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  background: rgba(250, 247, 241, 0.92);
  font-family: var(--bk-font-label);
  font-size: var(--bk-text-2xs);
  font-weight: 700;
  color: var(--bk-navy-deep);
  white-space: nowrap;
}

/* Small cards: one chip max so the product photo stays visible */
@media screen and (max-width: 989px) {
  .bk-pcard__chip:nth-child(n + 2) {
    display: none;
  }
}

.bk-pcard__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.3s var(--bk-ease-out);
}

.bk-pcard__image--secondary {
  opacity: 0;
}

.bk-pcard:hover .bk-pcard__image--secondary {
  opacity: 1;
}

.bk-pcard__badge {
  position: absolute;
  z-index: 1;
  inset-block-start: var(--bk-space-3);
  inset-inline-start: var(--bk-space-3);
  padding: 0.5rem var(--bk-space-3);
  border-radius: 999px;
  background: var(--bk-gold-tint);
  font-family: var(--bk-font-label);
  font-size: var(--bk-text-2xs);
  font-weight: 700;
  letter-spacing: var(--bk-ls-label);
  text-transform: uppercase;
  color: var(--bk-navy-deep);
}

.bk-pcard__body {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  gap: var(--bk-space-2);
  padding: var(--bk-space-4);
}

.bk-pcard__rating {
  display: flex;
  align-items: center;
  gap: var(--bk-space-2);
  font-family: var(--bk-font-label);
  font-size: var(--bk-text-xs);
  color: var(--bk-navy-mute);
}

.bk-pcard__title {
  margin: 0;
  font-family: var(--bk-font-display);
  font-size: var(--bk-text-md);
  font-weight: 500;
  line-height: var(--bk-lh-tight);
  color: var(--bk-navy);
}

.bk-pcard__title-link {
  color: inherit;
  text-decoration: none;

  &::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 0;
  }

  &:hover {
    text-decoration: underline;
    text-underline-offset: 0.3rem;
  }

  &:focus-visible {
    outline: 0.2rem solid var(--bk-focus-ring);
    outline-offset: 0.2rem;
  }
}

.bk-pcard__benefit {
  margin: 0;
  font-family: var(--bk-font-text);
  font-size: var(--bk-text-sm);
  line-height: var(--bk-lh-body);
  color: var(--bk-navy-soft);
  overflow-wrap: break-word;
}

.bk-pcard__price-row {
  display: flex;
  align-items: baseline;
  gap: var(--bk-space-2);
  margin-block-start: auto;
  padding-block-start: var(--bk-space-2);
  font-family: var(--bk-font-label);
}

.bk-pcard__price {
  font-size: var(--bk-text-base);
  font-weight: 700;
  color: var(--bk-navy);
}

.bk-pcard__compare {
  font-size: var(--bk-text-sm);
  color: var(--bk-navy-mute);
  text-decoration: line-through;
}

.bk-pcard__cta {
  position: relative;
  z-index: 1;
  width: 100%;
  margin-block-start: var(--bk-space-2);
}

@media screen and (max-width: 749px) {
  .bk-pcard__body {
    padding: var(--bk-space-3);
  }

  .bk-pcard__cta {
    min-height: 3.8rem;
    padding-block: var(--bk-space-2);
  }
}

.bk-pcards__view-all {
  margin-block-start: var(--bk-space-6);
  text-align: center;
}

/* ---------- CTA strip ---------- */

.bk-cta-strip {
  background: var(--bk-navy-deep);
}

.bk-cta-strip__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--bk-space-4);
  padding-block: var(--bk-space-6);
  text-align: center;

  @media screen and (min-width: 750px) {
    flex-direction: row;
    justify-content: space-between;
    text-align: start;
  }
}

.bk-cta-strip__copy {
  display: flex;
  flex-direction: column;
  gap: var(--bk-space-2);
}

.bk-cta-strip__stars {
  font-size: var(--bk-text-base);
}

/* On the navy band the outline base needs a light tone, the fill stays gold */
.bk-cta-strip .bk-mellow-stars {
  color: var(--bk-warm-100);
  align-self: center;
}

.bk-cta-strip .bk-mellow-stars__fill {
  color: var(--bk-gold-soft);
}

.bk-cta-strip__text {
  margin: 0;
  font-family: var(--bk-font-display);
  font-size: var(--bk-text-lg);
  font-weight: 500;
  line-height: var(--bk-lh-tight);
  color: var(--bk-cream);
}

.bk-cta-strip__subtext {
  margin: 0;
  font-family: var(--bk-font-text);
  font-size: var(--bk-text-base);
  color: var(--bk-warm-100);
}

/* ---------- FAQ + media split ---------- */

.bk-faq-media {
  padding-block: var(--bk-space-8);
}

.bk-faq-media__grid {
  display: grid;
  gap: var(--bk-space-6);
  align-items: center;

  @media screen and (min-width: 990px) {
    grid-template-columns: 1fr 1fr;
    gap: var(--bk-space-8);
  }
}

.bk-faq-media__media {
  border-radius: 1.6rem;
  overflow: hidden;
  background: var(--bk-warm-50);
}

.bk-faq-media__image {
  display: block;
  width: 100%;
  height: auto;
}

.bk-faq-media__content .bk-mellow-heading,
.bk-faq-media__content .bk-mellow-subheading {
  text-align: start;
  margin-inline: 0;
}

.bk-faq-media__list {
  margin-block-start: var(--bk-space-5);
  display: flex;
  flex-direction: column;
  gap: var(--bk-space-3);
}

.bk-faq-item {
  border: 0.1rem solid var(--bk-warm-100);
  border-radius: 1.2rem;
  background: var(--bk-paper);
  overflow: hidden;
}

.bk-faq-item__summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--bk-space-4);
  padding: var(--bk-space-4);
  font-family: var(--bk-font-display);
  font-size: var(--bk-text-base);
  font-weight: 500;
  color: var(--bk-navy);
  cursor: pointer;
  list-style: none;

  &::-webkit-details-marker {
    display: none;
  }

  &:focus-visible {
    outline: 0.2rem solid var(--bk-focus-ring);
    outline-offset: -0.2rem;
  }
}

.bk-faq-item__heading {
  margin: 0;
  font: inherit;
  color: inherit;
}

.bk-faq-item__icon {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 50%;
  background: var(--bk-navy);
  color: var(--bk-cream);
  font-size: var(--bk-text-base);
  line-height: 1;
  transition: transform 0.25s var(--bk-ease-out);
}

.bk-faq-item[open] .bk-faq-item__icon {
  transform: rotate(45deg);
}

.bk-faq-item__content {
  padding: 0 var(--bk-space-4) var(--bk-space-4);
  font-family: var(--bk-font-text);
  font-size: var(--bk-text-base);
  line-height: var(--bk-lh-body);
  color: var(--bk-navy-soft);
}

.bk-faq-item__content p {
  margin-block: 0 var(--bk-space-2);
}

/* Standalone (centered, single column) FAQ variant */
.bk-faq-media--single .bk-faq-media__grid {
  grid-template-columns: 1fr;
}

.bk-faq-media--single .bk-faq-media__list {
  max-width: 76rem;
  margin-inline: auto;
  width: 100%;
}

.bk-faq-media--single .bk-faq-media__content .bk-mellow-heading,
.bk-faq-media--single .bk-faq-media__content .bk-mellow-subheading {
  text-align: center;
  margin-inline: auto;
}

/* ---------- Collection cards ---------- */

.bk-ccards {
  padding-block: var(--bk-space-8);
}

.bk-ccards__grid {
  display: grid;
  gap: var(--bk-space-4);

  @media screen and (min-width: 750px) {
    grid-template-columns: repeat(var(--bk-ccards-columns, 2), minmax(0, 1fr));
    gap: var(--bk-space-5);
  }
}

.bk-ccard {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 42rem;
  border-radius: 1.6rem;
  overflow: hidden;
  isolation: isolate;
  background: var(--bk-warm-100);

  @media screen and (max-width: 749px) {
    min-height: 34rem;
  }
}

.bk-ccard__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s var(--bk-ease-out);
}

.bk-ccard:hover .bk-ccard__image {
  transform: scale(1.03);
}

.bk-ccard__panel {
  position: relative;
  z-index: 1;
  width: calc(100% - var(--bk-space-6));
  margin: var(--bk-space-4);
  padding: var(--bk-space-5);
  border-radius: 1.2rem;
  background: rgba(250, 247, 241, 0.88);
  backdrop-filter: blur(6px);
  text-align: center;
}

.bk-ccard__title {
  margin: 0;
  font-family: var(--bk-font-display);
  font-size: var(--bk-text-lg);
  font-weight: 500;
  color: var(--bk-navy);
}

.bk-ccard__subtext {
  margin: var(--bk-space-2) 0 0;
  font-family: var(--bk-font-text);
  font-size: var(--bk-text-base);
  color: var(--bk-navy-soft);
}

.bk-ccard__cta {
  margin-block-start: var(--bk-space-4);
}

/* ---------- Comparison table ---------- */

.bk-compare {
  padding-block: var(--bk-space-8);
}

.bk-compare__table-wrapper {
  margin-block-start: var(--bk-space-6);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.bk-compare__table {
  width: 100%;
  max-width: 86rem;
  margin-inline: auto;
  border-collapse: separate;
  border-spacing: 0;
  border: 0.1rem solid var(--bk-warm-100);
  border-radius: 1.6rem;
  overflow: hidden;
  background: var(--bk-paper);
  font-family: var(--bk-font-text);
  font-size: var(--bk-text-base);
  color: var(--bk-navy);
}

.bk-compare__table th,
.bk-compare__table td {
  padding: var(--bk-space-4);
  text-align: center;
  border-block-start: 0.1rem solid var(--bk-warm-100);
}

.bk-compare__table thead th {
  border-block-start: 0;
  font-family: var(--bk-font-display);
  font-size: var(--bk-text-sm);
  font-weight: 600;
  letter-spacing: 0.04em;
}

.bk-compare__feature {
  text-align: start;
  font-weight: 500;
  min-width: 16rem;
}

.bk-compare__col--us {
  background: var(--bk-warm-50);
  font-weight: 600;
}

.bk-compare__table thead .bk-compare__col--us {
  background: var(--bk-navy);
  color: var(--bk-cream);
}

.bk-compare__mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
  font-size: var(--bk-text-xs);
  line-height: 1;
}

.bk-compare__mark--yes {
  background: var(--bk-gold-tint);
  color: var(--bk-navy-deep);
}

.bk-compare__mark--no {
  background: var(--bk-warm-100);
  color: var(--bk-navy-mute);
}

/* ---------- Global variant polish ---------- */

/* Unify every CTA on the pill silhouette the variant's cards use.
   Dawn draws button borders/shadows on ::after — round those too. */
.bk-mellow-theme .button,
.bk-mellow-theme .button::after,
.bk-mellow-theme .shopify-payment-button__button--unbranded,
.bk-mellow-theme .shopify-payment-button__button--unbranded::after {
  border-radius: 999px;
}

/* Two-layer focus ring: navy line + cream halo, >=3:1 on every surface */
.bk-mellow-btn:focus-visible,
.bk-marquee__link:focus-visible,
.bk-pcard__title-link:focus-visible {
  outline: 0.2rem solid var(--bk-navy);
  outline-offset: 0.2rem;
  box-shadow:
    0 0 0 0.2rem var(--bk-paper),
    0 0 0 0.5rem rgba(38, 45, 61, 0.35);
}

/* Accordion summaries clip outset rings — use an inset indicator instead */
.bk-faq-item__summary:focus-visible {
  outline: 0.2rem solid var(--bk-navy);
  outline-offset: -0.3rem;
  border-radius: 1.2rem;
}

.bk-marquee__link:focus-visible,
.bk-cta-strip .bk-mellow-btn:focus-visible {
  outline-color: var(--bk-cream);
  box-shadow:
    0 0 0 0.2rem var(--bk-navy-deep),
    0 0 0 0.5rem rgba(243, 236, 224, 0.6);
}

/* Pill labels never wrap */
.bk-mellow-btn {
  white-space: nowrap;
  flex-shrink: 0;
}

/* ---------- Marquee a11y ---------- */

.bk-marquee__item {
  font-size: var(--bk-text-xs);
}

.bk-marquee:focus-within .bk-marquee__track,
.bk-marquee[data-paused='true'] .bk-marquee__track {
  animation-play-state: paused;
}

.bk-marquee__toggle {
  position: absolute;
  inset-block-start: 50%;
  inset-inline-end: 0.6rem;
  transform: translateY(-50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.4rem;
  height: 2.4rem;
  padding: 0;
  border: 0.1rem solid rgba(243, 236, 224, 0.5);
  border-radius: 50%;
  background: var(--bk-navy-deep);
  color: var(--bk-cream);
  font-size: 1rem;
  line-height: 1;
  cursor: pointer;

  &:focus-visible {
    outline: 0.2rem solid var(--bk-cream);
    outline-offset: 0.2rem;
  }
}

.bk-marquee {
  position: relative;
  padding-inline-end: 4rem;
}

/* Ticker text fades out under the pause control instead of colliding with it */
.bk-marquee::after {
  content: '';
  position: absolute;
  inset-block: 0;
  inset-inline-end: 0;
  width: 7rem;
  background: linear-gradient(to left, var(--bk-navy-deep) 55%, transparent);
  pointer-events: none;
}

.bk-marquee__toggle {
  z-index: 1;
}

/* ---------- Card fixes ---------- */

/* Empty stars need >=3:1 contrast on white */
.bk-mellow-stars {
  color: #9a8a68;
}

.bk-pcard__title {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}

.bk-pcard__benefit {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}

.bk-pcard__rating {
  flex-wrap: wrap;
  min-width: 0;
}

/* Invisible star row: reserves exactly the real rating-row height */
.bk-pcard__rating--placeholder {
  visibility: hidden;
}

@media screen and (max-width: 749px) {
  .bk-pcard__rating {
    gap: 0.4rem;
    font-size: var(--bk-text-2xs);
  }

  .bk-pcard__rating .bk-mellow-stars {
    font-size: var(--bk-text-xs);
    letter-spacing: 0.04em;
  }
}

.bk-pcard--soldout .bk-pcard__image {
  opacity: 0.55;
}

.bk-pcard--soldout .bk-pcard__cta {
  background: var(--bk-warm-100);
  border-color: var(--bk-warm-100);
  color: var(--bk-navy-mute);
  pointer-events: none;
}

@media screen and (max-width: 749px) {
  .bk-pcard__title {
    font-size: var(--bk-text-base);
    -webkit-line-clamp: 3;
  }

  .bk-pcard__cta {
    padding-inline: var(--bk-space-3);
    letter-spacing: 0.04em;
    font-size: var(--bk-text-xs);
  }
}

/* Benefit/metadata copy: keep >=14px and darker ink for readability.
   Scoped >=750px so the tighter mobile star/count sizes stay in charge. */
.bk-pcard__benefit,
.bk-pcard__rating {
  color: var(--bk-navy-soft);
}

@media screen and (min-width: 750px) {
  .bk-pcard__benefit,
  .bk-pcard__rating {
    font-size: var(--bk-text-sm);
  }
}

/* ---------- Comparison table mobile fit ---------- */

@media screen and (max-width: 749px) {
  .bk-compare__table th,
  .bk-compare__table td {
    padding: var(--bk-space-2) var(--bk-space-3);
    font-size: var(--bk-text-sm);
  }

  .bk-compare__feature {
    min-width: 11rem;
  }
}

.bk-compare__table-wrapper:focus-visible {
  outline: 0.2rem solid var(--bk-navy);
  outline-offset: 0.2rem;
}

/* ---------- Press strip ---------- */

.bk-mellow-theme .beckham-press-strip {
  overflow-x: clip;
}

/* Static fallback keeps the mobile finger-scroll row */
@media screen and (max-width: 749px) {
  .bk-mellow-theme .beckham-press-strip:not(.bk-pressmq) .beckham-press-strip__logos {
    flex-wrap: nowrap;
    overflow-x: auto;
    justify-content: flex-start;
    max-width: 100%;
    min-width: 0;
    margin: 0;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-block-end: var(--bk-space-2);
  }

  .bk-mellow-theme .beckham-press-strip:not(.bk-pressmq) .beckham-press-strip__logos:focus-visible {
    outline: 0.2rem solid var(--bk-navy);
    outline-offset: -0.2rem;
  }

  .bk-mellow-theme .beckham-press-strip:not(.bk-pressmq) .beckham-press-strip__logos::-webkit-scrollbar {
    display: none;
  }

  .bk-mellow-theme .beckham-press-strip__logo-item {
    flex-shrink: 0;
  }
}

/* Auto-scrolling press marquee — the mellow-style news bar */
.bk-pressmq__viewport {
  position: relative;
  overflow: hidden;
  max-width: 100%;
  padding-inline-end: 4rem;
}

/* Edge fades so wordmarks glide in and out */
.bk-pressmq__viewport::before,
.bk-pressmq__viewport::after {
  content: '';
  position: absolute;
  inset-block: 0;
  width: 6rem;
  z-index: 1;
  pointer-events: none;
}

/* The strip's real background is paper (beckham-base), not the scheme token */
.bk-pressmq__viewport::before {
  inset-inline-start: 0;
  background: linear-gradient(to right, var(--bk-paper) 15%, transparent);
}

.bk-pressmq__viewport::after {
  inset-inline-end: 0;
  width: 10rem;
  background: linear-gradient(to left, var(--bk-paper) 55%, transparent);
}

.bk-pressmq__track {
  display: flex;
  width: max-content;
  animation: bk-marquee-scroll var(--bk-pressmq-duration, 36s) linear infinite;
}

.bk-pressmq__viewport:hover .bk-pressmq__track,
.bk-pressmq__viewport:focus-within .bk-pressmq__track,
.bk-pressmq__viewport[data-paused='true'] .bk-pressmq__track {
  animation-play-state: paused;
}

.bk-pressmq .bk-pressmq__group {
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
  width: max-content;
  max-width: none;
  margin: 0;
  padding-inline-end: var(--bk-space-6);
}

.bk-pressmq .bk-pressmq__group .beckham-press-strip__logo-item {
  flex-shrink: 0;
}

.bk-pressmq__toggle {
  position: absolute;
  z-index: 2;
  inset-block-start: 50%;
  inset-inline-end: 0.4rem;
  transform: translateY(-50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.4rem;
  height: 2.4rem;
  padding: 0;
  border: 0.1rem solid var(--bk-warm-300);
  border-radius: 50%;
  background: var(--bk-paper);
  color: var(--bk-navy);
  font-size: 0.9rem;
  line-height: 1;
  cursor: pointer;

  &:focus-visible {
    outline: 0.2rem solid var(--bk-navy);
    outline-offset: 0.2rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .bk-pressmq__viewport {
    padding-inline-end: 0;
  }

  .bk-pressmq__viewport::before,
  .bk-pressmq__viewport::after,
  .bk-pressmq__toggle,
  .bk-pressmq__group[aria-hidden='true'] {
    display: none;
  }

  .bk-pressmq__track {
    animation: none;
    width: 100%;
  }

  .bk-pressmq__group {
    width: 100%;
    flex-wrap: wrap;
    justify-content: center;
  }
}

/* ---------- Callouts: retint mint/sage into the brand palette ---------- */

.bk-mellow-theme .beckham-product-callout,
.bk-mellow-theme .beckham-callout,
.bk-mellow-theme .beckham-guest-says {
  background: var(--bk-linen);
  border-color: var(--bk-gold-soft);
  border-radius: 1.2rem;
  color: var(--bk-navy);
}

.bk-mellow-theme .beckham-product-callout__title,
.bk-mellow-theme .beckham-callout__title {
  color: var(--bk-gold-deep);
}

.bk-mellow-theme .beckham-reviews__badge {
  background: var(--bk-gold-tint);
  color: var(--bk-navy-deep);
  border-color: var(--bk-gold-soft);
}

/* ---------- Header / footer tidy ---------- */

@media screen and (max-width: 749px) {
  .bk-mellow-theme .beckham-cart-label {
    display: none;
  }
}

.bk-mellow-theme .beckham-footer-note {
  display: block;
  margin-block: var(--bk-space-2);
}

/* ---------- Collection page: port the V2 card language ---------- */

.bk-mellow-theme .quick-add__submit.button--secondary {
  background: var(--bk-navy);
  color: var(--bk-cream);
  border-radius: 999px;
  text-transform: none;
  letter-spacing: 0.04em;
  font-weight: 600;

  &:hover {
    background: var(--bk-navy-deep);
  }
}

.bk-mellow-theme .beckham-product-card .card {
  border-radius: 2rem;
}

.bk-mellow-theme .beckham-product-card .card__media {
  margin: var(--bk-space-3) var(--bk-space-3) 0;
  border-radius: 1.4rem;
  overflow: hidden;
  background: radial-gradient(120% 120% at 30% 20%, var(--bk-warm-50) 0%, var(--bk-warm-100) 100%);
}

.bk-mellow-theme .beckham-product-card .badge {
  border-radius: 999px;
  background: var(--bk-gold-tint);
  border-color: var(--bk-gold-soft);
  color: var(--bk-navy-deep);
  font-weight: 700;
  letter-spacing: var(--bk-ls-label);
}

/* Sold-out card state matches the variant grids */
.bk-mellow-theme .beckham-card--soldout .card__media {
  opacity: 0.55;
}

.bk-mellow-theme .quick-add__submit.button--secondary.quick-add__submit--soldout,
.bk-mellow-theme .quick-add__submit.button--secondary.quick-add__submit--soldout:hover {
  background: var(--bk-warm-100);
  border-color: var(--bk-warm-100);
  color: var(--bk-navy-mute);
  cursor: not-allowed;
}

/* Bottom-anchor price + CTA so rows scan cleanly */
.bk-mellow-theme .beckham-product-card .card__content {
  display: flex;
  flex-direction: column;
}

.bk-mellow-theme .beckham-product-card .card__information {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.bk-mellow-theme .beckham-product-card .card__information .price {
  margin-block-start: auto;
  padding-block-start: var(--bk-space-2);
}

/* Dawn's inner info container is .card-information (hyphen) — the rules
   above target the outer wrapper; both are needed for price anchoring */
.bk-mellow-theme .beckham-product-card .card-information {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  height: 100%;
}

.bk-mellow-theme .beckham-product-card .card-information > .price {
  margin-block-start: auto;
  padding-block-start: var(--bk-space-2);
}

.bk-mellow-theme .beckham-rating-placeholder {
  visibility: hidden;
}

/* ---------- PDP variant polish ---------- */

.bk-mellow-theme .product__title h1,
.bk-mellow-theme .product__title .h1 {
  font-family: var(--bk-font-display);
}

.bk-mellow-theme .product form [type='submit'] {
  border-radius: 999px;
}

.bk-mellow-theme .beckham-product-callout {
  border-radius: 1.2rem;
}

/* Orphaned tag chip renders between picker and quantity — not part of this layout */
.bk-mellow-theme .beckham-product-tags {
  display: none;
}

/* Trust line directly under the buy buttons */
.bk-mellow-theme .bk-trust-line {
  margin: var(--bk-space-3) 0 0;
  font-family: var(--bk-font-label);
  font-size: var(--bk-text-sm);
  letter-spacing: 0.06em;
  text-align: center;
  color: var(--bk-navy-soft);
}

/* Single column through the tablet range — the 2-col crush isn't worth it */
@media screen and (min-width: 750px) and (max-width: 989px) {
  .bk-mellow-theme .product {
    grid-template-columns: 1fr !important;
  }

  .bk-mellow-theme .product__media-wrapper {
    max-width: 100%;
    width: 100%;
    padding-inline-start: 0;
  }

  .bk-mellow-theme .product__info-wrapper {
    max-width: 64rem;
    width: 100%;
    padding-inline: 0;
    margin-inline: auto;
    justify-self: center;
  }
}

/* Cart totals label: keep the word gap legible in the sans stack */
.bk-mellow-theme .totals .totals__total {
  word-spacing: 0.35em;
  letter-spacing: 0.06em;
}

/* Desktop: keep the gallery in view while the long info column scrolls */
@media screen and (min-width: 990px) {
  .bk-mellow-theme .product__media-wrapper {
    position: sticky;
    top: 9rem;
    align-self: flex-start;
  }
}

/* Hero subline legibility over light photo areas */
.bk-mellow-theme .beckham-hero__subheading,
.bk-mellow-theme .beckham-hero__heading {
  text-shadow: 0 0.1rem 2.4rem rgba(27, 34, 48, 0.45);
}

/* =====================================================================
   2026-08-26 — video hero, guest videos, product features, stats,
   simplified buy box. Loaded after everything above; consumes the same
   beckham-base tokens.
   ===================================================================== */

/* ---------- Five-star primitive (solid stars, no fill overlay) ---------- */

.bk-stars {
  display: inline-block;
  font-size: var(--bk-text-md);
  line-height: 1;
  letter-spacing: 0.12em;
  color: var(--bk-gold-deep);
  white-space: nowrap;
}

.bk-stars--card {
  font-size: var(--bk-text-sm);
}

.bk-stars--review {
  font-size: var(--bk-text-xl);
}

.bk-stars--pdp {
  font-size: var(--bk-text-base);
}

.bk-mellow-btn--cream {
  border-color: #fff;
  background: #fff;
  color: var(--bk-navy-deep);

  &:hover {
    background: var(--bk-cream);
    color: var(--bk-navy-deep);
  }
}

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

.bk-hero-video-section .shopify-section,
.bk-hero-video-section {
  margin: 0;
  padding: 0;
}

.bk-hero-video {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: clamp(52rem, 46vw, 76rem);
  background: var(--bk-navy-deep);
  color: #fff;
  overflow: hidden;
  isolation: isolate;
}

.bk-hero-video__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.bk-hero-video__video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  background: var(--bk-navy-deep);
}

.bk-hero-video__scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(
      180deg,
      rgba(27, 34, 48, calc(var(--bk-hero-scrim, 0.35) * 0.7)) 0%,
      rgba(27, 34, 48, calc(var(--bk-hero-scrim, 0.35) * 0.55)) 45%,
      rgba(27, 34, 48, calc(var(--bk-hero-scrim, 0.35) + 0.35)) 100%
    );
}

.bk-hero-video__content {
  position: relative;
  z-index: 2;
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-block: var(--bk-space-8);
}

.bk-hero-video__copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--bk-space-3);
  max-width: 78rem;
  text-align: center;
}

.bk-hero-video__heading {
  margin: 0;
  font-family: var(--bk-font-display);
  font-size: clamp(3.4rem, 2rem + 3.8vw, 7rem);
  font-weight: 800;
  letter-spacing: 0.01em;
  line-height: 1.02;
  text-transform: uppercase;
  color: #fff;
  text-shadow: 0 0.2rem 2.4rem rgba(27, 34, 48, 0.45);
}

.bk-hero-video__subheading {
  margin: 0;
  max-width: 58rem;
  font-family: var(--bk-font-text);
  font-size: clamp(1.7rem, 1.4rem + 0.7vw, 2.2rem);
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.94);
  text-shadow: 0 0.1rem 1.2rem rgba(27, 34, 48, 0.5);
}

.bk-hero-video__proof {
  margin: var(--bk-space-1) 0 0;
  font-family: var(--bk-font-label);
  font-size: var(--bk-text-sm);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--bk-gold-soft);
  text-shadow: 0 0.1rem 1rem rgba(27, 34, 48, 0.5);
}

.bk-hero-video__stars {
  font-size: 2.4rem;
  color: var(--bk-gold-soft);
  text-shadow: 0 0.1rem 0.8rem rgba(27, 34, 48, 0.45);
}

.bk-hero-video__cta {
  margin-block-start: var(--bk-space-2);
  min-height: 5.2rem;
  padding-inline: var(--bk-space-8);
  font-size: var(--bk-text-sm);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  box-shadow: var(--bk-shadow-md);
}

.bk-hero-video__toggle {
  position: absolute;
  z-index: 3;
  inset-inline-end: var(--bk-space-4);
  inset-block-end: calc(var(--bk-hero-press-height, 6.4rem) + var(--bk-space-3));
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.6rem;
  height: 3.6rem;
  padding: 0;
  border: 0.1rem solid rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  background: rgba(27, 34, 48, 0.45);
  color: #fff;
  font-size: 1.1rem;
  line-height: 1;
  cursor: pointer;

  &:focus-visible {
    outline: 0.2rem solid var(--bk-gold-soft);
    outline-offset: 0.2rem;
  }
}

.bk-hero-video--static .bk-hero-video__toggle {
  display: none;
}

.bk-hero-video__press {
  position: relative;
  z-index: 2;
  border-block-start: 0.1rem solid rgba(243, 236, 224, 0.16);
  background: rgba(27, 34, 48, 0.58);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.bk-hero-video__press-inner {
  display: flex;
  align-items: center;
  gap: var(--bk-space-5);
  min-height: var(--bk-hero-press-height, 6.4rem);
}

.bk-hero-video__press-label {
  margin: 0;
  flex: none;
  font-family: var(--bk-font-label);
  font-size: var(--bk-text-2xs);
  font-weight: 700;
  letter-spacing: var(--bk-ls-label);
  text-transform: uppercase;
  color: var(--bk-gold-soft);
  white-space: nowrap;
}

.bk-hero-video__press-viewport {
  flex: 1 1 auto;
  min-width: 0;
  padding-inline-end: 0;
}

.bk-hero-video__press-viewport::before {
  background: linear-gradient(to right, rgba(27, 34, 48, 0.85) 10%, transparent);
}

.bk-hero-video__press-viewport::after {
  width: 6rem;
  background: linear-gradient(to left, rgba(27, 34, 48, 0.85) 10%, transparent);
}

.bk-hero-video__press .beckham-press-strip__wordmark {
  color: rgba(255, 255, 255, 0.92);
  opacity: 1;
}

@media screen and (max-width: 749px) {
  .bk-hero-video {
    min-height: calc(100vh - var(--bk-hero-mobile-offset, 17rem));
    min-height: calc(100svh - var(--bk-hero-mobile-offset, 17rem));
  }

  .bk-hero-video__content {
    padding-block: var(--bk-space-6) var(--bk-space-5);
  }

  .bk-hero-video__copy {
    gap: var(--bk-space-2);
  }

  .bk-hero-video__heading {
    font-size: clamp(3.2rem, 9.8vw, 4.4rem);
  }

  .bk-hero-video__subheading {
    font-size: 1.7rem;
    padding-inline: var(--bk-space-2);
  }

  .bk-hero-video__stars {
    font-size: 2.1rem;
  }

  .bk-hero-video__cta {
    min-height: 5rem;
    width: min(100%, 30rem);
  }

  .bk-hero-video__press-inner {
    gap: var(--bk-space-3);
    --bk-hero-press-height: 5.6rem;
  }

  .bk-hero-video__toggle {
    width: 3.2rem;
    height: 3.2rem;
    inset-block-end: calc(5.6rem + var(--bk-space-2));
  }
}

/* ---------- Guest videos (UGC) ---------- */

.bk-ugc {
  padding-block: var(--bk-space-8);
}

.bk-ugc__header {
  margin-block-end: var(--bk-space-6);
  text-align: center;
}

.bk-ugc__eyebrow,
.bk-features__eyebrow {
  margin: 0 0 var(--bk-space-2);
  font-family: var(--bk-font-label);
  font-size: var(--bk-text-2xs);
  font-weight: 700;
  letter-spacing: var(--bk-ls-label);
  text-transform: uppercase;
  color: var(--bk-gold-deep);
}

.bk-ugc__carousel {
  position: relative;
  display: block;
}

.bk-ugc__track {
  display: flex;
  gap: var(--bk-space-4);
  margin: 0;
  padding: 0 0 var(--bk-space-3);
  list-style: none;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.bk-ugc__track::-webkit-scrollbar {
  display: none;
}

.bk-ugc__item {
  flex: 0 0 calc((100% - 3 * var(--bk-space-4)) / 4);
  min-width: 0;
  scroll-snap-align: start;
}

.bk-ugc__card {
  position: relative;
  display: block;
  aspect-ratio: 9 / 16;
  border-radius: 1.6rem;
  overflow: hidden;
  background: var(--bk-navy-deep);
  box-shadow: var(--bk-shadow-sm);
}

.bk-ugc__video {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: var(--bk-navy-deep);
}

.bk-ugc__play {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(27, 34, 48, 0.7) 100%);
  cursor: pointer;
  transition: background 0.25s var(--bk-ease-out);

  &:focus-visible {
    outline: 0.3rem solid var(--bk-gold-soft);
    outline-offset: -0.3rem;
  }
}

.bk-ugc__play-icon {
  position: absolute;
  inset-inline-start: var(--bk-space-3);
  inset-block-end: var(--bk-space-3);
  width: 4.4rem;
  height: 4.4rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--bk-shadow-md);
  transition: transform 0.2s var(--bk-ease-out), opacity 0.2s var(--bk-ease-out);
}

.bk-ugc__play-icon::after {
  content: '';
  position: absolute;
  inset-inline-start: 56%;
  inset-block-start: 50%;
  transform: translate(-50%, -50%);
  border-style: solid;
  border-width: 0.8rem 0 0.8rem 1.4rem;
  border-color: transparent transparent transparent var(--bk-navy);
}

.bk-ugc__play:hover .bk-ugc__play-icon {
  transform: scale(1.06);
}

.bk-ugc__card.is-playing .bk-ugc__play {
  background: transparent;
}

.bk-ugc__card.is-playing .bk-ugc__play-icon,
.bk-ugc__card.is-playing .bk-ugc__meta {
  opacity: 0;
}

.bk-ugc__meta {
  position: absolute;
  inset-inline-start: calc(var(--bk-space-3) + 5.4rem);
  inset-inline-end: var(--bk-space-3);
  inset-block-end: var(--bk-space-3);
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  color: #fff;
  pointer-events: none;
  transition: opacity 0.2s var(--bk-ease-out);
}

.bk-ugc__name {
  font-family: var(--bk-font-label);
  font-size: var(--bk-text-sm);
  font-weight: 700;
  line-height: 1.2;
}

.bk-ugc__caption {
  font-size: var(--bk-text-xs);
  line-height: 1.3;
  color: rgba(255, 255, 255, 0.85);
}

.bk-ugc__verified {
  font-family: var(--bk-font-label);
  font-size: var(--bk-text-2xs);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--bk-gold-soft);
}

.bk-ugc__verified::before {
  content: '\2713\00a0';
}

.bk-ugc__nav {
  display: flex;
  justify-content: center;
  gap: var(--bk-space-3);
  margin-block-start: var(--bk-space-3);
}

.bk-ugc__nav[hidden] {
  display: none;
}

.bk-ugc__arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4.4rem;
  height: 4.4rem;
  padding: 0;
  border: 0.1rem solid var(--bk-navy);
  border-radius: 50%;
  background: transparent;
  color: var(--bk-navy);
  font-size: 1.8rem;
  cursor: pointer;

  &:hover:not(:disabled) {
    background: var(--bk-navy);
    color: var(--bk-cream);
  }

  &:disabled {
    opacity: 0.3;
    cursor: default;
  }

  &:focus-visible {
    outline: 0.2rem solid var(--bk-focus-ring);
    outline-offset: 0.2rem;
  }
}

.bk-ugc__cta {
  margin-block-start: var(--bk-space-5);
  text-align: center;
}

@media screen and (max-width: 989px) {
  .bk-ugc__item {
    flex-basis: calc((100% - 2 * var(--bk-space-4)) / 3);
  }
}

@media screen and (max-width: 749px) {
  .bk-ugc {
    padding-block: var(--bk-space-7);
  }

  .bk-ugc__item {
    flex-basis: 64%;
  }

  .bk-ugc__nav {
    display: none;
  }
}

/* ---------- Product features (image + tap-to-open rows) ---------- */

.bk-features {
  padding-block: var(--bk-space-8);
}

.bk-features__grid {
  display: grid;
  gap: var(--bk-space-6);
  align-items: center;

  @media screen and (min-width: 990px) {
    grid-template-columns: 5fr 6fr;
    gap: var(--bk-space-8);
  }
}

.bk-features--image-right .bk-features__media {
  @media screen and (min-width: 990px) {
    order: 2;
  }
}

.bk-features__media {
  border-radius: 2rem;
  overflow: hidden;
  background: var(--bk-warm-50);
}

.bk-features__image {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.bk-features__heading {
  margin: 0;
  font-family: var(--bk-font-display);
  font-size: clamp(2.6rem, 1.8rem + 2vw, 3.8rem);
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: var(--bk-lh-tight);
  color: var(--bk-navy);
}

.bk-features__intro {
  margin: var(--bk-space-3) 0 0;
  max-width: 56rem;
  font-family: var(--bk-font-text);
  font-size: var(--bk-text-base);
  line-height: var(--bk-lh-body);
  color: var(--bk-navy-soft);
}

.bk-features__list {
  display: flex;
  flex-direction: column;
  gap: var(--bk-space-3);
  margin-block-start: var(--bk-space-5);
}

.bk-feature-item {
  border: 0.1rem solid var(--bk-warm-100);
  border-radius: 1.4rem;
  background: var(--bk-paper);
  box-shadow: var(--bk-shadow-sm);
}

.bk-feature-item__summary {
  display: flex;
  align-items: center;
  gap: var(--bk-space-3);
  padding: var(--bk-space-4) var(--bk-space-4);
  list-style: none;
  cursor: pointer;
}

.bk-feature-item__summary::-webkit-details-marker {
  display: none;
}

.bk-feature-item__summary:focus-visible {
  outline: 0.2rem solid var(--bk-focus-ring);
  outline-offset: 0.2rem;
  border-radius: 1.4rem;
}

.bk-feature-item__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: none;
  width: 3.6rem;
  height: 3.6rem;
  border-radius: 50%;
  background: var(--bk-gold-tint);
  color: var(--bk-navy-deep);
}

.bk-feature-item__icon svg {
  width: 1.8rem;
  height: 1.8rem;
}

.bk-feature-item__heading {
  flex: 1 1 auto;
  margin: 0;
  font-family: var(--bk-font-display);
  font-size: var(--bk-text-base);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.3;
  color: var(--bk-navy);
}

.bk-feature-item__toggle {
  position: relative;
  flex: none;
  width: 2.8rem;
  height: 2.8rem;
  border-radius: 50%;
  background: var(--bk-navy);
}

.bk-feature-item__toggle::before,
.bk-feature-item__toggle::after {
  content: '';
  position: absolute;
  inset-block-start: 50%;
  inset-inline-start: 50%;
  width: 1.2rem;
  height: 0.2rem;
  background: var(--bk-cream);
  transform: translate(-50%, -50%);
  transition: transform 0.2s var(--bk-ease-out);
}

.bk-feature-item__toggle::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.bk-feature-item[open] .bk-feature-item__toggle::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.bk-feature-item__content {
  padding: 0 var(--bk-space-4) var(--bk-space-4) calc(var(--bk-space-4) + 3.6rem + var(--bk-space-3));
  font-family: var(--bk-font-text);
  font-size: var(--bk-text-sm);
  line-height: var(--bk-lh-body);
  color: var(--bk-navy-soft);
}

.bk-feature-item__content p {
  margin: 0;
}

.bk-features__cta {
  margin-block-start: var(--bk-space-5);
}

@media screen and (max-width: 749px) {
  .bk-features {
    padding-block: var(--bk-space-7);
  }

  .bk-feature-item__content {
    padding-inline-start: var(--bk-space-4);
  }
}

/* ---------- Stats ---------- */

.bk-stats {
  padding-block: var(--bk-space-8);
}

.bk-stats__header {
  margin-block-end: var(--bk-space-6);
  text-align: center;
}

.bk-stats__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--bk-space-5);
  max-width: 90rem;
  margin-inline: auto;
}

.bk-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.bk-stat__ring {
  position: relative;
  width: clamp(12rem, 14vw, 16rem);
  aspect-ratio: 1 / 1;
}

.bk-stat__ring svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.bk-stat__ring-bg,
.bk-stat__ring-fg {
  fill: none;
  stroke-width: 7;
  stroke-linecap: round;
}

.bk-stat__ring-bg {
  stroke: var(--bk-warm-100);
}

.bk-stat__ring-fg {
  stroke: var(--bk-gold);
  stroke-dasharray: 326.7;
  stroke-dashoffset: 326.7;
  transition: stroke-dashoffset 1.4s var(--bk-ease-out);
}

.is-visible .bk-stat__ring-fg {
  stroke-dashoffset: calc(326.7 * (1 - var(--bk-stat-pct, 100) / 100));
}

.bk-stat__value {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--bk-font-display);
  font-size: clamp(2.6rem, 3vw, 3.6rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--bk-navy);
}

.bk-stat__label {
  margin: var(--bk-space-3) 0 0;
  max-width: 18rem;
  font-family: var(--bk-font-text);
  font-size: var(--bk-text-base);
  line-height: 1.35;
  color: var(--bk-navy-soft);
}

.bk-stats__cta {
  margin-block-start: var(--bk-space-6);
  text-align: center;
}

@media (prefers-reduced-motion: reduce) {
  .bk-stat__ring-fg {
    transition: none;
  }
}

@media screen and (max-width: 749px) {
  .bk-stats {
    padding-block: var(--bk-space-7);
  }

  .bk-stats__grid {
    gap: var(--bk-space-3);
  }

  .bk-stat__ring {
    width: clamp(9rem, 26vw, 11rem);
  }

  .bk-stat__value {
    font-size: 2rem;
  }

  .bk-stat__label {
    font-size: var(--bk-text-xs);
  }
}

/* ---------- Simplified buy box ---------- */

.bk-pdp-rating {
  display: inline-flex;
  align-items: center;
  gap: var(--bk-space-2);
  margin: 0 0 var(--bk-space-2);
  font-family: var(--bk-font-label);
  font-size: var(--bk-text-sm);
  font-weight: 600;
  color: var(--bk-navy-soft);
  text-decoration: none;

  &:hover .bk-pdp-rating__count {
    text-decoration: underline;
    text-underline-offset: 0.3rem;
  }
}

.bk-pdp-checklist {
  display: grid;
  gap: var(--bk-space-2);
  margin: var(--bk-space-2) 0 0;
  padding: 0;
  list-style: none;
}

.bk-pdp-checklist__item {
  display: flex;
  align-items: center;
  gap: var(--bk-space-3);
}

.bk-pdp-checklist__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: none;
  width: 2.8rem;
  height: 2.8rem;
  border-radius: 50%;
  background: var(--bk-gold-tint);
  color: var(--bk-navy-deep);
}

.bk-pdp-checklist__icon svg {
  width: 1.5rem;
  height: 1.5rem;
}

.bk-pdp-checklist__text {
  font-family: var(--bk-font-label);
  font-size: var(--bk-text-sm);
  font-weight: 700;
  letter-spacing: 0.01em;
  color: var(--bk-navy);
}

.bk-pdp-intro {
  margin: var(--bk-space-4) 0 var(--bk-space-2);
  font-family: var(--bk-font-text);
  font-size: var(--bk-text-sm);
  line-height: var(--bk-lh-body);
  color: var(--bk-navy-soft);
}

.bk-pdp-overview__specs {
  margin-block-end: var(--bk-space-3);
}

.bk-mellow-theme .bk-trust-line {
  margin: var(--bk-space-3) 0 0;
  font-family: var(--bk-font-label);
  font-size: var(--bk-text-xs);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-align: center;
  color: var(--bk-navy-mute);
}

/* ---------- Review cards: clamp long bodies, tap to expand ---------- */

.beckham-reviews__item-body[data-bk-review-body] {
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.beckham-reviews__item.is-expanded .beckham-reviews__item-body[data-bk-review-body] {
  display: block;
  -webkit-line-clamp: unset;
  overflow: visible;
}

.beckham-reviews__readmore {
  margin: -0.4rem 0 1rem;
  padding: 0;
  border: 0;
  background: none;
  font-family: var(--bk-font-label);
  font-size: var(--bk-text-xs);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--bk-gold-deep);
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 0.3rem;

  &:focus-visible {
    outline: 0.2rem solid var(--bk-focus-ring);
    outline-offset: 0.2rem;
  }
}

.beckham-reviews__readmore[hidden] {
  display: none;
}

/* ---------- Collection / search grid cards: five-star line ---------- */

.bk-card-rating {
  display: flex;
  align-items: center;
  gap: var(--bk-space-2);
  margin: 0.2rem 0 0.6rem;
  font-family: var(--bk-font-label);
  font-size: var(--bk-text-xs);
  font-weight: 600;
  color: var(--bk-navy-mute);
}
/* ---------- Sale bar (site-wide promo, header group) ---------- */

.bk-sale-bar {
  --bk-sale-bg: var(--bk-gold-soft);
  --bk-sale-fg: var(--bk-navy-deep);
  --bk-sale-tag-bg: var(--bk-navy-deep);
  --bk-sale-tag-fg: var(--bk-cream);
  --bk-sale-rule: rgba(27, 34, 48, 0.18);
  position: relative;
  background:
    linear-gradient(90deg, var(--bk-gold-soft) 0%, var(--bk-gold-tint) 50%, var(--bk-gold-soft) 100%);
  color: var(--bk-sale-fg);
  border-block-start: 0.1rem solid var(--bk-sale-rule);
  border-block-end: 0.1rem solid var(--bk-sale-rule);
}

.bk-sale-bar.color-navy {
  --bk-sale-fg: var(--bk-cream);
  --bk-sale-tag-bg: var(--bk-gold-soft);
  --bk-sale-tag-fg: var(--bk-navy-deep);
  --bk-sale-rule: rgba(243, 236, 224, 0.16);
  background: var(--bk-navy);
}

.bk-sale-bar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.6rem var(--bk-space-4);
  min-height: 4.4rem;
  padding-block: 0.7rem;
  font-family: var(--bk-font-label);
  color: inherit;
  text-decoration: none;
}

a.bk-sale-bar__inner:hover .bk-sale-bar__cta,
a.bk-sale-bar__inner:focus-visible .bk-sale-bar__cta {
  text-decoration-thickness: 0.2rem;
}

a.bk-sale-bar__inner:hover .bk-sale-bar__arrow {
  transform: translateX(0.3rem);
}

a.bk-sale-bar__inner:focus-visible {
  outline: 0.2rem solid var(--bk-navy-deep);
  outline-offset: -0.4rem;
}

.bk-sale-bar__tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 1rem 0.35rem 0.8rem;
  border-radius: 999px;
  background: var(--bk-sale-tag-bg);
  color: var(--bk-sale-tag-fg);
  font-size: var(--bk-text-xs);
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  line-height: 1.2;
  white-space: nowrap;
}

.bk-sale-bar__spark {
  font-size: 1.1em;
  color: var(--bk-gold-soft);
}

.bk-sale-bar.color-navy .bk-sale-bar__spark {
  color: var(--bk-navy-deep);
}

.bk-sale-bar__detail {
  font-size: var(--bk-text-sm);
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.2;
}

.bk-sale-bar__note {
  font-size: var(--bk-text-2xs);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.8;
  line-height: 1.2;
}

.bk-sale-bar__note::before {
  content: '\00b7';
  margin-inline-end: var(--bk-space-2);
  opacity: 0.6;
}

.bk-sale-bar__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: var(--bk-text-sm);
  font-weight: 700;
  line-height: 1.2;
  text-decoration: underline;
  text-underline-offset: 0.3rem;
  text-decoration-thickness: 0.1rem;
}

.bk-sale-bar__arrow {
  display: inline-block;
  transition: transform 0.2s ease;
}

@media screen and (max-width: 749px) {
  .bk-sale-bar__inner {
    gap: 0.4rem var(--bk-space-3);
    min-height: 4rem;
    padding-block: 0.6rem;
    padding-inline: var(--bk-space-3);
  }

  .bk-sale-bar__tag {
    font-size: 1.1rem;
    letter-spacing: 0.14em;
  }

  .bk-sale-bar__detail {
    font-size: var(--bk-text-xs);
  }

  .bk-sale-bar__note {
    display: none;
  }

  .bk-sale-bar__cta {
    display: none;
  }

  a.bk-sale-bar__inner .bk-sale-bar__detail::after {
    content: '\2192';
    margin-inline-start: 0.5rem;
    font-weight: 700;
  }
}

@media (prefers-reduced-motion: reduce) {
  .bk-sale-bar__arrow {
    transition: none;
  }
}

/* ---------- Hero eyebrow pill (promo) ---------- */

.bk-hero-video__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin: 0 0 var(--bk-space-2);
  padding: 0.6rem 1.4rem;
  border-radius: 999px;
  background: var(--bk-gold-soft);
  color: var(--bk-navy-deep);
  font-family: var(--bk-font-label);
  font-size: var(--bk-text-xs);
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  line-height: 1.2;
  text-decoration: none;
  box-shadow: 0 0.4rem 1.6rem rgba(27, 34, 48, 0.28);
}

.bk-hero-video__eyebrow-spark {
  color: var(--bk-navy-deep);
}

a.bk-hero-video__eyebrow:hover,
a.bk-hero-video__eyebrow:focus-visible {
  background: var(--bk-gold-tint);
}

a.bk-hero-video__eyebrow:focus-visible {
  outline: 0.2rem solid var(--bk-cream);
  outline-offset: 0.3rem;
}

@media screen and (max-width: 749px) {
  .bk-hero-video__eyebrow {
    font-size: 1.1rem;
    padding: 0.5rem 1.2rem;
  }
}

/* ---------- PDP sale chip (rendered by snippets/price.liquid on sale) ---------- */

.bk-sale-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-inline-start: var(--bk-space-3);
  padding: 0.4rem 1rem;
  border-radius: 999px;
  background: var(--bk-gold-soft);
  color: var(--bk-navy-deep);
  font-family: var(--bk-font-label);
  font-size: var(--bk-text-2xs);
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  line-height: 1.2;
  vertical-align: middle;
  white-space: nowrap;
}

.bk-mellow-theme .price--large.price--on-sale .price__sale {
  align-items: center;
  row-gap: 0.6rem;
}

.bk-mellow-theme .price--large.price--on-sale .price-item--regular {
  color: var(--bk-navy-mute);
}

@media screen and (max-width: 749px) {
  .bk-sale-chip {
    margin-inline-start: var(--bk-space-2);
  }

/* ---------- Review-round fixes (2026-08-26) ---------- */

/* proof line reads over bright frames; stars stay gold */
.bk-hero-video__proof {
  color: rgba(255, 255, 255, 0.94);
}

/* hidden-until-play poster keeps the card navy, not blank */
.bk-ugc__video:not([poster]) {
  background: var(--bk-navy-deep);
}

/* Read more: 44px hit area without changing the visual gap */
.beckham-reviews__readmore {
  display: inline-flex;
  align-items: center;
  min-height: 4.4rem;
  padding: 1rem 0;
  margin: -1.6rem 0 -0.2rem;
}

/* opaque focus rings (3:1 on paper and cream) */
.bk-feature-item__summary:focus-visible,
.bk-ugc__arrow:focus-visible,
.beckham-reviews__readmore:focus-visible,
.bk-ugc__play:focus-visible {
  outline: 0.2rem solid var(--bk-navy);
  outline-offset: 0.2rem;
.bk-sale-chip-row {
  flex-basis: 100%;
  display: block;
  margin-block-start: 0.2rem;
}

.bk-sale-chip-row .bk-sale-chip {
  margin-inline-start: 0;
}

/* The chip supersedes Dawn's generic "Sale" badge in the buy box */
.bk-mellow-theme .price--large:has(.bk-sale-chip) .price__badge-sale {
  display: none;
}
