:root {
  --rbh-ink: #28332d;
  --rbh-green-950: #193a2d;
  --rbh-green-900: #214838;
  --rbh-green-800: #315f4b;
  --rbh-green-700: #477760;
  --rbh-green-600: #669078;
  --rbh-lime: #c5d6a4;
  --rbh-gold: #a9772e;
  --rbh-gold-light: #f0d9a7;
  --rbh-mist: #edf2ed;
  --rbh-soft: #f8f5ee;
  --rbh-cream: #fcfaf5;
  --rbh-sand: #eee4d3;
  --rbh-white: #ffffff;
  --rbh-muted: #69736d;
  --rbh-border: #e7e2d9;
  --rbh-shadow: 0 24px 70px rgba(46, 55, 49, 0.1);
  --rbh-radius: 28px;
  --rbh-shell: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body.rbh-store {
  margin: 0;
  color: var(--rbh-ink);
  background: var(--rbh-cream);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.rbh-store img {
  display: block;
  max-width: 100%;
  height: auto;
}

body.rbh-store a {
  color: inherit;
  text-decoration: none;
}

body.rbh-store button,
body.rbh-store input,
body.rbh-store select,
body.rbh-store textarea {
  font: inherit;
}

.rbh-shell {
  width: min(calc(100% - 40px), var(--rbh-shell));
  margin-inline: auto;
}

.rbh-skip-link {
  position: fixed;
  z-index: 9999;
  top: 12px;
  left: 12px;
  transform: translateY(-150%);
  padding: 10px 16px;
  border-radius: 10px;
  color: white;
  background: var(--rbh-green-900);
}

.rbh-skip-link:focus {
  transform: translateY(0);
}

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

.rbh-announcement {
  color: #fffaf0;
  background: #283a31;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.rbh-announcement-inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-block: 8px;
}

.rbh-header {
  position: sticky;
  z-index: 1000;
  top: 0;
  border-bottom: 1px solid transparent;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(18px);
  transition: box-shadow 180ms ease, border-color 180ms ease;
}

.rbh-header.is-scrolled {
  border-color: var(--rbh-border);
  box-shadow: 0 12px 40px rgba(16, 38, 25, 0.08);
}

.rbh-header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  min-height: 82px;
  gap: 28px;
}

.rbh-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  line-height: 1;
}

.rbh-brand img {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

.rbh-brand span {
  display: grid;
  gap: 5px;
}

.rbh-brand strong {
  color: #17301f;
  font-size: 1.16rem;
  letter-spacing: 0.035em;
}

.rbh-brand small {
  color: var(--rbh-gold);
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.rbh-nav {
  justify-self: center;
}

.rbh-menu {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.4vw, 34px);
  margin: 0;
  padding: 0;
  list-style: none;
}

.rbh-menu a {
  position: relative;
  display: block;
  color: #294032;
  font-size: 0.92rem;
  font-weight: 750;
}

.rbh-menu a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  content: "";
  transform: scaleX(0);
  background: var(--rbh-gold);
  transition: transform 160ms ease;
}

.rbh-menu a:hover::after,
.rbh-menu a:focus-visible::after {
  transform: scaleX(1);
}

.rbh-header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.rbh-whatsapp-small {
  padding: 9px 14px;
  border: 1px solid #bcd4bc;
  border-radius: 999px;
  color: var(--rbh-green-800);
  font-size: 0.84rem;
  font-weight: 800;
}

.rbh-cart-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 40px;
  padding: 8px 12px;
  border-radius: 999px;
  color: white;
  background: var(--rbh-green-900);
  font-size: 0.84rem;
  font-weight: 800;
}

.rbh-cart-count {
  display: inline-grid;
  place-items: center;
  min-width: 20px;
  height: 20px;
  border-radius: 999px;
  color: var(--rbh-green-950);
  background: var(--rbh-gold-light);
  font-size: 0.7rem;
}

.rbh-menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 10px;
  border: 0;
  border-radius: 12px;
  background: var(--rbh-mist);
}

.rbh-menu-toggle > span:not(.screen-reader-text) {
  display: block;
  width: 100%;
  height: 2px;
  margin: 4px 0;
  background: var(--rbh-green-900);
}

.rbh-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background:
    radial-gradient(circle at 86% 22%, rgba(213, 196, 153, 0.3), transparent 28%),
    radial-gradient(circle at 8% 90%, rgba(164, 119, 53, 0.1), transparent 25%),
    linear-gradient(128deg, #fffdf8 0%, #f6f1e7 52%, #fff 100%);
}

.rbh-hero::before {
  position: absolute;
  z-index: -1;
  top: -180px;
  right: -120px;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(19, 84, 46, 0.12);
  border-radius: 50%;
  content: "";
}

.rbh-hero-grid {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  align-items: center;
  min-height: 650px;
  gap: clamp(20px, 4vw, 70px);
  padding-block: 62px 74px;
}

.rbh-eyebrow,
.rbh-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--rbh-green-700);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.rbh-eyebrow::before,
.rbh-kicker::before {
  width: 28px;
  height: 2px;
  content: "";
  background: var(--rbh-gold);
}

.rbh-hero h1 {
  max-width: 720px;
  margin: 18px 0;
  color: var(--rbh-green-950);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 5.2vw, 5rem);
  font-weight: 700;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.rbh-lead {
  max-width: 620px;
  margin: 0 0 22px;
  color: #4b5e50;
  font-size: clamp(1rem, 1.4vw, 1.18rem);
}

.rbh-hero-price {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin: 18px 0 24px;
}

.rbh-hero-price span,
.rbh-price-large {
  color: var(--rbh-green-950);
  font-size: 1.6rem;
  font-weight: 900;
}

.rbh-hero-price del,
.rbh-price-large del,
.woocommerce div.product p.price del,
.woocommerce div.product span.price del {
  color: #88948c;
  font-size: 0.75em;
  font-weight: 650;
}

.rbh-hero-price ins,
.rbh-price-large ins,
.woocommerce div.product p.price ins,
.woocommerce div.product span.price ins {
  color: var(--rbh-green-700);
  text-decoration: none;
}

.rbh-hero-price small {
  color: var(--rbh-muted);
  font-size: 0.78rem;
}

.rbh-hero-actions,
.rbh-buy-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.rbh-button,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 12px 22px;
  border: 1px solid transparent;
  border-radius: 14px;
  font-size: 0.92rem;
  font-weight: 850;
  line-height: 1.2;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.rbh-button:hover,
.rbh-button:focus-visible,
.woocommerce a.button:hover,
.woocommerce button.button:hover {
  transform: translateY(-2px);
}

.rbh-button-primary,
.woocommerce a.button.alt,
.woocommerce button.button.alt,
.woocommerce button.button,
.woocommerce a.button {
  color: white !important;
  background: linear-gradient(135deg, var(--rbh-green-800), var(--rbh-green-950)) !important;
  box-shadow: 0 14px 28px rgba(13, 62, 37, 0.2);
}

.rbh-button-secondary {
  border-color: #b8c7bd;
  color: var(--rbh-green-950);
  background: white;
  box-shadow: 0 10px 24px rgba(40, 51, 45, 0.08);
}

.rbh-button-secondary:hover,
.rbh-button-secondary:focus-visible {
  border-color: var(--rbh-green-700);
  background: #f7faf7;
}

.rbh-button-primary:hover,
.woocommerce a.button.alt:hover,
.woocommerce button.button.alt:hover {
  box-shadow: 0 18px 34px rgba(13, 62, 37, 0.26);
}

.rbh-button-ghost {
  border-color: #b8cdb8;
  color: var(--rbh-green-900);
  background: rgba(255, 255, 255, 0.72);
}

.rbh-button-light {
  color: var(--rbh-green-950);
  background: white;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.16);
}

.rbh-text-link {
  color: var(--rbh-green-700);
  font-size: 0.9rem;
  font-weight: 850;
  text-decoration: underline;
  text-decoration-color: #afc6aa;
  text-underline-offset: 5px;
}

.rbh-mini-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin-top: 24px;
  color: #4e6253;
  font-size: 0.78rem;
  font-weight: 750;
}

.rbh-mini-trust span::before {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 8px;
  border-radius: 50%;
  content: "";
  background: var(--rbh-green-600);
}

.rbh-hero-visual {
  position: relative;
  justify-self: center;
  width: min(100%, 560px);
}

.rbh-hero-visual > img {
  position: relative;
  z-index: 2;
  width: 100%;
  border-radius: 50%;
  filter: drop-shadow(0 28px 30px rgba(16, 58, 33, 0.14));
}

.rbh-hero-orbit {
  position: absolute;
  inset: 7%;
  z-index: 1;
  border: 1px solid rgba(181, 144, 47, 0.42);
  border-radius: 50%;
  box-shadow: 0 0 0 34px rgba(255, 255, 255, 0.36), 0 0 0 35px rgba(45, 135, 68, 0.1);
}

.rbh-hero-badge {
  position: absolute;
  z-index: 4;
  right: 1%;
  bottom: 14%;
  display: grid;
  place-items: center;
  width: 112px;
  height: 112px;
  border: 6px solid white;
  border-radius: 50%;
  color: var(--rbh-green-950);
  background: var(--rbh-gold-light);
  box-shadow: 0 18px 40px rgba(28, 61, 38, 0.2);
  text-align: center;
  transform: rotate(-7deg);
}

.rbh-hero-badge strong {
  align-self: end;
  font-size: 1rem;
  line-height: 1;
}

.rbh-hero-badge span {
  align-self: start;
  font-size: 0.72rem;
  font-weight: 750;
}

.rbh-proof-strip {
  color: var(--rbh-ink);
  border-block: 1px solid var(--rbh-border);
  background: #f5efe3;
}

.rbh-proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.rbh-proof-grid > div {
  display: grid;
  gap: 3px;
  padding: 22px 24px;
  border-left: 1px solid #ddd2bf;
}

.rbh-proof-grid > div:last-child {
  border-right: 1px solid #ddd2bf;
}

.rbh-proof-grid strong {
  color: var(--rbh-green-900);
  font-size: 0.94rem;
  letter-spacing: 0.02em;
}

.rbh-proof-grid span {
  color: #766e62;
  font-size: 0.77rem;
}

.rbh-section {
  padding-block: clamp(72px, 8vw, 112px);
}

.rbh-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(42px, 7vw, 94px);
}

.rbh-product-focus {
  background: var(--rbh-cream);
}

.rbh-product-card {
  position: relative;
  padding: clamp(18px, 4vw, 46px);
  border: 1px solid var(--rbh-border);
  border-radius: var(--rbh-radius);
  background:
    radial-gradient(circle at 50% 40%, rgba(221, 207, 175, 0.34), transparent 46%),
    #f9f6ef;
  box-shadow: var(--rbh-shadow);
}

.rbh-product-card img {
  width: 100%;
  border-radius: 22px;
}

.rbh-product-carousel {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  touch-action: pan-y;
}

.rbh-slider-track {
  position: relative;
  aspect-ratio: 1 / 1;
}

.rbh-product-slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  transform: translateX(18px) scale(0.985);
  transition: opacity 420ms ease, transform 420ms ease;
  pointer-events: none;
}

.rbh-product-slide.is-active {
  opacity: 1;
  transform: translateX(0) scale(1);
  pointer-events: auto;
}

.rbh-product-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.rbh-slider-arrow {
  position: absolute;
  z-index: 4;
  top: 50%;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid rgba(40, 51, 45, 0.13);
  border-radius: 50%;
  color: var(--rbh-green-950);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 8px 24px rgba(35, 43, 38, 0.12);
  cursor: pointer;
  font-size: 1.8rem;
  line-height: 1;
  transform: translateY(-50%);
}

.rbh-slider-prev { left: 12px; }
.rbh-slider-next { right: 12px; }

.rbh-slider-dots {
  position: absolute;
  z-index: 4;
  right: 0;
  bottom: 12px;
  left: 0;
  display: flex;
  justify-content: center;
  gap: 7px;
}

.rbh-slider-dots button {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 99px;
  background: #aaa69c;
  cursor: pointer;
  transition: width 180ms ease, background 180ms ease;
}

.rbh-slider-dots button.is-active {
  width: 24px;
  background: var(--rbh-green-800);
}

.rbh-sale-pill {
  position: absolute;
  z-index: 3;
  top: 22px;
  left: 22px;
  padding: 7px 12px;
  border-radius: 999px;
  color: white;
  background: var(--rbh-green-800);
  font-size: 0.76rem;
  font-weight: 850;
}

.rbh-product-copy h2,
.rbh-section-heading h2,
.rbh-routine-copy h2,
.rbh-quality-copy h2,
.rbh-faq-layout h2,
.rbh-final-cta h2,
.rbh-page-hero h1 {
  margin: 10px 0 18px;
  color: var(--rbh-green-950);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.15rem, 4vw, 3.65rem);
  letter-spacing: -0.035em;
  line-height: 1.05;
}

.rbh-product-copy > p {
  color: var(--rbh-muted);
}

.rbh-rating {
  margin-bottom: 14px;
  color: var(--rbh-gold);
  font-size: 0.82rem;
  font-weight: 800;
}

.rbh-price-large {
  margin: 10px 0 16px;
  font-size: 1.85rem;
}

.rbh-check-list {
  display: grid;
  gap: 10px;
  margin: 22px 0 28px;
  padding: 0;
  list-style: none;
}

.rbh-check-list li {
  position: relative;
  padding-left: 28px;
  color: #344c3b;
}

.rbh-check-list li::before {
  position: absolute;
  top: 5px;
  left: 0;
  display: grid;
  place-items: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  color: white;
  background: var(--rbh-green-600);
  content: "✓";
  font-size: 0.66rem;
  font-weight: 900;
}

.rbh-small-note {
  margin-top: 20px;
  padding: 13px 15px;
  border-left: 3px solid var(--rbh-gold);
  color: #637267 !important;
  background: #f8faf5;
  font-size: 0.78rem;
}

.rbh-product-details-link {
  display: inline-block;
  margin-top: 20px;
}

.rbh-ingredients-section {
  border-block: 1px solid var(--rbh-border);
  background: #f1ede4;
}

.rbh-section-heading {
  max-width: 760px;
  margin: 0 auto 44px;
  text-align: center;
}

.rbh-ingredients-section .rbh-kicker,
.rbh-ingredients-section .rbh-section-heading h2 {
  color: var(--rbh-green-950);
}

.rbh-ingredients-section .rbh-section-heading p {
  color: var(--rbh-muted);
}

.rbh-ingredient-layout {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  align-items: center;
  gap: 34px;
}

.rbh-ingredient-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.rbh-ingredient-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  min-height: 76px;
  padding: 12px 14px;
  border: 1px solid #ddd5c7;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.72);
}

.rbh-ingredient-number {
  color: var(--rbh-gold);
  font-size: 0.7rem;
  font-weight: 850;
}

.rbh-ingredient-card div {
  display: grid;
}

.rbh-ingredient-card strong {
  color: var(--rbh-green-950);
  font-size: 0.9rem;
}

.rbh-ingredient-card small {
  color: #7e857f;
  font-size: 0.66rem;
  font-style: italic;
}

.rbh-ingredient-card b {
  color: var(--rbh-green-700);
  font-size: 0.72rem;
}

.rbh-ingredient-image {
  padding: 18px;
  border: 1px solid #ddd5c7;
  border-radius: var(--rbh-radius);
  background: rgba(255, 255, 255, 0.82);
}

.rbh-ingredient-image img,
.rbh-routine-image img,
.rbh-quality-image img {
  width: 100%;
  border-radius: 20px;
}

.rbh-routine-section {
  background: #fff;
}

.rbh-two-col-reverse .rbh-routine-copy {
  order: 2;
}

.rbh-two-col-reverse .rbh-routine-image {
  order: 1;
}

.rbh-routine-image,
.rbh-quality-image {
  padding: 15px;
  border: 1px solid var(--rbh-border);
  border-radius: var(--rbh-radius);
  background: white;
  box-shadow: var(--rbh-shadow);
}

.rbh-step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  margin: 18px 0;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--rbh-border);
}

.rbh-step > span {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  color: white;
  background: var(--rbh-green-800);
  font-weight: 900;
}

.rbh-step strong {
  display: block;
  margin-bottom: 2px;
  font-size: 1.02rem;
}

.rbh-step p,
.rbh-care-box p {
  margin: 0;
  color: var(--rbh-muted);
  font-size: 0.9rem;
}

.rbh-care-box {
  margin-top: 22px;
  padding: 18px 20px;
  border: 1px solid #d6c277;
  border-radius: 16px;
  background: #fffbea;
}

.rbh-quality-section {
  background: var(--rbh-cream);
}

.rbh-quality-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 28px;
}

.rbh-quality-grid > div {
  display: grid;
  gap: 2px;
  padding: 17px;
  border: 1px solid var(--rbh-border);
  border-radius: 15px;
  background: var(--rbh-soft);
}

.rbh-quality-grid strong {
  color: var(--rbh-green-800);
  font-size: 0.9rem;
}

.rbh-quality-grid span {
  color: var(--rbh-muted);
  font-size: 0.74rem;
}

.rbh-label-section {
  background: #f3efe7;
}

.rbh-label-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  max-width: 960px;
  margin-inline: auto;
}

.rbh-label-grid figure {
  margin: 0;
  padding: 16px;
  border: 1px solid var(--rbh-border);
  border-radius: 22px;
  background: white;
  box-shadow: 0 16px 44px rgba(24, 71, 41, 0.08);
}

.rbh-label-grid img {
  width: 100%;
  border-radius: 14px;
}

.rbh-label-grid figcaption {
  padding: 14px 5px 4px;
  color: var(--rbh-muted);
  font-size: 0.82rem;
  font-weight: 700;
  text-align: center;
}

.rbh-faq-section {
  background: #fff;
}

.rbh-faq-layout {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  align-items: start;
  gap: clamp(38px, 8vw, 110px);
}

.rbh-faq-layout > div:first-child {
  position: sticky;
  top: 120px;
}

.rbh-faq-layout > div:first-child p {
  color: var(--rbh-muted);
}

.rbh-faq-list {
  display: grid;
  gap: 10px;
}

.rbh-faq-list details {
  border: 1px solid var(--rbh-border);
  border-radius: 16px;
  background: var(--rbh-soft);
}

.rbh-faq-list summary {
  position: relative;
  padding: 18px 50px 18px 20px;
  cursor: pointer;
  color: var(--rbh-green-950);
  font-weight: 850;
  list-style: none;
}

.rbh-faq-list summary::-webkit-details-marker {
  display: none;
}

.rbh-faq-list summary::after {
  position: absolute;
  top: 16px;
  right: 18px;
  content: "+";
  color: var(--rbh-green-700);
  font-size: 1.3rem;
}

.rbh-faq-list details[open] summary::after {
  content: "−";
}

.rbh-faq-list p {
  margin: 0;
  padding: 0 20px 20px;
  color: var(--rbh-muted);
  font-size: 0.9rem;
}

.rbh-final-cta {
  padding-block: 60px;
  color: white;
  background:
    linear-gradient(110deg, #3f4b44, #6c6658),
    #3f4b44;
}

.rbh-final-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.rbh-final-cta span {
  color: var(--rbh-gold-light);
  font-size: 0.8rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.rbh-final-cta h2 {
  max-width: 720px;
  margin-bottom: 10px;
  color: white;
}

.rbh-final-cta p {
  margin: 0;
  color: #c9ddce;
}

.rbh-footer {
  padding-top: 70px;
  color: #cedbd1;
  background: #25322c;
}

.rbh-footer-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.8fr 0.8fr 1.15fr;
  gap: 42px;
}

.rbh-brand-footer strong {
  color: white;
}

.rbh-footer h2 {
  margin: 4px 0 16px;
  color: white;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
}

.rbh-footer p,
.rbh-footer li,
.rbh-footer a {
  color: #a9bdaf;
  font-size: 0.82rem;
}

.rbh-footer a:hover {
  color: white;
}

.rbh-footer ul {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.rbh-disclaimer {
  margin-top: 48px;
  padding-block: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.rbh-disclaimer p {
  margin: 0;
  color: #8fa493;
  font-size: 0.74rem;
}

.rbh-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  background: #1f2a25;
}

.rbh-footer-bottom .rbh-shell {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-block: 16px;
  color: #83998a;
  font-size: 0.72rem;
}

.rbh-whatsapp-float {
  position: fixed;
  z-index: 999;
  right: 22px;
  bottom: 22px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 48px;
  padding: 10px 18px;
  border: 3px solid white;
  border-radius: 999px;
  color: white !important;
  background: #168b49;
  box-shadow: 0 12px 30px rgba(11, 69, 36, 0.28);
  font-size: 0.84rem;
  font-weight: 850;
}

.rbh-whatsapp-float::before {
  content: "●";
  color: #ddffe7;
}

.rbh-page-main,
.rbh-commerce-main {
  min-height: 60vh;
}

.rbh-page-hero {
  padding-block: 70px;
  background: linear-gradient(125deg, #f3ede2, #fff);
}

.rbh-page-hero h1 {
  margin-bottom: 0;
}

.rbh-page-content {
  max-width: 880px;
  padding-block: 65px 90px;
}

.rbh-page-content h2,
.rbh-page-content h3 {
  margin-top: 1.7em;
  color: var(--rbh-green-950);
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.15;
}

.rbh-page-content h2 {
  font-size: clamp(1.8rem, 4vw, 2.7rem);
}

.rbh-page-content p,
.rbh-page-content li {
  color: #46594c;
}

.rbh-page-content a {
  color: var(--rbh-green-700);
  font-weight: 750;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.rbh-commerce-main {
  padding-block: 64px 90px;
  background: var(--rbh-cream);
}

/* WooCommerce */
.woocommerce .woocommerce-breadcrumb {
  margin-bottom: 25px;
  color: var(--rbh-muted);
  font-size: 0.78rem;
}

.woocommerce .woocommerce-breadcrumb a {
  color: var(--rbh-green-700);
}

.woocommerce div.product {
  padding: clamp(18px, 4vw, 42px);
  border: 1px solid var(--rbh-border);
  border-radius: 24px;
  background: white;
  box-shadow: var(--rbh-shadow);
}

.woocommerce div.product .product_title,
.woocommerce-products-header__title,
.woocommerce h2 {
  color: var(--rbh-green-950);
  font-family: Georgia, "Times New Roman", serif;
}

.woocommerce div.product .product_title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.05;
}

.woocommerce div.product p.price,
.woocommerce div.product span.price {
  color: var(--rbh-green-700);
  font-size: 1.55rem;
  font-weight: 900;
}

.woocommerce div.product form.cart .button {
  min-height: 50px;
}

.woocommerce .quantity .qty {
  min-height: 50px;
  border: 1px solid var(--rbh-border);
  border-radius: 12px;
}

.woocommerce .woocommerce-tabs ul.tabs li,
.woocommerce .woocommerce-tabs ul.tabs li.active {
  border-color: var(--rbh-border) !important;
  background: var(--rbh-soft) !important;
}

.woocommerce-message,
.woocommerce-info {
  border-top-color: var(--rbh-green-600) !important;
  border-radius: 12px;
  background: var(--rbh-mist) !important;
}

.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select,
.select2-container--default .select2-selection--single {
  min-height: 48px;
  padding: 10px 12px;
  border: 1px solid #cad9ca;
  border-radius: 10px;
  background: white;
}

.woocommerce-checkout #payment {
  border: 1px solid var(--rbh-border);
  border-radius: 16px;
  background: var(--rbh-soft) !important;
}

.woocommerce table.shop_table {
  border-color: var(--rbh-border);
  border-radius: 14px;
  background: white;
}

.woocommerce ul.products li.product {
  padding: 16px 16px 20px;
  border: 1px solid var(--rbh-border);
  border-radius: 18px;
  background: white;
  box-shadow: 0 14px 38px rgba(20, 61, 36, 0.08);
}

/* Refined single-product experience */
.single-product .woocommerce div.product {
  overflow: hidden;
  padding: clamp(18px, 3.5vw, 46px);
}

.single-product .woocommerce div.product div.images {
  margin-bottom: 0;
}

.single-product .woocommerce-product-gallery__wrapper {
  overflow: hidden;
  border: 1px solid var(--rbh-border);
  border-radius: 22px;
  background:
    radial-gradient(circle at 50% 43%, rgba(225, 209, 174, 0.35), transparent 45%),
    #f9f6ef;
}

.single-product .woocommerce div.product div.images img {
  border-radius: 18px;
}

.single-product .woocommerce div.product div.images .flex-control-thumbs {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 9px;
  margin-top: 12px;
}

.single-product .woocommerce div.product div.images .flex-control-thumbs li {
  float: none;
  width: auto;
}

.single-product .woocommerce div.product div.images .flex-control-thumbs img {
  border: 2px solid transparent;
  border-radius: 11px;
  background: #f7f3eb;
  opacity: 0.66;
  transition: border-color 180ms ease, opacity 180ms ease;
}

.single-product .woocommerce div.product div.images .flex-control-thumbs img.flex-active,
.single-product .woocommerce div.product div.images .flex-control-thumbs img:hover {
  border-color: var(--rbh-gold);
  opacity: 1;
}

.single-product .woocommerce div.product .summary {
  padding-top: 12px;
}

.single-product .woocommerce div.product .woocommerce-product-details__short-description {
  color: var(--rbh-muted);
  font-size: 1rem;
}

.single-product .woocommerce div.product form.cart {
  display: flex;
  align-items: stretch;
  gap: 10px;
  margin: 26px 0 20px;
}

.single-product .woocommerce div.product form.cart::before,
.single-product .woocommerce div.product form.cart::after {
  display: none;
}

.single-product .woocommerce div.product form.cart .quantity {
  flex: 0 0 72px;
  margin: 0;
}

.single-product .woocommerce div.product form.cart .quantity .qty {
  width: 100%;
  height: 100%;
}

.single-product .woocommerce div.product form.cart .single_add_to_cart_button,
.single-product .woocommerce div.product form.cart .rbh-buy-now-button {
  flex: 1 1 160px;
  margin: 0;
}

.single-product .woocommerce div.product form.cart .single_add_to_cart_button {
  border: 1px solid #b7c7bc !important;
  color: var(--rbh-green-950) !important;
  background: #fff !important;
  box-shadow: none;
}

.single-product .woocommerce div.product form.cart .rbh-buy-now-button {
  border-color: var(--rbh-green-950) !important;
  color: #fff !important;
  background: linear-gradient(135deg, var(--rbh-green-800), var(--rbh-green-950)) !important;
  box-shadow: 0 14px 28px rgba(33, 72, 56, 0.2);
}

.single-product .woocommerce div.product .product_meta {
  padding-top: 18px;
  border-top: 1px solid var(--rbh-border);
  color: var(--rbh-muted);
  font-size: 0.78rem;
}

.single-product .woocommerce div.product .woocommerce-tabs,
.single-product .woocommerce div.product .related {
  clear: both;
  padding-top: 40px;
}

/* Blog */
.rbh-blog-preview {
  border-top: 1px solid var(--rbh-border);
  background: #f5f0e7;
}

.rbh-blog-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 36px;
}

.rbh-blog-heading h2,
.rbh-blog-hero h1,
.rbh-article-hero h1 {
  margin: 10px 0 0;
  color: var(--rbh-green-950);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.3rem, 4.4vw, 4.2rem);
  letter-spacing: -0.04em;
  line-height: 1.04;
}

.rbh-post-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.rbh-post-card {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  min-height: 300px;
  padding: 26px;
  border: 1px solid var(--rbh-border);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 15px 42px rgba(41, 49, 44, 0.06);
}

.rbh-post-thumbnail {
  display: block;
  overflow: hidden;
  width: calc(100% + 52px);
  margin: -26px -26px 22px;
  border-radius: 19px 19px 0 0;
  aspect-ratio: 16 / 9;
}

.rbh-post-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.rbh-post-card-top {
  display: flex;
  justify-content: space-between;
  width: 100%;
  gap: 14px;
  color: #8a8175;
  font-size: 0.68rem;
  font-weight: 750;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.rbh-post-card h2,
.rbh-post-card h3 {
  margin: 18px 0 12px;
  color: var(--rbh-green-950);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.35rem, 2.4vw, 1.75rem);
  letter-spacing: -0.02em;
  line-height: 1.16;
}

.rbh-post-card p {
  margin: 0 0 22px;
  color: var(--rbh-muted);
  font-size: 0.88rem;
}

.rbh-card-link {
  margin-top: auto;
  color: var(--rbh-green-700);
  font-size: 0.82rem;
  font-weight: 850;
}

.rbh-card-link span {
  display: inline-block;
  margin-left: 5px;
  transition: transform 160ms ease;
}

.rbh-card-link:hover span {
  transform: translateX(4px);
}

.rbh-blog-hero,
.rbh-article-hero {
  padding-block: clamp(72px, 9vw, 120px);
  border-bottom: 1px solid var(--rbh-border);
  background:
    radial-gradient(circle at 84% 18%, rgba(214, 196, 154, 0.38), transparent 24%),
    linear-gradient(125deg, #f5efe4, #fffdf9);
}

.rbh-blog-hero .rbh-shell {
  max-width: 890px;
  text-align: center;
}

.rbh-blog-hero .rbh-kicker {
  justify-content: center;
}

.rbh-blog-hero p {
  max-width: 680px;
  margin: 22px auto 0;
  color: var(--rbh-muted);
}

.rbh-post-grid-archive {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.rbh-pagination {
  margin-top: 42px;
  text-align: center;
}

.rbh-pagination .nav-links {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.rbh-pagination .page-numbers {
  display: grid;
  place-items: center;
  min-width: 42px;
  min-height: 42px;
  padding: 8px 12px;
  border: 1px solid var(--rbh-border);
  border-radius: 10px;
  background: #fff;
}

.rbh-pagination .current {
  color: #fff;
  background: var(--rbh-green-900);
}

.rbh-empty-state {
  padding: 60px 30px;
  border: 1px solid var(--rbh-border);
  border-radius: 20px;
  background: #fff;
  text-align: center;
}

.rbh-article-header-inner {
  max-width: 900px;
}

.rbh-article-back {
  display: block;
  margin-bottom: 36px;
  color: var(--rbh-green-700);
  font-size: 0.82rem;
  font-weight: 800;
}

.rbh-article-hero h1 {
  max-width: 850px;
}

.rbh-article-hero p {
  max-width: 760px;
  margin: 22px 0 16px;
  color: var(--rbh-muted);
  font-size: 1.05rem;
}

.rbh-article-hero time {
  color: #837c72;
  font-size: 0.76rem;
  font-weight: 700;
}

.rbh-article-featured {
  overflow: hidden;
  max-width: 1040px;
  margin-top: 54px;
  border-radius: 24px;
}

.rbh-article-featured img {
  width: 100%;
}

.rbh-article-content {
  max-width: 780px;
  padding-block: 68px 100px;
}

.rbh-article-content h2,
.rbh-article-content h3 {
  margin-top: 1.7em;
  color: var(--rbh-green-950);
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.18;
}

.rbh-article-content h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); }
.rbh-article-content p,
.rbh-article-content li { color: #4f5c55; }

.rbh-article-note {
  margin-top: 46px;
  padding: 20px 22px;
  border: 1px solid #dfd0ad;
  border-radius: 15px;
  background: #fff9ea;
}

.rbh-article-note p { margin: 4px 0 0; font-size: 0.86rem; }

@media (max-width: 980px) {
  .rbh-header-inner {
    grid-template-columns: auto auto 1fr;
  }

  .rbh-menu-toggle {
    display: block;
    justify-self: end;
    order: 2;
  }

  .rbh-header-actions {
    justify-self: end;
    order: 3;
  }

  .rbh-nav {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    display: none;
    padding: 12px 20px 22px;
    border-top: 1px solid var(--rbh-border);
    border-bottom: 1px solid var(--rbh-border);
    background: white;
    box-shadow: 0 22px 38px rgba(12, 49, 29, 0.12);
  }

  .rbh-nav.is-open {
    display: block;
  }

  .rbh-menu {
    display: grid;
    gap: 0;
  }

  .rbh-menu a {
    padding: 12px 0;
    border-bottom: 1px solid #edf2eb;
  }

  .rbh-menu a::after {
    display: none;
  }

  .rbh-hero-grid {
    grid-template-columns: 1fr 0.88fr;
    min-height: 620px;
  }

  .rbh-hero h1 {
    font-size: clamp(2.75rem, 7vw, 4.4rem);
  }

  .rbh-ingredient-layout {
    grid-template-columns: 1fr;
  }

  .rbh-ingredient-image {
    max-width: 640px;
    margin-inline: auto;
  }

  .rbh-footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .rbh-post-grid,
  .rbh-post-grid-archive {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .rbh-shell {
    width: min(calc(100% - 28px), var(--rbh-shell));
  }

  .rbh-announcement-inner {
    justify-content: center;
    text-align: center;
  }

  .rbh-announcement-inner span:nth-child(2) {
    display: none;
  }

  .rbh-header-inner {
    min-height: 70px;
    gap: 10px;
  }

  .rbh-brand img {
    width: 42px;
    height: 42px;
  }

  .rbh-brand strong {
    font-size: 0.95rem;
  }

  .rbh-brand small {
    font-size: 0.52rem;
  }

  .rbh-whatsapp-small {
    display: none;
  }

  .rbh-hero-grid,
  .rbh-two-col,
  .rbh-faq-layout {
    grid-template-columns: 1fr;
  }

  .rbh-hero-grid {
    gap: 26px;
    padding-block: 50px 58px;
    text-align: center;
  }

  .rbh-eyebrow,
  .rbh-hero-actions,
  .rbh-mini-trust,
  .rbh-hero-price {
    justify-content: center;
  }

  .rbh-hero-copy {
    order: 1;
  }

  .rbh-hero-visual {
    order: 2;
    max-width: 480px;
  }

  .rbh-hero-badge {
    right: 2%;
    bottom: 8%;
    width: 94px;
    height: 94px;
  }

  .rbh-proof-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .rbh-proof-grid > div:nth-child(3) {
    border-top: 1px solid #ddd2bf;
  }

  .rbh-proof-grid > div:nth-child(4) {
    border-top: 1px solid #ddd2bf;
  }

  .rbh-two-col-reverse .rbh-routine-copy,
  .rbh-two-col-reverse .rbh-routine-image {
    order: initial;
  }

  .rbh-faq-layout > div:first-child {
    position: static;
  }

  .rbh-final-cta-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .rbh-footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 34px 24px;
  }

  .rbh-blog-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .single-product .woocommerce div.product form.cart {
    flex-wrap: wrap;
  }

  .single-product .woocommerce div.product form.cart .quantity {
    flex-basis: 68px;
  }
}

@media (max-width: 520px) {
  .rbh-header-inner {
    grid-template-columns: 1fr auto auto;
  }

  .rbh-brand span {
    display: none;
  }

  .rbh-cart-link > span:first-child {
    display: none;
  }

  .rbh-cart-link {
    padding: 8px;
  }

  .rbh-hero h1 {
    font-size: clamp(2.55rem, 13vw, 3.65rem);
  }

  .rbh-hero-actions,
  .rbh-buy-row {
    align-items: stretch;
    flex-direction: column;
  }

  .rbh-button {
    width: 100%;
  }

  .rbh-mini-trust {
    display: grid;
  }

  .rbh-proof-grid {
    grid-template-columns: 1fr;
  }

  .rbh-proof-grid > div {
    border-top: 1px solid #ddd2bf;
    border-right: 1px solid #ddd2bf;
  }

  .rbh-ingredient-grid,
  .rbh-quality-grid,
  .rbh-label-grid,
  .rbh-footer-grid,
  .rbh-post-grid,
  .rbh-post-grid-archive {
    grid-template-columns: 1fr;
  }

  .rbh-product-card {
    padding: 12px;
  }

  .rbh-slider-arrow {
    width: 38px;
    height: 38px;
  }

  .single-product .woocommerce div.product form.cart .quantity {
    flex: 0 0 62px;
  }

  .single-product .woocommerce div.product form.cart .single_add_to_cart_button,
  .single-product .woocommerce div.product form.cart .rbh-buy-now-button {
    flex: 1 1 calc(50% - 42px);
    width: auto;
    padding-inline: 12px;
  }

  .rbh-ingredient-card {
    min-height: 70px;
  }

  .rbh-footer-bottom .rbh-shell {
    align-items: flex-start;
    flex-direction: column;
  }

  .rbh-whatsapp-float {
    right: 14px;
    bottom: 14px;
    min-height: 44px;
    padding: 8px 14px;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
