/** Shopify CDN: Minification failed

Line 76:0 All "@import" rules must come first

**/
/* ==========================================================================
   Thinbi Theme CSS — Brand tokens + Dawn overrides
   All customisation lives here. Never modify Dawn core files.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. CSS Custom Properties (Brand Tokens)
   -------------------------------------------------------------------------- */
:root {
  /* Brand colours */
  --thinbi-black: #080808;
  --thinbi-white: #F9F9F7;
  --thinbi-grey-50: #F3F3F1;
  --thinbi-grey-100: #E8E8E5;
  --thinbi-grey-200: #D4D4D0;
  --thinbi-grey-400: #9A9A96;
  --thinbi-grey-600: #5A5A56;
  --thinbi-grey-800: #1E1E1C;

  /* Typography */
  --font-heading-family: "Arboria", "Syne", sans-serif;
  --font-body-family: "DM Sans", sans-serif;

  /* Border radius */
  --radius: 14px;
  --radius-sm: 10px;
  --radius-btn: 7px;

  /* Section padding */
  --section-pad-desktop: 56px 40px;
  --section-pad-mobile: 32px 20px;

  /* Card gap */
  --card-gap: 16px;

  /* Max content width */
  --content-width: 1280px;

  /* Dawn overrides */
  --color-base-text: var(--thinbi-black);
  --color-base-background-1: var(--thinbi-white);
  --color-base-accent-1: var(--thinbi-black);
}

/* Global heading override — lowercase instead of uppercase */
h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6,
.title, .heading {
  text-transform: lowercase !important;
}

/* --------------------------------------------------------------------------
   2. Font Loading
   -------------------------------------------------------------------------- */
@font-face {
  font-family: 'Arboria';
  src: url('/cdn/shop/files/Arboria-Bold.woff?v=1740752456') format('woff');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Arboria';
  src: url('/cdn/shop/files/Arboria-Bold.woff?v=1740752456') format('woff');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;500;600;700;800&family=DM+Sans:wght@300;400;500&display=swap');

/* --------------------------------------------------------------------------
   3. Base / Dawn Overrides
   -------------------------------------------------------------------------- */
body {
  font-family: var(--font-body-family) !important;
  color: var(--thinbi-black);
  background-color: var(--thinbi-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6,
.h0, .h1, .h2, .h3, .h4 {
  font-family: var(--font-heading-family) !important;
  text-transform: lowercase;
  letter-spacing: -0.02em;
  color: var(--thinbi-black);
}

/* --------------------------------------------------------------------------
   4. Button System
   -------------------------------------------------------------------------- */
.btn {
  background: var(--thinbi-white);
  color: var(--thinbi-black);
  border: 1.5px solid var(--thinbi-black);
  padding: 13px 28px;
  font-family: var(--font-heading-family);
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: var(--radius-btn);
  transition: background 0.18s, color 0.18s;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  line-height: 1;
}

.btn:hover {
  background: var(--thinbi-black);
  color: var(--thinbi-white);
}

.btn-ghost {
  background: transparent;
  color: var(--thinbi-white);
  border-color: rgba(255, 255, 255, 0.25);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.08);
}

.btn-primary {
  background: var(--thinbi-black);
  color: var(--thinbi-white);
  border-color: var(--thinbi-black);
}

.btn-primary:hover {
  background: var(--thinbi-grey-800);
}

.btn-full {
  width: 100%;
}

/* --------------------------------------------------------------------------
   5. Layout Utilities
   -------------------------------------------------------------------------- */
.thinbi-section {
  padding: var(--section-pad-desktop);
  max-width: 100%;
  margin: 0 auto;
}

.thinbi-section--full {
  padding: var(--section-pad-desktop);
  width: 100%;
}

.thinbi-section--dark {
  background: var(--thinbi-black);
  color: var(--thinbi-white);
}

.thinbi-section--grey {
  background: var(--thinbi-grey-50);
}

.thinbi-eyebrow {
  display: none;
}

.thinbi-title {
  font-family: var(--font-heading-family);
  font-size: 42px;
  font-weight: 700;
  text-transform: lowercase;
  letter-spacing: -0.02em;
  line-height: 1;
  margin: 0 0 16px;
}

.thinbi-subtitle {
  font-size: 13px;
  font-weight: 300;
  color: var(--thinbi-grey-600);
  line-height: 1.6;
}

/* Dot grid pattern for dark sections */
.dot-grid {
  background-image:
    linear-gradient(rgba(255,255,255,0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.028) 1px, transparent 1px);
  background-size: 56px 56px;
}

/* --------------------------------------------------------------------------
   6. Announcement Bar
   -------------------------------------------------------------------------- */
.thinbi-announcement {
  background: var(--thinbi-black);
  color: var(--thinbi-white);
  text-align: center;
  padding: 10px 20px;
  font-family: var(--font-heading-family);
  font-size: 10px;
  font-weight: 600;
  text-transform: lowercase;
  letter-spacing: 0.13em;
  overflow: hidden;
  position: relative;
}

.thinbi-announcement__track {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  animation: announcement-scroll 12s ease-in-out infinite;
}

.thinbi-announcement__msg {
  white-space: nowrap;
  flex-shrink: 0;
}

.thinbi-announcement__dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--thinbi-grey-600);
  flex-shrink: 0;
}

@keyframes announcement-scroll {
  0%, 30% { transform: translateX(0); }
  33%, 63% { transform: translateX(calc(-100% / 3)); }
  66%, 96% { transform: translateX(calc(-200% / 3)); }
  100% { transform: translateX(0); }
}

/* --------------------------------------------------------------------------
   7. Navigation
   -------------------------------------------------------------------------- */
.thinbi-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 0 40px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.3s, border-color 0.3s;
}

.thinbi-nav--dark {
  background: var(--thinbi-black);
}

.thinbi-nav--light {
  background: var(--thinbi-white);
  border-bottom: 1px solid var(--thinbi-grey-100);
}

.thinbi-nav__logo {
  font-family: var(--font-heading-family);
  font-size: 22px;
  font-weight: 700;
  text-transform: lowercase;
  text-decoration: none;
  color: inherit;
  display: flex;
  align-items: center;
}

.thinbi-nav__logo-img {
  height: 32px;
  width: auto;
  object-fit: contain;
  filter: brightness(0);
}

.thinbi-nav--dark .thinbi-nav__logo,
.thinbi-nav--dark .thinbi-nav__link {
  color: var(--thinbi-white);
}

.thinbi-nav--light .thinbi-nav__logo {
  color: var(--thinbi-black);
}

.thinbi-nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.thinbi-nav__link {
  font-family: var(--font-heading-family);
  font-size: 10px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--thinbi-grey-600);
  text-decoration: none;
  transition: color 0.18s;
  position: relative;
}

.thinbi-nav__link:hover {
  color: var(--thinbi-black);
}

.thinbi-nav--dark .thinbi-nav__link:hover {
  color: var(--thinbi-white);
}

.thinbi-nav__actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.thinbi-nav__cart {
  position: relative;
  color: inherit;
  text-decoration: none;
}

.thinbi-nav__cart svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
}

.thinbi-nav__cart-count {
  position: absolute;
  top: -6px;
  right: -8px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--thinbi-black);
  color: var(--thinbi-white);
  font-size: 9px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.thinbi-nav--dark .thinbi-nav__cart-count {
  background: var(--thinbi-white);
  color: var(--thinbi-black);
}

/* Shop dropdown */
.thinbi-nav__dropdown {
  position: relative;
}

.thinbi-nav__dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  padding-top: 12px;
  min-width: 200px;
  z-index: 110;
}

.thinbi-nav__dropdown-menu-inner {
  background: var(--thinbi-white);
  border: 1px solid var(--thinbi-grey-100);
  border-radius: var(--radius-sm);
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
  padding: 12px 0;
}

.thinbi-nav__dropdown:hover .thinbi-nav__dropdown-menu,
.thinbi-nav__dropdown-menu:hover {
  display: block;
}

.thinbi-nav__dropdown-item {
  display: block;
  padding: 8px 20px;
  font-family: var(--font-heading-family);
  font-size: 10px;
  font-weight: 600;
  text-transform: lowercase;
  letter-spacing: 0.1em;
  color: var(--thinbi-grey-600);
  text-decoration: none;
  transition: color 0.18s, background 0.18s;
}

.thinbi-nav__dropdown-item:hover {
  color: var(--thinbi-black);
  background: var(--thinbi-grey-50);
}

/* Mobile hamburger */
.thinbi-nav__hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: inherit;
}

.thinbi-nav__hamburger svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
}

/* Mobile overlay */
.thinbi-mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--thinbi-white);
  z-index: 200;
  padding: 80px 32px 40px;
  flex-direction: column;
  gap: 24px;
}

.thinbi-mobile-menu.open {
  display: flex;
}

.thinbi-mobile-menu__close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.thinbi-mobile-menu__close svg {
  width: 24px;
  height: 24px;
  stroke: var(--thinbi-black);
  fill: none;
  stroke-width: 1.5;
}

.thinbi-mobile-menu__link {
  font-family: var(--font-heading-family);
  font-size: 28px;
  font-weight: 700;
  text-transform: lowercase;
  letter-spacing: -0.02em;
  color: var(--thinbi-black);
  text-decoration: none;
}

/* --------------------------------------------------------------------------
   8. Hero Section
   -------------------------------------------------------------------------- */
.thinbi-hero {
  min-height: 88vh;
  background: var(--thinbi-white);
  display: flex;
  align-items: center;
  padding: 80px 40px;
  position: relative;
  overflow: hidden;
}

.thinbi-hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.thinbi-hero__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 100%;
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 1;
}

.thinbi-hero__content {
  max-width: 660px;
}

.thinbi-hero__heading {
  font-family: var(--font-heading-family);
  font-size: 84px;
  font-weight: 700;
  text-transform: lowercase;
  line-height: 0.91;
  color: var(--thinbi-black);
  margin: 0 0 20px;
  letter-spacing: -0.02em;
}

.thinbi-hero__heading span {
  color: var(--thinbi-grey-600);
}

.thinbi-hero__subtext {
  font-size: 14px;
  font-weight: 300;
  color: var(--thinbi-grey-600);
  line-height: 1.7;
  max-width: 400px;
  margin-bottom: 32px;
}

.thinbi-hero__buttons {
  display: flex;
  gap: 12px;
}

/* Hero visual — concentric circles with pill */
.thinbi-hero__visual {
  position: relative;
  width: 340px;
  height: 340px;
  flex-shrink: 0;
}

.thinbi-hero__circle {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.06);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.thinbi-hero__circle--lg { width: 340px; height: 340px; }
.thinbi-hero__circle--md { width: 240px; height: 240px; }
.thinbi-hero__circle--sm { width: 140px; height: 140px; }

.thinbi-hero__pill {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 148px;
  border-radius: 40px;
  background: linear-gradient(180deg, rgba(255,255,255,0.15) 0%, rgba(255,255,255,0.03) 100%);
}

.thinbi-hero__pill-label {
  position: absolute;
  top: calc(50% + 90px);
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-heading-family);
  font-size: 9px;
  text-transform: lowercase;
  color: var(--thinbi-grey-400);
  letter-spacing: 0.12em;
}

/* --------------------------------------------------------------------------
   9. Trust Boxes
   -------------------------------------------------------------------------- */
.thinbi-trust {
  padding: 56px 40px 24px;
  max-width: 100%;
  margin: 0;
}

.thinbi-trust__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--card-gap);
}

.thinbi-trust__box {
  border: 1.5px solid var(--thinbi-grey-100);
  border-radius: var(--radius);
  padding: 28px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.thinbi-trust__icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--thinbi-grey-50);
  border: 1px solid var(--thinbi-grey-100);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.thinbi-trust__icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--thinbi-black);
  fill: none;
  stroke-width: 1.5;
}

.thinbi-trust__label {
  font-family: var(--font-heading-family);
  font-size: 14px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--thinbi-black);
  line-height: 1.4;
}

/* --------------------------------------------------------------------------
   10. Product Range / Cards
   -------------------------------------------------------------------------- */
.thinbi-range {
  padding: 16px 40px 56px;
  max-width: 100%;
  margin: 0;
}

.thinbi-range__header {
  text-align: left;
  margin-bottom: 32px;
}

.thinbi-range__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-auto-rows: auto;
  gap: var(--card-gap);
}

/* Product card */
.thinbi-product-card {
  background: #FFFFFF;
  border: 1px solid var(--thinbi-grey-100);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
}

.thinbi-product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.08);
}

.thinbi-product-card__image {
  height: 260px;
  border-radius: var(--radius) var(--radius) 0 0;
  background: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.thinbi-product-card__pill {
  width: 48px;
  height: 88px;
  border-radius: 24px;
}

.thinbi-product-card__body {
  padding: 16px 20px 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.thinbi-product-card__row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  width: 100%;
  margin: 0 0 6px;
}

.thinbi-product-card__name {
  font-family: var(--font-heading-family);
  font-size: 12px;
  font-weight: 700;
  text-transform: lowercase;
  margin: 0;
  color: var(--thinbi-black);
}

.thinbi-product-card__desc {
  font-size: 11px;
  font-weight: 300;
  color: var(--thinbi-grey-600);
  margin: 0 0 10px;
  line-height: 1.5;
}

.thinbi-product-card__price {
  font-family: var(--font-heading-family);
  font-size: 14px;
  font-weight: 600;
  color: var(--thinbi-black);
  margin: 0;
  white-space: nowrap;
}

.thinbi-product-card__ss-price {
  font-size: 10px;
  font-weight: 300;
  color: var(--thinbi-grey-400);
  margin: 0 0 12px;
}

.thinbi-product-card .btn {
  width: auto;
  margin-top: auto;
  font-size: 11px;
  padding: 10px 20px;
}

/* View All / Shop the Range card */
.thinbi-view-all-card {
  background: var(--thinbi-black);
  border: none;
  border-radius: var(--radius);
  display: flex;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  transition: transform 0.2s;
}

.thinbi-view-all-card:hover {
  transform: translateY(-4px);
}

.thinbi-view-all-card__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.thinbi-view-all-card__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 24px;
  width: 100%;
  height: 100%;
  min-height: 100%;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.1) 60%, transparent 100%);
  gap: 12px;
}

.thinbi-view-all-card__label {
  font-family: var(--font-heading-family);
  font-size: 18px;
  font-weight: 600;
  text-transform: lowercase;
  color: var(--thinbi-white);
  letter-spacing: 0.02em;
  text-align: left;
  line-height: 1.3;
}

.thinbi-view-all-card .btn-ghost {
  font-size: 10px;
  padding: 10px 20px;
}

/* Mobile swiper: hidden on desktop */
.thinbi-range__mobile {
  display: none;
}

/* --------------------------------------------------------------------------
   11. Subscribe & Save Strip
   -------------------------------------------------------------------------- */
.thinbi-ss-strip {
  background: var(--thinbi-black);
  border-radius: var(--radius);
  padding: 36px 44px;
  margin: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  overflow: hidden;
}

.thinbi-ss-strip .dot-grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.thinbi-ss-strip__content {
  position: relative;
  z-index: 1;
}

.thinbi-ss-strip__title {
  font-family: var(--font-heading-family);
  font-size: 26px;
  font-weight: 700;
  text-transform: lowercase;
  color: var(--thinbi-white);
  margin: 0 0 6px;
}

.thinbi-ss-strip__sub {
  font-size: 12px;
  font-weight: 300;
  color: var(--thinbi-grey-400);
}

.thinbi-ss-strip__perks {
  display: flex;
  gap: 20px;
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
  z-index: 1;
}

.thinbi-ss-strip__perk {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading-family);
  font-size: 10px;
  text-transform: lowercase;
  color: var(--thinbi-grey-400);
  letter-spacing: 0.06em;
}

.thinbi-ss-strip__perk-icon {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1px solid var(--thinbi-grey-600);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  color: var(--thinbi-grey-400);
}

.thinbi-ss-strip__cta {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}

/* --------------------------------------------------------------------------
   12. Video Testimonials
   -------------------------------------------------------------------------- */
.thinbi-videos {
  padding: var(--section-pad-desktop);
  max-width: 100%;
  margin: 0 auto;
}

.thinbi-videos__header {
  margin-bottom: 32px;
}

.thinbi-videos__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--card-gap);
}

.thinbi-video-card {
  height: 250px;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  background: var(--thinbi-black);
}

.thinbi-video-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.05) 55%);
  z-index: 1;
}

.thinbi-video-card__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: border-color 0.18s, background 0.18s;
}

.thinbi-video-card:hover .thinbi-video-card__play {
  border-color: white;
  background: rgba(255,255,255,0.1);
}

.thinbi-video-card__play svg {
  width: 16px;
  height: 16px;
  fill: var(--thinbi-white);
  margin-left: 2px;
}

.thinbi-video-card__info {
  position: absolute;
  bottom: 16px;
  left: 16px;
  right: 16px;
  z-index: 2;
}

.thinbi-video-card__meta {
  font-family: var(--font-heading-family);
  font-size: 9px;
  text-transform: lowercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 4px;
}

.thinbi-video-card__name {
  font-family: var(--font-heading-family);
  font-size: 14px;
  font-weight: 600;
  color: var(--thinbi-white);
  margin-bottom: 4px;
}

.thinbi-video-card__quote {
  font-size: 12px;
  font-style: italic;
  color: rgba(255,255,255,0.6);
}

/* --------------------------------------------------------------------------
   13. Reviews Section
   -------------------------------------------------------------------------- */
.thinbi-reviews {
  padding: var(--section-pad-desktop);
  max-width: 100%;
  margin: 0 auto;
}

.thinbi-reviews__header {
  margin-bottom: 32px;
}

.thinbi-reviews__summary {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 24px;
}

.thinbi-reviews__rating-big {
  font-family: var(--font-heading-family);
  font-size: 60px;
  font-weight: 700;
  line-height: 1;
  color: var(--thinbi-black);
}

.thinbi-reviews__stars {
  font-size: 17px;
  letter-spacing: 3px;
  color: var(--thinbi-black);
}

.thinbi-reviews__count {
  font-size: 13px;
  color: var(--thinbi-grey-400);
  font-weight: 300;
}

.thinbi-reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--card-gap);
}

.thinbi-review-card {
  border: 1.5px solid var(--thinbi-grey-100);
  border-radius: var(--radius-sm);
  padding: 20px;
}

.thinbi-review-card__stars {
  font-size: 11px;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.thinbi-review-card__text {
  font-size: 13px;
  font-weight: 300;
  color: var(--thinbi-grey-800);
  line-height: 1.7;
  margin-bottom: 12px;
}

.thinbi-review-card__author {
  font-family: var(--font-heading-family);
  font-size: 9px;
  text-transform: lowercase;
  color: var(--thinbi-grey-400);
  letter-spacing: 0.1em;
}

/* --------------------------------------------------------------------------
   14. Ambassador Section
   -------------------------------------------------------------------------- */
.thinbi-ambassador {
  background: var(--thinbi-grey-50);
  border: 1.5px solid var(--thinbi-grey-100);
  border-radius: var(--radius);
  padding: 48px 52px;
  margin: 0 40px 56px;
  display: flex;
  align-items: center;
  gap: 48px;
}

.thinbi-ambassador__content {
  flex: 1;
}

.thinbi-ambassador__body {
  font-size: 13px;
  font-weight: 300;
  color: var(--thinbi-grey-600);
  line-height: 1.7;
  margin-bottom: 16px;
}

.thinbi-ambassador__perks {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.thinbi-ambassador__perk {
  padding: 6px 14px;
  border: 1px solid var(--thinbi-grey-200);
  border-radius: 20px;
  font-family: var(--font-heading-family);
  font-size: 9px;
  font-weight: 600;
  text-transform: lowercase;
  letter-spacing: 0.06em;
  color: var(--thinbi-grey-600);
}

.thinbi-ambassador__visual {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: var(--thinbi-black);
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}

.thinbi-ambassador__visual .dot-grid {
  position: absolute;
  inset: 0;
}

.thinbi-ambassador__visual-pill {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 72px;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255,255,255,0.15) 0%, rgba(255,255,255,0.03) 100%);
}

/* --------------------------------------------------------------------------
   15. Final CTA Banner
   -------------------------------------------------------------------------- */
.thinbi-final-cta {
  background: var(--thinbi-black);
  padding: 72px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.thinbi-final-cta .dot-grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.thinbi-final-cta__inner {
  position: relative;
  z-index: 1;
}

.thinbi-final-cta__heading {
  font-family: var(--font-heading-family);
  font-size: 52px;
  font-weight: 700;
  text-transform: lowercase;
  color: var(--thinbi-white);
  line-height: 0.92;
  margin: 0 0 24px;
}

.thinbi-final-cta__heading span {
  color: var(--thinbi-grey-400);
}

/* --------------------------------------------------------------------------
   16. Footer
   -------------------------------------------------------------------------- */
.thinbi-footer {
  background: var(--thinbi-black);
  padding: 56px 40px 24px;
}

.thinbi-footer__grid {
  max-width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.thinbi-footer__logo {
  font-family: var(--font-heading-family);
  font-size: 18px;
  font-weight: 700;
  text-transform: lowercase;
  color: var(--thinbi-white);
  margin-bottom: 12px;
}

.thinbi-footer__desc {
  font-size: 12px;
  font-weight: 300;
  color: var(--thinbi-grey-600);
  line-height: 1.7;
  margin-bottom: 20px;
}

.thinbi-footer__signup-label {
  font-family: var(--font-heading-family);
  font-size: 10px;
  font-weight: 600;
  text-transform: lowercase;
  letter-spacing: 0.1em;
  color: var(--thinbi-grey-400);
  margin-bottom: 8px;
}

.thinbi-footer__signup-form {
  display: flex;
  gap: 8px;
}

.thinbi-footer__signup-input {
  flex: 1;
  padding: 10px 14px;
  border: 1.5px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-btn);
  background: transparent;
  color: var(--thinbi-white);
  font-family: var(--font-body-family);
  font-size: 12px;
  outline: none;
}

.thinbi-footer__signup-input::placeholder {
  color: var(--thinbi-grey-600);
}

.thinbi-footer__signup-input:focus {
  border-color: rgba(255,255,255,0.4);
}

.thinbi-footer__heading {
  font-family: var(--font-heading-family);
  font-size: 10px;
  font-weight: 700;
  text-transform: lowercase;
  letter-spacing: 0.1em;
  color: var(--thinbi-white);
  margin-bottom: 16px;
}

.thinbi-footer__links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.thinbi-footer__links li {
  margin-bottom: 10px;
}

.thinbi-footer__links a {
  font-size: 12px;
  font-weight: 300;
  color: var(--thinbi-grey-600);
  text-decoration: none;
  transition: color 0.18s;
}

.thinbi-footer__links a:hover {
  color: var(--thinbi-white);
}

.thinbi-footer__bottom {
  max-width: 100%;
  margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.thinbi-footer__copy {
  font-size: 11px;
  font-weight: 300;
  color: var(--thinbi-grey-600);
}

.thinbi-footer__social {
  display: flex;
  gap: 16px;
}

.thinbi-footer__social a {
  font-family: var(--font-heading-family);
  font-size: 10px;
  text-transform: lowercase;
  letter-spacing: 0.1em;
  color: var(--thinbi-grey-400);
  text-decoration: none;
  transition: color 0.18s;
}

.thinbi-footer__social a:hover {
  color: var(--thinbi-white);
}

/* --------------------------------------------------------------------------
   17. Email Pop-up
   -------------------------------------------------------------------------- */
.thinbi-popup {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
}

.thinbi-popup.hidden {
  display: none;
}

.thinbi-popup__scrim {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
}

.thinbi-popup__modal {
  position: relative;
  max-width: 400px;
  width: 90%;
  border-radius: var(--radius);
  overflow: hidden;
  z-index: 1;
}

.thinbi-popup__close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 10;
  background: none;
  border: none;
  color: var(--thinbi-white);
  cursor: pointer;
  padding: 6px;
  line-height: 0;
  transition: opacity 0.18s;
}
.thinbi-popup__close:hover {
  opacity: 0.6;
}

.thinbi-popup__top {
  background: var(--thinbi-black);
  padding: 40px 32px 28px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.thinbi-popup__top .dot-grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.thinbi-popup__top-content {
  position: relative;
  z-index: 1;
}

.thinbi-popup__welcome {
  font-family: var(--font-heading-family);
  font-size: 10px;
  text-transform: lowercase;
  letter-spacing: 0.13em;
  color: var(--thinbi-grey-400);
  margin-bottom: 8px;
}

.thinbi-popup__discount {
  font-family: var(--font-heading-family);
  font-size: 54px;
  font-weight: 700;
  text-transform: lowercase;
  color: var(--thinbi-white);
  line-height: 1;
  margin-bottom: 4px;
}

.thinbi-popup__sub {
  font-size: 18px;
  font-weight: 400;
  color: var(--thinbi-grey-400);
}

.thinbi-popup__bottom {
  background: var(--thinbi-white);
  padding: 28px 32px 24px;
  text-align: center;
}

.thinbi-popup__body {
  font-size: 13px;
  font-weight: 300;
  color: var(--thinbi-grey-600);
  line-height: 1.6;
  margin-bottom: 18px;
}

.thinbi-popup__input {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--thinbi-grey-100);
  border-radius: var(--radius-btn);
  font-family: var(--font-body-family);
  font-size: 13px;
  margin-bottom: 10px;
  outline: none;
  background: var(--thinbi-white);
  color: var(--thinbi-black);
}

.thinbi-popup__input:focus {
  border-color: var(--thinbi-black);
}

.thinbi-popup__submit {
  width: 100%;
  padding: 13px;
}

.thinbi-popup__dismiss {
  display: inline-block;
  margin-top: 12px;
  font-family: var(--font-heading-family);
  font-size: 10px;
  text-transform: lowercase;
  letter-spacing: 0.1em;
  color: var(--thinbi-grey-400);
  cursor: pointer;
  background: none;
  border: none;
  text-decoration: none;
}

.thinbi-popup__dismiss:hover {
  color: var(--thinbi-grey-600);
}

/* --------------------------------------------------------------------------
   18. Product Page — Two Column Layout
   -------------------------------------------------------------------------- */
.pdp-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: start;
  max-width: 100%;
  margin: 0 auto;
  padding: 32px 40px;
  gap: 40px;
  box-sizing: border-box;
  overflow: hidden;
}

/* Gallery column — sticky */
.gallery-col {
  position: sticky;
  top: 20px;
  align-self: start;
}

.gallery-col__main {
  aspect-ratio: 1 / 1;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  background: var(--thinbi-white) !important;
  overflow: hidden;
}

.gallery-col__main-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
}

.gallery-col__main-pill {
  width: 90px;
  height: 160px;
  border-radius: 45px;
}

.gallery-col__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.gallery-col__tile {
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  padding-top: 100%;
}

.gallery-col__tile-inner {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
}

.gallery-col__tile-label {
  position: absolute;
  bottom: 10px;
  left: 12px;
  font-family: var(--font-heading-family);
  font-size: 9px;
  text-transform: lowercase;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.1em;
}

/* Standards tile */
.gallery-col__tile--standards {
  background: var(--thinbi-grey-100);
}

.gallery-col__tile--standards .gallery-col__tile-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  padding: 14px;
}

.gallery-col__standard-badge {
  background: var(--thinbi-white);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 4px;
  font-family: var(--font-heading-family);
  font-size: 8px;
  text-transform: lowercase;
  color: var(--thinbi-grey-600);
  text-align: center;
}

/* Benefits tile */
.gallery-col__tile--benefits .gallery-col__tile-inner {
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
}

.gallery-col__tile-eyebrow {
  display: none;
}

.gallery-col__tile-benefits {
  font-family: var(--font-heading-family);
  font-size: 11px;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  line-height: 1.5;
}

/* Video tile */
.gallery-col__tile--video .gallery-col__tile-inner {
  cursor: pointer;
}

.gallery-col__tile-play {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-col__tile-play svg {
  width: 12px;
  height: 12px;
  fill: var(--thinbi-white);
  margin-left: 2px;
}

/* Gallery slider */
.gallery-col__slider {
  position: relative;
  margin-top: 8px;
}

.gallery-col__slide {
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  background: var(--thinbi-white) !important;
}

.gallery-col__slide-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-sm);
}

.gallery-col__arrows {
  position: absolute;
  top: 50%;
  left: -16px;
  right: -16px;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  pointer-events: none;
  z-index: 5;
}

.gallery-col__arrow {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--thinbi-white);
  border: 1.5px solid var(--thinbi-grey-200);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  pointer-events: all;
  transition: background 0.18s, border-color 0.18s;
  padding: 0;
}

.gallery-col__arrow:hover {
  background: var(--thinbi-black);
  border-color: var(--thinbi-black);
}

.gallery-col__arrow:hover svg {
  stroke: var(--thinbi-white);
}

.gallery-col__arrow svg {
  width: 16px;
  height: 16px;
  stroke: var(--thinbi-black);
  fill: none;
  stroke-width: 2;
}

.gallery-col__arrow[disabled] {
  opacity: 0.3;
  cursor: default;
}

.gallery-col__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 12px 0;
}

.gallery-col__dots .splide__pagination__page {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--thinbi-grey-200);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background 0.2s;
}

.gallery-col__dots .splide__pagination__page.is-active {
  background: var(--thinbi-black);
}

/* Science Banner (PDP) */
.thinbi-science-banner {
  padding: 0 40px;
  margin: 20px 0;
}

.thinbi-science-banner__inner {
  background: var(--thinbi-black);
  border-radius: var(--radius);
  padding: 36px 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
}

.thinbi-science-banner__item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.thinbi-science-banner__icon {
  font-size: 18px;
  color: var(--thinbi-white);
}

.thinbi-science-banner__label {
  font-family: var(--font-heading-family);
  font-size: 13px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--thinbi-white);
}

/* Info column */
.info-col {
  padding: 20px 0;
  max-width: 100%;
  overflow: hidden;
  box-sizing: border-box;
}

.info-col__breadcrumb {
  font-family: var(--font-heading-family);
  font-size: 10px;
  text-transform: lowercase;
  letter-spacing: 0.1em;
  color: var(--thinbi-grey-400);
  margin-bottom: 12px;
}

.info-col__breadcrumb a {
  color: var(--thinbi-grey-400);
  text-decoration: none;
}

.info-col__breadcrumb a:hover {
  color: var(--thinbi-black);
}

.info-col__title {
  font-family: var(--font-heading-family);
  font-size: 36px;
  font-weight: 700;
  text-transform: lowercase;
  letter-spacing: -0.02em;
  line-height: 1;
  margin: 0 0 8px;
}

.info-col__tagline {
  font-size: 13px;
  font-weight: 300;
  color: var(--thinbi-grey-600);
  line-height: 1.6;
  margin-bottom: 16px;
}

.info-col__stars {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  cursor: pointer;
}

.info-col__stars-display {
  font-size: 14px;
  letter-spacing: 1px;
  color: var(--thinbi-black);
}

.info-col__stars-text {
  font-size: 12px;
  color: var(--thinbi-grey-400);
  font-weight: 300;
}

/* --------------------------------------------------------------------------
   19. Subscribe & Save Module (PDP)
   -------------------------------------------------------------------------- */
/* ── Purchase Module (Buy More / Subscribe & Save) ── */
.purchase-module {
  border: 1.5px solid var(--thinbi-black);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 12px;
  max-width: 100%;
  box-sizing: border-box;
}

.purchase-module__header {
  background: var(--thinbi-black);
  padding: 11px 16px;
  text-align: center;
}

.purchase-module__header-label {
  font-family: var(--font-heading-family);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--thinbi-white);
}

/* Tier rows */
.purchase-module__tier {
  position: relative;
  padding: 14px 16px;
  cursor: pointer;
  border-bottom: 1px solid var(--thinbi-grey-100);
  transition: background 0.15s;
  display: flex;
  align-items: center;
  gap: 12px;
}

.purchase-module__tier:last-of-type {
  border-bottom: none;
}

/* Top-right corner badge (Most Popular / Best Deal) */
.purchase-module__badge {
  position: absolute;
  top: 0;
  right: 16px;
  transform: translateY(-50%);
  font-family: var(--font-heading-family);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
  white-space: nowrap;
  z-index: 1;
}

.purchase-module__badge--popular {
  background: var(--thinbi-black);
  color: var(--thinbi-white);
}

.purchase-module__badge--best {
  background: var(--thinbi-grey-800);
  color: var(--thinbi-white);
}

.purchase-module__tier:hover {
  background: var(--thinbi-grey-50);
}

.purchase-module__tier.selected {
  background: var(--thinbi-grey-50);
}

/* Radio */
.purchase-module__radio {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 1.5px solid var(--thinbi-grey-200);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.purchase-module__tier.selected .purchase-module__radio {
  border-color: var(--thinbi-black);
}

.purchase-module__radio-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--thinbi-black);
  display: none;
}

.purchase-module__tier.selected .purchase-module__radio-dot {
  display: block;
}

/* Tier info (middle) */
.purchase-module__tier-info {
  flex: 1;
  min-width: 0;
}

.purchase-module__tier-title {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 2px;
}

.purchase-module__buy-label {
  font-family: var(--font-heading-family);
  font-size: 14px;
  font-weight: 700;
}

.purchase-module__tier-tag {
  font-family: var(--font-heading-family);
  font-size: 9px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  background: var(--thinbi-grey-100);
  color: var(--thinbi-grey-800);
  padding: 3px 8px;
  border-radius: 4px;
}

.purchase-module__tier-tag--popular {
  background: var(--thinbi-black);
  color: var(--thinbi-white);
}

.purchase-module__tier-tag--subscribe {
  background: var(--thinbi-black);
  color: var(--thinbi-white);
}

.purchase-module__tier-sub {
  font-size: 12px;
  font-weight: 400;
  color: var(--thinbi-grey-600);
}

/* Pricing (right side) */
.purchase-module__tier-pricing {
  text-align: right;
  flex-shrink: 0;
}

.purchase-module__price {
  font-family: var(--font-heading-family);
  font-size: 18px;
  font-weight: 700;
  display: block;
  line-height: 1.2;
}

.purchase-module__price-period {
  font-size: 12px;
  font-weight: 400;
  color: var(--thinbi-grey-400);
}

.purchase-module__price-was {
  font-size: 12px;
  font-weight: 400;
  color: var(--thinbi-grey-400);
  text-decoration: line-through;
  display: block;
}

/* Divider */
.purchase-module__divider {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 16px;
}

.purchase-module__divider::before,
.purchase-module__divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--thinbi-grey-200);
}

.purchase-module__divider span {
  font-size: 11px;
  font-weight: 400;
  color: var(--thinbi-grey-400);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* Save callout */
.purchase-module__save-callout {
  display: none;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: var(--thinbi-grey-50);
  border-top: 1px solid var(--thinbi-grey-100);
  font-size: 12px;
  color: var(--thinbi-grey-800);
}

.purchase-module__tier[data-tier="subscribe"].selected ~ .purchase-module__save-callout,
.purchase-module__tier[data-tier="2"].selected ~ .purchase-module__save-callout {
  display: flex;
}

.purchase-module__save-icon {
  color: var(--thinbi-black);
  font-size: 12px;
  font-weight: 700;
}

/* Terms list (under all tiers) */
.purchase-module__terms {
  list-style: none;
  margin: 0;
  padding: 14px 16px;
  background: var(--thinbi-grey-50);
  border-top: 1px solid var(--thinbi-grey-100);
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.purchase-module__terms-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--thinbi-grey-800);
  line-height: 1.4;
}

.purchase-module__terms-icon {
  color: var(--thinbi-black);
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
}

/* Hide subscription terms when the one-time "Buy 1" tier is selected */
.purchase-module--onetime .purchase-module__terms {
  display: none;
}

/* ATC Button */
.thinbi-atc {
  width: 100%;
  background: var(--thinbi-black);
  color: var(--thinbi-white);
  padding: 16px;
  font-family: var(--font-heading-family);
  font-size: 12px;
  font-weight: 700;
  text-transform: lowercase;
  letter-spacing: 0.14em;
  border: none;
  border-radius: var(--radius-btn);
  cursor: pointer;
  transition: background 0.18s;
  margin-bottom: 8px;
}

.thinbi-atc:hover {
  background: var(--thinbi-grey-800);
}

.thinbi-atc-note {
  font-size: 11px;
  font-weight: 300;
  color: var(--thinbi-grey-400);
  text-align: center;
  margin-bottom: 18px;
}

/* Trust icons row */
.thinbi-trust-row {
  display: flex;
  border: 1px solid var(--thinbi-grey-100);
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 20px;
}

.thinbi-trust-row__cell {
  flex: 1;
  text-align: center;
  padding: 11px 4px;
  border-right: 1px solid var(--thinbi-grey-100);
  font-family: var(--font-heading-family);
  font-size: 9px;
  text-transform: lowercase;
  letter-spacing: 0.06em;
  color: var(--thinbi-grey-600);
}

.thinbi-trust-row__cell:last-child {
  border-right: none;
}

.thinbi-trust-row__icon {
  display: block;
  font-size: 13px;
  margin-bottom: 4px;
}

/* --------------------------------------------------------------------------
   20. Accordion (PDP)
   -------------------------------------------------------------------------- */
.acc-item {
  border-bottom: 1px solid var(--thinbi-grey-100);
}

.acc-item:first-child {
  border-top: 1px solid var(--thinbi-grey-100);
}

.acc-trigger {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 0;
  font-family: var(--font-heading-family);
  font-size: 11px;
  font-weight: 700;
  text-transform: lowercase;
  letter-spacing: 0.1em;
  color: var(--thinbi-black);
}

.acc-icon {
  font-size: 20px;
  font-weight: 300;
  color: var(--thinbi-grey-400);
  transition: transform 0.2s ease;
  line-height: 1;
}

.acc-item.open .acc-icon {
  transform: rotate(45deg);
}

.acc-body {
  display: none;
  font-size: 13px;
  line-height: 1.75;
  color: var(--thinbi-grey-600);
  font-weight: 300;
  padding-bottom: 14px;
}

.acc-item.open .acc-body {
  display: block;
}

/* Benefit rows in accordion */
.acc-benefit-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.acc-benefit-check {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 1px solid var(--thinbi-grey-200);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-family: var(--font-heading-family);
  font-size: 8px;
}

/* --------------------------------------------------------------------------
   21. Backed by Science (PDP full-width section)
   -------------------------------------------------------------------------- */
.thinbi-science {
  background: var(--thinbi-black);
  padding: 56px 48px;
  position: relative;
  overflow: hidden;
}

.thinbi-science .dot-grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.thinbi-science__inner {
  max-width: 860px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.thinbi-science__body {
  font-size: 13px;
  font-weight: 300;
  color: var(--thinbi-grey-400);
  line-height: 1.75;
  max-width: 540px;
  margin-bottom: 32px;
}

.thinbi-science__stats {
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  overflow: hidden;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.thinbi-science__stat {
  padding: 20px 24px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.08);
}

.thinbi-science__stat:last-child {
  border-right: none;
}

.thinbi-science__stat-value {
  font-family: var(--font-heading-family);
  font-size: 34px;
  font-weight: 700;
  color: var(--thinbi-white);
  margin-bottom: 4px;
}

.thinbi-science__stat-label {
  font-family: var(--font-heading-family);
  font-size: 9px;
  text-transform: lowercase;
  letter-spacing: 0.1em;
  color: var(--thinbi-grey-400);
}

/* --------------------------------------------------------------------------
   22. Why Thinbi (PDP full-width section)
   -------------------------------------------------------------------------- */
.thinbi-why {
  background: var(--thinbi-grey-50);
  border-top: 1px solid var(--thinbi-grey-100);
  padding: 40px 48px;
}

.thinbi-why__inner {
  max-width: 860px;
  margin: 0 auto;
}

.thinbi-why__title {
  font-family: var(--font-heading-family);
  font-size: 22px;
  font-weight: 700;
  text-transform: lowercase;
  margin-bottom: 20px;
}

.thinbi-why__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--card-gap);
}

.thinbi-why__card {
  background: var(--thinbi-white);
  border: 1px solid var(--thinbi-grey-100);
  border-radius: 8px;
  padding: 16px 14px;
}

.thinbi-why__card-num {
  font-family: var(--font-heading-family);
  font-size: 11px;
  font-weight: 700;
  color: var(--thinbi-grey-200);
  margin-bottom: 8px;
}

.thinbi-why__card-title {
  font-family: var(--font-heading-family);
  font-size: 11px;
  font-weight: 700;
  text-transform: lowercase;
  margin-bottom: 6px;
}

.thinbi-why__card-desc {
  font-size: 12px;
  font-weight: 300;
  color: var(--thinbi-grey-600);
  line-height: 1.5;
}

/* --------------------------------------------------------------------------
   23. You Might Also Like (PDP)
   -------------------------------------------------------------------------- */
.thinbi-cross-sell {
  border-top: 1px solid var(--thinbi-grey-100);
  padding: 40px 48px 56px;
}

.thinbi-cross-sell__inner {
  max-width: 860px;
  margin: 0 auto;
}

.thinbi-cross-sell__label {
  font-family: var(--font-heading-family);
  font-size: 11px;
  font-weight: 700;
  text-transform: lowercase;
  margin-bottom: 16px;
}

.thinbi-cross-sell__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--card-gap);
}

.thinbi-cross-sell .thinbi-product-card__image {
  height: 90px;
}

.thinbi-cross-sell .thinbi-product-card__pill {
  width: 24px;
  height: 44px;
  border-radius: 12px;
}

/* --------------------------------------------------------------------------
   24. Split Sections (Text + Image)
   -------------------------------------------------------------------------- */
.thinbi-split-section {
  padding: 40px 40px;
}

.thinbi-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 100%;
  min-height: 480px;
}

.thinbi-split__text {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 48px 48px;
  background: var(--thinbi-grey-50);
  border-radius: var(--radius);
}

.thinbi-split__heading {
  font-family: var(--font-heading-family);
  font-size: 32px;
  font-weight: 700;
  color: var(--thinbi-black);
  margin: 0 0 32px;
  line-height: 1.2;
}

.thinbi-split__lines {
  margin: 0 0 32px;
}

.thinbi-split__line {
  font-family: var(--font-body-family);
  font-size: 15px;
  font-weight: 400;
  color: var(--thinbi-grey-600);
  line-height: 1.6;
  margin: 0;
  padding: 16px 0;
}

.thinbi-split__divider {
  border: none;
  border-top: 1px solid var(--thinbi-grey-200);
  margin: 0;
}

.thinbi-split__image {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--thinbi-grey-50);
}

.thinbi-split__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
}

.thinbi-split__placeholder {
  width: 100%;
  height: 100%;
  min-height: 480px;
  background: var(--thinbi-grey-50);
  border-radius: var(--radius);
}

/* --------------------------------------------------------------------------
   25. Sticky ATC (Mobile)
   -------------------------------------------------------------------------- */
.thinbi-sticky-atc {
  display: none;
}

/* --------------------------------------------------------------------------
   26. Dawn Collection Grid — use Thinbi card styles
   -------------------------------------------------------------------------- */
.collection-product-list .grid__item,
#product-grid .grid__item {
  padding: 0;
}

#product-grid .thinbi-product-card,
.collection-product-list .thinbi-product-card {
  height: 100%;
}

/* --------------------------------------------------------------------------
   25. Mobile Responsive
   -------------------------------------------------------------------------- */
@media (max-width: 768px) {
  /* Nav */
  .thinbi-nav {
    padding: 0 20px;
  }

  .thinbi-nav__links {
    display: none;
  }

  .thinbi-nav__hamburger {
    display: flex;
  }

  .thinbi-nav__logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }

  /* Hero */
  .thinbi-hero {
    min-height: auto;
    padding: 60px 20px 48px;
  }

  .thinbi-hero__inner {
    flex-direction: column;
  }

  .thinbi-hero__heading {
    font-size: 52px;
  }

  .thinbi-hero__visual {
    display: none;
  }

  .thinbi-hero__buttons {
    flex-direction: column;
    width: 100%;
  }

  .thinbi-hero__buttons .btn {
    width: 100%;
  }

  /* Trust boxes */
  .thinbi-trust__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Product range — swipe on mobile */
  .thinbi-range__desktop {
    display: none;
  }

  .thinbi-range__mobile {
    display: block;
  }

  .thinbi-range__mobile .thinbi-product-card,
  .thinbi-range__mobile .thinbi-view-all-card {
    height: 100%;
    min-height: 380px;
  }

  /* S&S strip */
  .thinbi-ss-strip {
    flex-direction: column;
    margin: 0 20px;
    padding: 28px 24px;
    text-align: center;
    align-items: center;
  }

  .thinbi-ss-strip__perks {
    flex-wrap: wrap;
    justify-content: center;
  }

  /* Split sections — merge into one card on mobile */
  .thinbi-split-section {
    padding: 20px 20px;
  }

  .thinbi-split {
    grid-template-columns: 1fr;
    gap: 0;
    min-height: auto;
    background: var(--thinbi-grey-50);
    border-radius: var(--radius);
    overflow: hidden;
  }

  .thinbi-split__image {
    order: -1;
    min-height: 260px;
    border-radius: 0;
  }

  .thinbi-split__image img {
    border-radius: 0;
  }

  .thinbi-split__text {
    padding: 32px 24px;
    border-radius: 0;
  }

  /* Video testimonials */
  .thinbi-videos__grid {
    grid-template-columns: 1fr;
  }

  /* Reviews */
  .thinbi-reviews__grid {
    grid-template-columns: 1fr;
  }

  /* Ambassador */
  .thinbi-ambassador {
    flex-direction: column;
    margin: 0 20px;
    padding: 32px 24px;
  }

  .thinbi-ambassador__visual {
    order: -1;
  }

  /* Final CTA */
  .thinbi-final-cta__heading {
    font-size: 36px;
  }

  /* Footer */
  .thinbi-footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }

  .thinbi-footer__bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  /* Section padding */
  .thinbi-section,
  .thinbi-videos,
  .thinbi-reviews {
    padding: var(--section-pad-mobile);
  }
  .thinbi-trust {
    padding: 32px 20px 12px;
  }
  .thinbi-range {
    padding: 8px 20px 32px;
  }

  /* PDP: single column */
  .pdp-two-col {
    grid-template-columns: 1fr;
    padding: 16px;
    gap: 16px;
  }

  .gallery-col {
    position: static;
    height: auto;
    max-height: none;
    overflow: visible;
  }

  .gallery-col__main {
    aspect-ratio: 1 / 1;
    max-height: 380px;
    margin-bottom: 8px;
    border-radius: var(--radius-sm);
  }

  .gallery-col__main-img {
    padding: 12px;
  }

  .gallery-col__slider {
    margin-top: 0;
  }

  .gallery-col__slide {
    height: 200px;
  }

  .gallery-col__arrows {
    display: none;
  }

  .info-col__title {
    font-size: 26px;
  }

  .info-col__tagline {
    font-size: 14px;
  }

  /* Science banner mobile */
  .thinbi-science-banner {
    padding: 0 20px;
  }

  .thinbi-science-banner__inner {
    flex-direction: column;
    gap: 20px;
    padding: 28px 24px;
    align-items: flex-start;
  }

  /* Science stats */
  .thinbi-science__stats {
    grid-template-columns: 1fr;
  }

  .thinbi-science__stat {
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }

  .thinbi-science__stat:last-child {
    border-bottom: none;
  }

  /* Why Thinbi */
  .thinbi-why__grid {
    grid-template-columns: 1fr 1fr;
  }

  /* Cross-sell */
  .thinbi-cross-sell__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Sticky ATC on mobile */
  .thinbi-sticky-atc {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 50;
    background: var(--thinbi-black);
    padding: 12px 20px;
  }

  .thinbi-sticky-atc .thinbi-atc {
    margin-bottom: 0;
  }

  /* Pop-up */
  .thinbi-popup__discount {
    font-size: 42px;
  }

  .thinbi-popup__top {
    padding: 32px 24px 24px;
  }

  .thinbi-popup__bottom {
    padding: 24px;
  }
}

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

  .thinbi-why__grid {
    grid-template-columns: 1fr;
  }
}
