/* ============================================
   HANKYBOOK CSS VARIABLES (from wp-custom-css)
   ============================================ */
html { font-size: 100%; box-sizing: border-box; }
*, *::before, *::after { box-sizing: inherit; }
:root {
  /* TEXT SIZE SCALE */
  --text-xs: clamp(0.78rem, calc(0.79rem + -0.02vw), 0.79rem);
  --text-s: clamp(0.89rem, calc(0.87rem + 0.09vw), 0.94rem);
  --text-m: clamp(1rem, calc(0.95rem + 0.23vw), 1.13rem);
  --text-l: clamp(1.13rem, calc(1.04rem + 0.41vw), 1.35rem);
  --text-xl: clamp(1.27rem, calc(1.14rem + 0.64vw), 1.62rem);

  /* HEADING SIZE SCALE */
  --h6: clamp(0.69rem, calc(0.84rem + -0.2vw), 0.8rem);
  --h5: clamp(0.97rem, calc(1.01rem + -0.05vw), 1rem);
  --h4: clamp(1.25rem, calc(1.2rem + 0.23vw), 1.38rem);
  --h3: clamp(1.56rem, calc(1.42rem + 0.69vw), 1.94rem);
  --h2: clamp(1.95rem, calc(1.66rem + 1.45vw), 2.75rem);
  --h1: clamp(2.44rem, calc(1.92rem + 2.63vw), 3.89rem);
  --h-title: clamp(3.05rem, calc(2.16rem + 4.45vw), 5.5rem);

  /* GAP SPACING SCALE */
  --gap-xxxs: clamp(0.25rem, calc(0.14rem + 0.57vw), 0.56rem);
  --gap-xxs: clamp(0.5rem, calc(0.36rem + 0.68vw), 0.88rem);
  --gap-xs: clamp(0.75rem, calc(0.61rem + 0.68vw), 1.13rem);
  --gap-s: clamp(1rem, calc(0.75rem + 1.25vw), 1.69rem);
  --gap-m: clamp(1.5rem, calc(1.23rem + 1.36vw), 2.25rem);
  --gap-l: clamp(2rem, calc(1.5rem + 2.5vw), 3.38rem);
  --gap-xl: clamp(3rem, calc(2.45rem + 2.73vw), 4.5rem);
  --gap-xxl: clamp(4rem, calc(3rem + 5vw), 6.75rem);

  /* SECTION PADDING */
  --section-xxxs: clamp(0.38rem, calc(0.06rem + 1.59vw), 1.25rem);
  --section-xxs: clamp(0.75rem, calc(0.34rem + 2.05vw), 1.88rem);
  --section-xs: clamp(1.13rem, calc(0.63rem + 2.5vw), 2.5rem);
  --section-s: clamp(1.5rem, calc(0.68rem + 4.09vw), 3.75rem);
  --section-m: clamp(2.25rem, calc(1.25rem + 5vw), 5rem);
  --section-l: clamp(3rem, calc(1.36rem + 8.18vw), 7.5rem);
  --section-xl: clamp(4.5rem, calc(2.5rem + 10vw), 10rem);
  --section-xxl: clamp(6rem, calc(2.73rem + 16.36vw), 15rem);

  /* BRAND COLORS */
  --dark-grey: #4D4D4F;
  --cyan: #7ACBBB;
  --orange: #F79751;

  /* BRICKS THEME COLORS (from color-palettes.min.css) */
  --bricks-color-722a65: #ffffff;
  --bricks-color-87d566: #e0e0e0;
  --bricks-color-d84153: #9e9e9e;
  --bricks-color-b6b2b5: #616161;
  --bricks-color-7fa7c5: #424242;
  --bricks-color-160a66: #212121;
  --bricks-color-eqovit: #f79751;
  --bricks-color-nezdzq: #f2a97e;
  --bricks-color-qbkwfs: #a8c49e;
  --bricks-color-vrbtso: #ffb400;
  --bricks-color-vebrdd: #7acbbb;
  --bricks-color-atfqyf: #4d4d4f;

  /* BRICKS DEFAULTS */
  --bricks-border-color: #dddedf;
  --bricks-border-radius: 4px;

  /* FONTS */
  --font-display: 'Josefin Sans', sans-serif;
  --font-body: 'Open Sans', system-ui, sans-serif;
}

/* Utility classes: Text and Heading Sizes */
.wrap-balance { text-wrap: balance; }

/* ============================================
   BRICKS STRUCTURAL CLASSES
   ============================================ */
.brxe-section {
  align-items: center;
  display: flex;
  flex-direction: column;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}
.brxe-container {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  margin-left: auto;
  margin-right: auto;
  width: 1100px;
  max-width: 100%;
}
.brxe-block {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  width: 100%;
}
.brxe-heading { max-width: 100%; }
.brxe-text-basic { max-width: 100%; }

/* ============================================
   HANKYBOOK CUSTOM CLASSES (from inline CSS)
   ============================================ */

/* Home Sections */
.home-section {
  margin-bottom: var(--section-m);
}

/* Hero — Gruns style landing hero (user-provided markup) */
.hero {
  background: #FFFAF5;
  padding: var(--section-xl) var(--gap-m);
  overflow: hidden;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gap-xl);
  align-items: center;
  width: 1100px;
  max-width: 100%;
  margin: 0 auto;
}
.hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--gap-m);
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--gap-xs);
  background: #fff;
  border: 1px solid var(--bricks-border-color);
  border-radius: 100px;
  padding: var(--gap-xxs) var(--gap-s);
  font-size: var(--text-s);
  font-weight: 600;
  color: var(--dark-grey);
}
.hero-badge svg { color: #ffc107; }
.hero-content h1 {
  font-family: var(--font-display);
  font-size: var(--h1);
  font-weight: 700;
  line-height: 1.1;
  color: var(--dark-grey);
  text-wrap: balance;
  margin: 0;
}
.hero-content h1 em {
  color: var(--bricks-color-eqovit);
  font-style: normal;
}
.hero-sub {
  font-size: var(--text-l);
  color: var(--bricks-color-b6b2b5);
  line-height: 1.6;
  max-width: 480px;
  margin: 0;
}
.hero-actions {
  display: flex;
  gap: var(--gap-s);
  flex-wrap: wrap;
}
.btn-primary {
  background-color: var(--bricks-color-eqovit);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--text-m);
  padding: var(--gap-xs) var(--gap-m);
  border-radius: var(--bricks-border-radius);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  letter-spacing: 0.5px;
  border: none;
  cursor: pointer;
}
.btn-primary:hover { background-color: #f68731; }
.btn-secondary {
  background-color: transparent;
  color: var(--dark-grey);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--text-m);
  padding: var(--gap-xs) var(--gap-m);
  border-radius: var(--bricks-border-radius);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  letter-spacing: 0.5px;
  border: 1px solid var(--bricks-border-color);
  cursor: pointer;
}
.btn-secondary:hover { border-color: var(--bricks-color-eqovit); color: var(--bricks-color-eqovit); }
.hero-stats {
  display: flex;
  gap: var(--gap-l);
  margin-top: var(--gap-xs);
}
.hero-stat {
  display: flex;
  flex-direction: column;
  gap: var(--gap-xxxs);
}
.hero-stat-value {
  font-family: var(--font-display);
  font-size: var(--h3);
  font-weight: 700;
  color: var(--dark-grey);
  line-height: 1;
}
.hero-stat-label {
  font-size: var(--text-s);
  color: var(--bricks-color-b6b2b5);
}
.hero-image {
  position: relative;
}
.hero-image img {
  width: 100%;
  max-width: 520px;
  border-radius: var(--bricks-border-radius);
  object-fit: cover;
}
.hero-float {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: var(--gap-xs);
  background: #fff;
  border: 1px solid var(--bricks-border-color);
  border-radius: 100px;
  padding: var(--gap-xxs) var(--gap-s);
  font-size: var(--text-s);
  font-weight: 600;
  color: var(--dark-grey);
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}
.hero-float-1 { top: 10%; left: -20px; }
.hero-float-2 { bottom: 15%; right: -10px; }

/* Headings — landing page uses centered/default alignment, not homepage right-align */
.benefits-section .h2,
.reviews-section .h2,
.faq-section .h2,
.buybox-section .h2 {
  text-align: center;
  text-transform: capitalize;
  color: var(--bricks-color-eqovit);
}

/* Shop Now Button */

/* Features List */

/* ============================================
   LANDING PAGE SPECIFIC STYLES
   ============================================ */
body {
  font-family: var(--font-body);
  color: var(--dark-grey);
  background: #fff;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  margin: 0;
}

/* Proof Strip */
.proof-strip {
  background-color: var(--bricks-color-160a66);
  padding: var(--section-s) var(--gap-m);
  width: 100%;
}
.proof-strip__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--gap-m);
  width: 1100px;
  max-width: 100%;
  margin: 0 auto;
  text-align: center;
}
.proof-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--gap-xxxs);
}
.proof-strip__value {
  font-family: var(--font-display);
  font-size: var(--h2);
  font-weight: 700;
  color: var(--bricks-color-eqovit);
}
.proof-strip__label {
  font-size: var(--text-s);
  color: var(--bricks-color-d84153);
}

/* Reviews */
.reviews-section {
  padding: var(--section-m) var(--gap-m);
  width: 100%;
}
.reviews-section__inner {
  width: 1100px;
  max-width: 100%;
  margin: 0 auto;
}
.reviews-section__header {
  text-align: center;
  margin-bottom: var(--gap-xl);
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap-m);
}
.review-card {
  background: #fff;
  border: 1px solid var(--bricks-border-color);
  border-radius: var(--bricks-border-radius);
  padding: var(--gap-m);
  display: flex;
  flex-direction: column;
  gap: var(--gap-s);
}
.review-card__stars { color: #ffc107; letter-spacing: 2px; }
.review-card__text {
  font-size: var(--text-s);
  line-height: 1.7;
  flex: 1;
}
.review-card__author {
  display: flex;
  align-items: center;
  gap: var(--gap-xs);
  padding-top: var(--gap-xs);
  border-top: 1px solid var(--bricks-border-color);
}
.review-card__name {
  font-weight: 600;
  font-size: var(--text-s);
}
.review-card__verified {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: var(--text-xs);
  color: var(--bricks-color-d84153);
}
.review-card__verified svg {
  flex-shrink: 0;
}

/* FAQ */
.faq-section {
  padding: var(--section-m) var(--gap-m);
  width: 100%;
}
.faq-section__inner {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  box-sizing: border-box;
}
.faq-section__header {
  text-align: center;
  margin-bottom: var(--gap-xl);
}
.faq-item {
  border-bottom: 1px solid var(--bricks-border-color);
  width: 100%;
}
.faq-question {
  width: 100%;
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--gap-s) 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: var(--text-m);
  font-weight: 600;
  color: var(--dark-grey);
  text-align: left;
  line-height: 1.4;
  min-height: 56px;
}
.faq-question::after {
  content: '+';
  font-size: var(--text-xl);
  font-weight: 300;
  color: var(--bricks-color-eqovit);
  transition: transform 0.2s;
}
.faq-item.open .faq-question::after { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq-item.open .faq-answer { max-height: 300px; }
.faq-answer p {
  padding-bottom: var(--gap-s);
  color: var(--bricks-color-b6b2b5);
  line-height: 1.7;
}

/* Buy Box — Product Gallery */
.buybox-section {
  background: #ffffff;
  border-top: 1px solid var(--bricks-border-color);
  border-bottom: 1px solid var(--bricks-border-color);
  padding: var(--section-m) var(--gap-m);
  width: 100%;
  overflow: hidden;
}
.buybox-section__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gap-xl);
  align-items: start;
  width: 1100px;
  max-width: 100%;
  margin: 0 auto;
}

/* Gallery (left) */
.product-gallery {
  display: flex;
  flex-direction: column;
  gap: var(--gap-s);
}
.gallery-main {
  width: 100%;
  aspect-ratio: 1 / 1;
  background: var(--bricks-color-722a65);
  border-radius: var(--bricks-border-radius);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--bricks-border-color);
  position: relative;
}
.gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.9);
  border: 1px solid var(--bricks-border-color);
  color: var(--dark-grey);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
  opacity: 0;
  transition: opacity 0.2s, background 0.2s;
  padding: 0;
}
.gallery-main:hover .gallery-nav { opacity: 1; }
.gallery-nav:hover { background: #fff; }
.gallery-nav--prev { left: var(--gap-xs); }
.gallery-nav--next { right: var(--gap-xs); }
.gallery-thumbs-wrapper {
  display: flex;
  align-items: center;
  gap: var(--gap-xs);
}
.gallery-thumbs {
  display: flex;
  gap: var(--gap-xs);
  overflow: hidden;
  flex: 1;
}
.gallery-thumbs-nav {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--bricks-color-722a65);
  border: 1px solid var(--bricks-border-color);
  color: var(--dark-grey);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s, opacity 0.2s;
  padding: 0;
  opacity: 0.5;
}
.gallery-thumbs-nav:hover { background: var(--bricks-color-eqovit); color: #fff; opacity: 1; }
.gallery-thumbs-nav:disabled { opacity: 0.2; cursor: not-allowed; }
.gallery-thumb {
  width: calc(25% - var(--gap-xs) * 3 / 4);
  min-width: 72px;
  aspect-ratio: 1 / 1;
  flex-shrink: 0;
  border-radius: var(--bricks-border-radius);
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  background: var(--bricks-color-722a65);
  opacity: 0.6;
  transition: opacity 0.2s, border-color 0.2s;
  padding: 0;
}
.gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.gallery-thumb.active {
  border-color: var(--bricks-color-eqovit);
  opacity: 1;
}
.gallery-thumb:hover { opacity: 1; }

/* Product info (right) */
.product-info {
  display: flex;
  flex-direction: column;
  gap: var(--gap-s);
}
.product-stars-row {
  display: flex;
  align-items: center;
  gap: var(--gap-xs);
  flex-wrap: wrap;
}
.product-stars {
  display: flex;
  gap: 2px;
  color: var(--bricks-color-vrbtso);
}
.product-stars svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}
.product-rating-text {
  font-size: var(--text-s);
  color: var(--bricks-color-b6b2b5);
}
.product-name {
  font-family: var(--font-display);
  font-size: var(--h3);
  font-weight: 700;
  color: var(--dark-grey);
  line-height: 1.2;
}
.product-subhead {
  font-size: var(--text-m);
  font-weight: 600;
  color: var(--dark-grey);
  line-height: 1.5;
}
.product-benefits-inline {
  font-size: var(--text-s);
  color: var(--bricks-color-b6b2b5);
  line-height: 1.6;
}
.product-benefits-inline strong {
  color: var(--dark-grey);
  font-weight: 600;
}

/* Quantity selector */
.quantity-selector {
  display: flex;
  flex-direction: column;
  gap: var(--gap-xs);
}
.quantity-label {
  font-family: var(--font-display);
  font-size: var(--text-s);
  font-weight: 600;
  color: var(--dark-grey);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.quantity-options {
  display: flex;
  gap: var(--gap-xs);
  flex-wrap: wrap;
}
.quantity-option {
  min-width: 56px;
  height: 48px;
  padding: 0 var(--gap-s);
  border: 2px solid var(--bricks-border-color);
  border-radius: var(--bricks-border-radius);
  background: var(--bricks-color-722a65);
  font-family: var(--font-display);
  font-size: var(--text-m);
  font-weight: 600;
  color: var(--dark-grey);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--gap-xxxs);
  transition: border-color 0.2s, background 0.2s;
}
.quantity-option:hover { border-color: var(--bricks-color-eqovit); }
.quantity-option.selected {
  border-color: var(--bricks-color-eqovit);
  background: rgba(247, 151, 81, 0.08);
}
.quantity-option .price-tag {
  font-size: var(--text-xs);
  font-weight: 400;
  color: var(--bricks-color-b6b2b5);
}
.quantity-shipping-note {
  font-size: var(--text-xs);
  color: var(--bricks-color-b6b2b5);
  margin-top: var(--gap-xxxs);
}
.quantity-shipping-note.highlight {
  color: var(--bricks-color-vebrdd);
  font-weight: 600;
  font-size: var(--text-s);
}

/* Real quantity stepper */
.real-qty-selector {
  display: flex;
  flex-direction: column;
  gap: var(--gap-xs);
}
.real-qty-label {
  font-family: var(--font-display);
  font-size: var(--text-s);
  font-weight: 600;
  color: var(--dark-grey);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.real-qty-stepper {
  display: inline-flex;
  align-items: center;
  border: 2px solid var(--bricks-border-color);
  border-radius: var(--bricks-border-radius);
  background: var(--bricks-color-722a65);
  height: 48px;
  width: fit-content;
}
.qty-stepper-btn {
  width: 44px;
  height: 100%;
  border: none;
  background: transparent;
  color: var(--dark-grey);
  font-family: var(--font-body);
  font-size: var(--text-l);
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s;
  user-select: none;
}
.qty-stepper-btn:hover {
  background: rgba(247, 151, 81, 0.08);
  color: var(--bricks-color-eqovit);
}
.qty-stepper-btn:active {
  background: rgba(247, 151, 81, 0.16);
}
.qty-stepper-value {
  min-width: 48px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: var(--text-m);
  font-weight: 700;
  color: var(--dark-grey);
  border-left: 2px solid var(--bricks-border-color);
  border-right: 2px solid var(--bricks-border-color);
}

/* Style selector */
.style-selector {
  display: flex;
  flex-direction: column;
  gap: var(--gap-xs);
}
.style-label {
  font-family: var(--font-display);
  font-size: var(--text-s);
  font-weight: 600;
  color: var(--dark-grey);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.style-options {
  display: flex;
  gap: var(--gap-xs);
  flex-wrap: wrap;
}
.style-option {
  padding: var(--gap-xs) var(--gap-s);
  border: 2px solid var(--bricks-border-color);
  border-radius: var(--bricks-border-radius);
  background: var(--bricks-color-722a65);
  font-family: var(--font-body);
  font-size: var(--text-s);
  font-weight: 600;
  color: var(--dark-grey);
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  text-align: center;
}
.style-option:hover { border-color: var(--bricks-color-eqovit); }
.style-option.selected {
  border-color: var(--bricks-color-eqovit);
  background: rgba(247, 151, 81, 0.08);
}

/* Price display */
.product-price-display {
  font-family: var(--font-display);
  font-size: var(--h2);
  font-weight: 700;
  color: var(--dark-grey);
  line-height: 1;
}
.product-price-display .price-unit {
  font-size: var(--text-m);
  font-weight: 400;
  color: var(--bricks-color-b6b2b5);
}

/* Buy button */
.buy-now-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--gap-xs);
  width: 100%;
  min-height: 56px;
  padding: var(--gap-xs) var(--gap-l);
  background: var(--bricks-color-eqovit);
  color: #fff;
  font-family: var(--font-display);
  font-size: var(--text-l);
  font-weight: 700;
  text-decoration: none;
  border-radius: var(--bricks-border-radius);
  border: none;
  cursor: pointer;
  letter-spacing: 0.5px;
  transition: background 0.2s, transform 0.1s;
  text-align: center;
}
.buy-now-btn:hover {
  background: var(--bricks-color-nezdzq);
  transform: translateY(-1px);
}
.buy-now-btn:active { transform: translateY(0); }

/* Benefits numbered sections */
.benefits-section {
  padding: var(--section-m) var(--gap-m);
  width: 100%;
}
.benefits-section__inner {
  width: 1100px;
  max-width: 100%;
  margin: 0 auto;
}
.benefit-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gap-xl);
  align-items: center;
  padding: var(--section-m) 0;
  border-bottom: 1px solid var(--bricks-border-color);
}
.benefit-row:last-child { border-bottom: none; }
.benefit-row--reverse .benefit-content { order: 2; }
.benefit-row--reverse .benefit-visual { order: 1; }
.benefit-number {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 4.5rem);
  font-weight: 300;
  color: var(--bricks-color-eqovit);
  opacity: 0.3;
  line-height: 1;
  margin-bottom: var(--gap-xs);
}
.benefit-label {
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--bricks-color-vebrdd);
  margin-bottom: var(--gap-xs);
}
.benefit-content h2 {
  font-family: var(--font-display);
  font-size: var(--h3);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: var(--gap-s);
  color: var(--dark-grey);
}
.benefit-content p {
  font-size: var(--text-m);
  color: var(--bricks-color-b6b2b5);
  line-height: 1.7;
}
.benefit-visual img {
  width: 100%;
  max-width: 500px;
  border-radius: var(--bricks-border-radius);
  object-fit: cover;
}
.benefit-stat {
  display: inline-flex;
  align-items: center;
  gap: var(--gap-xs);
  background: rgba(122, 203, 187, 0.15);
  color: var(--bricks-color-vebrdd);
  font-size: var(--text-s);
  font-weight: 600;
  padding: var(--gap-xxxs) var(--gap-xs);
  border-radius: var(--bricks-border-radius);
  margin-top: var(--gap-s);
}

/* Reviews Widget */
.reviews-widget-actions {
  text-align: center;
  margin-top: var(--gap-xl);
}
.reviews-load-btn {
  background: transparent;
  color: var(--dark-grey);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--text-m);
  padding: var(--gap-xs) var(--gap-m);
  border-radius: var(--bricks-border-radius);
  border: 1px solid var(--bricks-border-color);
  cursor: pointer;
  letter-spacing: 0.5px;
  text-decoration: none;
}
.reviews-load-btn:hover {
  border-color: var(--bricks-color-eqovit);
  color: var(--bricks-color-eqovit);
}
.reviews-widget {
  display: none;
  margin-top: var(--gap-xl);
  padding: var(--gap-l);
  background: var(--bricks-color-87d566);
  border-radius: var(--bricks-border-radius);
  text-align: center;
}
.reviews-widget.active { display: block; }
.reviews-widget__placeholder {
  color: var(--bricks-color-b6b2b5);
  font-size: var(--text-s);
}
.reviews-widget__placeholder code {
  background: #fff;
  padding: 2px 6px;
  border-radius: 3px;
  font-family: ui-monospace, Menlo, monospace;
  font-size: 0.9em;
}

/* ============================================
   STICKY BAR — Desktop: top / Mobile: bottom
   ============================================ */
.sticky-bar {
  position: fixed;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: #FFF5EB;
  transform: translateY(-100%);
  transition: transform 0.35s ease;
  display: flex;
  align-items: center;

  /* Desktop: top bar */
  top: 0;
  border-bottom: 1px solid var(--bricks-border-color);
  height: clamp(56px, 5vw, 70px);
}
.sticky-bar.visible {
  transform: translateY(0);
}
.sticky-bar__inner {
  width: 1100px;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 var(--gap-m);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--gap-s);
}
.sticky-bar__logo {
  height: clamp(28px, 3vw, 40px);
  width: auto;
  display: block;
}
.sticky-bar__trust {
  display: flex;
  align-items: center;
  gap: var(--gap-xs);
  font-size: var(--text-s);
  color: var(--dark-grey);
  flex-wrap: wrap;
  justify-content: center;
}
.sticky-bar__trust--mobile {
  display: none;
}
.sticky-bar__stars {
  color: #ffc107;
  letter-spacing: 1px;
}
.sticky-bar__rating {
  font-weight: 600;
}
.sticky-bar__sep {
  color: var(--bricks-color-d84153);
  font-size: 0.6em;
}
.sticky-bar__cta {
  background: var(--bricks-color-eqovit);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--text-s);
  padding: var(--gap-xxs) var(--gap-s);
  border-radius: var(--bricks-border-radius);
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  letter-spacing: 0.5px;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.sticky-bar__cta:hover {
  background: #f68731;
}

/* Mobile: switch to bottom bar */
@media (max-width: 767px) {
  .sticky-bar {
    top: auto;
    bottom: 0;
    border-bottom: none;
    border-top: 1px solid var(--bricks-border-color);
    transform: translateY(100%);
    height: 120px;
    padding: var(--gap-xs) var(--gap-s);
    align-items: stretch;
  }
  .sticky-bar.visible {
    transform: translateY(0);
  }
  .sticky-bar__inner {
    padding: 0;
    gap: var(--gap-xs);
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
  }
  .sticky-bar__logo {
    display: none;
  }
  .sticky-bar__trust--desktop {
    display: none;
  }
  .sticky-bar__trust--mobile {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--gap-s);
    font-size: var(--text-xs);
    color: var(--dark-grey);
  }
  .sticky-bar__stars {
    font-size: var(--text-l);
    letter-spacing: 2px;
  }
  .sticky-bar__stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1.2;
  }
  .sticky-bar__stat-top {
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--bricks-color-eqovit);
    font-size: var(--text-xs);
  }
  .sticky-bar__stat-bottom {
    font-family: var(--font-body);
    color: var(--dark-grey);
    font-size: var(--text-xs);
  }
  .sticky-bar__cta {
    order: -1;
    width: 100%;
    min-height: 60px;
    font-size: var(--text-l);
    padding: var(--gap-xs) var(--gap-s);
    white-space: nowrap;
    max-width: none;
    text-align: center;
    line-height: 1.2;
  }
}

@media (max-width: 478px) {
  .sticky-bar__reviews {
    display: none;
  }
  .sticky-bar__trust {
    gap: var(--gap-xxxs);
  }
}

/* Mobile menu overlay */

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 991px) {
  .home-hero { background-position: center center; }
}

@media (max-width: 767px) {
  .brxe-container { flex-wrap: wrap; }
  .brxe-block { flex-wrap: wrap; }
  .home-hero {
    background-position: 30% 50%;
    height: 100vh;
  }
  .home-benefits__card { max-width: 100%; }
  .home-benefits__icon { font-size: 1.3rem; }
  .home-benefits__card__heading { font-size: var(--h5); }
  .home-benefits__card__text { margin-left: 28px; }
  .hero { padding: var(--section-m) var(--gap-m); }
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-content { align-items: center; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-image { order: -1; }
  .hero-image img { margin: 0 auto; max-width: 360px; }
  .hero-float {
    display: inline-flex;
    font-size: var(--text-xs);
    padding: var(--gap-xxxs) var(--gap-xs);
  }
  .hero-float-1 { top: 8%; left: 8px; }
  .hero-float-2 { bottom: 10%; right: 8px; }
  .proof-strip__inner { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: 1fr; }
  .buybox-section { padding: var(--section-m) 0; }
  .buybox-section__inner { grid-template-columns: 1fr; }
  .product-gallery { width: 100%; }
  .product-info { align-items: center; text-align: center; padding: 0 var(--gap-m); }
  .product-stars-row { justify-content: center; }
  .quantity-options { justify-content: center; }
  .style-options { justify-content: center; }
  .gallery-thumb { min-width: 60px; width: calc(25% - var(--gap-xs) * 3 / 4); }
  .gallery-nav { opacity: 1; }
  .gallery-thumbs-nav { display: none; }
  .benefit-row {
    grid-template-columns: 1fr;
    text-align: center;
    gap: var(--gap-m);
    padding: var(--section-s) 0;
  }
  .benefit-content { display: contents; }
  .benefit-number { order: 1; margin-bottom: 0; }
  .benefit-label { order: 2; margin-bottom: 0; }
  .benefit-content h2 { order: 3; }
  .benefit-row .benefit-visual {
    order: 4;
    margin: 0 auto;
  }
  .benefit-visual img {
    margin: 0 auto;
    max-width: 280px;
    aspect-ratio: 1 / 1;
    object-fit: cover;
  }
  .benefit-content p { order: 5; }
  .benefit-stat { order: 6; }
  .gallery-thumbs {
    padding: 0 var(--gap-xs);
  }
}


@media (max-width: 478px) {
  .home-hero { height: 60vh; }
  .proof-strip__inner { grid-template-columns: 1fr; }
  .shop-now {
    align-items: baseline;
    justify-content: space-between;
  }
}

/* ============================================
   SIMPLE HEADER
   ============================================ */
.simple-header {
  width: 100%;
  height: clamp(44px, 4vw, 54px);
  background-color: rgb(122, 203, 187);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--gap-m);
  box-sizing: border-box;
}
.simple-header__logo {
  height: 32px;
  width: auto;
  display: block;
}
.simple-header__account {
  font-family: var(--font-display);
  font-size: var(--text-s);
  font-weight: 600;
  color: #ffffff;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: opacity 0.2s ease;
}
.simple-header__account:hover {
  opacity: 0.85;
  text-decoration: underline;
}
@media (max-width: 478px) {
  .simple-header {
    padding: 0 var(--gap-s);
  }
  .simple-header__logo {
    height: 26px;
  }
}

/* ============================================
   FOOTER (from hankybook.com)
   ============================================ */
.footer-main {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: var(--section-m) var(--gap-m);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap-xl);
  align-items: start;
  box-sizing: border-box;
}
.footer-main > * {
  min-width: 0;
  overflow-wrap: break-word;
  word-break: break-word;
}
  .footer-column {
    text-align: center;
    align-items: center;
  }
  .footer-column__title {
    text-align: center;
    width: 100%;
  }
  .footer-column__nav {
    text-align: center;
    width: 100%;
  }
  .footer-column__nav ul {
    align-items: center;
  }
  .footer-column__post {
    text-align: center;
    justify-content: center;
    width: 100%;
  }
  .footer-column__social {
    justify-content: center;
    width: 100%;
  }
  .footer-column__text {
    text-align: center;
    width: 100%;
  }
  .footer-column__kickstarter {
    display: flex;
    justify-content: center;
    width: 100%;
  }
  .footer-headings {
    font-family: var(--font-display);
    font-size: var(--h4);
    text-transform: uppercase;
    color: var(--dark-grey);
    font-weight: 500;
    margin-bottom: var(--gap-m);
  }
.footer-nav-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--gap-xs);
}
.footer-nav-menu a {
  font-family: var(--font-body);
  font-size: var(--text-s);
  color: var(--bricks-color-atfqyf);
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 500;
  transition: color 0.2s ease;
  overflow-wrap: break-word;
  word-break: break-word;
}
.footer-nav-menu a:hover {
  color: var(--bricks-color-eqovit);
  text-decoration: underline;
}
.footer-social-icons {
  list-style: none;
  padding: 0;
  margin: var(--gap-m) 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: var(--gap-m);
}
.footer-social-icons a {
  color: var(--bricks-color-atfqyf);
  font-size: var(--text-l);
  text-decoration: none;
  transition: color 0.2s ease;
}
.footer-social-icons a:hover {
  color: var(--bricks-color-eqovit);
}
  .footer-latest-posts {
    color: var(--dark-grey);
    font-size: var(--text-s);
    margin-bottom: var(--gap-xs);
    display: block;
    min-width: 0;
  }
  .footer-latest-posts a {
    color: var(--dark-grey);
    text-decoration: none;
    transition: color 0.2s ease;
    overflow-wrap: break-word;
    word-break: break-word;
    display: inline;
  }
  .footer-latest-posts a:hover {
    color: var(--bricks-color-eqovit);
    text-decoration: underline;
  }
.footer-mission {
  color: var(--bricks-color-atfqyf);
  font-size: var(--text-m);
  line-height: 1.6;
  margin-bottom: var(--gap-m);
  overflow-wrap: break-word;
  word-break: break-word;
}
.footer-kickstarter {
  max-width: 100px;
  width: 100%;
  height: auto;
  display: block;
}
.footer-copyright {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: var(--gap-m) var(--gap-m) var(--section-m);
  font-size: var(--text-xs);
  color: var(--bricks-color-b6b2b5);
  text-align: center;
  box-sizing: border-box;
  overflow-wrap: break-word;
}
@media (max-width: 767px) {
  .footer-newsletter-container {
    padding: var(--gap-m) var(--gap-s);
  }
  .footer-main {
    grid-template-columns: 1fr;
    gap: var(--gap-xl);
    text-align: center;
    padding: var(--section-s) var(--gap-s);
  }
  .footer-main > * {
    width: 100%;
  }
  .footer-nav-menu ul {
    align-items: center;
  }
  .footer-social-icons {
    justify-content: center;
  }
  .footer-latest-posts {
    justify-content: center;
    text-align: center;
  }
  .footer-newsletter__form .form-group {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }
  .footer-newsletter__form input[type="email"] {
    width: 100%;
    min-width: 0;
  }
  .footer-copyright {
    padding: var(--gap-m) var(--gap-s);
  }
}
