
/* hero.css */
/* CHB temporary homepage hero — SCOPED to #chb-temp-hero-root only.
   No global * resets. Safe alongside Bacola + Elementor. */

#chb-temp-hero-root {
  --sage: #c5cbb0;
  --green-dark: #2f3d2a;
  --green-mid: #4a5a3f;
  --green-btn: #4a5a3f;
  --green-btn-hover: #384632;
  --cream: #f7f2eb;
  --charcoal: #2a2a2a;
  --family-cream: #f7f2eb;
  --sec-family: #f7f2eb;
  --max: 1280px;
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Montserrat", system-ui, sans-serif;
  --announce-h: 0px;
  --header-top-h: 0px;
  --header-cat-h: 0px;
  --header-stack-h: 0px;
  --hero-h: min(70vh, 700px);
  --hero-interval: 7000ms;
  --hero-pad-top: clamp(3.25rem, 8vh, 5.5rem);
  --hero-pad-bottom: clamp(4rem, 9vh, 6rem);
  --hero-pad-x: clamp(1.2rem, 4vw, 4rem);
  --h-hero: clamp(2.35rem, 4.8vw, 3.6rem);
  --h-hero-sub: clamp(1.2rem, 2vw, 1.7rem);
}
#chb-temp-hero-root .hero { height: var(--hero-h); min-height: 400px; max-height: 800px; margin: 0; }
#chb-temp-hero-root .container { width: min(100% - 2rem, var(--max)); margin-inline: auto; }

#chb-temp-hero-root .hero{
  --hero-interval: 7000ms;
  --hero-accent: var(--sage);
  position: relative;
  overflow: hidden;
  background: #0e120d;
  width: 100%;
  height: var(--hero-h);
  min-height: 440px;
  max-height: none;
  isolation: isolate;
  /* soft separation from sticky menu above */
  box-shadow: inset 0 1px 0 rgba(255, 250, 240, 0.06);
}#chb-temp-hero-root .hero:focus-visible{
  outline: 2px solid var(--sage);
  outline-offset: -2px;
}

/* Top autoplay progress —#chb-temp-hero-root picks up active slide accent */
.hero-progress{
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  z-index: 8;
  background: rgba(255, 255, 255, 0.1);
  overflow: hidden;
}#chb-temp-hero-root .hero-progress__bar{
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--hero-accent) 0%, #fffaf0 100%);
  box-shadow: 0 0 12px color-mix(in srgb, var(--hero-accent) 55%, transparent);
  transform-origin: left center;
  transition: none;
}#chb-temp-hero-root .hero-progress__bar.is-running{
  animation: heroProgress var(--hero-interval) linear forwards;
}#chb-temp-hero-root .hero-progress__bar.is-paused{
  animation-play-state: paused;
}
@keyframes heroProgress {from{ width: 0%; }to{ width: 100%; }
}

/* Soft atmosphere —#chb-temp-hero-root subtle, #chb-temp-hero-root brand-tinted */
.hero-ambient{
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  overflow: hidden;
}#chb-temp-hero-root .hero-orb{
  position: absolute;
  border-radius: 50%;
  filter: blur(48px);
  opacity: 0.28;
  animation: heroOrbFloat 16s ease-in-out infinite;
  will-change: transform;
}#chb-temp-hero-root .hero-orb--1{
  width: min(32vw, 300px);
  height: min(32vw, 300px);
  left: 4%;
  top: 12%;
  background: radial-gradient(circle, color-mix(in srgb, var(--hero-accent) 70%, transparent) 0%, transparent 70%);
}#chb-temp-hero-root .hero-orb--2{
  width: min(24vw, 220px);
  height: min(24vw, 220px);
  right: 10%;
  bottom: 16%;
  background: radial-gradient(circle, rgba(184, 151, 74, 0.35) 0%, transparent 70%);
  animation-delay: -5s;
  animation-duration: 20s;
}#chb-temp-hero-root .hero-orb--3{
  width: min(18vw, 160px);
  height: min(18vw, 160px);
  left: 38%;
  top: 58%;
  background: radial-gradient(circle, rgba(255, 250, 240, 0.16) 0%, transparent 70%);
  animation-delay: -9s;
  animation-duration: 13s;
}
@keyframes heroOrbFloat {
  0%, 100%{ transform: translate3d(0, 0, 0) scale(1); }
  40%{ transform: translate3d(14px, -18px, 0) scale(1.06); }
  70%{ transform: translate3d(-10px, 10px, 0) scale(0.97); }
}#chb-temp-hero-root .hero-grain{
  position: absolute;
  inset: -10%;
  opacity: 0.045;
  mix-blend-mode: soft-light;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 160px 160px;
  pointer-events: none;
}#chb-temp-hero-root .hero-track{
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 1.05s cubic-bezier(0.76, 0, 0.24, 1);
  will-change: transform;
}#chb-temp-hero-root .hero-slide{
  position: relative;
  flex: 0 0 100%;
  width: 100%;
  min-width: 100%;
  max-width: 100%;
  height: 100%;
}#chb-temp-hero-root .hero-media{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  /* subtle mouse parallax target */
  transform: scale(1.03);
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}#chb-temp-hero-root .hero-media img{
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--hero-focus, center center);
  transform: scale(1.08);
  transition: transform 1.15s cubic-bezier(0.33, 1, 0.68, 1), filter 0.9s ease;
  filter: saturate(1.04) brightness(0.9) contrast(1.02);
  will-change: transform;
}#chb-temp-hero-root .hero-slide.is-active .hero-media img{
  animation: heroKenBurns var(--hero-interval) cubic-bezier(0.22, 1, 0.36, 1) forwards;
  filter: saturate(1.08) brightness(0.98) contrast(1.03);
}
@keyframes heroKenBurns {from{ transform: scale(1.08) translate3d(0, 0, 0); }to{ transform: scale(1) translate3d(-0.8%, -0.4%, 0); }
}

/* Layered scrim —#chb-temp-hero-root keeps open text readable without a box */
.hero-slide::before{
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      100deg,
      rgba(10, 14, 10, 0.78) 0%,
      rgba(10, 14, 10, 0.52) 30%,
      rgba(10, 14, 10, 0.18) 54%,
      rgba(10, 14, 10, 0.04) 74%,
      transparent 90%
    ),
    linear-gradient(to top, rgba(8, 10, 8, 0.55) 0%, rgba(8, 10, 8, 0.14) 30%, transparent 55%),
    radial-gradient(ellipse 65% 60% at 16% 48%, rgba(10, 14, 10, 0.38) 0%, transparent 70%);
  pointer-events: none;
}#chb-temp-hero-root .hero-slide::after{
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse 50% 40% at 75% 40%, color-mix(in srgb, var(--hero-accent) 12%, transparent), transparent 70%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 1s ease;
}#chb-temp-hero-root .hero-slide.is-active::after{
  opacity: 1;
}#chb-temp-hero-root .hero-content{
  position: absolute;
  inset: 0;
  z-index: 4;
  display: flex;
  flex-direction: column;
  /* float the text box mid-hero — not stuck to the top under the menu */
  justify-content: center;
  align-items: stretch;
  padding: var(--hero-pad-top) var(--hero-pad-x) var(--hero-pad-bottom);
  pointer-events: none;
  box-sizing: border-box;
}#chb-temp-hero-root .hero-content .container{
  pointer-events: auto;
  width: 100%;
  max-width: var(--max);
  margin-inline: auto;
  /* box only as tall as content; sits in the vertical centre of padded area */
  display: block;
}

/* Clean open type —#chb-temp-hero-root no glass card */
.chb-hero-copy{
  max-width: min(580px, 100%);
  margin: 0;
  padding: 0;
  color: #fffaf0;
  background: none;
  border: none;
  border-radius: 0;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}#chb-temp-hero-root .chb-hero-eyebrow{
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin: 0 0 0.95rem;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--chb-hero-accent, #c7d8b5);
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.4);
}#chb-temp-hero-root .chb-hero-eyebrow::before{
  content: "";
  width: 22px;
  height: 1px;
  background: currentColor;
  opacity: 0.75;
  flex-shrink: 0;
}#chb-temp-hero-root .chb-hero-copy h1, #chb-temp-hero-root .chb-hero-copy h2{
  margin: 0 0 0.85rem;
  font-family: var(--font-display);
  font-size: var(--h-hero);
  line-height: 1.05;
  font-weight: 500;
  letter-spacing: -0.028em;
  color: var(--chb-hero-heading, #fffaf0);
  text-wrap: balance;
  text-shadow: 0 4px 28px rgba(0, 0, 0, 0.4);
}#chb-temp-hero-root .chb-hero-copy h1 span, #chb-temp-hero-root .chb-hero-copy h2 span{
  display: inline-block;
  color: var(--chb-hero-accent, #c7d8b5);
  font-style: italic;
  font-weight: 500;
  text-shadow: 0 4px 22px var(--chb-hero-accent-shadow, rgba(20, 40, 15, 0.55));
}#chb-temp-hero-root .chb-hero-subtitle{
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: var(--h-hero-sub);
  font-weight: 500;
  line-height: 1.28;
  letter-spacing: -0.012em;
  color: var(--chb-hero-subtitle, rgba(255, 250, 240, 0.96));
  text-shadow: 0 3px 16px rgba(0, 0, 0, 0.35);
}#chb-temp-hero-root .chb-hero-text{
  margin: 0 0 1.65rem;
  max-width: 30rem;
  font-family: var(--font-body);
  font-size: clamp(0.92rem, 1.15vw, 1.05rem);
  font-weight: 400;
  line-height: 1.68;
  letter-spacing: 0.01em;
  color: rgba(255, 250, 240, 0.9);
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.4);
}#chb-temp-hero-root .chb-hero-cta{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.85rem 1.25rem;
}#chb-temp-hero-root .chb-hero-button{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-width: 0;
  min-height: 50px;
  padding: 0.9rem 1.7rem;
  background: var(--chb-hero-button-bg, #3f5f38);
  color: var(--chb-hero-button-text, #fffaf0) !important;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  border: 1px solid var(--chb-hero-button-border, rgba(255, 250, 240, 0.18));
  box-shadow: 0 12px 28px var(--chb-hero-button-shadow, rgba(20, 35, 20, 0.32));
  transition:
    transform 0.3s cubic-bezier(0.33, 1, 0.68, 1),
    box-shadow 0.3s ease,
    background 0.3s ease,
    filter 0.3s ease;
  border-radius: 999px;
  position: relative;
  overflow: hidden;
}#chb-temp-hero-root .chb-hero-button 
.chb-hero-button::after{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 35%, rgba(255, 255, 255, 0.2) 50%, transparent 65%);
  transform: translateX(-130%);
  transition: transform 0.65s ease;
}#chb-temp-hero-root .chb-hero-button:hover{
  background: var(--chb-hero-button-hover, #2f4a2a);
  transform: translateY(-2px);
  box-shadow: 0 16px 36px var(--chb-hero-button-shadow-hover, rgba(20, 35, 20, 0.4));
  filter: brightness(1.04);
}#chb-temp-hero-root .chb-hero-button:hover 
.chb-hero-button:hover::after{
  transform: translateX(130%);
}#chb-temp-hero-root .chb-hero-link{
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: rgba(255, 250, 240, 0.9);
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 250, 240, 0.35);
  padding-bottom: 3px;
  transition: color 0.2s, border-color 0.2s, transform 0.2s, gap 0.2s;
}#chb-temp-hero-root .chb-hero-link:hover{
  color: var(--chb-hero-accent, #c7d8b5);
  border-color: var(--chb-hero-accent, #c7d8b5);
  transform: translateX(3px);
}

/* Staggered entrance —#chb-temp-hero-root smoother, #chb-temp-hero-root less blur */
.hero-anim{
  opacity: 0;
  transform: translate3d(0, 22px, 0);
  transition:
    opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: calc(var(--d, 0) * 0.09s + 0.18s);
}#chb-temp-hero-root .hero-slide.is-active .hero-anim{
  opacity: 1;
  transform: translate3d(0, 0, 0);
}#chb-temp-hero-root /* Per-slide themes + image focus points */
.chb-hero--silver{
  --hero-focus: 68% 42%;
  --hero-accent: #d8e2e8;
  --chb-hero-heading: #f4f7f8;
  --chb-hero-accent: #d8e2e8;
  --chb-hero-subtitle: #e8eef2;
  --chb-hero-text: #f4f7f8;
  --chb-hero-button-bg: #2f3d2a;
  --chb-hero-button-hover: #3a4a36;
  --chb-hero-button-text: #fffcf8;
  --chb-hero-button-border: #2f3d2a;
  --chb-hero-button-shadow: rgba(14, 18, 13, 0.45);
  --chb-hero-button-shadow-hover: rgba(14, 18, 13, 0.55);
}#chb-temp-hero-root .chb-hero--silver .chb-hero-button{
  background: #2f3d2a !important;
  color: #fffcf8 !important;
  border-color: #2f3d2a !important;
}#chb-temp-hero-root .chb-hero--silver .chb-hero-copy em,
#chb-temp-hero-root .chb-hero--silver .chb-hero-copy i,
#chb-temp-hero-root .chb-hero--silver h1 span,
#chb-temp-hero-root .chb-hero--silver h2 span{
  color: #d8e2e8 !important;
}#chb-temp-hero-root .chb-hero--silver .chb-hero-link{
  color: #d8e2e8 !important;
  border-bottom-color: #d8e2e8 !important;
}#chb-temp-hero-root .chb-hero--nature{
  --hero-focus: 58% 42%;
  --hero-accent: #c7d8b5;
  --chb-hero-heading: #fffaf0;
  --chb-hero-accent: #c7d8b5;
  --chb-hero-subtitle: #f4f7ef;
  --chb-hero-text: #fffaf0;
  --chb-hero-button-bg: #3f5f38;
  --chb-hero-button-hover: #2f4a2a;
  --chb-hero-button-border: rgba(255, 250, 240, 0.18);
  --chb-hero-button-shadow: rgba(20, 35, 20, 0.32);
  --chb-hero-button-shadow-hover: rgba(20, 35, 20, 0.4);
}#chb-temp-hero-root .chb-hero--gold{
  --hero-focus: 62% 45%;
  --hero-accent: #d9ad45;
  --chb-hero-heading: #fff8e8;
  --chb-hero-accent: #e0bc5a;
  --chb-hero-subtitle: #fff3d3;
  --chb-hero-text: #fff8e8;
  --chb-hero-button-bg: linear-gradient(135deg, #b78322 0%, #d9ad45 50%, #8a5516 100%);
  --chb-hero-button-hover: linear-gradient(135deg, #936015 0%, #c99832 50%, #6f3f0f 100%);
  --chb-hero-button-border: rgba(255, 230, 160, 0.4);
  --chb-hero-button-shadow: rgba(40, 10, 5, 0.4);
  --chb-hero-button-shadow-hover: rgba(40, 10, 5, 0.5);
}#chb-temp-hero-root .chb-hero--copper{
  --hero-focus: 60% 44%;
  --hero-accent: #d48952;
  --chb-hero-heading: #fff4e6;
  --chb-hero-accent: #e09a66;
  --chb-hero-subtitle: #ffe2c4;
  --chb-hero-text: #fff4e6;
  --chb-hero-button-bg: linear-gradient(135deg, #8f4a24 0%, #d48952 50%, #6f351a 100%);
  --chb-hero-button-hover: linear-gradient(135deg, #743816 0%, #bd7040 50%, #55250f 100%);
  --chb-hero-button-border: rgba(255, 210, 170, 0.4);
  --chb-hero-button-shadow: rgba(45, 18, 8, 0.44);
  --chb-hero-button-shadow-hover: rgba(45, 18, 8, 0.52);
}#chb-temp-hero-root .chb-hero--iodine{
  --hero-focus: 68% 46%;
  --hero-accent: #b8a0e0;
  --chb-hero-heading: #f6f2ff;
  --chb-hero-accent: #cbb6f0;
  --chb-hero-subtitle: #e8dffc;
  --chb-hero-text: #f6f2ff;
  --chb-hero-button-bg: linear-gradient(135deg, #3d2f6b 0%, #6b56a8 50%, #2a1f4a 100%);
  --chb-hero-button-hover: linear-gradient(135deg, #32265a 0%, #5a4794 50%, #1f1738 100%);
  --chb-hero-button-border: rgba(220, 200, 255, 0.35);
  --chb-hero-button-shadow: rgba(20, 12, 40, 0.45);
  --chb-hero-button-shadow-hover: rgba(20, 12, 40, 0.55);
}


/* Colloidal soaps —#chb-temp-hero-root products right, #chb-temp-hero-root soft left for white type (matches site scrim) */
.chb-hero--soaps{
  --hero-focus: 64% 44%;
  --hero-accent: #c7d8b5;
  --chb-hero-heading: #fffaf0;
  --chb-hero-accent: #dce8c8;
  --chb-hero-subtitle: #f4f7ef;
  --chb-hero-text: #fffaf0;
  --chb-hero-button-bg: #3f5f38;
  --chb-hero-button-hover: #2f4a2a;
  --chb-hero-button-border: rgba(255, 250, 240, 0.18);
  --chb-hero-button-shadow: rgba(20, 35, 20, 0.32);
  --chb-hero-button-shadow-hover: rgba(20, 35, 20, 0.4);
}#chb-temp-hero-root .chb-hero--soaps .hero-media img{
  /* Keep soaps bright; other slides dim slightly */
  filter: saturate(1.06) brightness(1) contrast(1.02);
  object-position: var(--hero-focus, 64% 44%);
}
#chb-temp-hero-root .chb-hero--tissue{
  --hero-focus: 72% 48%;
  --hero-accent: #d4c4a0;
  --chb-hero-heading: #fffaf0;
  --chb-hero-accent: #e4d5b4;
  --chb-hero-subtitle: #f4efe4;
  --chb-hero-text: #fffaf0;
  --chb-hero-button-bg: #2f3d2a;
  --chb-hero-button-hover: #3a4a36;
  --chb-hero-button-text: #fffcf8;
  --chb-hero-button-border: #2f3d2a;
  --chb-hero-button-shadow: rgba(14, 18, 13, 0.45);
  --chb-hero-button-shadow-hover: rgba(14, 18, 13, 0.55);
}
#chb-temp-hero-root .chb-hero--tissue .chb-hero-button{
  background: #2f3d2a !important;
  color: #fffcf8 !important;
  border-color: #2f3d2a !important;
}
#chb-temp-hero-root .chb-hero--tissue .chb-hero-copy em,
#chb-temp-hero-root .chb-hero--tissue .chb-hero-copy i,
#chb-temp-hero-root .chb-hero--tissue h2 span{
  color: #e4d5b4 !important;
}
#chb-temp-hero-root .chb-hero--tissue .chb-hero-link{
  color: #e4d5b4 !important;
  border-bottom-color: #e4d5b4 !important;
}
/* Crystal Health & Beauty — refined homepage */
/* Display titles: Cormorant · UI/body: Montserrat
   Fonts load via brand.php (non-blocking) — never @import here (blocks CSS parse / Lighthouse). */


  --chb-hero-button-shadow-hover: rgba(20, 12, 40, 0.55);
}

/* Side arrows —#chb-temp-hero-root always faintly visible on desktop */
.hero-nav{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 6;
  width: 48px;
  height: 48px;
  color: #fffaf0;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(14, 18, 13, 0.35);
  border: 1px solid rgba(255, 250, 240, 0.22);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  opacity: 0.55;
  transition: opacity 0.3s, background 0.3s, transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}#chb-temp-hero-root .hero:hover .hero-nav, #chb-temp-hero-root .hero:focus-within .hero-nav{
  opacity: 1;
}#chb-temp-hero-root .hero-nav:hover{
  background: rgba(255, 250, 240, 0.16);
  border-color: rgba(255, 250, 240, 0.48);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
  transform: translateY(-50%) scale(1.06);
}#chb-temp-hero-root .hero-nav:active{
  transform: translateY(-50%) scale(0.96);
}#chb-temp-hero-root .hero-nav svg{
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}#chb-temp-hero-root .hero-nav--prev{ left: max(14px, env(safe-area-inset-left, 0px)); }#chb-temp-hero-root .hero-nav--next{ right: max(14px, env(safe-area-inset-right, 0px)); }#chb-temp-hero-root /* Bottom controls */
.hero-controls{
  position: absolute;
  bottom: max(18px, env(safe-area-inset-bottom, 0px));
  left: 50%;
  transform: translateX(-50%);
  z-index: 6;
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 0.5rem 0.7rem 0.5rem 0.95rem;
  border-radius: 999px;
  background: rgba(10, 14, 10, 0.48);
  border: 1px solid rgba(255, 250, 240, 0.12);
  backdrop-filter: blur(16px) saturate(1.1);
  -webkit-backdrop-filter: blur(16px) saturate(1.1);
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.28);
  max-width: calc(100% - 2rem);
}#chb-temp-hero-root .hero-counter{
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: rgba(255, 250, 240, 0.88);
  font-variant-numeric: tabular-nums;
  min-width: 3rem;
}#chb-temp-hero-root .hero-counter__sep{
  opacity: 0.4;
  margin: 0 0.12rem;
}#chb-temp-hero-root .hero-dots{
  display: flex;
  gap: 7px;
  align-items: center;
}#chb-temp-hero-root .hero-dots button{
  position: relative;
  width: 32px;
  height: 3px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.24);
  overflow: hidden;
  padding: 0;
  transition: background 0.25s, width 0.25s, transform 0.25s;
}#chb-temp-hero-root .hero-dots button.active{
  width: 40px;
  background: rgba(255, 255, 255, 0.18);
}#chb-temp-hero-root .hero-dots button:hover{
  background: rgba(255, 255, 255, 0.38);
}#chb-temp-hero-root .hero-dots button .hero-dot__fill{
  position: absolute;
  inset: 0;
  width: 0%;
  background: linear-gradient(90deg, var(--hero-accent) 0%, #fffaf0 100%);
  border-radius: inherit;
}#chb-temp-hero-root .hero-dots button.active .hero-dot__fill{
  animation: heroDotFill var(--hero-interval) linear forwards;
}#chb-temp-hero-root .hero-dots button.active.is-paused .hero-dot__fill{
  animation-play-state: paused;
}
@keyframes heroDotFill {from{ width: 0%; }to{ width: 100%; }
}#chb-temp-hero-root .hero-pause{
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fffaf0;
  background: rgba(255, 250, 240, 0.08);
  border: 1px solid rgba(255, 250, 240, 0.16);
  transition: background 0.2s, transform 0.2s;
}#chb-temp-hero-root .hero-pause:hover{
  background: rgba(255, 250, 240, 0.18);
  transform: scale(1.05);
}#chb-temp-hero-root .hero-pause .icon-play{ display: none; }#chb-temp-hero-root .hero-pause[aria-pressed="true"] .icon-pause{ display: none; }#chb-temp-hero-root .hero-pause[aria-pressed="true"] .icon-play{ display: block; }#chb-temp-hero-root /* Scroll cue */
.hero-scroll{
  position: absolute;
  right: max(18px, env(safe-area-inset-right, 0px));
  bottom: max(18px, env(safe-area-inset-bottom, 0px));
  z-index: 6;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  font-family: var(--font-body);
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 250, 240, 0.68);
  text-decoration: none;
  transition: color 0.2s;
  animation: heroScrollBob 2.4s ease-in-out infinite;
}#chb-temp-hero-root .hero-scroll:hover{
  color: #fffaf0;
}#chb-temp-hero-root .hero-scroll svg{ opacity: 0.8; }
@keyframes heroScrollBob {
  0%, 100%{ transform: translateY(0); }
  50%{ transform: translateY(5px); }
}


  }
  
}
/* Mobile header is shorter (no category bar) + hero mobile layout */
@media (max-width: 900px) {#chb-temp-hero-root .hero{
    min-height: 520px;
    height: var(--hero-h);
  }
  /* mobile scrim —#chb-temp-hero-root readable open text, #chb-temp-hero-root no box */
  .hero-slide::before{
    background:
      linear-gradient(
        180deg,
        rgba(10, 14, 10, 0.22) 0%,
        rgba(10, 14, 10, 0.08) 24%,
        rgba(10, 14, 10, 0.28) 52%,
        rgba(10, 14, 10, 0.7) 100%
      ),
      linear-gradient(
        100deg,
        rgba(10, 14, 10, 0.58) 0%,
        rgba(10, 14, 10, 0.22) 48%,
        transparent 78%
      );
  }#chb-temp-hero-root .hero-media img{
    object-position: 68% center;
  }#chb-temp-hero-root .chb-hero--silver{ --hero-focus: 74% 42%; }#chb-temp-hero-root .chb-hero--nature{ --hero-focus: 68% 42%; }#chb-temp-hero-root .chb-hero--gold{ --hero-focus: 70% 44%; }#chb-temp-hero-root .chb-hero--copper{ --hero-focus: 68% 44%; }#chb-temp-hero-root .chb-hero--iodine{ --hero-focus: 72% 46%; }#chb-temp-hero-root .chb-hero--soaps{ --hero-focus: 70% 48%; }#chb-temp-hero-root .chb-hero--tissue{ --hero-focus: 78% 52%; }#chb-temp-hero-root .hero-content{
    justify-content: flex-end;
    align-items: stretch;
  }#chb-temp-hero-root .hero-content .container{
    width: 100%;
    max-width: none;
    margin-top: auto;
  }#chb-temp-hero-root .chb-hero-copy{
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
    background: none;
    border: none;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }#chb-temp-hero-root .chb-hero-eyebrow{
    font-size: 0.625rem;
    letter-spacing: 0.16em;
    margin-bottom: 0.65rem;
  }#chb-temp-hero-root .chb-hero-copy h1, #chb-temp-hero-root .chb-hero-copy h2{
    font-size: clamp(2.1rem, 8.5vw, 2.85rem);
    margin-bottom: 0.5rem;
    line-height: 1.02;
  }#chb-temp-hero-root .chb-hero-subtitle{
    font-size: clamp(1.1rem, 4.2vw, 1.35rem);
    margin-bottom: 0.5rem;
  }#chb-temp-hero-root .chb-hero-text{
    font-size: 0.875rem;
    line-height: 1.55;
    margin-bottom: 1.15rem;
    max-width: 22rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }#chb-temp-hero-root .chb-hero-cta{
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem 1rem;
  }#chb-temp-hero-root .chb-hero-button{
    width: auto;
    min-width: 0;
    min-height: 48px;
    padding: 0.85rem 1.35rem;
    font-size: 0.72rem;
    justify-content: center;
  }#chb-temp-hero-root .chb-hero-link{
    text-align: left;
    border-bottom: 1px solid rgba(255, 250, 240, 0.4);
    padding: 0 0 2px;
    font-size: 0.78rem;
    opacity: 0.95;
  }

  /* swipe-first on mobile —#chb-temp-hero-root hide side arrows */
  .hero-nav{
    display: none;
  }#chb-temp-hero-root .hero-scroll{
    display: none;
  }#chb-temp-hero-root .hero-orb{
    opacity: 0.18;
  }#chb-temp-hero-root .hero-orb--3{
    display: none;
  }#chb-temp-hero-root .hero-controls{
    bottom: max(14px, env(safe-area-inset-bottom, 0px));
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    width: auto;
    max-width: calc(100% - 1.5rem);
    gap: 0.65rem;
    padding: 0.45rem 0.6rem 0.45rem 0.8rem;
  }#chb-temp-hero-root .hero-counter{
    font-size: 0.625rem;
    min-width: 2.6rem;
  }#chb-temp-hero-root .hero-dots button{
    width: 22px;
  }#chb-temp-hero-root .hero-dots button.active{
    width: 30px;
  }#chb-temp-hero-root .hero-pause{
    width: 28px;
    height: 28px;
  }
}
@media (max-width: 640px) {#chb-temp-hero-root .hero{
    min-height: 480px;
  }#chb-temp-hero-root .chb-hero-copy h1, #chb-temp-hero-root .chb-hero-copy h2{
    font-size: clamp(1.95rem, 9vw, 2.45rem);
  }#chb-temp-hero-root .chb-hero-text{
    -webkit-line-clamp: 2;
    font-size: 0.82rem;
  }
}
/* Very short viewports (landscape phones / short windows) */
@media (max-height: 560px) {#chb-temp-hero-root .hero{
    min-height: 300px;
    height: var(--hero-h);
  }#chb-temp-hero-root .chb-hero-copy h1, #chb-temp-hero-root .chb-hero-copy h2{
    font-size: clamp(1.5rem, 5.5vh, 2rem);
  }#chb-temp-hero-root .chb-hero-text, #chb-temp-hero-root .chb-hero-eyebrow{
    display: none;
  }#chb-temp-hero-root .chb-hero-subtitle{
    margin-bottom: 0.55rem;
    font-size: 1rem;
  }#chb-temp-hero-root .chb-hero-cta{
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
  }#chb-temp-hero-root .chb-hero-button{
    width: auto;
    min-height: 42px;
    padding: 0.65rem 1.1rem;
  }#chb-temp-hero-root .hero-content{
    justify-content: center;
  }#chb-temp-hero-root .hero-orb{
    display: none;
  }
}
/* Ultra-wide: don't let hero get absurdly tall on big monitors */
@media (min-width: 1600px) and (min-height: 900px) {#chb-temp-hero-root .hero{
    height: min(var(--hero-h), 800px);
  }#chb-temp-hero-root .hero-media img{
    object-position: center 42%;
  }
  #chb-temp-hero-root .chb-hero--soaps .hero-media img{
    object-position: 62% 42%;
  }
}
@media (max-width: 640px) {
  
  
  

#chb-temp-hero-root .chb-hero-text,#chb-temp-hero-root .chb-hero-text p,#chb-temp-hero-root .chb-hero-copy p,#chb-temp-hero-root .chb-hero-subtitle{color:var(--chb-hero-text,#fffaf0)!important;-webkit-text-fill-color:var(--chb-hero-text,#fffaf0)!important}
#chb-temp-hero-root .chb-hero-link{color:#fffef8!important}

#chb-temp-hero-root .hero-media{position:absolute!important;inset:0!important;width:100%!important;height:100%!important}
#chb-temp-hero-root .hero-media img{position:absolute!important;inset:0!important;width:100%!important;height:100%!important;min-width:100%!important;min-height:100%!important;max-width:none!important;max-height:none!important;object-fit:cover!important}
@media(max-width:900px){#chb-temp-hero-root .hero{height:auto!important;min-height:100svh!important;min-height:100dvh!important;max-height:none!important}#chb-temp-hero-root .hero-track{position:absolute!important;inset:0!important;height:100%!important}#chb-temp-hero-root .hero-content{position:relative!important;inset:auto!important;min-height:100svh!important;min-height:100dvh!important;z-index:4!important}}

/* Silver (first slide) uses h1; keep it matching other slides h2. */
html body #chb-temp-hero-root .chb-hero-copy h1{font-style:normal!important;font-weight:600!important;color:var(--chb-hero-heading,#fffef8)!important;-webkit-text-fill-color:var(--chb-hero-heading,#fffef8)!important}
html body #chb-temp-hero-root .chb-hero-copy h1 span{font-style:italic!important;font-weight:500!important;color:var(--chb-hero-accent,#d8e2e8)!important;-webkit-text-fill-color:var(--chb-hero-accent,#d8e2e8)!important}

/* home-restyle-v19.css */
/* Homepage below-hero: trust, shop-by-range, tighter Elementor */

#chb-temp-hero-root .chb-hero--tissue {
  --hero-focus: 72% 48%;
  --hero-accent: #d4c4a0;
  --chb-hero-heading: #fffaf0;
  --chb-hero-accent: #e4d5b4;
  --chb-hero-subtitle: #f4efe4;
  --chb-hero-text: #fffaf0;
  --chb-hero-button-bg: #2f3d2a;
  --chb-hero-button-hover: #3a4a36;
  --chb-hero-button-text: #fffcf8;
  --chb-hero-button-border: #2f3d2a;
}
#chb-temp-hero-root .chb-hero--tissue .chb-hero-button {
  background: #2f3d2a !important;
  color: #fffcf8 !important;
  border-color: #2f3d2a !important;
  box-shadow: 0 12px 28px rgba(14, 18, 13, 0.45) !important;
}
#chb-temp-hero-root .chb-hero--tissue .chb-hero-button:hover {
  background: #3a4a36 !important;
  color: #fffcf8 !important;
}
#chb-temp-hero-root .chb-hero--tissue .chb-hero-copy em,
#chb-temp-hero-root .chb-hero--tissue .chb-hero-copy i,
#chb-temp-hero-root .chb-hero--tissue h2 span {
  color: #e4d5b4 !important;
}
#chb-temp-hero-root .chb-hero--tissue .chb-hero-link {
  color: #e4d5b4 !important;
  border-bottom-color: #e4d5b4 !important;
}

#chb-temp-hero-root .chb-hero--soaps {
  --hero-focus: 64% 44%;
}
#chb-temp-hero-root .chb-hero--soaps .hero-media img {
  object-position: 64% 44% !important;
}
@media (min-width: 1400px) {
  #chb-temp-hero-root .chb-hero--soaps .hero-media img {
    object-position: 62% 42% !important;
  }
}

#chb-temp-hero-root .chb-hero--silver .chb-hero-button {
  background: #2f3d2a !important;
  color: #fffcf8 !important;
  border-color: #2f3d2a !important;
  box-shadow: 0 12px 28px rgba(14, 18, 13, 0.45) !important;
}
#chb-temp-hero-root .chb-hero--silver .chb-hero-button:hover {
  background: #3a4a36 !important;
  color: #fffcf8 !important;
}
#chb-temp-hero-root .chb-hero--silver .chb-hero-copy em,
#chb-temp-hero-root .chb-hero--silver .chb-hero-copy i,
#chb-temp-hero-root .chb-hero--silver h2 span {
  color: #d8e2e8 !important;
}
#chb-temp-hero-root .chb-hero--silver .chb-hero-link {
  color: #d8e2e8 !important;
  border-bottom-color: #d8e2e8 !important;
}
body.home #livechat-eye-catcher,
body.home .p-invite,
body.home [class*="lc-1-invitation"] {
  display: none !important;
}

.chb-home-trust {
  background: #f7f2eb;
  border-bottom: 1px solid #e6ddd2;
  padding: .85rem 1.25rem;
}
.chb-home-trust ul {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  max-width: 1120px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .45rem 1.75rem;
}
.chb-home-trust li {
  font-size: .82rem;
  font-weight: 650;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: #2f3d2a;
}

.chb-home-family {
  background: #fffcf8;
  padding: clamp(2rem, 4vw, 3.2rem) 1.25rem;
  text-align: left;
}
.chb-home-family .split {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(280px, .95fr) minmax(300px, 1.05fr);
  gap: clamp(1.4rem, 3vw, 2.8rem);
  align-items: center;
}
.chb-home-family figure {
  margin: 0;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(18,10,8,.12);
}
.chb-home-family figure img {
  width: 100%;
  height: min(520px, 62vh);
  object-fit: cover;
  display: block;
}
.chb-home-family .copy { max-width: 40rem; }
.chb-home-family .eye {
  margin: 0 0 .45rem;
  font-size: .72rem;
  font-weight: 750;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #c9a84c;
}
.chb-home-family h2 {
  margin: 0 0 .75rem;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  font-size: clamp(1.7rem, 3vw, 2.2rem);
  color: #14100e;
}
.chb-home-family p {
  margin: 0 0 1.1rem;
  font-size: 1.05rem;
  line-height: 1.65;
  color: #3d342f;
}
.chb-home-family a {
  color: #2f3d2a;
  font-weight: 750;
}
.chb-home-family__facts {
  list-style: none;
  max-width: 1120px;
  margin: 1.6rem auto 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .75rem;
}
.chb-home-family__facts li {
  background: #f7f2eb;
  border-radius: 14px;
  padding: .9rem 1rem;
  font-size: .95rem;
  line-height: 1.45;
  color: #3d342f;
}
.chb-home-family__facts strong {
  display: block;
  margin-bottom: .15rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.05rem;
  color: #2f3d2a;
}

.chb-home-cats {
  padding: clamp(1.8rem, 3.5vw, 2.8rem) 1.25rem 2.4rem;
  background: #fffcf8;
}
.chb-home-cats .inner {
  max-width: 1120px;
  margin: 0 auto;
}
.chb-home-cats h2 {
  margin: 0 0 .35rem;
  text-align: center;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  font-size: clamp(1.6rem, 2.8vw, 2.1rem);
  color: #14100e;
}
.chb-home-cats .lead {
  text-align: center;
  margin: 0 auto 1.4rem;
  max-width: 36rem;
  color: #5c524c;
}
.chb-home-cats .grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .85rem;
}
.chb-home-cats a {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 160px;
  padding: 1rem 1.05rem;
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  color: #fffef8;
  background: #2f3d2a center/cover no-repeat;
  box-shadow: 0 10px 24px rgba(18,10,8,.08);
}
.chb-home-cats a::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(14,18,13,.12) 15%, rgba(14,18,13,.82));
}
.chb-home-cats a span {
  position: relative;
  z-index: 1;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.25rem;
  font-weight: 500;
}
.chb-home-cats a:hover { filter: brightness(1.06); }

/* Keep original Elementor family block hidden — full copy is in .chb-home-family */
body.home .elementor-element-e8b205c,
body.home .elementor-element-f3a6cac,
body.home .elementor-element-a371758 {
  display: none !important;
}

body.home .elementor-50 {
  background: #fffcf8;
}
body.home .elementor-element-46265ea,
body.home .elementor-element-057d4fb,
body.home .elementor-element-429a957 {
  padding-top: 1.5rem !important;
  padding-bottom: 2rem !important;
}
body.home .elementor-element-df8765e .elementor-icon-box-title,
body.home .elementor-element-daa0ee3 .elementor-icon-box-title,
body.home .elementor-element-df8765e h3,
body.home .elementor-element-daa0ee3 h3 {
  font-family: Georgia, "Times New Roman", serif !important;
  font-weight: 500 !important;
  font-size: clamp(1.5rem, 2.6vw, 2rem) !important;
  color: #14100e !important;
}
body.home .elementor-element-df8765e .elementor-icon-box-description,
body.home .elementor-element-daa0ee3 .elementor-icon-box-description {
  display: none !important;
}

.chb-home-make {
  padding: clamp(2rem, 4vw, 3.2rem) 1.25rem;
  background: #f7f2eb;
}
.chb-home-make .inner { max-width: 1120px; margin: 0 auto; }
.chb-home-make .eye,
.chb-home-flag .eye {
  margin: 0 0 .4rem;
  text-align: center;
  font-size: .72rem;
  font-weight: 750;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #c9a84c;
}
.chb-home-make h2,
.chb-home-use h2 {
  margin: 0 0 .7rem;
  text-align: center;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  font-size: clamp(1.6rem, 2.8vw, 2.1rem);
  color: #14100e;
}
.chb-home-make .lead,
.chb-home-use .lead,
.chb-cats .lead {
  max-width: 42rem;
  margin: 0 auto 1.4rem;
  text-align: center;
  font-size: 1.02rem;
  line-height: 1.7;
  color: #5c524c;
}
.chb-home-make .grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.chb-home-make article {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: #fffcf8;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #e6ddd2;
}
html body .site-content .chb-home-make article .chb-home-make__media,
.chb-home-make article .chb-home-make__media {
  margin: 0 !important;
  width: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: #efe6d8;
}
html body .site-content .chb-home-make article .chb-home-make__media img,
.chb-home-make article .chb-home-make__media img {
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  max-height: none !important;
  object-fit: cover !important;
  object-position: center center !important;
  display: block !important;
}
html body .site-content .chb-home-make article:nth-child(3) .chb-home-make__media img,
.chb-home-make article:nth-child(3) .chb-home-make__media img {
  object-position: 48% 68% !important;
}
.chb-home-make article h3 {
  margin: 1rem 1.1rem .35rem;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  font-size: 1.25rem;
  color: #2f3d2a;
}
.chb-home-make article p {
  margin: 0 1.1rem 1.2rem;
  font-size: .98rem;
  line-height: 1.6;
  color: #3d342f;
}

.chb-home-flag {
  display: grid;
  grid-template-columns: minmax(280px, .9fr) minmax(300px, 1.1fr);
  gap: clamp(1.4rem, 3vw, 2.8rem);
  align-items: center;
  background: #14100e;
  padding: clamp(2rem, 4vw, 3.4rem) max(1.25rem, calc((100% - 1120px) / 2 + 1.25rem));
}
.chb-home-flag figure { margin: 0; border-radius: 18px; overflow: hidden; }
.chb-home-flag img {
  width: 100%;
  height: min(460px, 58vh);
  object-fit: cover;
  display: block;
}
.chb-home-flag .eye { text-align: left; color: #e0c878; }
.chb-home-flag h2 {
  margin: 0 0 .75rem;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: #fffef8;
}
.chb-home-flag p {
  margin: 0 0 1.2rem;
  font-size: 1.08rem;
  line-height: 1.7;
  color: #efe7dc;
  max-width: 34rem;
}
.chb-home-tinc {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
  gap: clamp(1.4rem, 3vw, 2.8rem);
  align-items: center;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: clamp(2rem, 4vw, 3.2rem) max(1.25rem, calc((100% - 1120px) / 2 + 1.25rem));
  background: #fffcf8;
}
.chb-home-tinc figure { margin: 0; border-radius: 18px; overflow: hidden; box-shadow: 0 18px 40px rgba(18,10,8,.12); }
.chb-home-tinc img { width: 100%; height: min(460px, 58vh); object-fit: cover; display: block; }
.chb-home-tinc .eye {
  margin: 0 0 .4rem;
  font-size: .72rem;
  font-weight: 750;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #c9a84c;
}
.chb-home-tinc h2 {
  margin: 0 0 .75rem;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  font-size: clamp(1.7rem, 3vw, 2.2rem);
  color: #14100e;
}
.chb-home-tinc p {
  margin: 0 0 1rem;
  font-size: 1.05rem;
  line-height: 1.7;
  color: #3d342f;
}
.chb-home-tinc .btn,
.chb-home-flag .btn {
  display: inline-flex;
  padding: .85rem 1.35rem;
  border-radius: 999px;
  background: linear-gradient(180deg, #e0c878, #c9a84c);
  color: #2a2208 !important;
  font-weight: 750;
  letter-spacing: .06em;
  text-transform: uppercase;
  font-size: .8rem;
  text-decoration: none !important;
}

body.home .elementor-element-46265ea {
  display: none !important;
}
body.home .elementor-element-057d4fb {
  display: none !important;
}
.chb-home-new {
  background: #f7f2eb;
}
.chb-home-colloids.chb-home-new .grid {
  grid-template-columns: repeat(4, 1fr);
}
.chb-home-colloids h3 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.chb-home-colloids {
  background: #fffcf8;
  padding: clamp(2rem, 4vw, 3.2rem) 1.25rem;
}
.chb-home-colloids .inner { max-width: 1120px; margin: 0 auto; }
.chb-home-colloids .grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.chb-home-colloids article {
  background: #fff;
  border: 1px solid #eee6dc;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(18,10,8,.04);
}
.chb-home-colloids article a {
  display: block;
  text-decoration: none;
  color: inherit;
}
.chb-home-colloids .pic {
  display: block;
  background: #f7f2eb;
}
.chb-home-colloids img {
  display: block;
  width: 100%;
  height: 240px;
  object-fit: contain;
  padding: .8rem;
}
.chb-home-colloids h3 {
  margin: 0;
  padding: .85rem 1rem 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  font-size: 1.12rem;
  line-height: 1.3;
  color: #14100e;
}
.chb-home-colloids .price {
  margin: 0;
  padding: .4rem 1rem 1.1rem;
  color: #2f3d2a;
  font-weight: 700;
  font-size: .95rem;
}
.chb-home-colloids .price del { color: #8a7f76; font-weight: 500; }
.chb-home-colloids .screen-reader-text {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(1px, 1px, 1px, 1px) !important;
}
body.home .products .product img {
  width: 100% !important;
  height: 220px !important;
  object-fit: contain !important;
  background: #fffcf8;
  display: block !important;
}
body.home .bacola-latest-blog img,
body.home .blog-wrapper img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}

body.home .products {
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
}
body.home .products .product,
body.home .product-wrapper {
  background: #fff;
  border: 1px solid #eee6dc;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(18,10,8,.04);
}
body.home .products .product .product-title,
body.home .products .product h3,
body.home .products .product h2,
body.home .products .product .product-name {
  font-size: .98rem !important;
  line-height: 1.35 !important;
  padding: .7rem .85rem 0;
  color: #14100e !important;
}
body.home .products .product .price {
  padding: .35rem .85rem 1rem;
  color: #2f3d2a !important;
  font-weight: 700;
}
body.home .products .product .button,
body.home .products .product .add_to_cart_button {
  margin: 0 .85rem 1rem;
  border-radius: 999px;
}

body.home .elementor-element-429a957,
body.home .elementor-element-a548a37 {
  display: none !important;
}
.chb-home-journal {
  background: #f7f2eb;
  padding: clamp(2rem, 4vw, 3.2rem) 1.25rem;
}
.chb-home-journal .inner { max-width: 1120px; margin: 0 auto; }
.chb-home-journal .grid {
  display: grid;
  grid-template-columns: 1.25fr .95fr;
  gap: 1.1rem;
  align-items: stretch;
}
.chb-home-journal .feat {
  background: #fffcf8;
  border: 1px solid #e6ddd2;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(18,10,8,.06);
}
.chb-home-journal .feat .pic,
.chb-home-journal .feat img {
  display: block;
  width: 100%;
}
.chb-home-journal .feat img {
  height: 280px;
  object-fit: cover;
}
.chb-home-journal .feat .copy { padding: 1.2rem 1.25rem 1.4rem; }
.chb-home-journal .feat h3 {
  margin: 0 0 .55rem;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  font-size: clamp(1.4rem, 2.4vw, 1.85rem);
  line-height: 1.22;
}
.chb-home-journal .feat .excerpt {
  margin: 0 0 .7rem;
  font-size: 1.02rem;
  line-height: 1.65;
  color: #3d342f;
}
.chb-home-journal .stack {
  display: flex;
  flex-direction: column;
  gap: .75rem;
}
.chb-home-journal .stack article {
  display: grid;
  grid-template-columns: 132px 1fr;
  gap: .85rem;
  background: #fffcf8;
  border: 1px solid #e6ddd2;
  border-radius: 14px;
  overflow: hidden;
  min-height: 118px;
}
.chb-home-journal .stack .pic,
.chb-home-journal .stack img {
  display: block;
  width: 132px;
  height: 100%;
  min-height: 118px;
}
.chb-home-journal .stack img { object-fit: cover; }
.chb-home-journal .stack .copy {
  padding: .85rem .9rem .85rem 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.chb-home-journal .cat {
  margin: 0 0 .25rem;
  font-size: .68rem;
  font-weight: 750;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #c9a84c;
}
.chb-home-journal h3 a {
  color: #14100e;
  text-decoration: none;
}
.chb-home-journal .stack h3 {
  margin: 0 0 .3rem;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  font-size: 1.05rem;
  line-height: 1.3;
}
.chb-home-journal .date {
  margin: 0;
  font-size: .82rem;
  color: #8a7f76;
}
body.home .elementor-element-429a957 > .e-con-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: block !important;
}
.chb-journal-head {
  text-align: center;
  margin: 0 0 1.4rem;
}
.chb-journal-head .eye {
  margin: 0 0 .35rem;
  font-size: .72rem;
  font-weight: 750;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #c9a84c;
}
.chb-journal-head h2 {
  margin: 0 0 .5rem;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  font-size: clamp(1.6rem, 2.8vw, 2.1rem);
  color: #14100e;
}
.chb-journal-head .lead {
  max-width: 38rem;
  margin: 0 auto .35rem;
  font-size: 1.02rem;
  line-height: 1.65;
  color: #5c524c;
}
.chb-journal-head a {
  display: inline-block;
  margin-top: .55rem;
  color: #2f3d2a;
  font-weight: 750;
  text-decoration: none;
}
body.home .module-blog .row {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin: 0 !important;
}
body.home .module-blog .row > [class*="col-"] {
  width: 100% !important;
  max-width: none !important;
  flex: none !important;
  padding: 0 !important;
}
body.home .module-blog article.post {
  height: 100%;
  background: #fffcf8;
  border: 1px solid #e6ddd2;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(18,10,8,.04);
}
body.home .module-blog .post-thumbnail {
  margin: 0;
}
body.home .module-blog .post-thumbnail a,
body.home .module-blog .post-thumbnail img {
  display: block !important;
  width: 100% !important;
}
body.home .module-blog .post-thumbnail img {
  height: 200px !important;
  object-fit: cover !important;
  border-radius: 0 !important;
}
body.home .module-blog .post-wrapper {
  padding: 1rem 1.1rem 1.15rem;
}
body.home .module-blog .entry-category {
  margin: 0 0 .35rem;
}
body.home .module-blog .entry-category a {
  font-size: .68rem;
  font-weight: 750;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #c9a84c !important;
  text-decoration: none;
}
body.home .module-blog .entry-title {
  margin: 0 0 .45rem;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  font-size: 1.15rem;
  line-height: 1.3;
}
body.home .module-blog .entry-title a {
  color: #14100e !important;
  text-decoration: none;
}
body.home .module-blog .entry-comments,
body.home .module-blog .entry-author {
  display: none !important;
}
body.home .module-blog .entry-published a {
  font-size: .82rem;
  color: #8a7f76 !important;
  text-decoration: none;
}
@media (max-width: 800px) {
  body.home .module-blog .row { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 520px) {
  body.home .module-blog .row { grid-template-columns: 1fr; }
}

.chb-home-use {
  background: #f7f2eb;
  padding: clamp(2rem, 4vw, 3.2rem) 1.25rem;
}
.chb-home-use .inner { max-width: 1120px; margin: 0 auto; }
.chb-home-use .eye {
  margin: 0 0 .4rem;
  text-align: center;
  font-size: .72rem;
  font-weight: 750;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #c9a84c;
}
.chb-home-use ol {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  counter-reset: use;
}
.chb-home-use li {
  background: #fffcf8;
  border: 1px solid #e6ddd2;
  border-radius: 16px;
  padding: 1.2rem 1.15rem 1.3rem;
  counter-increment: use;
}
.chb-home-use li h3 {
  margin: 0 0 .45rem;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  font-size: 1.2rem;
  color: #2f3d2a;
}
.chb-home-use li h3::before {
  content: counter(use, decimal-leading-zero) " — ";
  color: #c9a84c;
  font-size: .85rem;
  letter-spacing: .08em;
}
.chb-home-use li p {
  margin: 0;
  font-size: .98rem;
  line-height: 1.65;
  color: #3d342f;
}

@media (max-width: 900px) {
  #chb-temp-hero-root .chb-hero-copy {
    max-width: 74% !important;
    padding-bottom: 3.2rem;
  }
  #chb-temp-hero-root .chb-hero-copy h1,
  #chb-temp-hero-root .chb-hero-copy h2 {
    font-size: clamp(1.7rem, 7vw, 2.2rem) !important;
    line-height: 1.08 !important;
  }
  #chb-temp-hero-root .chb-hero-cta {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: .65rem !important;
  }
  #chb-temp-hero-root .hero-controls {
    left: 12px !important;
    right: auto !important;
    transform: none !important;
    bottom: 12px !important;
  }
  #chb-temp-hero-root .hero-media img {
    object-position: 86% center !important;
  }
}
@media (max-width: 800px) {
  .chb-home-cats .grid { grid-template-columns: 1fr 1fr; }
  .chb-home-cats a { min-height: 130px; }
  .chb-home-family .split,
  .chb-home-flag,
  .chb-home-tinc,
  .chb-home-journal .grid,
  .chb-home-make .grid,
  .chb-home-family__facts,
  .chb-home-use ol { grid-template-columns: 1fr; }
  .chb-home-colloids .grid,
  .chb-home-colloids.chb-home-new .grid { grid-template-columns: 1fr 1fr; }
  .chb-home-family figure img,
  .chb-home-flag img,
  .chb-home-tinc img { height: min(260px, 40vh); }
  .chb-home-journal .feat img { height: 200px; }
  .chb-home-journal .stack article { grid-template-columns: 92px 1fr; }
  .chb-home-journal .stack .pic,
  .chb-home-journal .stack img { width: 92px; min-height: 92px; }
  .chb-home-trust { padding: .7rem 1rem; }
  .chb-home-trust ul { gap: .35rem .8rem; }
  .chb-home-trust li { font-size: .68rem; letter-spacing: .03em; }
  body.home .site-content { padding-bottom: 4.5rem; }
}
@media (max-width: 520px) {
  .chb-home-cats .grid { grid-template-columns: 1fr; }
  .chb-home-colloids .grid,
  .chb-home-colloids.chb-home-new .grid { grid-template-columns: 1fr; }
  #chb-temp-hero-root .chb-hero-copy { max-width: 78% !important; }
}

/* v16 — homepage polish across phone, tablet, desktop */
html body.home,
html body.home .site-content,
html body.home .content-wrapper {
  overflow-x: clip;
  max-width: 100%;
}
html body.home img,
html body.home video {
  max-width: 100%;
}
#chb-temp-hero-root .hero-media img,
#chb-temp-hero-root img {
  width: 100% !important;
  height: 100% !important;
  max-width: none;
  object-fit: cover;
}
html body.home .chb-home-colloids img {
  height: 240px;
}

@media (min-width: 1280px) {
  #chb-temp-hero-root .chb-hero-copy {
    max-width: 38rem !important;
    padding-left: 0 !important;
  }
}

@media (max-width: 1100px) {
  #chb-temp-hero-root .hero,
  #chb-temp-hero-root .hero-slide {
    min-height: min(640px, 78svh);
  }
  #chb-temp-hero-root .chb-hero-copy {
    max-width: min(34rem, 88%) !important;
    padding: 0 1.2rem 4.4rem 1.2rem !important;
    box-sizing: border-box !important;
  }
  #chb-temp-hero-root .chb-hero-copy h1,
  #chb-temp-hero-root .chb-hero-copy h2 {
    font-size: clamp(1.9rem, 5.6vw, 2.6rem) !important;
    line-height: 1.08 !important;
    max-width: 18ch;
  }
  #chb-temp-hero-root .chb-hero-cta {
    display: flex !important;
    flex-wrap: wrap !important;
    align-items: center !important;
    gap: .55rem .8rem !important;
  }
  #chb-temp-hero-root .chb-hero-link {
    color: #fffef8 !important;
    border-bottom-color: rgba(255, 254, 248, .55) !important;
  }
  #chb-temp-hero-root .hero-controls {
    left: 12px !important;
    right: 12px !important;
    bottom: 10px !important;
    width: auto !important;
    transform: none !important;
  }
}

/* Keep product photos visible: copy sits left, never full-bleed over the bottle. */
#chb-temp-hero-root .chb-hero-copy {
  max-width: min(28rem, 46vw) !important;
}
#chb-temp-hero-root .chb-hero-text {
  max-width: 34ch;
}
#chb-temp-hero-root .chb-hero-text p {
  font-size: .95rem;
  line-height: 1.45;
}
#chb-temp-hero-root .chb-hero-copy h2 {
  max-width: 14ch;
}
html body.home .chb-home-family figure img,
html body.home .chb-home-flag img,
html body.home .chb-home-tinc img,
html body.home .chb-home-make__media img {
  width: 100% !important;
  max-width: none !important;
  object-fit: cover !important;
  display: block !important;
}
html body.home .chb-home-family figure img,
html body.home .chb-home-flag img,
html body.home .chb-home-tinc img {
  height: min(520px, 58vh) !important;
}
html body.home .chb-cats__bg {
  background-size: cover !important;
  background-position: center !important;
}

/* v19 — homepage intro, why, wholesale, FAQ */
.chb-home-intro,
.chb-home-trade {
  background: #fffcf8;
  padding: clamp(1.4rem, 3vw, 2.2rem) 1.25rem;
  text-align: center;
}
.chb-home-intro .inner,
.chb-home-trade .inner,
.chb-home-why .inner,
.chb-home-faq .inner {
  max-width: 42rem;
  margin: 0 auto;
}
.chb-home-why .inner,
.chb-home-faq .inner {
  max-width: 1120px;
}
.chb-home-intro h1,
.chb-home-trade h2 {
  margin: 0 0 .7rem;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  font-size: clamp(1.45rem, 2.6vw, 2.05rem);
  line-height: 1.2;
  color: #14100e;
}
.chb-home-intro p,
.chb-home-trade p {
  margin: 0 auto 1.25rem;
  max-width: 40rem;
  font-size: 1.05rem;
  line-height: 1.7;
  color: #3d342f;
}
.chb-home-intro a,
.chb-home-trade a,
.chb-home-why a,
.chb-home-faq a,
.chb-home-use a,
.chb-home-flag a:not(.btn) {
  color: #2f3d2a;
  font-weight: 650;
}
.chb-home-intro__cta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: .75rem 1.1rem;
}
.chb-home-intro__cta .btn,
.chb-home-trade .btn {
  display: inline-flex;
  padding: .85rem 1.35rem;
  border-radius: 999px;
  background: linear-gradient(180deg, #e0c878, #c9a84c);
  color: #2a2208 !important;
  font-weight: 750;
  letter-spacing: .06em;
  text-transform: uppercase;
  font-size: .8rem;
  text-decoration: none !important;
}
.chb-home-intro__link {
  color: #2f3d2a !important;
  font-weight: 750;
  text-decoration: none;
  border-bottom: 1px solid #c9a84c;
}
.chb-home-why {
  background: #f7f2eb;
  padding: clamp(2rem, 4vw, 3.2rem) 1.25rem;
}
.chb-home-why .eye,
.chb-home-intro .eye,
.chb-home-trade .eye,
.chb-home-faq .eye {
  margin: 0 0 .4rem;
  text-align: center;
  font-size: .72rem;
  font-weight: 750;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #c9a84c;
}
.chb-home-why h2,
.chb-home-faq h2 {
  margin: 0 0 .7rem;
  text-align: center;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  font-size: clamp(1.6rem, 2.8vw, 2.1rem);
  color: #14100e;
}
.chb-home-why .lead {
  max-width: 42rem;
  margin: 0 auto 1.4rem;
  text-align: center;
  font-size: 1.02rem;
  line-height: 1.7;
  color: #5c524c;
}
.chb-home-why ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.chb-home-why li {
  background: #fffcf8;
  border: 1px solid #e6ddd2;
  border-radius: 16px;
  padding: 1.15rem 1.1rem 1.25rem;
}
.chb-home-why h3 {
  margin: 0 0 .4rem;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  font-size: 1.15rem;
  color: #2f3d2a;
}
.chb-home-why p {
  margin: 0;
  font-size: .98rem;
  line-height: 1.6;
  color: #3d342f;
}
.chb-home-faq {
  background: #fffcf8;
  padding: clamp(2rem, 4vw, 3.2rem) 1.25rem;
}
.chb-home-faq__list {
  max-width: 46rem;
  margin: 0 auto;
}
.chb-home-faq details {
  border-bottom: 1px solid #e6ddd2;
}
.chb-home-faq summary {
  cursor: pointer;
  list-style: none;
  padding: 1rem 1.6rem 1rem 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.12rem;
  font-weight: 500;
  color: #2f3d2a;
  position: relative;
}
.chb-home-faq summary::-webkit-details-marker { display: none; }
.chb-home-faq summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  color: #c9a84c;
  font-size: 1.25rem;
  font-weight: 600;
}
.chb-home-faq details[open] summary::after { content: "–"; }
.chb-home-faq details p {
  margin: 0 0 1.1rem;
  font-size: 1rem;
  line-height: 1.7;
  color: #3d342f;
}
.chb-home-trade { background: #f7f2eb; }
#chb-temp-newsletter label {
  display: block;
  margin: 0 0 .4rem;
  font-size: .82rem;
  font-weight: 650;
  letter-spacing: .04em;
  color: rgba(245,242,234,.88);
}
@media (max-width: 800px) {
  .chb-home-why ul { grid-template-columns: 1fr; }
  .chb-home-intro h1 { font-size: clamp(1.4rem, 6vw, 1.75rem); }
  #chb-temp-hero-root .chb-hero-text { display: none; }
  #chb-temp-hero-root .chb-hero-copy {
    max-width: min(22rem, 72vw) !important;
  }
  html body.home .chb-home-family figure img,
  html body.home .chb-home-flag img,
  html body.home .chb-home-tinc img {
    height: min(260px, 40vh) !important;
  }
}

@media (max-width: 700px) {
  #chb-temp-hero-root .chb-hero-copy {
    max-width: 92% !important;
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }
  #chb-temp-hero-root .chb-hero-copy h1,
  #chb-temp-hero-root .chb-hero-copy h2 {
    font-size: clamp(1.85rem, 8vw, 2.2rem) !important;
    max-width: none;
  }
  #chb-temp-hero-root .chb-hero-cta a,
  #chb-temp-hero-root .chb-hero-button {
    min-height: 44px;
  }
}

/* Trust strip: keep three marks in one centred wrap, not 2+1 */
@media (max-width: 800px) {
  .chb-home-trust {
    padding: .65rem .85rem !important;
  }
  .chb-home-trust ul {
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    gap: .4rem .9rem !important;
  }
  .chb-home-trust li {
    flex: 0 1 auto !important;
    font-size: .68rem !important;
    letter-spacing: .03em !important;
  }
}

/* Shop-by-range stays 2-up on phones; 4-up on tablet+ */
@media (max-width: 900px) {
  body.home .chb-cats .grid,
  body.home .chb-home-cats .grid {
    grid-template-columns: 1fr 1fr !important;
    grid-auto-rows: minmax(132px, 30vw) !important;
    gap: .6rem !important;
  }
  body.home .chb-cats__tile,
  body.home .chb-cats__feat {
    grid-column: auto !important;
    grid-row: auto !important;
    min-height: 0 !important;
  }
  body.home .chb-cats__name,
  body.home .chb-home-cats a span {
    font-size: 1.12rem !important;
  }
}
@media (max-width: 360px) {
  body.home .chb-cats .grid,
  body.home .chb-home-cats .grid {
    grid-template-columns: 1fr !important;
    grid-auto-rows: 150px !important;
  }
}

/* Product cards: 2-up on phone/tablet, compact images */
@media (max-width: 900px) {
  body.home .chb-home-colloids .grid,
  body.home .chb-home-colloids.chb-home-new .grid {
    grid-template-columns: 1fr 1fr !important;
    gap: .65rem !important;
  }
  body.home .chb-home-colloids img {
    height: 150px !important;
    padding: .4rem !important;
  }
  body.home .chb-home-colloids h3 {
    font-size: .92rem !important;
    padding: .5rem .65rem 0 !important;
  }
  body.home .chb-home-colloids .price {
    padding: .3rem .65rem .7rem !important;
    font-size: .88rem !important;
  }
  body.home .chb-home-family .split,
  body.home .chb-home-flag,
  body.home .chb-home-tinc,
  body.home .chb-home-journal .grid {
    grid-template-columns: 1fr !important;
  }
  body.home .chb-home-family figure img,
  body.home .chb-home-flag img,
  body.home .chb-home-tinc img {
    width: 100% !important;
    height: min(280px, 42vh) !important;
    object-fit: cover !important;
  }
  body.home .chb-home-family__facts,
  body.home .chb-home-use ol,
  body.home .chb-home-make .grid {
    grid-template-columns: 1fr !important;
  }
  body.home .chb-home-journal .stack article {
    grid-template-columns: 88px 1fr !important;
  }
}

@media (min-width: 620px) and (max-width: 900px) {
  body.home .chb-home-family__facts,
  body.home .chb-home-use ol,
  body.home .chb-home-make .grid {
    grid-template-columns: 1fr 1fr !important;
  }
}

@media (min-width: 901px) and (max-width: 1199px) {
  body.home .chb-home-colloids .grid,
  body.home .chb-home-colloids.chb-home-new .grid {
    grid-template-columns: repeat(3, 1fr) !important;
  }
}

@media (max-width: 700px) {
  #chb-temp-newsletter .newsletter-inner,
  section.newsletter .newsletter-inner {
    grid-template-columns: 1fr !important;
    gap: 1.25rem !important;
  }
  #chb-temp-newsletter .newsletter-form,
  section.newsletter form {
    width: 100% !important;
  }
  #chb-temp-newsletter .newsletter-form input[type="email"],
  #chb-temp-newsletter .newsletter-form button,
  section.newsletter input[type="email"],
  section.newsletter button {
    width: 100% !important;
    min-height: 44px;
    box-sizing: border-box !important;
  }
}

@media (max-width: 800px) {
  body.home .chb-tp {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

/* v18 — tighter cards, hover, buttons, hero CTAs */
body.home .chb-home-colloids article {
  transition: transform .22s ease, box-shadow .22s ease;
}
body.home .chb-home-colloids article:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(18,10,8,.1);
}
body.home .chb-home-colloids .pic {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f4eee6;
  height: 260px;
}
body.home .chb-home-colloids img {
  width: auto !important;
  max-width: 100% !important;
  height: 240px !important;
  object-fit: contain !important;
  padding: .85rem !important;
}
body.home .chb-home-colloids h3 {
  min-height: 2.6em;
}
body.home .chb-home-family .chb-home-story {
  display: inline-flex;
  align-items: center;
  margin-top: .35rem;
  padding: .72rem 1.25rem;
  border-radius: 999px;
  background: #2f3d2a;
  color: #fffcf8 !important;
  font-weight: 700;
  letter-spacing: .04em;
  text-decoration: none !important;
}
body.home .chb-home-family .chb-home-story:hover {
  background: #3a4a36;
}
body.home .chb-home-flag .btn,
body.home .chb-home-tinc .btn {
  transition: transform .18s ease, box-shadow .18s ease;
}
body.home .chb-home-flag .btn:hover,
body.home .chb-home-tinc .btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 20px rgba(18,10,8,.16);
}
body.home .chb-home-journal .feat,
body.home .chb-home-journal .stack article {
  transition: transform .2s ease, box-shadow .2s ease;
}
body.home .chb-home-journal .feat:hover,
body.home .chb-home-journal .stack article:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 28px rgba(18,10,8,.08);
}
body.home .chb-home-make article {
  transition: transform .2s ease, box-shadow .2s ease;
}
body.home .chb-home-make article:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 28px rgba(18,10,8,.08);
}
#chb-temp-hero-root .chb-hero-cta {
  display: flex !important;
  flex-wrap: wrap !important;
  align-items: center !important;
  gap: .65rem .85rem !important;
}
#chb-temp-hero-root .chb-hero-link {
  display: inline-flex !important;
  align-items: center;
  padding: .7rem 1.15rem;
  border-radius: 999px;
  border: 1px solid rgba(255,254,248,.5) !important;
  background: rgba(14,18,13,.28);
  color: #fffef8 !important;
  text-decoration: none !important;
  border-bottom-width: 1px !important;
}
@media (max-width: 1100px) {
  #chb-temp-hero-root .chb-hero-cta {
    flex-direction: row !important;
  }
}
@media (max-width: 700px) {
  body.home .chb-home-make article p + p {
    display: none;
  }
  body.home .chb-home-family .copy p:nth-of-type(3) {
    display: none;
  }
  body.home .chb-home-colloids .pic {
    height: 168px;
  }
}
@media (min-width: 1101px) {
  body.home .chb-home-colloids.chb-home-new .grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* home-restyle-v20.css */
/* Restore the original Crystal homepage layout. New copy only. */

html body.home .chb-home-shop { display: none !important; }
html body.home .chb-cats { display: block !important; }

/* Original family */
html body.home .chb-home-family {
  padding: clamp(2rem, 4vw, 3.2rem) 1.25rem !important;
  background: #fffcf8;
}
html body.home .chb-home-family .split {
  max-width: 1120px !important;
  margin: 0 auto !important;
  grid-template-columns: minmax(280px, .95fr) minmax(300px, 1.05fr) !important;
  gap: clamp(1.4rem, 3vw, 2.8rem) !important;
  align-items: center !important;
}
html body.home .chb-home-family figure {
  border-radius: 18px !important;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(18,10,8,.12) !important;
}
html body.home .chb-home-family figure img {
  height: min(520px, 62vh) !important;
  min-height: 0 !important;
  object-fit: cover !important;
}
html body.home .chb-home-family .copy {
  padding: 0 !important;
  max-width: 40rem;
  display: block !important;
}
html body.home .chb-home-family .eye { display: block !important; }
html body.home .chb-home-family .chb-home-story {
  background: none !important;
  box-shadow: none !important;
  min-height: 0 !important;
  padding: 0 !important;
  border-radius: 0 !important;
  text-transform: none !important;
  letter-spacing: 0 !important;
  font-size: 1rem !important;
  font-weight: 750 !important;
  color: #2f3d2a !important;
  text-decoration: none;
}
html body.home .chb-home-family__facts {
  max-width: 1120px !important;
  margin: 1.6rem auto 0 !important;
  padding: 0 !important;
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: .75rem !important;
}
html body.home .chb-home-family__facts li {
  background: #f7f2eb !important;
  border: 0 !important;
  border-radius: 14px !important;
  padding: .9rem 1rem !important;
}

/* Original flag + tinctures */
html body.home .chb-home-flag {
  display: grid !important;
  grid-template-columns: minmax(280px, .9fr) minmax(300px, 1.1fr) !important;
  gap: clamp(1.4rem, 3vw, 2.8rem) !important;
  align-items: center !important;
  padding: clamp(2rem, 4vw, 3.4rem) max(1.25rem, calc((100% - 1120px) / 2 + 1.25rem)) !important;
}
html body.home .chb-home-tinc {
  display: grid !important;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr) !important;
  gap: clamp(1.4rem, 3vw, 2.8rem) !important;
  align-items: center !important;
  padding: clamp(2rem, 4vw, 3.2rem) max(1.25rem, calc((100% - 1120px) / 2 + 1.25rem)) !important;
}
html body.home .chb-home-flag figure,
html body.home .chb-home-tinc figure {
  border-radius: 18px !important;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(18,10,8,.12);
}
html body.home .chb-home-flag img,
html body.home .chb-home-tinc img {
  height: min(460px, 58vh) !important;
  min-height: 0 !important;
  object-fit: cover !important;
}
html body.home .chb-home-flag .copy,
html body.home .chb-home-tinc .copy {
  padding: 0 !important;
  display: block !important;
}
html body.home .chb-home-tinc .eye { display: block !important; }
html body.home .chb-home-flag .btn,
html body.home .chb-home-tinc .btn,
html body.home .chb-home-trade .btn {
  display: inline-flex;
  align-items: center;
  padding: .85rem 1.35rem;
  border-radius: 999px !important;
  background: linear-gradient(180deg, #e0c878, #c9a84c) !important;
  color: #2a2208 !important;
  font-weight: 750;
  letter-spacing: .06em;
  text-transform: uppercase;
  font-size: .8rem;
  text-decoration: none !important;
  box-shadow: none !important;
  min-height: 0;
}
html body.home .chb-home-flag a:not(.btn) { color: #e0c878 !important; }

/* Original workshop cards */
html body.home .chb-home-make {
  background: #f7f2eb !important;
  padding: clamp(2rem, 4vw, 3.2rem) 1.25rem !important;
}
html body.home .chb-home-make .inner { max-width: 1120px !important; margin: 0 auto; }
html body.home .chb-home-make h2,
html body.home .chb-home-make .lead { text-align: center; margin-left: auto; margin-right: auto; }
html body.home .chb-home-make .grid { gap: 1rem !important; }
html body.home .chb-home-make article {
  background: #fffcf8 !important;
  border: 1px solid #e6ddd2 !important;
  border-radius: 16px !important;
  overflow: hidden;
}
html body.home .chb-home-make article h3,
html body.home .chb-home-make article p {
  margin-left: 1.1rem !important;
  margin-right: 1.1rem !important;
}

/* Original product cards */
html body.home .chb-home-colloids {
  padding: clamp(2rem, 4vw, 3.2rem) 1.25rem !important;
}
html body.home .chb-home-colloids .inner { max-width: 1120px; margin: 0 auto; }
html body.home .chb-home-colloids .grid { gap: 1rem !important; }
html body.home .chb-home-colloids article {
  background: #fff !important;
  border: 1px solid #eee6dc !important;
  border-radius: 16px !important;
  overflow: hidden !important;
  box-shadow: 0 8px 20px rgba(18,10,8,.04) !important;
}
html body.home .chb-home-colloids .pic { background: #f7f2eb !important; }
html body.home .chb-home-colloids img {
  height: 240px !important;
  padding: .8rem !important;
  object-fit: contain !important;
}
html body.home .chb-home-colloids h3 { padding: .85rem 1rem 0 !important; }
html body.home .chb-home-colloids .price { padding: .4rem 1rem 1.1rem !important; }

/* Original journal */
html body.home .chb-home-journal {
  background: #f7f2eb !important;
  padding: clamp(2rem, 4vw, 3.2rem) 1.25rem !important;
}
html body.home .chb-home-journal .inner { max-width: 1120px; margin: 0 auto; }
html body.home .chb-journal-head {
  display: block !important;
  text-align: center !important;
}
html body.home .chb-journal-head h2 { text-align: center; }
html body.home .chb-journal-head .eye,
html body.home .chb-journal-head .lead { display: block; }
html body.home .chb-home-journal .feat,
html body.home .chb-home-journal .stack article {
  background: #fffcf8 !important;
  border: 1px solid #e6ddd2 !important;
  border-radius: 14px !important;
}
html body.home .chb-home-journal .grid {
  grid-template-columns: 1.25fr .95fr !important;
  gap: 1.1rem !important;
}
html body.home .chb-home-journal .stack article {
  display: grid !important;
  grid-template-columns: 132px 1fr !important;
}

/* Original how-to cards */
html body.home .chb-home-use {
  background: #f7f2eb !important;
  padding: clamp(2rem, 4vw, 3.2rem) 1.25rem !important;
}
html body.home .chb-home-use .inner { max-width: 1120px !important; margin: 0 auto; }
html body.home .chb-home-use h2,
html body.home .chb-home-use .lead { text-align: center; }
html body.home .chb-home-use ol {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 1rem !important;
}
html body.home .chb-home-use li {
  background: #fffcf8 !important;
  border: 1px solid #e6ddd2 !important;
  border-radius: 16px !important;
  padding: 1.2rem 1.15rem 1.3rem !important;
}
html body.home .chb-home-use li h3::before {
  content: counter(use, decimal-leading-zero) " — " !important;
  color: #c9a84c;
  font-size: .85rem;
  letter-spacing: .08em;
}

/* Original trust strip */
html body.home .chb-home-trust {
  background: #f7f2eb !important;
  border: 0 !important;
  border-bottom: 1px solid #e6ddd2 !important;
  padding: .85rem 1.25rem !important;
}
html body.home .chb-home-trust ul {
  display: flex !important;
  flex-wrap: wrap !important;
  justify-content: center !important;
  gap: .45rem 1.75rem !important;
  max-width: 1120px;
}
html body.home .chb-home-trust li {
  display: list-item !important;
  list-style: none;
  border: 0 !important;
  padding: 0 !important;
  font-size: .82rem !important;
  font-weight: 650;
  letter-spacing: .04em;
  text-transform: uppercase !important;
  color: #2f3d2a;
}
html body.home .chb-home-trust li::after { content: none !important; }

/* Intro — same type as the family copy column */
html body.home .chb-home-intro {
  background: #fffcf8;
  padding: clamp(2rem, 4vw, 3.2rem) 1.25rem;
  text-align: left;
  border: 0;
}
html body.home .chb-home-intro .inner {
  max-width: 40rem !important;
  margin: 0 auto;
  display: block !important;
}
html body.home .chb-home-intro h1 {
  margin: 0 0 .75rem;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  font-size: clamp(1.7rem, 3vw, 2.2rem) !important;
  line-height: 1.2 !important;
  color: #14100e;
}
html body.home .chb-home-intro p {
  margin: 0 0 1.1rem !important;
  font-size: 1.05rem;
  line-height: 1.65;
  color: #3d342f;
}
html body.home .chb-home-intro a {
  color: #2f3d2a;
  font-weight: 750;
  text-decoration: none;
  text-transform: none !important;
  letter-spacing: 0 !important;
  font-size: inherit !important;
}

/* Why — same cards as family facts */
html body.home .chb-home-why {
  background: #fffcf8 !important;
  padding: clamp(2rem, 4vw, 3.2rem) 1.25rem !important;
}
html body.home .chb-home-why .inner { max-width: 1120px !important; margin: 0 auto; }
html body.home .chb-home-why h2,
html body.home .chb-home-why .lead,
html body.home .chb-home-why .eye { text-align: center; }
html body.home .chb-home-why .lead { max-width: 42rem; margin: 0 auto 1.4rem; }
html body.home .chb-home-why ul {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: .75rem !important;
  border: 0 !important;
}
html body.home .chb-home-why li {
  display: block;
  background: #f7f2eb !important;
  border: 0 !important;
  border-radius: 14px !important;
  box-shadow: none !important;
  padding: .9rem 1rem !important;
}
html body.home .chb-home-why h3 {
  display: block;
  margin: 0 0 .15rem !important;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.05rem !important;
  color: #2f3d2a;
}
html body.home .chb-home-why h3::after,
html body.home .chb-home-why h3::before { content: none !important; }
html body.home .chb-home-why p { display: block; margin: 0; font-size: .95rem; color: #3d342f; }

/* Wholesale — same band as workshop */
html body.home .chb-home-trade {
  background: #f7f2eb !important;
  color: #3d342f !important;
  padding: clamp(2rem, 4vw, 3.2rem) 1.25rem !important;
  text-align: center;
  border: 0 !important;
}
html body.home .chb-home-trade .inner { max-width: 40rem !important; margin: 0 auto; }
html body.home .chb-home-trade h2 {
  color: #14100e !important;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.6rem, 2.8vw, 2.1rem) !important;
  margin: 0 0 .7rem;
}
html body.home .chb-home-trade p { color: #3d342f !important; margin: 0 0 1.1rem !important; }
html body.home .chb-home-trade a:not(.btn) { color: #2f3d2a !important; }

/* FAQ */
html body.home .chb-home-faq {
  background: #fffcf8 !important;
  padding: clamp(2rem, 4vw, 3.2rem) 1.25rem !important;
}
html body.home .chb-home-faq .inner { max-width: 42rem !important; margin: 0 auto; }
html body.home .chb-home-faq h2,
html body.home .chb-home-faq .eye { text-align: center; }
html body.home .chb-home-faq__list {
  background: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  padding: 0 !important;
}
html body.home .chb-home-faq details { border-bottom: 1px solid #e6ddd2; }
html body.home .chb-home-faq summary {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.15rem;
  color: #2f3d2a;
}

/* Reviews layout lives in reviews-home-v1.css */
html body.home .chb-tp--home { background: #f7f3ec; }

@media (max-width: 800px) {
  html body.home .chb-home-family .split,
  html body.home .chb-home-flag,
  html body.home .chb-home-tinc,
  html body.home .chb-home-why ul,
  html body.home .chb-home-use ol,
  html body.home .chb-home-family__facts,
  html body.home .chb-home-make .grid {
    grid-template-columns: 1fr !important;
  }
  html body.home .chb-home-journal .grid { grid-template-columns: 1fr !important; }
  html body.home .chb-home-journal .stack article { grid-template-columns: 92px 1fr !important; }
}

/* chb-storyblock.css */
/* First section under the hero only. Scoped to .chb-storyblock. */

html body.home .chb-storyblock {
  --sb-ivory: #f7f3ec;
  --sb-paper: #fbf8f2;
  --sb-green: #2f3d2a;
  --sb-gold: #b08a3e;
  --sb-ink: #1c1a16;
  --sb-body: #3a342c;
  --sb-mute: #6a6258;
  --sb-serif: Georgia, "Times New Roman", serif;
  --sb-sans: Montserrat, "Segoe UI", system-ui, sans-serif;
  background: var(--sb-paper);
  color: var(--sb-body);
  padding: 0 0 2.4rem;
  font-family: var(--sb-sans);
}

html body.home .chb-storyblock * { box-sizing: border-box; }

/* 1. Reassurance strip */
html body.home .chb-storyblock__strip {
  border-bottom: 1px solid rgba(176, 138, 62, 0.18);
  padding: 0.85rem 1.25rem;
}
html body.home .chb-storyblock__strip ul {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  max-width: 1120px;
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 0;
}
html body.home .chb-storyblock__strip li {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  margin: 0;
  padding: 0.15rem 0.75rem;
  color: var(--sb-ink);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  line-height: 1.3;
}
html body.home .chb-storyblock__strip svg {
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  color: var(--sb-gold);
  stroke: currentColor;
  fill: none;
}
html body.home .chb-storyblock__strip li.chb-storyblock__rule,
html body.home .chb-storyblock__creds li.chb-storyblock__rule {
  display: block;
  width: 1px;
  height: 28px;
  padding: 0;
  gap: 0;
  background: var(--sb-gold);
  opacity: 0.55;
  justify-self: center;
  align-self: center;
}

/* 2. Photo + copy */
html body.home .chb-storyblock__main {
  max-width: 1120px;
  margin: 0 auto;
  padding: 2.1rem 1.25rem 1.6rem;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  gap: 3.2rem;
  align-items: center;
}
html body.home .chb-storyblock__main figure {
  margin: 0;
  border-radius: 12px;
  overflow: hidden;
  background: #efe6d8;
}
html body.home .chb-storyblock__main img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 731 / 704;
  object-fit: cover;
  object-position: 50% 46%;
}
html body.home .chb-storyblock__copy { max-width: 34rem; }
html body.home .chb-storyblock__eye {
  margin: 0 0 1.15rem;
  color: var(--sb-gold);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
html body.home .chb-storyblock__eye::after {
  content: "";
  display: block;
  width: 2.4rem;
  height: 1px;
  margin-top: 0.55rem;
  background: var(--sb-gold);
}
html body.home .chb-storyblock__copy h2 {
  margin: 0 0 1.15rem;
  font-family: var(--sb-serif);
  font-weight: 500;
  font-size: clamp(2rem, 3.4vw, 2.75rem);
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--sb-ink);
}
html body.home .chb-storyblock__copy p {
  margin: 0 0 1.05rem;
  font-size: 1.02rem;
  line-height: 1.7;
  color: var(--sb-body);
}
html body.home .chb-storyblock__pull {
  margin: 1.35rem 0 1.45rem !important;
  font-family: var(--sb-serif);
  font-size: clamp(1.35rem, 2.1vw, 1.7rem);
  font-weight: 500;
  line-height: 1.32;
  color: var(--sb-ink);
}
html body.home .chb-storyblock__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  min-height: 46px;
  padding: 0 1.35rem;
  border: 1px solid var(--sb-green);
  border-radius: 2px;
  color: var(--sb-green);
  background: transparent;
  font-family: var(--sb-sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
}
html body.home .chb-storyblock__btn:hover,
html body.home .chb-storyblock__btn:focus-visible {
  background: var(--sb-green);
  color: #f7f3ec;
}
html body.home .chb-storyblock__btn:focus-visible {
  outline: 2px solid var(--sb-gold);
  outline-offset: 3px;
}

/* 3. Credentials */
html body.home .chb-storyblock__creds {
  max-width: 1120px;
  margin: 0.4rem auto 0;
  padding: 0.4rem 1.25rem 0;
}
html body.home .chb-storyblock__creds ul {
  list-style: none;
  margin: 0;
  padding: 1.15rem 0 0;
  border-top: 1px solid rgba(176, 138, 62, 0.18);
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
}
html body.home .chb-storyblock__creds li {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  margin: 0;
  padding: 0.35rem 0.9rem;
}
html body.home .chb-storyblock__creds svg {
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  margin-top: 0.15rem;
  color: var(--sb-gold);
  stroke: currentColor;
  fill: none;
}
html body.home .chb-storyblock__creds strong {
  display: block;
  font-family: var(--sb-serif);
  font-size: 1.12rem;
  font-weight: 500;
  color: var(--sb-ink);
  line-height: 1.25;
}
html body.home .chb-storyblock__creds span {
  display: block;
  margin-top: 0.15rem;
  font-size: 0.88rem;
  line-height: 1.4;
  color: var(--sb-mute);
  font-weight: 400;
}

@media (max-width: 960px) {
  html body.home .chb-storyblock__main {
    gap: 1.8rem;
    padding-top: 1.6rem;
  }
  html body.home .chb-storyblock__copy h2 {
    font-size: clamp(1.7rem, 4vw, 2.2rem);
  }
}

@media (max-width: 800px) {
  html body.home .chb-storyblock {
    padding-bottom: 1.6rem;
  }
  html body.home .chb-storyblock__strip {
    padding: 0.75rem 1.25rem;
  }
  html body.home .chb-storyblock__strip ul,
  html body.home .chb-storyblock__creds ul {
    grid-template-columns: 1fr;
    gap: 0;
  }
  html body.home .chb-storyblock__strip li,
  html body.home .chb-storyblock__creds li {
    justify-content: flex-start;
    padding: 0.55rem 0;
  }
  html body.home .chb-storyblock__strip li.chb-storyblock__rule,
  html body.home .chb-storyblock__creds li.chb-storyblock__rule {
    width: 100%;
    height: 1px;
    opacity: 0.35;
  }
  html body.home .chb-storyblock__main {
    grid-template-columns: 1fr;
    padding: 1.35rem 1.25rem 0.8rem;
    gap: 1.35rem;
  }
  html body.home .chb-storyblock__creds {
    padding: 0 1.25rem;
  }
  html body.home .chb-storyblock__creds ul {
    padding-top: 0.4rem;
  }
  html body.home .chb-storyblock__btn {
    min-height: 48px;
  }
}

/* chb-shoprange.css */
/* Homepage Shop the Range only. Does not affect About/archive .chb-cats. */

html body.home .chb-shoprange {
  --sr-ivory: #fbf8f2;
  --sr-panel: #f7f3ec;
  --sr-green: #2f3d2a;
  --sr-gold: #b08a3e;
  --sr-ink: #1c1a16;
  --sr-body: #4a433b;
  --sr-line: #e4dcd0;
  --sr-serif: Georgia, "Times New Roman", serif;
  --sr-sans: Montserrat, "Segoe UI", system-ui, sans-serif;
  background: var(--sr-ivory);
  padding: 2.6rem 1.25rem 3.2rem;
  font-family: var(--sr-sans);
  color: var(--sr-body);
}
html body.home .chb-shoprange * { box-sizing: border-box; }
html body.home .chb-shoprange__inner {
  max-width: 1120px;
  margin: 0 auto;
}
html body.home .chb-shoprange__intro {
  text-align: center;
  max-width: 40rem;
  margin: 0 auto 2rem;
}
html body.home .chb-shoprange__eye {
  margin: 0 0 0.85rem;
  color: var(--sr-gold);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
html body.home .chb-shoprange__eye::after {
  content: "";
  display: block;
  width: 2.4rem;
  height: 1px;
  margin: 0.5rem auto 0;
  background: var(--sr-gold);
}
html body.home .chb-shoprange__intro h2 {
  margin: 0 0 0.7rem;
  font-family: var(--sr-serif);
  font-weight: 500;
  font-size: clamp(2rem, 3.6vw, 2.85rem);
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--sr-green);
}
html body.home .chb-shoprange__intro p {
  margin: 0 auto 1.05rem;
  max-width: 34rem;
  font-size: 1.02rem;
  line-height: 1.65;
  color: var(--sr-body);
}
html body.home .chb-shoprange__all {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--sr-green);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
}
html body.home .chb-shoprange__all svg {
  width: 14px;
  height: 14px;
}
html body.home .chb-shoprange__all:hover,
html body.home .chb-shoprange__all:focus-visible {
  color: var(--sr-gold);
}
html body.home .chb-shoprange__all:focus-visible {
  outline: 2px solid var(--sr-gold);
  outline-offset: 3px;
}

html body.home .chb-shoprange__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.1rem;
  align-items: stretch;
}
html body.home .chb-shoprange__card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: var(--sr-ivory);
  border: 1px solid var(--sr-line);
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  min-height: 0;
}
html body.home .chb-shoprange__media {
  display: block;
  overflow: hidden;
  aspect-ratio: 3 / 2;
  background: #efe6d8;
}
html body.home .chb-shoprange__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}
html body.home .chb-shoprange__card[data-id="shop-range-colloids"] img { object-position: 55% 50%; }
html body.home .chb-shoprange__card[data-id="shop-range-vitamins"] img { object-position: 50% 50%; }
html body.home .chb-shoprange__card[data-id="shop-range-liposomes"] img { object-position: 50% 40%; }
html body.home .chb-shoprange__card[data-id="shop-range-tissue-salts"] img { object-position: 50% 55%; }
html body.home .chb-shoprange__card[data-id="shop-range-soaps"] img { object-position: 50% 50%; }
html body.home .chb-shoprange__card[data-id="shop-range-tinctures"] img { object-position: 50% 50%; }
html body.home .chb-shoprange__card[data-id="shop-range-essentials"] img { object-position: 50% 50%; }
html body.home .chb-shoprange__card[data-id="shop-range-detox"] img { object-position: 50% 50%; }

html body.home .chb-shoprange__body {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto auto;
  column-gap: 0.6rem;
  align-items: start;
  padding: 0.85rem 0.95rem 0.95rem;
  background: var(--sr-ivory);
  min-height: 4.6rem;
}
html body.home .chb-shoprange__name {
  margin: 0;
  font-family: var(--sr-serif);
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--sr-ink);
  line-height: 1.2;
}
html body.home .chb-shoprange__desc {
  grid-column: 1;
  margin: 0.2rem 0 0;
  font-size: 0.82rem;
  line-height: 1.4;
  color: var(--sr-body);
}
html body.home .chb-shoprange__arrow {
  grid-column: 2;
  grid-row: 1 / span 2;
  align-self: center;
  width: 16px;
  height: 16px;
  color: var(--sr-green);
  transition: color 0.2s ease, transform 0.2s ease;
}

html body.home .chb-shoprange__card:hover {
  border-color: #cfc3b0;
}
html body.home .chb-shoprange__card:hover img {
  transform: scale(1.03);
}
html body.home .chb-shoprange__card:hover .chb-shoprange__arrow {
  color: var(--sr-gold);
  transform: translateX(3px);
}
html body.home .chb-shoprange__card:focus-visible {
  outline: 2px solid var(--sr-gold);
  outline-offset: 3px;
}

@media (max-width: 980px) {
  html body.home .chb-shoprange__grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 600px) {
  html body.home .chb-shoprange {
    padding: 2rem 1.15rem 2.4rem;
  }
  html body.home .chb-shoprange__grid {
    grid-template-columns: 1fr;
    gap: 0.9rem;
  }
  html body.home .chb-shoprange__intro h2 {
    font-size: 1.9rem;
  }
}

/* chb-workshop.css */
/* Homepage workshop section only. */

html body.home .chb-workshop {
  --ws-ivory: #fbf8f2;
  --ws-green: #2f3d2a;
  --ws-gold: #b08a3e;
  --ws-ink: #1c1a16;
  --ws-body: #4a433b;
  --ws-serif: Georgia, "Times New Roman", serif;
  --ws-sans: Montserrat, "Segoe UI", system-ui, sans-serif;
  background: var(--ws-ivory);
  color: var(--ws-body);
  font-family: var(--ws-sans);
  padding: 0;
}
html body.home .chb-workshop * { box-sizing: border-box; }
html body.home .chb-workshop__inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 2.6rem 1.25rem 2.2rem;
}
html body.home .chb-workshop__intro {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  gap: 2.4rem 3rem;
  align-items: start;
  margin-bottom: 2rem;
}
html body.home .chb-workshop__eye {
  margin: 0 0 0.85rem;
  color: var(--ws-gold);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
html body.home .chb-workshop__eye::after {
  content: "";
  display: block;
  width: 2.4rem;
  height: 1px;
  margin-top: 0.5rem;
  background: var(--ws-gold);
}
html body.home .chb-workshop__intro h2 {
  margin: 0;
  font-family: var(--ws-serif);
  font-weight: 500;
  font-size: clamp(2.1rem, 4vw, 3.15rem);
  line-height: 1.08;
  letter-spacing: -0.025em;
  color: var(--ws-green);
}
html body.home .chb-workshop__copy p {
  margin: 0 0 1.15rem;
  font-size: 1.02rem;
  line-height: 1.7;
  color: var(--ws-body);
}
html body.home .chb-workshop__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  min-height: 44px;
  padding: 0 1.2rem;
  border: 1px solid var(--ws-green);
  border-radius: 2px;
  color: var(--ws-green);
  background: transparent;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
}
html body.home .chb-workshop__btn svg {
  width: 14px;
  height: 14px;
}
html body.home .chb-workshop__btn:hover,
html body.home .chb-workshop__btn:focus-visible {
  background: var(--ws-green);
  color: var(--ws-ivory);
}
html body.home .chb-workshop__btn:focus-visible {
  outline: 2px solid var(--ws-gold);
  outline-offset: 3px;
}

html body.home .chb-workshop__panels {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.35rem;
}
html body.home .chb-workshop__panel {
  margin: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}
html body.home .chb-workshop__panel figure {
  margin: 0 0 0.95rem;
  border-radius: 12px;
  overflow: hidden;
  background: #efe6d8;
}
html body.home .chb-workshop__panel img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 5 / 4;
  object-fit: cover;
}
html body.home .chb-workshop__num {
  margin: 0 0 0.2rem;
  color: var(--ws-gold);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
}
html body.home .chb-workshop__panel h3 {
  margin: 0 0 0.45rem;
  font-family: var(--ws-serif);
  font-weight: 500;
  font-size: clamp(1.2rem, 1.8vw, 1.45rem);
  line-height: 1.25;
  color: var(--ws-ink);
}
html body.home .chb-workshop__panel p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--ws-body);
}

html body.home .chb-workshop__strip {
  background: var(--ws-green);
  padding: 0.85rem 1.25rem;
}
html body.home .chb-workshop__strip ul {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  max-width: 1120px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.35rem 0.2rem;
}
html body.home .chb-workshop__strip li {
  margin: 0;
  padding: 0.2rem 0.85rem;
  color: #f7f3ec;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
html body.home .chb-workshop__strip li:not(:last-child)::after {
  content: "";
  display: inline-block;
  width: 5px;
  height: 5px;
  margin-left: 1.05rem;
  border-radius: 50%;
  background: var(--ws-gold);
  vertical-align: middle;
}

@media (max-width: 960px) {
  html body.home .chb-workshop__intro {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  html body.home .chb-workshop__panels {
    grid-template-columns: 1fr;
    gap: 1.6rem;
  }
}
@media (max-width: 600px) {
  html body.home .chb-workshop__inner {
    padding: 2rem 1.15rem 1.6rem;
  }
  html body.home .chb-workshop__intro h2 {
    font-size: 1.95rem;
  }
  html body.home .chb-workshop__strip ul {
    flex-direction: column;
    gap: 0;
  }
  html body.home .chb-workshop__strip li {
    width: 100%;
    text-align: center;
    padding: 0.55rem 0;
    border-bottom: 1px solid rgba(176, 138, 62, 0.28);
  }
  html body.home .chb-workshop__strip li:last-child { border-bottom: 0; }
  html body.home .chb-workshop__strip li:not(:last-child)::after { display: none; }
}

/* chb-why.css */
/* Homepage Why Crystal — contained to the same 1120px well as Shop the Range. */

html body.home .chb-why {
  --why-green: #2f3d2a;
  --why-ivory: #fbf8f2;
  --why-gold: #c4a35a;
  --why-sage: #6f7d68;
  --why-line: #d9dfd4;
  --why-ink: #2a3228;
  --why-body: #3d4038;
  --why-serif: Georgia, "Times New Roman", serif;
  --why-sans: Montserrat, "Segoe UI", system-ui, sans-serif;
  background: var(--why-ivory);
  font-family: var(--why-sans);
  padding: 0 1.25rem;
}
html body.home .chb-why * { box-sizing: border-box; }

html body.home .chb-why__shell {
  display: grid;
  grid-template-columns: minmax(260px, 0.37fr) minmax(0, 0.63fr);
  max-width: 1120px;
  margin: 0 auto;
  align-items: stretch;
  overflow: hidden;
}

html body.home .chb-why__intro {
  position: relative;
  background: var(--why-green);
  color: var(--why-ivory);
  padding: 3.2rem 2.4rem 4.4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}
html body.home .chb-why__eye {
  margin: 0 0 0.9rem;
  color: var(--why-gold) !important;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}
html body.home .chb-why__intro h2 {
  margin: 0 0 1rem;
  max-width: 11.4em;
  font-family: var(--why-serif) !important;
  font-weight: 500 !important;
  font-size: clamp(1.75rem, 2.6vw, 2.45rem) !important;
  line-height: 1.14 !important;
  letter-spacing: -0.02em;
  color: #f7f3ec !important;
  text-transform: none !important;
}
html body.home .chb-why__rule {
  display: block;
  width: 2.8rem;
  height: 1px;
  margin: 0 0 1.15rem;
  background: var(--why-gold);
}
html body.home .chb-why__intro p {
  margin: 0;
  max-width: 20.5rem;
  font-size: 0.98rem;
  line-height: 1.68;
  color: rgba(247, 243, 236, 0.92);
}
html body.home .chb-why__plant {
  position: absolute;
  left: -0.2rem;
  bottom: -0.4rem;
  width: 7.6rem;
  height: 9.2rem;
  color: var(--why-gold);
  opacity: 0.78;
  pointer-events: none;
}

html body.home .chb-why__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr 1fr;
  background: var(--why-ivory);
}
html body.home .chb-why__item {
  margin: 0;
  padding: 1.45rem 1.5rem 1.3rem;
  border-right: 1px solid var(--why-line);
  border-bottom: 1px solid var(--why-line);
  background: transparent;
}
html body.home .chb-why__item:nth-child(2n) { border-right: 0; }
html body.home .chb-why__item:nth-child(5),
html body.home .chb-why__item:nth-child(6) { border-bottom: 0; }

html body.home .chb-why__num {
  margin: 0 0 0.35rem;
  color: var(--why-gold);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
}
html body.home .chb-why__icon {
  display: block;
  width: 36px;
  height: 36px;
  margin: 0 0 0.55rem;
  color: var(--why-sage);
}
html body.home .chb-why__item h3 {
  margin: 0 0 0.35rem;
  font-family: var(--why-serif);
  font-weight: 500;
  font-size: 1.22rem;
  line-height: 1.28;
  color: var(--why-green);
}
html body.home .chb-why__item p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--why-body);
}
html body.home .chb-why__link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.55rem;
  color: var(--why-green);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-color: var(--why-gold);
}
html body.home .chb-why__link svg {
  width: 13px;
  height: 13px;
}
html body.home .chb-why__link:hover,
html body.home .chb-why__link:focus-visible {
  color: var(--why-gold);
}
html body.home .chb-why__link:focus-visible {
  outline: 2px solid var(--why-gold);
  outline-offset: 3px;
}

@media (max-width: 980px) {
  html body.home .chb-why {
    padding: 0;
  }
  html body.home .chb-why__shell {
    grid-template-columns: 1fr;
    max-width: none;
  }
  html body.home .chb-why__intro {
    padding: 2.4rem 1.5rem 3.2rem;
  }
  html body.home .chb-why__intro h2 {
    max-width: none;
  }
  html body.home .chb-why__intro p { max-width: 36rem; }
}

@media (max-width: 700px) {
  html body.home .chb-why__grid {
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }
  html body.home .chb-why__item {
    border-right: 0;
    border-bottom: 1px solid var(--why-line);
    padding: 1.35rem 1.2rem;
  }
  html body.home .chb-why__item:nth-child(5),
  html body.home .chb-why__item:nth-child(6) {
    border-bottom: 1px solid var(--why-line);
  }
  html body.home .chb-why__item:last-child { border-bottom: 0; }
  html body.home .chb-why__intro {
    padding: 2.1rem 1.2rem 2.8rem;
  }
  html body.home .chb-why__intro h2 {
    font-size: 1.8rem !important;
  }
  html body.home .chb-why__link {
    min-height: 44px;
  }
}

/* chb-colintro.css */
/* Colloidal range intro — homepage only. */

html body.home .chb-colrange {
  --ci-panel: #243022;
  --ci-ivory: #f7f3ec;
  --ci-gold: #c4a35a;
  --ci-serif: Georgia, "Times New Roman", serif;
  --ci-sans: Montserrat, "Segoe UI", system-ui, sans-serif;
  background: #fbf8f2;
}
html body.home .chb-colintro {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  align-items: stretch;
  width: 100%;
  max-width: none;
  margin: 0;
  font-family: var(--ci-sans);
}
html body.home .chb-colintro * { box-sizing: border-box; }

html body.home .chb-colintro__media {
  margin: 0;
  position: relative;
  min-height: 28rem;
  background: #1c1c1a;
  overflow: hidden;
}
html body.home .chb-colintro__media img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% 48%;
}

html body.home .chb-colintro__copy {
  background: var(--ci-panel);
  color: var(--ci-ivory);
  padding: 3.4rem 3.2rem 3.2rem 2.8rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
html body.home .chb-colintro__eye {
  margin: 0 0 0.8rem;
  color: var(--ci-gold) !important;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
html body.home .chb-colintro__copy h2 {
  margin: 0 0 0.9rem;
  max-width: 14em;
  font-family: var(--ci-serif) !important;
  font-weight: 500 !important;
  font-size: clamp(1.85rem, 2.7vw, 2.55rem) !important;
  line-height: 1.14 !important;
  letter-spacing: -0.02em;
  color: var(--ci-ivory) !important;
  text-transform: none !important;
}
html body.home .chb-colintro__rule {
  display: block;
  width: 3rem;
  height: 1px;
  margin: 0 0 1.15rem;
  background: var(--ci-gold);
}
html body.home .chb-colintro__copy p {
  margin: 0 0 0.9rem;
  max-width: 34rem;
  font-size: 1rem;
  line-height: 1.65;
  color: rgba(247, 243, 236, 0.9);
}
html body.home .chb-colintro__copy p a {
  color: var(--ci-gold);
  font-weight: 650;
  text-decoration: underline;
  text-underline-offset: 3px;
}
html body.home .chb-colintro__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  gap: 0.5rem;
  min-height: 46px;
  margin-top: 0.45rem;
  padding: 0 1.25rem;
  border: 0;
  border-radius: 2px;
  background: var(--ci-gold);
  color: #1c1808;
  font-size: 0.7rem;
  font-weight: 750;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
}
html body.home .chb-colintro__btn svg {
  width: 14px;
  height: 14px;
}
html body.home .chb-colintro__btn:hover,
html body.home .chb-colintro__btn:focus-visible {
  background: #d4b56a;
  color: #1c1808;
}
html body.home .chb-colintro__btn:focus-visible {
  outline: 2px solid #f7f3ec;
  outline-offset: 3px;
}

html body.home .chb-colrange .chb-home-colloids {
  padding: 1.8rem 1.25rem 2.4rem;
}

@media (max-width: 900px) {
  html body.home .chb-colintro {
    grid-template-columns: 1fr;
  }
  html body.home .chb-colintro__copy {
    order: -1;
    padding: 1.7rem 1.2rem 1.45rem;
  }
  html body.home .chb-colintro__copy h2 {
    max-width: none;
    font-size: 1.7rem !important;
    line-height: 1.18 !important;
  }
  html body.home .chb-colintro__copy p {
    font-size: 0.98rem;
    margin-bottom: 0.8rem;
  }
  html body.home .chb-colintro__btn {
    width: 100%;
    min-height: 48px;
    margin-top: 0.35rem;
  }
  html body.home .chb-colintro__media {
    min-height: 0;
    background: transparent;
    line-height: 0;
  }
  html body.home .chb-colintro__media img {
    position: static !important;
    width: 100% !important;
    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;
    padding: 0 !important;
    object-fit: contain !important;
    object-position: center !important;
  }
  html body.home .chb-colrange .chb-home-colloids {
    padding: 1.15rem 1.15rem 1.8rem;
  }
}

/* chb-flow.css */
/* Homepage rhythm only — shared ivory, spacing and button language. */

html body.home .chb-storyblock,
html body.home .chb-shoprange,
html body.home .chb-why,
html body.home .chb-workshop,
html body.home .chb-colrange,
html body.home .chb-home-tinc,
html body.home .chb-home-trade,
html body.home .chb-home-use,
html body.home .chb-home-journal,
html body.home .chb-home-faq {
  background-color: #fbf8f2;
}

html body.home .chb-storyblock {
  padding-bottom: 1.6rem;
}
html body.home .chb-shoprange {
  padding-top: 2rem;
  padding-bottom: 2.4rem;
}
html body.home .chb-why {
  padding: 0 1.25rem 2.6rem;
}
html body.home .chb-workshop__inner {
  padding-top: 2.4rem;
  padding-bottom: 2rem;
}
html body.home .chb-colrange {
  padding-top: 2.5rem !important;
}
html body.home .chb-colintro__copy {
  background: #2f3d2a;
}
html body.home .chb-workshop__strip {
  background: #2f3d2a;
}

html body.home .chb-home-tinc {
  padding-top: 2.4rem;
  padding-bottom: 2.4rem;
}
html body.home .chb-home-tinc figure {
  border-radius: 12px !important;
  box-shadow: none !important;
}
html body.home .chb-home-tinc .btn,
html body.home .chb-home-trade .btn {
  border-radius: 2px !important;
}

@media (max-width: 900px) {
  html body.home .chb-storyblock,
  html body.home .chb-shoprange,
  html body.home .chb-why,
  html body.home .chb-workshop,
  html body.home .chb-colrange {
    padding-left: 0;
    padding-right: 0;
  }
  html body.home .chb-shoprange,
  html body.home .chb-why,
  html body.home .chb-workshop__inner,
  html body.home .chb-storyblock__main,
  html body.home .chb-storyblock__creds,
  html body.home .chb-storyblock__strip {
    padding-left: 1.2rem;
    padding-right: 1.2rem;
  }
  html body.home .chb-shoprange {
    padding-top: 1.6rem;
    padding-bottom: 1.8rem;
  }
  html body.home .chb-why {
    padding-bottom: 1.8rem;
  }
  html body.home .chb-workshop__inner {
    padding-top: 1.8rem;
    padding-bottom: 1.5rem;
  }
  html body.home .chb-colrange {
    padding-top: 1.6rem;
  }
}

/* chb-colgrid.css */
/* Live WooCommerce colloidal product grid. */

html body.home .chb-colgrid {
  --cg-green: #2f3d2a;
  --cg-ivory: #fbf8f2;
  --cg-card: #fffcf8;
  --cg-gold: #c4a35a;
  --cg-sage: #d7ddd1;
  --cg-stone: #eceae4;
  --cg-body: #3d4038;
  --cg-serif: Georgia, "Times New Roman", serif;
  --cg-sans: Montserrat, "Segoe UI", system-ui, sans-serif;
  max-width: 1120px;
  margin: 0 auto;
  padding: 1.6rem 1.25rem 2.6rem;
  font-family: var(--cg-sans);
  color: var(--cg-body);
}
html body.home .chb-colgrid * { box-sizing: border-box; }

html body.home .chb-colgrid__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.15rem;
}
html body.home .chb-colgrid__head h2 {
  margin: 0 0 0.3rem;
  font-family: var(--cg-serif) !important;
  font-weight: 500 !important;
  font-size: clamp(1.8rem, 3vw, 2.5rem) !important;
  line-height: 1.12 !important;
  color: var(--cg-green) !important;
  text-transform: none !important;
}
html body.home .chb-colgrid__lead {
  margin: 0;
  font-size: 1.02rem;
  color: var(--cg-body);
}
html body.home .chb-colgrid__all {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  flex: 0 0 auto;
  color: var(--cg-green);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-color: var(--cg-gold);
  white-space: nowrap;
}
html body.home .chb-colgrid__all:hover,
html body.home .chb-colgrid__all:focus-visible {
  color: var(--cg-gold);
}

html body.home .chb-colgrid__filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1.35rem;
  margin: 0 0 1.15rem;
  padding: 0;
  border-bottom: 1px solid var(--cg-sage);
  list-style: none;
}
html body.home .chb-colgrid__filter {
  appearance: none;
  background: none;
  border: 0;
  border-bottom: 2px solid transparent;
  margin: 0 0 -1px;
  padding: 0.45rem 0 0.55rem;
  color: var(--cg-green);
  font-family: inherit;
  font-size: 0.72rem;
  font-weight: 650;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
}
html body.home .chb-colgrid__filter:hover {
  color: var(--cg-gold);
}
html body.home .chb-colgrid__filter.is-active,
html body.home .chb-colgrid__filter[aria-pressed="true"] {
  color: var(--cg-green);
  border-bottom-color: var(--cg-gold);
}
html body.home .chb-colgrid__filter:focus-visible {
  outline: 2px solid var(--cg-gold);
  outline-offset: 3px;
}

html body.home .chb-colgrid__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.05rem;
}
html body.home .chb-colgrid__card {
  display: flex;
  flex-direction: column;
  background: var(--cg-card);
  border: 1px solid var(--cg-sage);
  border-radius: 2px;
  overflow: hidden;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
html body.home .chb-colgrid__card:hover {
  border-color: #c3cbbd;
  transform: translateY(-2px);
}
html body.home .chb-colgrid__card[hidden] { display: none; }

html body.home .chb-colgrid__media {
  position: relative;
  display: block;
  background: var(--cg-stone);
  aspect-ratio: 4 / 5;
}
html body.home .chb-colgrid__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 1.1rem 0.9rem 0.6rem;
}
html body.home .chb-colgrid__badge {
  position: absolute;
  top: 0.7rem;
  left: 0.7rem;
  z-index: 1;
  padding: 0.28rem 0.55rem;
  border-radius: 2px;
  background: var(--cg-gold);
  color: #1c1808;
  font-size: 0.58rem;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

html body.home .chb-colgrid__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 0.85rem 0.95rem 1rem;
}
html body.home .chb-colgrid__cat {
  margin: 0 0 0.25rem;
  color: var(--cg-green);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
html body.home .chb-colgrid__body h3 {
  margin: 0 0 0.2rem;
  font-family: var(--cg-serif);
  font-weight: 500;
  font-size: 1.18rem;
  line-height: 1.25;
  color: var(--cg-green);
}
html body.home .chb-colgrid__body h3 a {
  color: inherit;
  text-decoration: none;
}
html body.home .chb-colgrid__made {
  margin: 0 0 0.55rem;
  font-size: 0.86rem;
  color: #5c6158;
}
html body.home .chb-colgrid__price {
  margin: 0 0 0.35rem;
  font-family: var(--cg-serif);
  font-size: 1.35rem;
  font-weight: 500;
  color: #1c1a16;
}
html body.home .chb-colgrid__price del {
  margin-right: 0.35rem;
  color: #8a8a84;
  font-size: 0.9em;
}
html body.home .chb-colgrid__ship {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  margin: 0 0 0.85rem;
  font-size: 0.8rem;
  color: var(--cg-body);
}
html body.home .chb-colgrid__ship svg {
  width: 13px;
  height: 13px;
  color: var(--cg-green);
  flex: 0 0 13px;
}
html body.home .chb-colgrid__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 44px;
  margin-top: auto;
  padding: 0 0.8rem;
  border: 0;
  border-radius: 2px;
  background: var(--cg-green);
  color: #f7f3ec;
  font-size: 0.7rem;
  font-weight: 750;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
}
html body.home .chb-colgrid__btn:hover,
html body.home .chb-colgrid__btn:focus-visible {
  background: #3d4f38;
  color: #f7f3ec;
}
html body.home .chb-colgrid__btn:focus-visible {
  outline: 2px solid var(--cg-gold);
  outline-offset: 3px;
}

html body.home .chb-colgrid__more {
  display: flex;
  justify-content: center;
  margin: 1.6rem 0 0;
}
html body.home .chb-colgrid__more-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 1.4rem;
  border: 1px solid var(--cg-green);
  border-radius: 2px;
  color: var(--cg-green);
  background: transparent;
  font-size: 0.7rem;
  font-weight: 750;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
}
html body.home .chb-colgrid__more-btn:hover,
html body.home .chb-colgrid__more-btn:focus-visible {
  background: var(--cg-green);
  color: #f7f3ec;
}
html body.home .chb-colgrid__more-btn:focus-visible {
  outline: 2px solid var(--cg-gold);
  outline-offset: 3px;
}

@media (max-width: 980px) {
  html body.home .chb-colgrid__list {
    grid-template-columns: 1fr 1fr;
  }
  html body.home .chb-colgrid__filters {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    gap: 0.2rem 1.1rem;
  }
  html body.home .chb-colgrid__filter {
    flex: 0 0 auto;
  }
}
@media (max-width: 640px) {
  html body.home .chb-colgrid {
    padding: 1.2rem 1.15rem 2rem;
  }
  html body.home .chb-colgrid__head {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.45rem;
  }
  html body.home .chb-colgrid__list {
    grid-template-columns: 1fr;
  }
  html body.home .chb-colgrid__media {
    aspect-ratio: 1 / 1;
  }
}

/* chb-journal-v3.css */
/* Homepage journal — editorial 1+2 layout. v1.0.2. Loaded after home-restyle so it wins. */

html body.home section.chb-home-journal,
body.home section.chb-home-journal {
	--journal-ivory: #f7f2eb;
	--journal-forest: #2f3d2a;
	--journal-gold: #c9a84c;
	--journal-sage: #d2d6c8;
	--journal-ink: #3d342f;
	--journal-muted: #5c524c;
	--journal-author: #6b625c;
	--journal-serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
	--journal-sans: Montserrat, system-ui, -apple-system, "Segoe UI", sans-serif;
	background: var(--journal-ivory);
	color: var(--journal-ink);
	font-family: var(--journal-sans);
	padding: clamp(2.6rem, 5.5vw, 4.4rem) 1.25rem clamp(2.4rem, 4.5vw, 3.6rem);
	overflow-x: hidden;
}

body.home section.chb-home-journal .inner {
	max-width: 1120px;
	margin: 0 auto;
}

html body.home section.chb-home-journal .chb-journal-head,
body.home section.chb-home-journal .chb-journal-head {
	display: grid !important;
	grid-template-columns: minmax(0, 1fr) auto !important;
	align-items: start;
	column-gap: 2rem;
	row-gap: 0.85rem;
	text-align: left !important;
	margin: 0 0 2.1rem;
}

body.home section.chb-home-journal .chb-journal-intro {
	min-width: 0;
	text-align: left;
}

html body.home section.chb-home-journal .chb-journal-head .eye,
body.home section.chb-home-journal .chb-journal-head .eye {
	margin: 0 0 0.45rem;
	font-family: var(--journal-sans);
	font-size: 0.72rem;
	font-weight: 650;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--journal-gold);
	text-align: left;
}

html body.home section.chb-home-journal .chb-journal-head h2,
body.home section.chb-home-journal .chb-journal-head h2 {
	margin: 0 0 0.55rem;
	font-family: var(--journal-serif);
	font-weight: 500;
	font-style: italic;
	font-size: clamp(2.05rem, 4.1vw, 3.15rem);
	line-height: 1.12;
	letter-spacing: -0.015em;
	color: var(--journal-forest);
	text-align: left !important;
	text-wrap: balance;
}

html body.home section.chb-home-journal h2::after,
body.home section.chb-home-journal h2::after {
	display: none !important;
	content: none !important;
	width: 0 !important;
	height: 0 !important;
	margin: 0 !important;
	background: none !important;
}

html body.home section.chb-home-journal .chb-journal-head .lead,
body.home section.chb-home-journal .chb-journal-head .lead {
	max-width: 38rem;
	margin: 0 !important;
	font-family: var(--journal-sans);
	font-size: 1.05rem;
	font-weight: 400;
	line-height: 1.65;
	color: var(--journal-muted);
	text-align: left !important;
	text-wrap: pretty;
}

html body.home section.chb-home-journal .chb-journal-archive,
body.home section.chb-home-journal .chb-journal-archive {
	display: inline-flex !important;
	align-items: center;
	gap: 0.4rem;
	margin-top: 2.35rem;
	padding-bottom: 0.18rem;
	border-bottom: 1px solid var(--journal-gold);
	color: var(--journal-gold);
	font-family: var(--journal-sans);
	font-size: 0.72rem;
	font-weight: 650;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	text-decoration: none;
	white-space: nowrap;
}

body.home section.chb-home-journal .chb-journal-archive:hover,
body.home section.chb-home-journal .chb-journal-archive:focus-visible {
	color: var(--journal-forest);
	border-bottom-color: var(--journal-forest);
}

body.home section.chb-home-journal .chb-journal-grid {
	display: grid;
	grid-template-columns: minmax(0, 1.22fr) minmax(0, 0.88fr);
	column-gap: 0;
	align-items: start;
}

body.home section.chb-home-journal .feat,
body.home section.chb-home-journal .chb-journal-item {
	background: transparent !important;
	border: 0 !important;
	border-radius: 0 !important;
	box-shadow: none !important;
	transform: none !important;
	overflow: visible;
	min-height: 0;
}

body.home section.chb-home-journal .feat:hover,
body.home section.chb-home-journal .chb-journal-item:hover {
	transform: none !important;
	box-shadow: none !important;
}

body.home section.chb-home-journal .feat {
	padding-right: 2.35rem;
}

body.home section.chb-home-journal .chb-journal-stack {
	display: flex;
	flex-direction: column;
	border-left: 1px solid var(--journal-sage);
	padding-left: 2.35rem;
	gap: 0;
}

body.home section.chb-home-journal .chb-journal-item + .chb-journal-item {
	margin-top: 1.55rem;
	padding-top: 1.55rem;
	border-top: 1px solid var(--journal-sage);
}

body.home section.chb-home-journal .pic {
	display: block;
	aspect-ratio: 16 / 9;
	overflow: hidden;
	border-radius: 2px;
	background: #efe8de;
	height: auto !important;
	width: 100%;
}

body.home section.chb-home-journal .pic img,
body.home section.chb-home-journal .feat img,
body.home section.chb-home-journal .chb-journal-item img {
	display: block;
	width: 100% !important;
	height: 100% !important;
	max-width: none;
	object-fit: cover !important;
	object-position: 50% 46%;
	border-radius: 0;
	transform: scale(1);
	transition: transform 0.5s ease;
}

body.home section.chb-home-journal .feat .pic img {
	object-position: 50% 48%;
}

body.home section.chb-home-journal .chb-journal-item .pic img {
	object-position: 58% 50%;
}

body.home section.chb-home-journal article:hover .pic img,
body.home section.chb-home-journal article:focus-within .pic img {
	transform: scale(1.035);
}

body.home section.chb-home-journal .feat .copy {
	padding: 1.15rem 0 0 !important;
}

body.home section.chb-home-journal .chb-journal-item .copy {
	padding: 0.9rem 0 0 !important;
	display: block;
}

body.home section.chb-home-journal .meta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.4rem 0.55rem;
	margin: 0 0 0.45rem;
	font-family: var(--journal-sans);
	font-size: 0.68rem;
	font-weight: 650;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--journal-gold);
	line-height: 1.3;
}

body.home section.chb-home-journal .badge {
	display: inline-block;
	padding: 0.18rem 0.48rem 0.16rem;
	border-radius: 3px;
	background: #c4a05a;
	color: #fffef8;
	font-size: 0.6rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	line-height: 1.2;
}

body.home section.chb-home-journal .cat,
body.home section.chb-home-journal .date,
body.home section.chb-home-journal time,
body.home section.chb-home-journal .sep {
	margin: 0;
	font-size: 0.68rem;
	font-weight: 650;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--journal-gold);
}

body.home section.chb-home-journal h3 {
	margin: 0;
	font-family: var(--journal-serif);
	font-weight: 500;
	font-style: normal;
	line-height: 1.18;
	color: var(--journal-forest);
	text-wrap: balance;
}

body.home section.chb-home-journal .feat h3 {
	font-size: clamp(1.7rem, 2.7vw, 2.28rem);
	letter-spacing: -0.01em;
}

body.home section.chb-home-journal .chb-journal-item h3 {
	font-size: clamp(1.28rem, 1.9vw, 1.55rem);
}

body.home section.chb-home-journal h3 a {
	color: var(--journal-forest);
	text-decoration: none;
	transition: color 0.2s ease;
}

body.home section.chb-home-journal h3 a:hover,
body.home section.chb-home-journal h3 a:focus-visible {
	color: var(--journal-gold);
}

body.home section.chb-home-journal .excerpt {
	margin: 0.7rem 0 0;
	max-width: 40rem;
	font-family: var(--journal-sans);
	font-size: 1.02rem;
	font-weight: 400;
	line-height: 1.7;
	color: var(--journal-ink);
	text-wrap: pretty;
}

body.home section.chb-home-journal .author {
	margin: 0.7rem 0 0;
	font-family: var(--journal-sans);
	font-size: 0.92rem;
	font-style: italic;
	font-weight: 400;
	color: var(--journal-author);
}

body.home section.chb-home-journal .more {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	margin-top: 1rem;
	font-family: var(--journal-sans);
	font-size: 0.72rem;
	font-weight: 650;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--journal-gold);
	text-decoration: none;
}

body.home section.chb-home-journal .more:hover,
body.home section.chb-home-journal .more:focus-visible {
	color: var(--journal-forest);
}

body.home section.chb-home-journal .chb-journal-arrow {
	display: inline-block;
	transition: transform 0.25s ease;
}

body.home section.chb-home-journal a:hover .chb-journal-arrow,
body.home section.chb-home-journal a:focus-visible .chb-journal-arrow {
	transform: translateX(4px);
}

body.home section.chb-home-journal .chb-journal-foot {
	margin-top: 2.35rem;
	padding-top: 1.85rem;
	border-top: 1px solid var(--journal-sage);
	text-align: center;
}

body.home section.chb-home-journal .chb-journal-all {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 48px;
	padding: 0.85rem 1.7rem;
	border: 1px solid var(--journal-forest);
	background: transparent;
	color: var(--journal-forest);
	font-family: var(--journal-sans);
	font-size: 0.72rem;
	font-weight: 650;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	text-decoration: none;
	transition: background 0.22s ease, color 0.22s ease;
}

body.home section.chb-home-journal .chb-journal-all:hover,
body.home section.chb-home-journal .chb-journal-all:focus-visible {
	background: var(--journal-forest);
	color: var(--journal-ivory);
}

body.home section.chb-home-journal a:focus-visible {
	outline: 2px solid var(--journal-forest);
	outline-offset: 3px;
}

body.home section.chb-home-journal .chb-journal-all:focus-visible {
	outline-color: var(--journal-gold);
}

@media (min-width: 720px) and (max-width: 979px) {
	body.home section.chb-home-journal .chb-journal-grid {
		grid-template-columns: 1fr;
		row-gap: 1.7rem;
	}

	body.home section.chb-home-journal .feat {
		padding-right: 0;
	}

	body.home section.chb-home-journal .chb-journal-stack {
		display: grid;
		grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
		gap: 0 2rem;
		border-left: 0;
		padding-left: 0;
		border-top: 1px solid var(--journal-sage);
		padding-top: 1.7rem;
	}

	body.home section.chb-home-journal .chb-journal-item + .chb-journal-item {
		margin-top: 0;
		padding-top: 0;
		border-top: 0;
		border-left: 1px solid var(--journal-sage);
		padding-left: 2rem;
	}

	body.home section.chb-home-journal .chb-journal-item:only-child {
		grid-column: 1 / -1;
		max-width: 28rem;
	}
}

@media (max-width: 719px) {
	body.home section.chb-home-journal {
		padding: 2.2rem 1.1rem 2.1rem;
	}

	html body.home section.chb-home-journal .chb-journal-head,
	body.home section.chb-home-journal .chb-journal-head {
		grid-template-columns: 1fr !important;
		margin-bottom: 1.5rem;
	}

	body.home section.chb-home-journal .chb-journal-archive {
		margin-top: 0.15rem;
		justify-self: start;
		white-space: normal;
	}

	body.home section.chb-home-journal .chb-journal-head h2 {
		font-size: clamp(1.85rem, 8.4vw, 2.35rem);
	}

	body.home section.chb-home-journal .chb-journal-grid {
		grid-template-columns: 1fr;
		row-gap: 0;
	}

	body.home section.chb-home-journal .feat {
		padding-right: 0;
		padding-bottom: 1.45rem;
		border-bottom: 1px solid var(--journal-sage);
	}

	body.home section.chb-home-journal .chb-journal-stack {
		border-left: 0;
		padding-left: 0;
	}

	body.home section.chb-home-journal .chb-journal-item {
		padding-top: 1.45rem;
		border-top: 0;
	}

	body.home section.chb-home-journal .chb-journal-item + .chb-journal-item {
		margin-top: 0;
		padding-top: 1.45rem;
		border-top: 1px solid var(--journal-sage);
	}

	body.home section.chb-home-journal .feat h3 {
		font-size: 1.65rem;
	}

	body.home section.chb-home-journal .chb-journal-item h3 {
		font-size: 1.32rem;
	}

	html body.home section.chb-home-journal .chb-journal-archive,
	body.home section.chb-home-journal .chb-journal-archive {
		margin-top: 0.35rem !important;
		min-height: 0;
		padding: 0.45rem 0 0.2rem;
	}

	body.home section.chb-home-journal .more,
	body.home section.chb-home-journal .chb-journal-all {
		min-height: 44px;
	}

	body.home section.chb-home-journal .chb-journal-foot {
		margin-top: 1.6rem;
		padding-top: 1.45rem;
	}
}

@media (prefers-reduced-motion: reduce) {
	body.home section.chb-home-journal .pic img,
	body.home section.chb-home-journal .chb-journal-arrow,
	body.home section.chb-home-journal .chb-journal-all,
	body.home section.chb-home-journal h3 a {
		transition: none;
	}

	body.home section.chb-home-journal article:hover .pic img,
	body.home section.chb-home-journal article:focus-within .pic img {
		transform: none;
	}

	body.home section.chb-home-journal a:hover .chb-journal-arrow,
	body.home section.chb-home-journal a:focus-visible .chb-journal-arrow {
		transform: none;
	}
}

/* chb-newarrivals-v5.css */
/* Homepage New arrivals — 40/60 editorial layout on forest green. */

html body.home section.chb-home-newarrivals {
	--new-forest: #243328;
	--new-forest-2: #2f3d2a;
	--new-ivory: #f6f1e8;
	--new-gold: #c9a84c;
	--new-sage: #d4d0c4;
	--new-ink: #3d342f;
	--new-muted: #5c534c;
	--new-stage: #ebe4d8;
	--new-serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
	--new-sans: Montserrat, system-ui, -apple-system, "Segoe UI", sans-serif;
	background: var(--new-forest);
	color: var(--new-ivory);
	font-family: var(--new-sans);
	padding: clamp(2.5rem, 5.2vw, 4.2rem) 1.25rem clamp(2.3rem, 4.4vw, 3.5rem);
	overflow-x: hidden;
}

html body.home section.chb-home-newarrivals .inner {
	max-width: 1120px;
	margin: 0 auto;
}

html body.home section.chb-home-newarrivals .chb-newarrivals-head {
	display: grid !important;
	grid-template-columns: minmax(0, 1fr) auto !important;
	align-items: start;
	column-gap: 1.5rem;
	row-gap: 0.75rem;
	text-align: left !important;
	margin: 0 0 1.85rem;
}

html body.home section.chb-home-newarrivals .chb-newarrivals-intro {
	min-width: 0;
}

html body.home section.chb-home-newarrivals .eye {
	margin: 0 0 0.4rem;
	font-size: 0.72rem;
	font-weight: 650;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--new-gold);
}

html body.home section.chb-home-newarrivals h2 {
	margin: 0 0 0.5rem;
	font-family: var(--new-serif);
	font-weight: 500;
	font-style: italic;
	font-size: clamp(2.05rem, 4vw, 3.05rem);
	line-height: 1.12;
	letter-spacing: -0.015em;
	color: var(--new-ivory) !important;
	text-wrap: balance;
}

html body.home section.chb-home-newarrivals h2::after {
	display: none !important;
	content: none !important;
}

html body.home section.chb-home-newarrivals .lead {
	margin: 0;
	max-width: 38rem;
	font-size: 1.02rem;
	line-height: 1.6;
	color: rgba(246, 241, 232, 0.82);
	text-wrap: pretty;
}

html body.home section.chb-home-newarrivals .chb-newarrivals-archive {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	margin-top: 2.2rem;
	padding-bottom: 0.16rem;
	border-bottom: 1px solid var(--new-gold);
	color: var(--new-gold);
	font-size: 0.72rem;
	font-weight: 650;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	text-decoration: none;
	white-space: nowrap;
}

html body.home section.chb-home-newarrivals .chb-newarrivals-archive:hover,
html body.home section.chb-home-newarrivals .chb-newarrivals-archive:focus-visible {
	color: var(--new-ivory);
	border-bottom-color: var(--new-ivory);
}

html body.home section.chb-home-newarrivals .chb-newarrivals-layout {
	display: grid;
	grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.38fr);
	gap: 1.05rem;
	align-items: stretch;
}

html body.home section.chb-home-newarrivals .chb-new-feat,
html body.home section.chb-home-newarrivals .chb-new-item {
	background: var(--new-ivory);
	border: 1px solid rgba(207, 211, 196, 0.55);
	border-radius: 4px;
	box-shadow: none;
	overflow: hidden;
	min-width: 0;
	transition: border-color 0.22s ease;
}

html body.home section.chb-home-newarrivals .chb-new-item {
	overflow: visible;
}

html body.home section.chb-home-newarrivals .chb-new-feat:hover,
html body.home section.chb-home-newarrivals .chb-new-item:hover {
	border-color: #b7b39f;
}

html body.home section.chb-home-newarrivals .stage {
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--new-stage);
	overflow: hidden;
	position: relative;
}

html body.home section.chb-home-newarrivals .chb-new-feat .stage {
	aspect-ratio: 1.12 / 1;
	padding: 1.35rem 1.2rem 1rem;
}

html body.home section.chb-home-newarrivals .chb-new-item .stage {
	width: 132px;
	height: 100%;
	min-height: 132px;
	max-width: 132px;
	aspect-ratio: auto;
	padding: 0.65rem;
	align-self: stretch;
}

html body.home section.chb-home-newarrivals .stage img {
	display: block;
	width: 100%;
	height: 100%;
	max-height: 100%;
	object-fit: contain;
	object-position: center;
	transform: scale(1);
	transition: transform 0.45s ease;
}

html body.home section.chb-home-newarrivals article:hover .stage img,
html body.home section.chb-home-newarrivals article:focus-within .stage img {
	transform: scale(1.035);
}

html body.home section.chb-home-newarrivals .badge {
	position: absolute;
	top: 0.85rem;
	left: 0.85rem;
	z-index: 1;
	display: inline-block;
	padding: 0.22rem 0.5rem 0.18rem;
	border-radius: 3px;
	background: #c4a05a;
	color: #fffef8;
	font-size: 0.6rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	line-height: 1.2;
}

html body.home section.chb-home-newarrivals .chb-new-feat .copy {
	padding: 1.15rem 1.2rem 1.2rem;
}

html body.home section.chb-home-newarrivals .cat {
	margin: 0 0 0.35rem;
	font-size: 0.66rem;
	font-weight: 650;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--new-gold) !important;
}

html body.home section.chb-home-newarrivals h3 {
	margin: 0;
	font-family: var(--new-serif);
	font-weight: 500;
	font-style: normal;
	line-height: 1.18;
	color: var(--new-forest-2) !important;
	text-wrap: balance;
}

html body.home section.chb-home-newarrivals .chb-new-feat h3 {
	font-size: clamp(1.55rem, 2.4vw, 1.95rem);
}

html body.home section.chb-home-newarrivals h3 a {
	color: inherit;
	text-decoration: none;
}

html body.home section.chb-home-newarrivals h3 a:hover,
html body.home section.chb-home-newarrivals h3 a:focus-visible {
	color: var(--new-gold);
}

html body.home section.chb-home-newarrivals .blurb {
	margin: 0.55rem 0 0;
	font-size: 0.95rem;
	line-height: 1.6;
	color: var(--new-ink);
	text-wrap: pretty;
}

html body.home section.chb-home-newarrivals .price,
html body.home section.chb-home-newarrivals .price .amount,
html body.home section.chb-home-newarrivals .price .woocommerce-Price-amount {
	margin: 0.85rem 0 0;
	color: var(--new-forest-2) !important;
	font-weight: 650;
	line-height: 1.2;
}

html body.home section.chb-home-newarrivals .chb-new-feat .price {
	font-size: 1.45rem;
}

html body.home section.chb-home-newarrivals .price del,
html body.home section.chb-home-newarrivals .price del .amount,
html body.home section.chb-home-newarrivals .price del .woocommerce-Price-amount {
	margin-right: 0.45rem;
	color: #8a8278 !important;
	font-size: 0.72em;
	font-weight: 500;
	text-decoration: line-through;
}

html body.home section.chb-home-newarrivals .price ins {
	text-decoration: none;
	color: var(--new-forest-2);
}

html body.home section.chb-home-newarrivals .chb-new-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	min-height: 48px;
	margin-top: 1rem;
	padding: 0.8rem 1rem;
	border: 0;
	background: var(--new-forest);
	color: var(--new-ivory);
	font-family: var(--new-sans);
	font-size: 0.72rem;
	font-weight: 650;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	text-decoration: none;
	transition: background 0.2s ease, color 0.2s ease;
}

html body.home section.chb-home-newarrivals .chb-new-btn:hover,
html body.home section.chb-home-newarrivals .chb-new-btn:focus-visible {
	background: var(--new-forest-2);
	color: #fffef8;
}

html body.home section.chb-home-newarrivals .reassure {
	display: flex;
	align-items: center;
	gap: 0.4rem;
	margin: 0.7rem 0 0;
	font-size: 0.82rem;
	color: var(--new-muted);
}

html body.home section.chb-home-newarrivals .reassure svg {
	width: 14px;
	height: 14px;
	flex: 0 0 14px;
	color: var(--new-forest-2);
}

html body.home section.chb-home-newarrivals .chb-newarrivals-side {
	display: flex;
	flex-direction: column;
	min-width: 0;
}

html body.home section.chb-home-newarrivals .chb-newarrivals-grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	gap: 1.05rem;
	align-items: start;
	flex: 0 0 auto;
}

html body.home section.chb-home-newarrivals .chb-new-item {
	display: grid;
	grid-template-columns: 132px minmax(0, 1fr);
	align-items: stretch;
	min-height: 0;
}

html body.home section.chb-home-newarrivals .chb-new-item .copy {
	padding: 0.7rem 0.85rem 0.75rem 0.8rem;
	display: flex;
	flex-direction: column;
	justify-content: center;
	min-width: 0;
	overflow: visible;
}

html body.home section.chb-home-newarrivals .chb-new-item h3 {
	font-size: clamp(1rem, 1.35vw, 1.14rem);
	overflow-wrap: break-word;
}

html body.home section.chb-home-newarrivals .chb-new-item .price {
	margin-top: 0.45rem;
	font-size: 1.05rem;
}

html body.home section.chb-home-newarrivals .more {
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	margin-top: 0.55rem;
	font-size: 0.68rem;
	font-weight: 650;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--new-gold);
	text-decoration: none;
}

html body.home section.chb-home-newarrivals .more:hover,
html body.home section.chb-home-newarrivals .more:focus-visible {
	color: var(--new-forest-2);
}

html body.home section.chb-home-newarrivals .chb-new-arrow {
	display: inline-block;
	transition: transform 0.25s ease;
}

html body.home section.chb-home-newarrivals a:hover .chb-new-arrow,
html body.home section.chb-home-newarrivals a:focus-visible .chb-new-arrow {
	transform: translateX(4px);
}

html body.home section.chb-home-newarrivals .chb-newarrivals-foot {
	margin-top: auto;
	padding-top: 1.15rem;
	text-align: center;
}

html body.home section.chb-home-newarrivals .chb-newarrivals-all {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 48px;
	padding: 0.8rem 1.55rem;
	border: 1px solid var(--new-ivory);
	background: transparent;
	color: var(--new-ivory);
	font-family: var(--new-sans);
	font-size: 0.72rem;
	font-weight: 650;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	text-decoration: none;
	transition: background 0.22s ease, color 0.22s ease;
}

html body.home section.chb-home-newarrivals .chb-newarrivals-all:hover,
html body.home section.chb-home-newarrivals .chb-newarrivals-all:focus-visible {
	background: var(--new-ivory);
	color: var(--new-forest);
}

html body.home section.chb-home-newarrivals a:focus-visible {
	outline: 2px solid var(--new-gold);
	outline-offset: 3px;
}

html body.home section.chb-home-newarrivals .chb-new-btn:focus-visible,
html body.home section.chb-home-newarrivals .chb-newarrivals-all:focus-visible {
	outline-color: #fffef8;
}

@media (min-width: 720px) and (max-width: 979px) {
	html body.home section.chb-home-newarrivals .chb-newarrivals-layout {
		grid-template-columns: 1fr;
	}

	html body.home section.chb-home-newarrivals .chb-new-feat .stage {
		aspect-ratio: 16 / 9;
		max-height: 340px;
	}

	html body.home section.chb-home-newarrivals .chb-newarrivals-foot {
		margin-top: 1.25rem;
	}
}

@media (max-width: 719px) {
	html body.home section.chb-home-newarrivals {
		padding: 2.15rem 1.05rem 2rem;
	}

	html body.home section.chb-home-newarrivals .chb-newarrivals-head {
		grid-template-columns: 1fr !important;
		margin-bottom: 1.35rem;
	}

	html body.home section.chb-home-newarrivals .chb-newarrivals-archive {
		margin-top: 0.2rem;
		white-space: normal;
		justify-self: start;
	}

	html body.home section.chb-home-newarrivals .chb-newarrivals-layout,
	html body.home section.chb-home-newarrivals .chb-newarrivals-grid {
		grid-template-columns: 1fr;
	}

	html body.home section.chb-home-newarrivals .chb-new-feat .stage {
		aspect-ratio: 1.15 / 1;
	}

	html body.home section.chb-home-newarrivals .chb-new-item {
		grid-template-columns: 118px minmax(0, 1fr);
	}

	html body.home section.chb-home-newarrivals .chb-new-item .stage {
		width: 118px;
		max-width: 118px;
		min-height: 118px;
	}

	html body.home section.chb-home-newarrivals .chb-new-item .copy {
		padding: 0.75rem 0.85rem 0.8rem 0.1rem;
	}

	html body.home section.chb-home-newarrivals .chb-new-btn,
	html body.home section.chb-home-newarrivals .chb-newarrivals-all,
	html body.home section.chb-home-newarrivals .more {
		min-height: 44px;
	}

	html body.home section.chb-home-newarrivals .chb-newarrivals-all {
		width: 100%;
	}
}

@media (prefers-reduced-motion: reduce) {
	html body.home section.chb-home-newarrivals .stage img,
	html body.home section.chb-home-newarrivals .chb-new-arrow,
	html body.home section.chb-home-newarrivals .chb-new-btn,
	html body.home section.chb-home-newarrivals .chb-newarrivals-all {
		transition: none;
	}

	html body.home section.chb-home-newarrivals article:hover .stage img {
		transform: none;
	}
}

/* chb-tradeuse-v4.css */
/* Combined retail/wholesale + everyday-use split. */

html body.home section.chb-tradeuse,
html body.home section.chb-tradeuse *,
html body.home section.chb-tradeuse *::before,
html body.home section.chb-tradeuse *::after {
	box-sizing: border-box;
}

html body.home section.chb-tradeuse {
	--tu-forest: #243328;
	--tu-forest-2: #2f3d2a;
	--tu-ivory: #f6f1e8;
	--tu-gold: #c9a84c;
	--tu-gold-2: #b8953e;
	--tu-sage: #d2d6c8;
	--tu-ink: #3d342f;
	--tu-muted: #5c534c;
	--tu-icon: #6d7568;
	--tu-serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
	--tu-sans: Montserrat, system-ui, -apple-system, "Segoe UI", sans-serif;
	display: grid;
	grid-template-columns: minmax(0, 0.4fr) minmax(0, 0.6fr);
	align-items: stretch;
	width: 100%;
	max-width: 100%;
	margin: 0;
	padding: 0;
	font-family: var(--tu-sans);
	overflow-x: clip;
}

html body.home section.chb-tradeuse .chb-tradeuse-shop,
html body.home section.chb-tradeuse .chb-tradeuse-guide {
	display: flex;
	flex-direction: column;
	min-width: 0;
	min-height: 100%;
	overflow-wrap: break-word;
}

html body.home section.chb-tradeuse .chb-tradeuse-shop {
	background: var(--tu-forest);
	color: var(--tu-ivory);
	padding: clamp(2.5rem, 4.8vw, 4rem) clamp(1.7rem, 3.8vw, 3.6rem) clamp(1.8rem, 3vw, 2.6rem);
}

html body.home section.chb-tradeuse .chb-tradeuse-guide {
	background: var(--tu-ivory);
	color: var(--tu-ink);
	padding: clamp(2.5rem, 4.8vw, 4rem) clamp(1.8rem, 4.4vw, 4rem) clamp(1.8rem, 3vw, 2.6rem);
}

html body.home section.chb-tradeuse .eye {
	margin: 0 0 0.6rem;
	font-size: 0.72rem;
	font-weight: 650;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--tu-gold);
}

html body.home section.chb-tradeuse h2 {
	margin: 0 0 0.95rem;
	font-family: var(--tu-serif);
	font-weight: 500;
	font-style: normal !important;
	line-height: 1.08;
	letter-spacing: -0.02em;
	text-wrap: balance;
}

html body.home section.chb-tradeuse h2::after {
	display: none !important;
	content: none !important;
}

html body.home section.chb-tradeuse .chb-tradeuse-shop h2 {
	font-size: clamp(2.2rem, 3.7vw, 3.15rem);
	color: var(--tu-ivory) !important;
}

html body.home section.chb-tradeuse .chb-tradeuse-guide h2 {
	font-size: clamp(2.1rem, 3.5vw, 3rem);
	color: var(--tu-forest-2) !important;
}

html body.home section.chb-tradeuse .chb-tradeuse-shop .lead {
	margin: 0 0 1.65rem;
	max-width: 36rem;
	font-size: 1.05rem;
	line-height: 1.74;
	color: rgba(246, 241, 232, 0.92);
}

html body.home section.chb-tradeuse .chb-tradeuse-guide .lead {
	margin: 0 0 1.85rem;
	max-width: 44rem;
	font-size: 1.05rem;
	line-height: 1.74;
	color: var(--tu-muted);
}

html body.home section.chb-tradeuse .btns {
	display: flex;
	flex-direction: column;
	gap: 0.8rem;
	margin: 0 0 1.7rem;
}

html body.home section.chb-tradeuse .btn-gold,
html body.home section.chb-tradeuse .btn-ghost {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	min-height: 52px;
	padding: 0.95rem 1.15rem;
	border-radius: 6px;
	font-family: var(--tu-sans);
	font-size: 0.74rem;
	font-weight: 650;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	text-decoration: none;
	text-align: center;
	white-space: nowrap;
	transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

html body.home section.chb-tradeuse .btn-gold {
	background: var(--tu-gold);
	border: 1px solid var(--tu-gold);
	color: var(--tu-forest) !important;
}

html body.home section.chb-tradeuse .btn-gold:hover,
html body.home section.chb-tradeuse .btn-gold:focus-visible {
	background: var(--tu-gold-2);
	border-color: var(--tu-gold-2);
	color: var(--tu-forest) !important;
}

html body.home section.chb-tradeuse .btn-ghost {
	background: transparent;
	border: 1px solid var(--tu-ivory);
	color: var(--tu-ivory) !important;
}

html body.home section.chb-tradeuse .btn-ghost:hover,
html body.home section.chb-tradeuse .btn-ghost:focus-visible {
	background: var(--tu-ivory);
	color: var(--tu-forest) !important;
}

html body.home section.chb-tradeuse .art {
	margin-top: auto;
	color: var(--tu-gold);
	max-width: 27rem;
	width: 100%;
}

html body.home section.chb-tradeuse .art svg {
	display: block;
	width: 100%;
	height: auto;
}

html body.home section.chb-tradeuse .proof {
	display: flex;
	align-items: center;
	gap: 0.85rem;
	margin: 1.4rem 0 0;
	font-size: 0.86rem;
	line-height: 1.4;
	color: var(--tu-gold);
}

html body.home section.chb-tradeuse .proof svg {
	width: 22px;
	height: 22px;
	flex: 0 0 22px;
}

html body.home section.chb-tradeuse .proof-rule {
	width: 1px;
	height: 1.15rem;
	background: var(--tu-gold);
	opacity: 0.75;
	flex: 0 0 1px;
}

html body.home section.chb-tradeuse .steps {
	list-style: none;
	margin: 0;
	padding: 0;
}

html body.home section.chb-tradeuse .steps li {
	display: grid;
	grid-template-columns: 3.7rem 1px 3.4rem minmax(0, 1fr);
	column-gap: 1.2rem;
	align-items: start;
	margin: 0;
	padding: 1.3rem 0;
	border-bottom: 1px solid var(--tu-sage);
}

html body.home section.chb-tradeuse .steps li::marker,
html body.home section.chb-tradeuse .steps li::before {
	content: none !important;
	display: none !important;
}

html body.home section.chb-tradeuse .steps li:first-child {
	padding-top: 0.1rem;
}

html body.home section.chb-tradeuse .num {
	font-family: Georgia, "Palatino Linotype", Palatino, "Times New Roman", serif;
	font-size: 2.5rem;
	font-weight: 500;
	font-style: normal !important;
	font-variant-numeric: lining-nums tabular-nums;
	font-feature-settings: "lnum" 1, "tnum" 1, "onum" 0;
	line-height: 1;
	letter-spacing: 0.04em;
	color: var(--tu-gold);
	padding-top: 0.06rem;
}

html body.home section.chb-tradeuse .vrule {
	width: 1px;
	align-self: stretch;
	background: var(--tu-sage);
	margin: 0.2rem 0;
}

html body.home section.chb-tradeuse .ico {
	display: flex;
	align-items: flex-start;
	justify-content: center;
	color: var(--tu-icon);
	padding-top: 0.1rem;
}

html body.home section.chb-tradeuse .ico svg {
	width: 50px;
	height: 50px;
	display: block;
}

html body.home section.chb-tradeuse .txt {
	min-width: 0;
}

html body.home section.chb-tradeuse .steps h3 {
	margin: 0 0 0.42rem;
	font-family: var(--tu-serif);
	font-weight: 500;
	font-style: normal !important;
	font-size: clamp(1.32rem, 2vw, 1.62rem);
	line-height: 1.2;
	color: var(--tu-forest-2) !important;
}

html body.home section.chb-tradeuse .steps p {
	margin: 0;
	font-size: 0.99rem;
	line-height: 1.7;
	color: var(--tu-ink);
}

html body.home section.chb-tradeuse .steps a {
	color: var(--tu-forest-2);
	text-decoration: underline;
	text-underline-offset: 0.18em;
	text-decoration-thickness: 1px;
}

html body.home section.chb-tradeuse .steps a:hover,
html body.home section.chb-tradeuse .steps a:focus-visible {
	color: var(--tu-gold-2);
}

html body.home section.chb-tradeuse .help {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 0.95rem;
	margin-top: auto;
	padding-top: 1.55rem;
	font-size: 1.16rem;
}

html body.home section.chb-tradeuse .help-q {
	margin: 0;
	font-family: var(--tu-serif);
	font-style: italic;
	font-weight: 500;
	color: var(--tu-forest-2);
}

html body.home section.chb-tradeuse .help-rule {
	width: 1px;
	height: 1.25rem;
	background: var(--tu-sage);
}

html body.home section.chb-tradeuse .help-link {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	color: var(--tu-gold);
	font-size: 0.72rem;
	font-weight: 650;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	text-decoration: none;
}

html body.home section.chb-tradeuse .help-link:hover,
html body.home section.chb-tradeuse .help-link:focus-visible {
	color: var(--tu-forest-2);
}

html body.home section.chb-tradeuse .help-arrow {
	display: inline-block;
	transition: transform 0.22s ease;
}

html body.home section.chb-tradeuse .help-link:hover .help-arrow,
html body.home section.chb-tradeuse .help-link:focus-visible .help-arrow {
	transform: translateX(4px);
}

html body.home section.chb-tradeuse a:focus-visible {
	outline: 2px solid var(--tu-gold);
	outline-offset: 3px;
}

html body.home section.chb-tradeuse .btn-gold:focus-visible {
	outline-color: #fffef8;
}

/* Tablet: keep the 40/60 split, tighten spacing. */
@media (min-width: 768px) and (max-width: 1100px) {
	html body.home section.chb-tradeuse .chb-tradeuse-shop,
	html body.home section.chb-tradeuse .chb-tradeuse-guide {
		padding: 2.15rem 1.45rem 1.5rem;
	}

	html body.home section.chb-tradeuse .chb-tradeuse-shop h2,
	html body.home section.chb-tradeuse .chb-tradeuse-guide h2 {
		font-size: clamp(1.85rem, 3.1vw, 2.25rem);
	}

	html body.home section.chb-tradeuse .chb-tradeuse-shop .lead,
	html body.home section.chb-tradeuse .chb-tradeuse-guide .lead {
		font-size: 0.96rem;
		line-height: 1.65;
		margin-bottom: 1.25rem;
	}

	html body.home section.chb-tradeuse .btns {
		gap: 0.65rem;
		margin-bottom: 1.15rem;
	}

	html body.home section.chb-tradeuse .btn-gold,
	html body.home section.chb-tradeuse .btn-ghost {
		min-height: 48px;
		padding: 0.8rem 0.7rem;
		font-size: 0.68rem;
		letter-spacing: 0.12em;
	}

	html body.home section.chb-tradeuse .art {
		max-width: 18.5rem;
	}

	html body.home section.chb-tradeuse .proof {
		margin-top: 1.1rem;
		font-size: 0.72rem;
		gap: 0.55rem;
		align-items: flex-start;
	}

	html body.home section.chb-tradeuse .steps li {
		grid-template-columns: 3rem 1px 2.7rem minmax(0, 1fr);
		column-gap: 0.75rem;
		padding: 1rem 0;
	}

	html body.home section.chb-tradeuse .num {
		font-size: 2rem;
	}

	html body.home section.chb-tradeuse .ico svg {
		width: 38px;
		height: 38px;
	}

	html body.home section.chb-tradeuse .steps h3 {
		font-size: 1.28rem;
	}

	html body.home section.chb-tradeuse .steps p {
		font-size: 0.9rem;
		line-height: 1.6;
	}

	html body.home section.chb-tradeuse .help {
		padding-top: 1.15rem;
		gap: 0.7rem;
		font-size: 1.05rem;
	}
}

@media (min-width: 768px) and (max-width: 899px) {
	html body.home section.chb-tradeuse .chb-tradeuse-shop,
	html body.home section.chb-tradeuse .chb-tradeuse-guide {
		padding: 1.9rem 1.2rem 1.35rem;
	}

	html body.home section.chb-tradeuse .btn-gold,
	html body.home section.chb-tradeuse .btn-ghost {
		white-space: normal;
		letter-spacing: 0.1em;
		font-size: 0.64rem;
	}

	html body.home section.chb-tradeuse .art {
		max-width: 15.5rem;
	}

	html body.home section.chb-tradeuse .steps li {
		grid-template-columns: 2.7rem 1px 2.3rem minmax(0, 1fr);
		column-gap: 0.6rem;
	}

	html body.home section.chb-tradeuse .proof {
		font-size: 0.68rem;
	}

	html body.home section.chb-tradeuse .ico svg {
		width: 34px;
		height: 34px;
	}
}

/* Phone: forest first, then guidance. */
@media (max-width: 767px) {
	html body.home section.chb-tradeuse {
		grid-template-columns: 1fr;
	}

	html body.home section.chb-tradeuse .chb-tradeuse-shop,
	html body.home section.chb-tradeuse .chb-tradeuse-guide {
		padding: 2.1rem 1.3rem 1.55rem;
	}

	html body.home section.chb-tradeuse .chb-tradeuse-shop h2,
	html body.home section.chb-tradeuse .chb-tradeuse-guide h2 {
		font-size: clamp(1.95rem, 7vw, 2.45rem);
	}

	html body.home section.chb-tradeuse .chb-tradeuse-shop .lead,
	html body.home section.chb-tradeuse .chb-tradeuse-guide .lead {
		font-size: 1rem;
	}

	html body.home section.chb-tradeuse .btn-gold,
	html body.home section.chb-tradeuse .btn-ghost {
		min-height: 50px;
		white-space: normal;
	}

	html body.home section.chb-tradeuse .art {
		max-width: 17.5rem;
		margin: 0.9rem auto 0.3rem;
	}

	html body.home section.chb-tradeuse .proof {
		justify-content: flex-start;
	}

	html body.home section.chb-tradeuse .steps li {
		grid-template-columns: 3rem 2.7rem minmax(0, 1fr);
		column-gap: 0.75rem;
		padding: 1.15rem 0;
	}

	html body.home section.chb-tradeuse .vrule {
		display: none;
	}

	html body.home section.chb-tradeuse .num {
		font-size: 1.95rem;
	}

	html body.home section.chb-tradeuse .ico svg {
		width: 36px;
		height: 36px;
	}

	html body.home section.chb-tradeuse .help {
		justify-content: flex-start;
		flex-wrap: wrap;
		margin-top: 1.15rem;
		padding-top: 1.15rem;
	}

	html body.home section.chb-tradeuse .help-link {
		min-height: 44px;
	}
}

@media (max-width: 430px) {
	html body.home section.chb-tradeuse .chb-tradeuse-shop,
	html body.home section.chb-tradeuse .chb-tradeuse-guide {
		padding: 1.85rem 1.1rem 1.35rem;
	}

	html body.home section.chb-tradeuse .art {
		max-width: 14.5rem;
		margin: 0.7rem auto 0.15rem;
	}

	html body.home section.chb-tradeuse .btn-gold,
	html body.home section.chb-tradeuse .btn-ghost {
		min-height: 48px;
		letter-spacing: 0.12em;
		font-size: 0.7rem;
	}

	html body.home section.chb-tradeuse .steps li {
		grid-template-columns: 2.5rem 2.3rem minmax(0, 1fr);
		column-gap: 0.55rem;
	}

	html body.home section.chb-tradeuse .num {
		font-size: 1.7rem;
	}

	html body.home section.chb-tradeuse .ico svg {
		width: 30px;
		height: 30px;
	}

	html body.home section.chb-tradeuse .steps h3 {
		font-size: 1.24rem;
	}

	html body.home section.chb-tradeuse .steps p {
		font-size: 0.94rem;
	}

	html body.home section.chb-tradeuse .help-q {
		font-size: 1.08rem;
	}
}

@media (prefers-reduced-motion: reduce) {
	html body.home section.chb-tradeuse .btn-gold,
	html body.home section.chb-tradeuse .btn-ghost,
	html body.home section.chb-tradeuse .help-arrow {
		transition: none;
	}
}

/* newsletter-v2.css */
/* Homepage newsletter — cream Crystal band, beats look.css forest leftovers */
html body #chb-temp-newsletter.newsletter {
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: Montserrat, system-ui, sans-serif;
  position: relative;
  background: #f7f2eb !important;
  color: #3d4038;
  padding: clamp(2.4rem, 4.5vw, 3.6rem) 1.25rem;
  overflow: hidden;
  margin: 0;
  border-top: 3px solid #c9a84c !important;
  border-bottom: 1px solid #eadfce;
}
html body #chb-temp-newsletter .newsletter-bg {
  position: absolute;
  inset: 0;
  opacity: 0.1;
  background-size: cover;
  background-position: center;
  pointer-events: none;
  mix-blend-mode: multiply;
}
html body #chb-temp-newsletter .newsletter-inner {
  position: relative;
  z-index: 1;
  width: min(100%, 1120px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 1fr);
  gap: clamp(1.5rem, 3vw, 2.6rem);
  align-items: center;
}
html body #chb-temp-newsletter .newsletter-copy .eye {
  margin: 0 0 0.45rem;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #c9a84c;
}
html body #chb-temp-newsletter h2 {
  font-family: var(--font-display) !important;
  font-size: clamp(1.7rem, 2.8vw, 2.2rem) !important;
  font-weight: 500 !important;
  line-height: 1.12 !important;
  margin: 0 0 0.35rem !important;
  letter-spacing: -0.02em;
  color: #2f3d2a !important;
}
html body #chb-temp-newsletter h2::after {
  content: "";
  display: block;
  width: 52px;
  height: 2px;
  background: #c9a84c;
  margin: 0.55rem 0 0;
}
html body #chb-temp-newsletter p.lead {
  margin: 0.85rem 0 0 !important;
  font-family: var(--font-body) !important;
  font-size: 1.02rem !important;
  line-height: 1.7 !important;
  max-width: 36rem;
  color: #5c524c !important;
  opacity: 1 !important;
}
html body #chb-temp-newsletter .newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  background: #fffcf8;
  border: 1px solid #eadfce;
  border-radius: 16px;
  padding: 1.15rem 1.15rem 1.05rem;
  box-shadow: 0 10px 24px rgba(18, 10, 8, 0.06);
}
html body #chb-temp-newsletter .newsletter-row {
  display: flex;
  gap: 0.55rem;
  align-items: stretch;
}
html body #chb-temp-newsletter .newsletter-form input[type="email"] {
  flex: 1 1 auto;
  min-width: 0;
  background: #fffcf8 !important;
  border: 1px solid #e6ddd2 !important;
  border-radius: 999px !important;
  padding: 0.85rem 1.2rem !important;
  color: #3d4038 !important;
  font-size: 0.92rem !important;
  outline: none;
  width: auto !important;
  min-height: 48px;
  box-sizing: border-box;
  font-family: var(--font-body) !important;
  box-shadow: none !important;
}
html body #chb-temp-newsletter .newsletter-form input[type="email"]:focus {
  border-color: #c9a84c !important;
  background: #fffef8 !important;
}
html body #chb-temp-newsletter .newsletter-form input::placeholder {
  color: #8a8178 !important;
  opacity: 1 !important;
}
html body #chb-temp-newsletter .newsletter-form .btn {
  flex: 0 0 auto;
  background: #2f3d2a !important;
  background-image: none !important;
  color: #fffcf8 !important;
  width: auto !important;
  text-transform: uppercase;
  font-size: 0.78rem !important;
  letter-spacing: 0.1em;
  font-weight: 700 !important;
  border-radius: 999px !important;
  min-height: 48px;
  padding: 0 1.35rem !important;
  border: 1px solid #2f3d2a !important;
  cursor: pointer;
  box-shadow: none !important;
  font-family: var(--font-body) !important;
  white-space: nowrap;
  transition: background 0.2s ease, transform 0.2s ease;
}
html body #chb-temp-newsletter .newsletter-form .btn:hover {
  background: #3a4a36 !important;
  color: #fffcf8 !important;
  filter: none;
  transform: translateY(-1px);
}
html body #chb-temp-newsletter .newsletter-form .btn:disabled {
  opacity: 0.7;
  cursor: wait;
}
html body #chb-temp-newsletter .chb-newsletter-msg {
  margin: 0;
  font-size: 0.85rem;
  font-family: var(--font-body);
}
html body #chb-temp-newsletter .chb-newsletter-msg[data-ok="1"] { color: #2f3d2a; }
html body #chb-temp-newsletter .chb-newsletter-msg[data-ok="0"] { color: #8a3a2a; }
html body #chb-temp-newsletter .newsletter-note,
html body #chb-temp-newsletter .newsletter-note a {
  margin: 0;
  font-size: 0.75rem !important;
  line-height: 1.5;
  color: #6b6458 !important;
  opacity: 1 !important;
  font-family: var(--font-body) !important;
}
html body #chb-temp-newsletter .newsletter-note a {
  color: #2f3d2a !important;
  text-decoration: underline;
  text-underline-offset: 2px;
}
html body #chb-temp-newsletter .chb-hp {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  width: 0;
  overflow: hidden;
}
@media (max-width: 800px) {
  html body #chb-temp-newsletter .newsletter-inner {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  html body #chb-temp-newsletter .newsletter-row {
    flex-direction: column;
  }
  html body #chb-temp-newsletter .newsletter-form .btn {
    width: 100% !important;
  }
}

/* home-v3.css */
body.home,
body.page-id-50 {
  --chb-green: #2f3d2a;
  --chb-gold: #c9a84c;
  --chb-cream: #f7f2eb;
  --chb-ink: #3d4038;
}
body.home .elementor-element-e8b205c,
body.home .elementor-element-46265ea,
body.home .elementor-element-429a957,
body.home .elementor-element-057d4fb {
  font-family: "Montserrat", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  color: var(--chb-ink);
}
body.home .elementor-element-e8b205c h1,
body.home .elementor-element-e8b205c h2,
body.home .elementor-element-e8b205c .m-richtext__title,
body.home .elementor-element-46265ea .elementor-icon-box-title,
body.home .elementor-element-057d4fb .elementor-icon-box-title,
body.home .elementor-element-429a957 .entry-title,
body.home .elementor-element-429a957 .entry-title a {
  font-family: "Cormorant Garamond", Georgia, serif !important;
  color: var(--chb-green) !important;
  font-weight: 600 !important;
  letter-spacing: -0.02em;
  text-transform: none !important;
  line-height: 1.15;
}
body.home .elementor-element-e8b205c {
  padding: 72px 24px !important;
  background: var(--chb-cream) !important;
}
body.home .elementor-element-e8b205c h1,
body.home .elementor-element-e8b205c .m-richtext__title {
  font-size: clamp(2rem, 3.4vw, 2.6rem) !important;
  margin: 0 0 18px !important;
  text-align: center;
}
body.home .elementor-element-e8b205c .elementor-widget-text-editor,
body.home .elementor-element-e8b205c .elementor-widget-container {
  max-width: 40rem;
  margin-left: auto;
  margin-right: auto;
}
body.home .elementor-element-e8b205c p,
body.home .elementor-element-e8b205c .elementor-widget-text-editor {
  font-size: 1.05rem !important;
  line-height: 1.7 !important;
  color: var(--chb-ink) !important;
  text-align: center;
}
body.home .elementor-element-e8b205c strong,
body.home .elementor-element-e8b205c b {
  color: var(--chb-green);
  font-weight: 600;
}
body.home .elementor-element-46265ea,
body.home .elementor-element-429a957,
body.home .elementor-element-057d4fb {
  padding-top: 56px !important;
  padding-bottom: 56px !important;
}
body.home .elementor-element-46265ea .elementor-icon-box-title,
body.home .elementor-element-057d4fb .elementor-icon-box-title {
  font-size: clamp(1.9rem, 3vw, 2.4rem) !important;
}
body.home .elementor-element-46265ea .elementor-icon-box-wrapper,
body.home .elementor-element-057d4fb .elementor-icon-box-wrapper {
  text-align: center;
  max-width: 42rem;
  margin: 0 auto 28px;
}
body.home .elementor-icon-box-icon {
  color: var(--chb-gold) !important;
}
body.home .elementor-icon-box-icon svg,
body.home .elementor-icon-box-icon i {
  color: var(--chb-gold) !important;
  fill: var(--chb-gold) !important;
}
body.home .elementor-element-46265ea .elementor-icon-box-description,
body.home .elementor-element-057d4fb .elementor-icon-box-description {
  margin: 10px auto 0 !important;
  max-width: 38rem;
  font-family: "Montserrat", system-ui, sans-serif !important;
  font-size: 1rem !important;
  line-height: 1.6 !important;
  color: #6b6458 !important;
}
body.home .elementor-element-057d4fb .elementor-icon-box-description {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
body.home .products .product-wrapper,
body.home .products .product-type-1 {
  background: #fff;
  border: 1px solid rgba(47, 61, 42, 0.08);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: none;
}
body.home .products .thumbnail-wrapper img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
  width: 100%;
}
body.home .products .product-title,
body.home .products .product-title a,
body.home .products .content-wrapper .product-title a {
  font-family: "Montserrat", system-ui, sans-serif !important;
  font-size: 0.95rem !important;
  font-weight: 600 !important;
  color: var(--chb-green) !important;
  line-height: 1.35 !important;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
body.home .product-available,
body.home .product-unit,
body.home .product-rating {
  display: none !important;
}
body.home .products .price,
body.home .products .price .amount,
body.home .products .woocommerce-Price-amount {
  color: var(--chb-green) !important;
  font-family: "Montserrat", system-ui, sans-serif !important;
  font-size: 0.92rem !important;
  font-weight: 600 !important;
}
body.home .products .content-wrapper {
  padding: 14px 16px 18px !important;
}
body.home .elementor-element-429a957::before {
  content: "From the journal";
  display: block;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.9rem, 3vw, 2.4rem);
  font-weight: 600;
  color: var(--chb-green);
  text-align: center;
  letter-spacing: -0.02em;
  margin: 0 0 28px;
}
body.home .elementor-element-429a957 .entry-category a {
  font-family: "Montserrat", system-ui, sans-serif !important;
  font-size: 0.72rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.12em;
  color: var(--chb-gold) !important;
  text-transform: uppercase !important;
}
body.home .elementor-element-429a957 .entry-title,
body.home .elementor-element-429a957 .entry-title a {
  font-size: 1.28rem !important;
}
body.home .elementor-element-429a957 .entry-title a:hover,
body.home .elementor-element-429a957 .entry-title a:focus-visible {
  color: var(--chb-green) !important;
  border-bottom: 1px solid var(--chb-gold);
}
body.home .elementor-element-429a957 .entry-meta {
  font-family: "Montserrat", system-ui, sans-serif;
  font-size: 0.8rem;
  color: #6b6458;
}
body.home .elementor-element-429a957 .entry-meta .entry-comments,
body.home .elementor-element-429a957 .entry-meta .entry-author,
body.home .elementor-element-429a957 .entry-meta .meta-author,
body.home .elementor-element-429a957 .entry-meta .meta-separator {
  display: none !important;
}
body.home .elementor-element-429a957 .post-thumbnail img,
body.home .elementor-element-429a957 .post img {
  border-radius: 14px;
}
@media (max-width: 767px) {
  body.home .elementor-element-e8b205c {
    padding: 48px 20px !important;
  }
  body.home .elementor-element-46265ea,
  body.home .elementor-element-429a957,
  body.home .elementor-element-057d4fb {
    padding-top: 40px !important;
    padding-bottom: 40px !important;
  }
}
