/* ============================================================
   WEOWN THEME — main.css
   Design tokens & components ported 1:1 from the approved
   mockups, extended for a live WordPress + WooCommerce site.
   ============================================================ */

:root {
  --cream: #FAF6F0;
  --green: #1A4D3E;
  --green-deep: #11332A;
  --terracotta: #E8743B;
  --ink: #1C1C1C;
  --white: #FFFFFF;
  --cream-line: #E3DCCF;
  --wo-radius: 14px;
  --wo-shadow: 0 12px 30px -10px rgba(26,77,62,0.18);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--ink);
  background: var(--cream);
  width: 100%;
  overflow-x: hidden;
  line-height: 1.5;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--green); }
.wo-display { font-family: 'Fraunces', Georgia, serif; }
.wo-container { max-width: 1320px; margin: 0 auto; }

/* accessibility ----------------------------------------------------------- */
.screen-reader-text {
  border: 0; clip: rect(1px,1px,1px,1px); clip-path: inset(50%);
  height: 1px; width: 1px; margin: -1px; overflow: hidden; padding: 0;
  position: absolute !important; word-wrap: normal !important;
}
.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 999;
  background: var(--green-deep); color: #fff; padding: 12px 18px; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }
:focus-visible { outline: 2px solid var(--terracotta); outline-offset: 2px; }

/* NAV --------------------------------------------------------------------- */
.wo-nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 5%; background: var(--cream);
  border-bottom: 1px solid var(--cream-line);
  position: sticky; top: 0; z-index: 50;
}
.wo-logo { font-family: 'Fraunces', serif; font-weight: 700; font-size: 24px; color: var(--green); letter-spacing: -0.5px; text-decoration: none; }
.wo-logo span { color: var(--terracotta); }
.wo-logo img { max-height: 38px; width: auto; }
.wo-links { display: flex; gap: 32px; font-size: 14px; font-weight: 500; list-style: none; margin: 0; padding: 0; }
.wo-links a { color: var(--ink); text-decoration: none; opacity: 0.75; transition: opacity .2s; }
.wo-links a:hover, .wo-links .current-menu-item > a { opacity: 1; }
.wo-links .current-menu-item > a { color: var(--terracotta); }
.wo-nav-right { display: flex; align-items: center; gap: 14px; }
.wo-wa-btn {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--green); color: #fff; border-radius: 100px;
  padding: 9px 16px; font-size: 13px; font-weight: 600; text-decoration: none;
}
.wo-cart-link { position: relative; text-decoration: none; color: var(--green-deep); font-size: 20px; }
.wo-cart-count {
  position: absolute; top: -8px; right: -10px; background: var(--terracotta); color: #fff;
  font-size: 10px; font-weight: 700; min-width: 17px; height: 17px; line-height: 17px;
  text-align: center; border-radius: 100px; padding: 0 4px;
}
.wo-nav-toggle {
  display: none; background: none; border: none; cursor: pointer;
  width: 38px; height: 38px; padding: 8px; color: var(--green-deep);
}
.wo-nav-toggle svg { width: 100%; height: 100%; }

/* TICKER ------------------------------------------------------------------ */
.wo-ticker-row {
  background: var(--green-deep); color: #E9E2D4;
  display: flex; align-items: center; overflow: hidden;
  padding: 8px 0; font-size: 13px; white-space: nowrap;
}
.wo-ticker-track { display: flex; align-items: center; animation: wo-scroll 22s linear infinite; }
.wo-ticker-row.is-pausable:hover .wo-ticker-track { animation-play-state: paused; }
@keyframes wo-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.wo-ticker-item { display: flex; align-items: center; padding-right: 40px; }
.wo-ticker-item a { color: inherit; text-decoration: none; }
.wo-ticker-tag {
  background: var(--terracotta); color: #fff; font-weight: 700;
  font-size: 11px; padding: 3px 10px; border-radius: 4px; margin: 0 16px;
  flex-shrink: 0; text-transform: uppercase; letter-spacing: 0.5px;
}

/* HERO — full-width background image with content overlaid ----------------- */
.wo-hero { position: relative; background: var(--cream); overflow: hidden; }
.wo-hero-bg { position: absolute; inset: 0; z-index: 0; }
.wo-hero-bg img { width: 100%; height: 100%; object-fit: cover; }
/* Cream scrim fades in from the left so the green text stays crisp while the
   photo runs the full width of the hero (plantpaper-style full-bleed). */
.wo-hero.has-image .wo-hero-bg::after {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(90deg, var(--cream) 0%, var(--cream) 33%, rgba(250,246,240,0.72) 46%, rgba(250,246,240,0) 64%);
}
.wo-hero.no-image { background: linear-gradient(180deg, var(--cream) 0%, #F2ECE0 100%); }

/* Dark overlay mode: darkens the photo so the headline reads in white over it. */
.wo-hero.is-dark .wo-hero-bg::after {
  background: linear-gradient(90deg, rgba(17,51,42,0.86) 0%, rgba(17,51,42,0.66) 40%, rgba(17,51,42,0.3) 72%, rgba(17,51,42,0.16) 100%);
}
.wo-hero.is-dark .wo-eyebrow { color: #F2A06B; }
.wo-hero.is-dark .wo-hero-text h1 { color: #fff; }
.wo-hero.is-dark .wo-hero-text p { color: rgba(255,255,255,0.86); }
.wo-hero.is-dark .wo-btn-secondary { color: #fff; border-color: rgba(255,255,255,0.7); }
.wo-hero.is-dark .wo-btn-secondary:hover { background: #fff; color: var(--green-deep); }
.wo-hero-inner {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1.02fr 0.98fr;
  align-items: center; min-height: 86vh;
}
.wo-hero-text {
  align-self: center;
  padding: clamp(48px, 6vw, 92px) clamp(36px, 4vw, 64px) clamp(48px, 6vw, 92px) 5%;
  max-width: 760px;
}
.wo-hero-side { position: relative; align-self: stretch; }
.wo-hero.no-image .wo-hero-side { display: flex; align-items: center; justify-content: center; }
.wo-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12.5px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--green); margin-bottom: 18px;
}
.wo-eyebrow::before { content: ''; width: 18px; height: 1.5px; background: var(--terracotta); }
.wo-hero h1 {
  font-size: 56px; line-height: 1.04; font-weight: 600; letter-spacing: -1.5px;
  color: var(--green-deep); margin: 0 0 22px;
}
.wo-hero h1 em { font-style: italic; color: var(--terracotta); font-weight: 600; }
.wo-hero p { font-size: 17px; line-height: 1.55; color: #4A4A42; max-width: 440px; margin: 0 0 32px; }
.wo-cta-row { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 36px; }

.wo-btn-primary {
  display: inline-block; background: var(--terracotta); color: #fff; border: none;
  padding: 15px 28px; border-radius: 8px; font-weight: 600; font-size: 15px;
  cursor: pointer; font-family: inherit; text-decoration: none; transition: transform .18s, box-shadow .18s;
}
.wo-btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 22px -8px rgba(232,116,59,0.55); color:#fff; }
.wo-btn-secondary {
  display: inline-block; background: transparent; color: var(--green-deep); border: 1.5px solid var(--green-deep);
  padding: 15px 28px; border-radius: 8px; font-weight: 600; font-size: 15px;
  cursor: pointer; font-family: inherit; text-decoration: none; transition: background .18s, color .18s;
}
.wo-btn-secondary:hover { background: var(--green-deep); color: #fff; }

/* SOFTNESS INDEX (signature) ---------------------------------------------- */
.wo-softness {
  background: #fff; border-radius: 14px; padding: 18px 20px;
  max-width: 380px; box-shadow: var(--wo-shadow); border: 1px solid var(--cream-line);
}
.wo-softness-label { font-size: 11.5px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--green); margin-bottom: 10px; display: flex; justify-content: space-between; }
.wo-softness-bar { height: 10px; background: #EDE7DA; border-radius: 100px; position: relative; overflow: hidden; }
.wo-softness-fill { position: absolute; left: 0; top: 0; height: 100%; width: 0; background: linear-gradient(90deg, var(--terracotta), #F2A06B); border-radius: 100px; transition: width 1.4s cubic-bezier(.2,.8,.2,1); }
.wo-softness-note { font-size: 12.5px; color: #6B6B62; margin-top: 8px; }

/* (Hero image is now a full-width background layer — see .wo-hero-bg above) */
/* Floating trust badge over the photo (plantpaper-style stat callout) */
.wo-hero-badge {
  position: absolute; left: clamp(18px, 2vw, 28px); bottom: clamp(18px, 2vw, 28px); z-index: 2;
  display: inline-flex; align-items: center; gap: 9px;
  background: rgba(17,51,42,0.74); -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
  color: #F4EFE7; border: 1px solid rgba(255,255,255,0.16);
  border-radius: 100px; padding: 11px 18px; font-size: 13px; font-weight: 600;
  box-shadow: 0 10px 26px -12px rgba(0,0,0,0.5);
}
.wo-hero-badge strong { color: #fff; }
.wo-hero-badge .dot { color: var(--terracotta); font-size: 15px; line-height: 1; }

/* Floating hero testimonial card (plantpaper-style review overlay) */
.wo-hero-tst {
  position: absolute; left: clamp(16px, 2.5vw, 40px); bottom: clamp(22px, 6vh, 64px); z-index: 3;
  width: min(340px, 80%); margin: 0;
  background: #fff; border-radius: 16px; padding: 18px 20px 20px;
  border: 1px solid rgba(0,0,0,0.05);
  box-shadow: 0 22px 50px -16px rgba(17,51,42,0.45);
}
.wo-hero-tst::after {
  content: ''; position: absolute; left: 34px; bottom: -8px; width: 17px; height: 17px;
  background: #fff; transform: rotate(45deg);
  border-right: 1px solid rgba(0,0,0,0.05); border-bottom: 1px solid rgba(0,0,0,0.05);
}
.wo-hero-tst-top { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.wo-hero-tst-avatar { width: 34px; height: 34px; border-radius: 50%; background: var(--green); color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 14px; flex-shrink: 0; }
.wo-hero-tst-id { display: flex; flex-direction: column; line-height: 1.25; }
.wo-hero-tst-id strong { font-size: 13px; color: var(--ink); }
.wo-hero-tst-id em { font-size: 11.5px; color: #9A9586; font-style: italic; }
.wo-hero-tst-stars { margin-left: auto; color: var(--terracotta); font-size: 12px; letter-spacing: 1px; }
.wo-hero-tst-title { font-weight: 700; font-size: 15px; color: var(--green-deep); margin: 0 0 5px; }
.wo-hero-tst blockquote { margin: 0; font-size: 13px; line-height: 1.5; color: #4A4A42; }
.wo-hero-tst.is-animated {
  animation: wo-tst-in .7s cubic-bezier(.2,.8,.2,1) both, wo-tst-float 5.5s ease-in-out 1s infinite;
}
@keyframes wo-tst-in { from { opacity: 0; transform: translateY(16px) scale(.96); } to { opacity: 1; transform: none; } }
@keyframes wo-tst-float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
.wo-roll-stack { position: relative; width: 280px; height: 320px; }
.wo-roll {
  position: absolute; border-radius: 16px;
  box-shadow: 0 18px 40px -12px rgba(26,77,62,0.25);
  display: flex; align-items: center; justify-content: center;
}
.wo-roll-1 { width: 200px; height: 200px; background: var(--green); top: 10px; left: 10px; transform: rotate(-6deg); z-index: 2; animation: wo-float 6s ease-in-out infinite; }
.wo-roll-2 { width: 180px; height: 180px; background: var(--terracotta); bottom: 0; right: 0; transform: rotate(8deg); z-index: 1; animation: wo-float 6s ease-in-out infinite .8s; }
@keyframes wo-float { 0%,100%{ transform: rotate(-6deg) translateY(0);} 50%{ transform: rotate(-6deg) translateY(-12px);} }
.wo-roll-2 { animation-name: wo-float2; }
@keyframes wo-float2 { 0%,100%{ transform: rotate(8deg) translateY(0);} 50%{ transform: rotate(8deg) translateY(-10px);} }
.wo-roll-core { width: 70px; height: 70px; border-radius: 50%; background: var(--cream); }
.wo-roll-core-sm { width: 56px; height: 56px; border-radius: 50%; background: var(--cream); }
.wo-grain {
  position: absolute; inset: 0; border-radius: 16px;
  background: repeating-linear-gradient(180deg, rgba(255,255,255,0.06) 0px, rgba(255,255,255,0.06) 2px, transparent 2px, transparent 6px);
}

/* TRUST STRIP ------------------------------------------------------------- */
.wo-trust { display: grid; grid-template-columns: repeat(4, 1fr); background: var(--green-deep); padding: 30px 5%; }
.wo-trust-item { text-align: center; color: #E9E2D4; padding: 0 12px; border-right: 1px solid rgba(255,255,255,0.12); }
.wo-trust-item:last-child { border-right: none; }
.wo-trust-item .icon { font-size: 22px; margin-bottom: 6px; }
.wo-trust-item .label { font-size: 13px; font-weight: 600; }

/* TORN EDGE DIVIDER ------------------------------------------------------- */
.wo-tear {
  height: 28px; width: 100%; background: var(--cream);
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 20' preserveAspectRatio='none'%3E%3Cpath d='M0 10 Q5 2 10 10 T20 10 T30 10 T40 10 T50 10 T60 10 T70 10 T80 10 T90 10 T100 10 T110 10 T120 10 T130 10 T140 10 T150 10 T160 10 T170 10 T180 10 T190 10 T200 10 V20 H0 Z' fill='black'/%3E%3C/svg%3E");
  -webkit-mask-size: 200px 20px; -webkit-mask-repeat: repeat-x;
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 20' preserveAspectRatio='none'%3E%3Cpath d='M0 10 Q5 2 10 10 T20 10 T30 10 T40 10 T50 10 T60 10 T70 10 T80 10 T90 10 T100 10 T110 10 T120 10 T130 10 T140 10 T150 10 T160 10 T170 10 T180 10 T190 10 T200 10 V20 H0 Z' fill='black'/%3E%3C/svg%3E");
  mask-size: 200px 20px; mask-repeat: repeat-x;
}

/* SECTION SHELL ----------------------------------------------------------- */
.wo-section { padding: 70px 5%; }
.wo-section-head { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 36px; flex-wrap: wrap; gap: 10px; }
.wo-section-head h2 { font-size: 32px; font-weight: 600; letter-spacing: -0.5px; color: var(--green-deep); margin: 0; }
.wo-section-head a { font-size: 14px; font-weight: 600; color: var(--terracotta); text-decoration: none; }

/* PRODUCT CARDS ----------------------------------------------------------- */
.wo-products { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.wo-products.cols-3 { grid-template-columns: repeat(3, 1fr); }
.wo-card { background: #fff; border-radius: 14px; overflow: hidden; border: 1px solid var(--cream-line); transition: transform .2s, box-shadow .2s; position: relative; }
.wo-card:hover { transform: translateY(-4px); box-shadow: var(--wo-shadow); }
.wo-card-img { height: 180px; display: flex; align-items: center; justify-content: center; font-size: 13px; color: #fff; font-weight: 600; position: relative; background: var(--green); }
.wo-card-img img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.wo-badge { position: absolute; top: 12px; left: 12px; background: var(--terracotta); color: #fff; font-size: 10.5px; font-weight: 700; padding: 4px 9px; border-radius: 5px; text-transform: uppercase; letter-spacing: 0.04em; z-index: 2; }
.wo-badge.bestseller { background: var(--green-deep); }
.wo-card-body { padding: 16px; }
.wo-card-cat { font-size: 11.5px; color: var(--terracotta); font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 6px; }
.wo-card-body .name { font-weight: 600; font-size: 15px; margin-bottom: 4px; line-height: 1.3; }
.wo-card-body .name a { color: var(--ink); text-decoration: none; }
.wo-card-meta { font-size: 12.5px; color: #9A9586; margin-bottom: 10px; }
.wo-card-stars { color: var(--terracotta); font-size: 12px; margin-bottom: 10px; }
.wo-card-stars span { color: #9A9586; font-weight: 500; margin-left: 4px; }
.wo-card-body .price { color: var(--terracotta); font-weight: 700; font-size: 15px; margin-bottom: 12px; }
.wo-price-row { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.wo-price-row .price { color: var(--green-deep); font-size: 17px; margin-bottom: 0; }
.price-was { color: #B0AB9C; text-decoration: line-through; font-size: 13px; font-weight: 500; margin-left: 6px; }
.wo-add-btn { display:block; width: 100%; background: var(--green-deep); color: #fff; border: none; padding: 11px; border-radius: 7px; font-weight: 600; font-size: 13.5px; cursor: pointer; font-family: inherit; text-align:center; text-decoration:none; transition: background .18s; }
.wo-add-btn:hover { background: var(--green); color:#fff; }

/* WHY WEOWN --------------------------------------------------------------- */
.wo-why { background: var(--green-deep); padding: 80px 5%; color: #fff; }
.wo-why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.wo-why h2 { font-size: 34px; font-weight: 600; margin: 0 0 18px; color: #fff; letter-spacing: -0.5px; }
.wo-why p { color: #C9C2B2; font-size: 15.5px; line-height: 1.6; margin: 0 0 26px; max-width: 460px; }
.wo-diff { display: flex; gap: 16px; margin-bottom: 18px; align-items: flex-start; }
.wo-diff-mark { color: var(--terracotta); font-weight: 700; font-family: 'Fraunces', serif; font-size: 22px; }
.wo-diff-text strong { display: block; font-size: 15px; margin-bottom: 2px; }
.wo-diff-text span { font-size: 13.5px; color: #B8B0A0; }
.wo-why-visual { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.15); border-radius: 16px; min-height: 320px; display: flex; align-items: center; justify-content: center; color: #8A8470; font-size: 13px; overflow: hidden; }
.wo-why-visual img { width: 100%; height: 100%; object-fit: cover; }

/* TESTIMONIALS ------------------------------------------------------------ */
.wo-testimonials { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.wo-tcard { background: #fff; border-radius: 14px; padding: 24px; border: 1px solid var(--cream-line); }
.wo-stars { color: var(--terracotta); font-size: 14px; margin-bottom: 12px; letter-spacing: 2px; }
.wo-tcard p { font-size: 14.5px; line-height: 1.55; color: #3D3D36; margin: 0 0 16px; }
.wo-tauthor { display: flex; align-items: center; gap: 10px; }
.wo-tavatar { width: 34px; height: 34px; border-radius: 50%; background: var(--green); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 700; overflow:hidden; }
.wo-tavatar img { width:100%; height:100%; object-fit:cover; }
.wo-tauthor-name { font-size: 13.5px; font-weight: 600; }
.wo-tauthor-loc { font-size: 12px; color: #9A9586; }

/* BLOG -------------------------------------------------------------------- */
.wo-blog { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.wo-bcard { background: #fff; border-radius: 14px; overflow: hidden; border: 1px solid var(--cream-line); transition: transform .2s, box-shadow .2s; }
.wo-bcard:hover { transform: translateY(-4px); box-shadow: var(--wo-shadow); }
.wo-bimg { height: 160px; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 12px; font-weight: 600; background: var(--green); position: relative; }
.wo-bimg img { width: 100%; height: 100%; object-fit: cover; position:absolute; inset:0; }
.wo-bcard-body { padding: 18px; }
.wo-btag { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; color: var(--terracotta); margin-bottom: 8px; }
.wo-bcard-body h3 { font-size: 16px; font-weight: 600; line-height: 1.3; color: var(--green-deep); margin: 0 0 6px; }
.wo-bcard-body h3 a { color: inherit; text-decoration: none; }
.wo-bcard-body p { font-size: 13px; color: #8A8576; margin: 0; }

/* NEWSLETTER -------------------------------------------------------------- */
.wo-news { background: var(--terracotta); padding: 60px 5%; text-align: center; }
.wo-news h2 { font-family: 'Fraunces', serif; font-size: 30px; color: #fff; margin: 0 0 8px; font-weight: 600; }
.wo-news p { color: #FFE3D2; font-size: 14.5px; margin: 0 0 24px; }
.wo-news-form { display: flex; justify-content: center; gap: 10px; max-width: 420px; margin: 0 auto; }
.wo-news-form input { flex: 1; padding: 13px 16px; border-radius: 8px; border: none; font-family: inherit; font-size: 14px; }
.wo-news-form button { background: var(--green-deep); color: #fff; border: none; padding: 13px 22px; border-radius: 8px; font-weight: 600; font-size: 14px; cursor: pointer; font-family: inherit; }

/* FOOTER ------------------------------------------------------------------ */
.wo-footer { background: var(--green-deep); color: #B8B0A0; padding: 50px 5% 24px; }
.wo-footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 30px; margin-bottom: 36px; }
.wo-footer h4 { color: #fff; font-size: 13.5px; font-weight: 600; margin: 0 0 14px; }
.wo-footer ul { list-style: none; display: flex; flex-direction: column; gap: 9px; font-size: 13.5px; margin: 0; padding: 0; }
.wo-footer a { color: #B8B0A0; text-decoration: none; }
.wo-footer a:hover { color: #fff; }
.wo-footer-bottom { display: flex; justify-content: space-between; padding-top: 22px; border-top: 1px solid rgba(255,255,255,0.1); font-size: 12.5px; flex-wrap: wrap; gap: 12px; }
.wo-social { display: flex; gap: 12px; margin-top: 14px; }
.wo-social a { color: #B8B0A0; font-size: 18px; }
.wo-pay-badges { display: flex; gap: 8px; }
.wo-pay-badges span { background: rgba(255,255,255,0.1); padding: 4px 10px; border-radius: 5px; font-size: 11px; font-weight: 600; }

/* WHATSAPP FLOAT ---------------------------------------------------------- */
.wo-wa-float {
  position: fixed; right: 20px; bottom: 22px; z-index: 80;
  width: 56px; height: 56px; border-radius: 50%; background: #25D366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px -6px rgba(37,211,102,0.6); text-decoration: none;
  animation: wo-wa-pulse 2.6s ease-in-out infinite;
}
.wo-wa-float svg { width: 30px; height: 30px; fill: #fff; }
@keyframes wo-wa-pulse { 0%,100% { box-shadow: 0 8px 24px -6px rgba(37,211,102,0.55); } 50% { box-shadow: 0 8px 30px -2px rgba(37,211,102,0.85); } }

/* PAGE HEADER / BREADCRUMB ------------------------------------------------ */
.wo-page-head { padding: 50px 5% 30px; }
.wo-breadcrumb { font-size: 13px; color: #9A9586; margin-bottom: 14px; }
.wo-breadcrumb a { color: #9A9586; text-decoration: none; }
.wo-breadcrumb .current, .wo-breadcrumb span { color: var(--terracotta); font-weight: 600; }
.wo-page-head h1 { font-size: 42px; font-weight: 600; color: var(--green-deep); letter-spacing: -1px; margin: 0 0 10px; }
.wo-page-head p { font-size: 15.5px; color: #6B6B62; max-width: 520px; margin: 0; }

/* PACK CALCULATOR (signature) --------------------------------------------- */
.wo-calc { background: var(--green-deep); border-radius: 16px; padding: 28px 32px; margin: 0 5% 50px; display: grid; grid-template-columns: 1fr auto; gap: 30px; align-items: center; }
.wo-calc-left .eyebrow { color: #9FD9C0; font-size: 11.5px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 8px; }
.wo-calc-left h3 { font-family: 'Fraunces', serif; color: #fff; font-size: 22px; font-weight: 600; margin: 0 0 6px; }
.wo-calc-left p { color: #B8B0A0; font-size: 13.5px; max-width: 380px; margin: 0; }
.wo-calc-options { display: flex; gap: 10px; flex-wrap: wrap; }
.wo-calc-pill { background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.18); color: #E9E2D4; padding: 10px 18px; border-radius: 100px; font-size: 13.5px; font-weight: 600; cursor: pointer; white-space: nowrap; transition: background .18s, border-color .18s; }
.wo-calc-pill.active { background: var(--terracotta); border-color: var(--terracotta); color: #fff; }

/* SHOP LAYOUT ------------------------------------------------------------- */
.wo-shop-layout { display: grid; grid-template-columns: 230px 1fr; gap: 36px; padding: 0 5% 80px; }
.wo-filters { position: sticky; top: 90px; align-self: start; }
.wo-filter-group { margin-bottom: 28px; }
.wo-filter-group h4 { font-size: 12.5px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; color: var(--green-deep); margin: 0 0 14px; }
.wo-filter-opt { display: flex; align-items: center; gap: 9px; font-size: 14px; color: #4A4A42; margin-bottom: 11px; cursor: pointer; }
.wo-filter-opt input { accent-color: var(--terracotta); width: 15px; height: 15px; }
.wo-filter-opt a { color: #4A4A42; text-decoration: none; }
.wo-results-bar { display: flex; justify-content: space-between; align-items: center; margin-bottom: 22px; flex-wrap: wrap; gap: 12px; }
.wo-results-count { font-size: 14px; color: #6B6B62; }
.wo-results-count strong { color: var(--ink); }
.wo-sort select { font-size: 13.5px; color: var(--green-deep); font-weight: 600; border: 1px solid var(--cream-line); padding: 8px 14px; border-radius: 8px; background: #fff; font-family: inherit; }

/* PAGINATION -------------------------------------------------------------- */
.wo-pagination { display: flex; justify-content: center; gap: 8px; margin-top: 44px; }
.wo-pagination .page-numbers,
.wo-page-btn { min-width: 36px; height: 36px; border-radius: 8px; border: 1px solid var(--cream-line); background: #fff; display: flex; align-items: center; justify-content: center; font-size: 13.5px; font-weight: 600; color: var(--ink); text-decoration: none; padding: 0 8px; }
.wo-pagination .page-numbers.current,
.wo-page-btn.active { background: var(--green-deep); color: #fff; border-color: var(--green-deep); }

/* GENERIC WP CONTENT ------------------------------------------------------ */
.wo-content { max-width: 760px; margin: 0 auto; padding: 50px 5% 80px; }
.wo-content h1, .wo-content h2, .wo-content h3 { font-family: 'Fraunces', serif; color: var(--green-deep); letter-spacing: -0.5px; }
.wo-content h1 { font-size: 38px; margin: 0 0 18px; }
.wo-content h2 { font-size: 28px; margin: 36px 0 14px; }
.wo-content h3 { font-size: 22px; margin: 28px 0 10px; }
.wo-content p { font-size: 16.5px; line-height: 1.7; color: #3D3D36; margin: 0 0 18px; }
.wo-content img { border-radius: 12px; margin: 18px 0; }
.wo-content ul, .wo-content ol { padding-left: 22px; margin: 0 0 18px; line-height: 1.7; }
.wo-content blockquote { border-left: 3px solid var(--terracotta); padding-left: 18px; margin: 22px 0; font-style: italic; color: #4A4A42; }
.wo-post-meta { font-size: 13px; color: #9A9586; margin-bottom: 26px; }
.wo-post-hero { width: 100%; max-height: 460px; object-fit: cover; border-radius: 0; }

/* SINGLE PRODUCT (WooCommerce restyle) ------------------------------------ */
.wo-single-product { padding: 40px 5% 70px; }
.woocommerce div.product div.images img { border-radius: 14px; border: 1px solid var(--cream-line); }
.woocommerce div.product .product_title { font-family: 'Fraunces', serif; font-size: 34px; color: var(--green-deep); letter-spacing: -0.8px; }
.woocommerce div.product p.price, .woocommerce div.product span.price { color: var(--terracotta); font-weight: 700; font-size: 26px; }
.woocommerce #respond input#submit, .woocommerce a.button, .woocommerce button.button, .woocommerce input.button,
.woocommerce #respond input#submit.alt, .woocommerce a.button.alt, .woocommerce button.button.alt, .woocommerce input.button.alt {
  background: var(--green-deep); color: #fff; border-radius: 8px; font-weight: 600; padding: 12px 22px;
}
.woocommerce #respond input#submit.alt:hover, .woocommerce a.button.alt:hover, .woocommerce button.button.alt:hover, .woocommerce input.button.alt:hover { background: var(--green); }
.woocommerce div.product form.cart .button { background: var(--terracotta); }
.woocommerce div.product form.cart .button:hover { background: #d4632f; }
.woocommerce .woocommerce-message, .woocommerce .woocommerce-info { border-top-color: var(--green); }
.woocommerce span.onsale { background: var(--terracotta); border-radius: 100px; }
.wo-product-benefits { list-style: none; padding: 0; margin: 20px 0; display: grid; gap: 10px; }
.wo-product-benefits li { display: flex; gap: 10px; align-items: flex-start; font-size: 14.5px; color: #3D3D36; }
.wo-product-benefits li::before { content: '✓'; color: var(--green); font-weight: 700; }

/* CTA BANNER -------------------------------------------------------------- */
.wo-cta-banner { background: var(--green-deep); color: #fff; text-align: center; padding: 70px 5%; }
.wo-cta-banner h2 { font-family: 'Fraunces', serif; font-size: 34px; margin: 0 0 12px; letter-spacing: -0.5px; }
.wo-cta-banner p { color: #C9C2B2; max-width: 520px; margin: 0 auto 26px; font-size: 15.5px; }

/* ANIMATIONS / REVEAL ----------------------------------------------------- */
.wo-reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.wo-reveal.is-visible { opacity: 1; transform: none; }

/* RESPONSIVE -------------------------------------------------------------- */
@media (max-width: 880px) {
  .wo-nav-toggle { display: block; }
  .wo-links {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; gap: 0; background: var(--cream);
    border-bottom: 1px solid var(--cream-line); padding: 8px 5%;
  }
  .wo-links.is-open { display: flex; }
  .wo-links li { padding: 12px 0; border-bottom: 1px solid var(--cream-line); }
  .wo-nav { position: relative; }
  /* Stack: text on cream, then the photo as a full-width banner below it. */
  .wo-hero.has-image { display: flex; flex-direction: column; }
  .wo-hero.has-image .wo-hero-inner { order: 1; }
  .wo-hero.has-image .wo-hero-bg { order: 2; position: relative; height: 64vw; max-height: 460px; }
  .wo-hero.has-image .wo-hero-bg::after {
    background: linear-gradient(180deg, var(--cream) 0%, rgba(250,246,240,0) 18%);
  }
  .wo-hero-inner { grid-template-columns: 1fr; min-height: 0; }
  .wo-hero-text { padding: 40px 6% 36px; max-width: none; }
  .wo-hero h1 { font-size: 38px; }
  .wo-hero-side { display: none; }
  /* On mobile the text sits on cream (photo is a banner below), so dark-mode
     text reverts to the readable dark palette. */
  .wo-hero.is-dark .wo-eyebrow { color: var(--green); }
  .wo-hero.is-dark .wo-hero-text h1 { color: var(--green-deep); }
  .wo-hero.is-dark .wo-hero-text p { color: #4A4A42; }
  .wo-hero.is-dark .wo-btn-secondary { color: var(--green-deep); border-color: var(--green-deep); }
  .wo-trust { grid-template-columns: repeat(2, 1fr); gap: 18px; }
  .wo-trust-item { border-right: none; }
  .wo-products, .wo-products.cols-3, .wo-testimonials, .wo-blog { grid-template-columns: repeat(2, 1fr); }
  .wo-why-grid { grid-template-columns: 1fr; }
  .wo-footer-grid { grid-template-columns: 1fr 1fr; }
  .wo-shop-layout { grid-template-columns: 1fr; }
  .wo-filters { position: static; display: flex; flex-wrap: wrap; gap: 18px; }
  .wo-filter-group { margin-bottom: 0; }
  .wo-calc { grid-template-columns: 1fr; }
  .wo-section-head h2 { font-size: 26px; }
}
@media (max-width: 540px) {
  .wo-products, .wo-products.cols-3, .wo-testimonials, .wo-blog, .wo-footer-grid { grid-template-columns: 1fr; }
  .wo-hero h1 { font-size: 32px; }
  .wo-news-form { flex-direction: column; }
  .wo-cta-row { flex-direction: column; }
  .wo-cta-row .wo-btn-primary, .wo-cta-row .wo-btn-secondary { width: 100%; text-align: center; }
}

/* ============================================================
   ABOUT + DISTRIBUTOR PAGE COMPONENTS
   ============================================================ */

/* Split (text + media) ---------------------------------------------------- */
.wo-split { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; padding: 70px 5%; }
.wo-split.reverse .wo-split-media { order: -1; }
.wo-split h2 { font-family: 'Fraunces', serif; font-size: 32px; color: var(--green-deep); letter-spacing: -0.6px; margin: 0 0 16px; }
.wo-split p { font-size: 16px; line-height: 1.7; color: #3D3D36; margin: 0 0 16px; max-width: 520px; }
.wo-split-media { background: var(--green); border-radius: 16px; min-height: 360px; overflow: hidden; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.6); font-size: 13px; box-shadow: var(--wo-shadow); }
.wo-split-media img { width: 100%; height: 100%; object-fit: cover; }

/* Stats strip ------------------------------------------------------------- */
.wo-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; background: var(--green-deep); padding: 56px 5%; }
.wo-stat { text-align: center; color: #E9E2D4; }
.wo-stat .num { font-family: 'Fraunces', serif; font-size: 40px; font-weight: 700; color: #fff; line-height: 1; letter-spacing: -1px; }
.wo-stat .num em { color: var(--terracotta); font-style: normal; }
.wo-stat .cap { font-size: 13px; color: #B8B0A0; margin-top: 8px; }

/* Process steps ----------------------------------------------------------- */
.wo-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.wo-step { background: #fff; border: 1px solid var(--cream-line); border-radius: 14px; padding: 24px; }
.wo-step .step-no { font-family: 'Fraunces', serif; font-size: 28px; color: var(--terracotta); font-weight: 700; margin-bottom: 10px; }
.wo-step h3 { font-size: 16px; color: var(--green-deep); margin: 0 0 6px; }
.wo-step p { font-size: 13.5px; color: #6B6B62; line-height: 1.55; margin: 0; }

/* Eco / value cards ------------------------------------------------------- */
.wo-eco { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.wo-eco-card { background: #fff; border: 1px solid var(--cream-line); border-radius: 14px; padding: 26px; }
.wo-eco-card .icon { font-size: 26px; margin-bottom: 12px; }
.wo-eco-card h3 { font-size: 16.5px; color: var(--green-deep); margin: 0 0 8px; }
.wo-eco-card p { font-size: 14px; color: #6B6B62; line-height: 1.6; margin: 0; }

/* Distributor hero -------------------------------------------------------- */
.wo-dist-hero { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 44px; align-items: center; padding: 60px 5% 70px; background: linear-gradient(180deg, var(--cream) 0%, #F2ECE0 100%); }
.wo-dist-hero h1 { font-family: 'Fraunces', serif; font-size: 50px; line-height: 1.05; color: var(--green-deep); letter-spacing: -1.4px; margin: 0 0 20px; }
.wo-dist-hero h1 em { color: var(--terracotta); font-style: italic; }
.wo-dist-hero p { font-size: 17px; line-height: 1.55; color: #4A4A42; max-width: 460px; margin: 0 0 28px; }
.wo-lead-card { background: #fff; border: 1px solid var(--cream-line); border-radius: 16px; padding: 28px; box-shadow: var(--wo-shadow); }
.wo-lead-card h3 { font-family: 'Fraunces', serif; font-size: 22px; color: var(--green-deep); margin: 0 0 14px; }
.wo-lead-card .wo-content { padding: 0; max-width: none; }

/* Pricing / volume tiers -------------------------------------------------- */
.wo-tiers { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.wo-tier { background: #fff; border: 1px solid var(--cream-line); border-radius: 16px; padding: 28px; position: relative; }
.wo-tier.featured { border-color: var(--terracotta); box-shadow: 0 14px 34px -14px rgba(232,116,59,0.4); }
.wo-tier .tier-flag { position: absolute; top: -12px; left: 28px; background: var(--terracotta); color: #fff; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; padding: 4px 12px; border-radius: 100px; }
.wo-tier h3 { font-family: 'Fraunces', serif; font-size: 22px; color: var(--green-deep); margin: 0 0 4px; }
.wo-tier .tier-vol { font-size: 13px; color: #9A9586; margin-bottom: 16px; }
.wo-tier ul { list-style: none; padding: 0; margin: 0 0 22px; display: grid; gap: 10px; }
.wo-tier li { display: flex; gap: 9px; font-size: 14px; color: #3D3D36; }
.wo-tier li::before { content: '✓'; color: var(--green); font-weight: 700; }

/* FAQ accordion ----------------------------------------------------------- */
.wo-faq { max-width: 760px; margin: 0 auto; }
.wo-faq details { background: #fff; border: 1px solid var(--cream-line); border-radius: 12px; padding: 0; margin-bottom: 12px; overflow: hidden; }
.wo-faq summary { cursor: pointer; list-style: none; padding: 18px 22px; font-weight: 600; font-size: 15.5px; color: var(--green-deep); display: flex; justify-content: space-between; align-items: center; }
.wo-faq summary::-webkit-details-marker { display: none; }
.wo-faq summary::after { content: '+'; font-size: 22px; color: var(--terracotta); font-weight: 400; line-height: 1; }
.wo-faq details[open] summary::after { content: '–'; }
.wo-faq details > p { padding: 0 22px 20px; margin: 0; font-size: 14.5px; line-height: 1.65; color: #4A4A42; }

@media (max-width: 880px) {
  .wo-split, .wo-dist-hero { grid-template-columns: 1fr; padding-left: 6%; padding-right: 6%; }
  .wo-split.reverse .wo-split-media { order: 0; }
  .wo-dist-hero h1 { font-size: 38px; }
  .wo-stats { grid-template-columns: repeat(2, 1fr); gap: 28px; }
  .wo-steps, .wo-eco, .wo-tiers { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 540px) {
  .wo-steps, .wo-eco, .wo-tiers, .wo-stats { grid-template-columns: 1fr; }
}

/* ============================================================
   BRAND STATEMENT BAND (under the hero)
   ============================================================ */
.wo-intro { padding: clamp(56px, 8vw, 104px) 5%; text-align: center; background: var(--cream); }
.wo-intro-inner { max-width: 900px; margin: 0 auto; }
.wo-intro h2 {
  font-family: 'Fraunces', serif; font-weight: 600;
  font-size: clamp(34px, 5vw, 58px); line-height: 1.04; letter-spacing: -1.2px;
  color: var(--green-deep); margin: 0 0 22px;
}
.wo-intro h2 em { color: var(--terracotta); font-style: italic; }
.wo-intro-lead {
  font-size: clamp(16px, 1.6vw, 19px); line-height: 1.7; color: #4A4A42;
  max-width: 680px; margin: 0 auto;
}
.wo-intro-quote {
  position: relative; font-family: 'Fraunces', serif; font-style: italic; font-weight: 600;
  font-size: clamp(26px, 3.6vw, 42px); line-height: 1.18; letter-spacing: -0.5px;
  color: var(--green-deep); max-width: 780px;
  margin: clamp(44px, 6vw, 76px) auto clamp(30px, 4vw, 44px);
}
.wo-intro-quote cite {
  display: block; font-style: normal; font-family: 'Inter', sans-serif;
  font-size: 14px; font-weight: 600; letter-spacing: 0; color: var(--terracotta); margin-top: 16px;
}
.wo-intro-logos {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: 12px 28px; margin-top: 10px; padding-top: clamp(24px, 3vw, 36px);
  border-top: 1px solid var(--cream-line);
}
.wo-intro-logos-label {
  font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: #9A9586;
}
.wo-intro-logos ul {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: 10px 26px; list-style: none; margin: 0; padding: 0;
}
.wo-intro-logos li {
  font-family: 'Fraunces', serif; font-weight: 600; font-size: clamp(15px, 1.8vw, 20px);
  color: var(--green-deep); opacity: 0.7; letter-spacing: 0.2px;
}

/* REDUCED MOTION ---------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  .wo-ticker-track, .wo-roll-1, .wo-roll-2, .wo-wa-float, .wo-hero-tst { animation: none !important; }
  .wo-softness-fill { transition: none; }
  .wo-reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}
