/* ==========================================================================
   WellspringCBD — Greenshift Components (Component Engine layer)
   ==========================================================================
   Mobile-first by contract:
     base          → viewport < 768px   (defaults)
     @media 768px  → tablet  (768 – 1023px)
     @media 1024px → desktop (>= 1024px)

   Design rules (do NOT break):
     1. NO local/fixed font families  → inherit `var(--theme-*)` from Blocksy.
     2. NO fixed pixel WIRE widths     → inherit `var(--theme-container-width)`
        /`.ct-container`. Sections may be fluid full-width; cores stay centered.
     3. Every interactive element >= 48x48px (touch target contract).
     4. All content present at every breakpoint (content-parity rule).
     5. Logical properties preferred.
   ========================================================================== */

/* ---------- Utility: wide fluid section wrapper (core still inherits) ---------- */
.gs-container-wide { width: 100%; }

/* Common section rhythm — leaves room for Blocksy's own gutters.
   `.ct-container` (Blocksy) supplies the fixed-width center column. */
.wsc_usp_strip,
.wsc_hero,
.wsc_steps,
.wsc_cats,
.wsc_slider,
.wsc_faq,
.wsc_cta,
.wsc_rev,
.wsc_stack { background: inherit; }

/* ---------- Buttons (48px min touch, Blocksy typography) ---------- */
.wsc_btn {
  font-family: var(--theme-button-font-family, var(--theme-font-family));
  font-size: 1rem;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5em;
  min-height: 48px;               /* touch target */
  padding-inline: var(--theme-content-spacing, 1.5em);
  border-radius: var(--theme-border-radius, 3px);
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: transform .2s ease-in-out, filter .2s ease-in-out;
}
.wsc_btn_primary {
  background: var(--theme-palette-color-1, #62b414);
  color: var(--theme-palette-color-8, #fff);
  font-weight: 700;
}
.wsc_btn_ghost {
  background: transparent;
  border-color: var(--theme-palette-color-4, #192c27);
  color: var(--theme-palette-color-4, #192c27);
  font-weight: 600;
}
.wsc_btn:hover { transform: translateY(-1px); }

/* ---------- USP trust strip ---------- */
.wsc_usp_row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--theme-content-spacing, 1.5em);
  padding-block: var(--theme-content-vertical-spacing, 40px) 0;
}
.wsc_usp_item {
  display: flex;
  gap: .75em;
  align-items: flex-start;
}
.wsc_usp_icon {
  width: 36px;
  height: 36px;
  flex: none;
  border-radius: 50%;
  background: var(--theme-palette-color-6, #F2F7F6);
}
.wsc_usp_txt { display: flex; flex-direction: column; }
.wsc_usp_txt strong {
  font-family: var(--theme-heading-font-family, var(--theme-font-family));
  color: var(--theme-palette-color-4, #192c27);
  font-size: var(--wp--preset--font-size--small, 13px);
  line-height: 1.3;
}
.wsc_usp_txt span { font-size: var(--wp--preset--font-size--small, 13px); color: var(--theme-palette-color-3, #434f58); }

/* ---------- Hero ---------- */
.wsc_hero { padding-block-start: var(--theme-content-vertical-spacing, 48px); }
.wsc_hero_title {
  font-family: var(--theme-heading-font-family, var(--theme-font-family));
  color: var(--theme-palette-color-4, #192c27);
  font-size: clamp(1.7rem, 1.1rem + 2.4vw, 3rem);   /* fluid, no breakpoint jump */
  line-height: 1.12;
  margin-block-end: .5em;
}
.wsc_hero_sub { font-size: clamp(1rem, .95rem + .3vw, 1.15rem); color: var(--theme-palette-color-3, #434f58); }
.wsc_hero_actions { display: flex; flex-wrap: wrap; gap: var(--theme-content-spacing, 1.5em); margin-block-start: 1.5em; }
.wsc_hero_guarantee {
  margin-block-start: 1.25em;
  color: var(--theme-palette-color-2, #1614b4);
  font-weight: 600;
  font-size: var(--wp--preset--font-size--small, 13px);
}

/* ---------- 3-step band ---------- */
.wsc_steps_row { display: grid; gap: var(--theme-content-spacing, 1.5em); padding-block: var(--theme-content-vertical-spacing, 40px); }
.wsc_steps_ttl {
  font-family: var(--theme-heading-font-family, var(--theme-font-family));
  color: var(--theme-palette-color-4, #192c27);
  font-size: clamp(1.45rem, 1.1rem + 1.4vw, 2.2rem);
}
.wsc_steps_card {
  border: 1px solid color-mix(in srgb, var(--theme-palette-color-3, #434f58) 22%, transparent);
  border-radius: var(--theme-border-radius, 3px);
  padding: var(--theme-content-spacing, 1.5em);
  display: grid;
  gap: .5em;
}
.wsc_steps_num {
  width: 48px; height: 48px;
  display: grid; place-items: center;
  background: var(--theme-palette-color-1, #62b414);
  color: #fff; font-weight: 800;
  border-radius: 50%;
}
.wsc_steps_card h3 { font-family: var(--theme-heading-font-family, var(--theme-font-family)); color: var(--theme-palette-color-4, #192c27); margin: 0; }
.wsc_steps_card p { margin: 0; color: var(--theme-palette-color-3, #434f58); font-size: var(--wp--preset--font-size--small, 13px); }

/* ---------- Category tiles ---------- */
.wsc_cats_row { display: grid; gap: var(--theme-content-spacing, 1.5em); padding-block: var(--theme-content-vertical-spacing, 40px); }
.wsc_cats_ttl { font-family: var(--theme-heading-font-family, var(--theme-font-family)); color: var(--theme-palette-color-4, #192c27); }
.wsc_cats_tile {
  min-height: 120px;
  display: flex; flex-direction: column; justify-content: space-between;
  padding: var(--theme-content-spacing, 1.5em);
  background: var(--theme-palette-color-6, #F2F7F6);
  border-radius: var(--theme-border-radius, 3px);
  text-decoration: none;
}
.wsc_cats_tile_lbl { font-family: var(--theme-heading-font-family, var(--theme-font-family)); color: var(--theme-palette-color-4, #192c27); font-weight: 700; }
.wsc_cats_tile_cta { color: var(--theme-palette-color-1, #62b414); font-weight: 700; }

/* ---------- Product card (grid cell) ---------- */
.wsc_card {
  display: flex; flex-direction: column; gap: .5em;
  border: 1px solid color-mix(in srgb, var(--theme-palette-color-3, #434f58) 18%, transparent);
  border-radius: var(--theme-border-radius, 3px);
  padding: var(--theme-content-spacing, 1.5em);
  background: var(--theme-palette-color-8, #fff);
}
.wsc_card_media { position: relative; display: block; width: 100%; }
.wsc_card_media img { width: 100%; height: auto; object-fit: cover; aspect-ratio: 1 / 1; border-radius: var(--theme-border-radius, 3px); }
.wsc_card_badge {
  position: absolute; inset-block-start: .5em; inset-inline-start: .5em;
  background: var(--theme-palette-color-5, #b46614); color: #fff;
  font-size: .72rem; font-weight: 800; letter-spacing: .04em;
  padding: .35em .6em; border-radius: var(--theme-border-radius, 2px);
  text-transform: uppercase;
}
.wsc_card_spct {
  position: absolute; inset-block-end: .5em; inset-inline-start: .5em;
  background: rgba(25, 43, 38, .85); color: #fff;
  font-size: .7rem; padding: .3em .55em; border-radius: var(--theme-border-radius, 2px);
}
.wsc_card_title {
  font-family: var(--theme-heading-font-family, var(--theme-font-family));
  font-size: 1rem; line-height: 1.3; margin: 0;
}
.wsc_card_title a { color: var(--theme-palette-color-4, #192c27); text-decoration: none; }
.wsc_card_rating { display: flex; align-items: center; gap: .4em; color: #f0bc00; font-size: var(--wp--preset--font-size--small, 13px); }
.wsc_card_rating_txt { color: var(--theme-palette-color-3, #434f58); }
.wsc_card_price { font-weight: 800; color: var(--theme-palette-color-1, #62b414); }
/* Variable product swatches */
.wsc_card_vars { display: flex; flex-wrap: wrap; gap: .5em; }
.wsc_card_var {
  min-height: 44px; min-width: 44px;
  padding-inline: .9em;
  border: 1px solid color-mix(in srgb, var(--theme-palette-color-3, #434f58) 30%, transparent);
  background: none; border-radius: var(--theme-border-radius, 3px);
  font-family: inherit; cursor: pointer;
}
.wsc_card_var[aria-pressed="true"] { border-color: var(--theme-palette-color-1, #62b414); color: var(--theme-palette-color-1, #62b414); font-weight: 700; }
.wsc_card_atc { width: 100%; }

/* ---------- Badge cluster (buy box) ---------- */
.wsc_badge_cluster { display: flex; flex-wrap: wrap; gap: .45em; margin-block-start: 1em; }
.wsc_badge {
  min-height: 40px;
  display: inline-flex; align-items: center;
  padding-inline: .9em;
  font-size: .78rem; font-weight: 600;
  color: var(--theme-palette-color-4, #192c27);
  background: var(--theme-palette-color-7, #FBFCFC);
  border: 1px solid color-mix(in srgb, var(--theme-palette-color-4, #192c27) 18%, transparent);
  border-radius: 999px;
  text-decoration: none;
}
.wsc_badge_link { color: var(--theme-palette-color-2, #1614b4); border-color: currentColor; }

/* ---------- Benefit chips (under the product image) ----------
   Output of {{benefit_chips}} / Wellspring_ACF::resolve_benefit_chips().
   Strict 2-column responsive layout on mobile/tablet for clean 2x2 balance. */
.wsc_bchips {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 8px !important;
  margin-top: 12px !important;
  margin-bottom: 0 !important;
  width: 100% !important;
  max-width: 100% !important;
  box-sizing: border-box !important;
}
.wsc_bchip {
  display: flex !important;
  align-items: center !important;
  gap: 6px !important;
  padding: 8px 12px !important;
  font-size: 12.5px !important;
  font-weight: 700 !important;
  color: var(--pine, #192c27) !important;
  background: var(--nearw, #FBFCFC) !important;
  border: 1px solid var(--line, #e7ece9) !important;
  border-radius: 999px !important;
  box-sizing: border-box !important;
  min-height: 36px !important;
  height: auto !important;
  transition: border-color .15s ease, background .15s ease !important;
}
.wsc_bchip:hover {
  border-color: var(--linemid, #828d89) !important;
}
.wsc_bchip_icon {
  font-size: 14px !important;
  line-height: 1 !important;
  flex: none !important;
}
.wsc_bchip_label {
  flex: 1 1 auto !important;
  white-space: normal !important;
  word-break: normal !important;
  line-height: 1.25 !important;
}
.wsc_bchip_flag {
  flex: none !important;
  margin-inline-start: auto !important;
  padding: 2px 6px !important;
  border-radius: 999px !important;
  font-size: 10.5px !important;
  font-weight: 800 !important;
  letter-spacing: .03em !important;
  color: #fff !important;
  background: var(--pine, #192c27) !important;
  line-height: 1.2 !important;
}

@media (min-width: 1024px) {
  .wsc_bchips {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 8px !important;
  }
  .wsc_bchip { font-size: 12px !important; padding: 7px 11px !important; }
  .wsc_bchip_icon { font-size: 14px !important; }
}

/* ---------- Supplement Facts (Boochbod v3) ---------- */
.wsc_facts_sec { margin-top: 28px; }
.wsc_facts_grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr);
  gap: 24px;
  align-items: start;
  margin-top: 10px;
}
.wsc_facts_panel {
  border: 1px solid var(--pine, #192c27);
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
}
.wsc_facts_panel .wsc_facts_table {
  border: none;
  border-radius: 0;
}
.wsc_facts_col_left {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.wsc_facts_dir_box {
  background: var(--mint, #F2F7F6);
  border: 1px solid var(--theme-palette-color-5, #e7ece9);
  border-left: 4px solid var(--lemon, #62b414);
  border-radius: 10px;
  padding: 12px 16px;
}
.wsc_facts_dir_head {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
}
.wsc_facts_dir_icon {
  font-size: 16px;
  line-height: 1;
}
.wsc_facts_dir_head strong {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--pine, #192c27);
}
.wsc_facts_dir_content {
  font-size: 13px;
  line-height: 1.55;
  color: var(--theme-palette-color-3, #434f58);
}
.wsc_facts_dir_content p {
  margin: 0 0 6px;
  font-size: inherit;
  line-height: inherit;
  color: inherit;
}
.wsc_facts_dir_content p:last-child {
  margin-bottom: 0;
}
.wsc_facts_table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid var(--pine, #192c27);
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  font-size: 13.5px;
}
.wsc_facts_table th {
  background: var(--pine, #192c27) !important;
  color: #fff !important;
  text-align: left;
  padding: 10px 14px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .01em;
}
.wsc_facts_table td {
  padding: 9px 14px;
  border-top: 1px solid var(--theme-palette-color-5, #e7ece9);
  vertical-align: top;
  color: var(--theme-palette-color-4, #192c27);
  font-size: 13.5px;
}
.wsc_facts_table td:last-child {
  text-align: right;
  font-weight: 800;
  color: var(--pine, #192c27);
  white-space: nowrap;
}
.wsc_facts_table small {
  display: block;
  color: var(--slate, #5c6b66);
  font-weight: 400;
  font-size: 12.5px;
  margin-top: 2px;
}
.wsc_facts_table tfoot td {
  padding: 7px 14px;
  background: #F8FAFA;
}
.wsc_facts_table tfoot small.wsc_facts_dv {
  font-size: 12.5px;
  color: var(--slate, #5c6b66);
  font-style: italic;
}
.wsc_facts_other {
  padding: 10px 14px 12px;
  border-top: 1px solid var(--theme-palette-color-5, #e7ece9);
  background: #fff;
  font-size: 13px;
  line-height: 1.45;
  color: var(--slate, #5c6b66);
}
.wsc_facts_other strong {
  color: var(--pine, #192c27);
  font-weight: 700;
  margin-right: 4px;
}
.wsc_facts_prose_box {
  padding-top: 4px;
  position: relative;
}
.wsc_facts_prose_ttl {
  font-size: 17px;
  font-weight: 700;
  color: var(--pine, #192c27);
  margin: 0 0 10px;
  line-height: 1.35;
}
.wsc_facts_prose {
  font-size: 14px;
  line-height: 1.6;
  color: var(--theme-palette-color-3, #434f58);
  margin: 0;
}
.wsc_facts_prose p {
  margin: 0 0 8px;
  font-size: inherit;
  line-height: inherit;
  color: inherit;
}
.wsc_facts_prose p:last-child {
  margin-bottom: 0;
}
.wsc_facts_prose strong,
.wsc_facts_prose b {
  color: var(--pine, #192c27);
  font-weight: 700;
}
.wsc_facts_prose ul,
.wsc_facts_prose ol {
  margin: 6px 0 10px 18px;
  padding: 0;
}
.wsc_facts_prose li {
  margin-bottom: 4px;
}

/* Read more / Read less toggle (CSS-only checkbox pattern) */
.wsc_facts_toggle_input {
  position: absolute !important;
  opacity: 0 !important;
  width: 1px !important;
  height: 1px !important;
  pointer-events: none !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
}
.wsc_facts_prose_wrap {
  max-height: 220px;
  overflow: hidden;
  position: relative;
  transition: max-height .35s ease;
}
.wsc_facts_prose_wrap::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 54px;
  background: linear-gradient(to bottom, rgba(255,255,255,0), rgba(255,255,255,0.95));
  pointer-events: none;
  transition: opacity .25s ease;
}
.wsc_facts_toggle_input:checked ~ .wsc_facts_prose_wrap {
  max-height: 2500px;
}
.wsc_facts_toggle_input:checked ~ .wsc_facts_prose_wrap::after {
  opacity: 0;
  pointer-events: none;
}

.wsc_facts_more_btn {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 8px;
  font-size: 12px;
  font-weight: 700;
  color: var(--indigo, #1614b4);
  cursor: pointer;
  user-select: none;
  background: none;
  border: none;
  padding: 2px 0;
  transition: color .15s ease;
}
.wsc_facts_more_btn:hover {
  color: var(--pine, #192c27);
  text-decoration: underline;
}
.wsc_facts_more_btn .wsc_less_lbl { display: none; }
.wsc_facts_more_btn .wsc_more_lbl { display: inline; }

.wsc_facts_toggle_input:checked ~ .wsc_facts_more_btn .wsc_more_lbl { display: none; }
.wsc_facts_toggle_input:checked ~ .wsc_facts_more_btn .wsc_less_lbl { display: inline; }

@media (max-width: 991px) {
  .wsc_facts_grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .wsc_facts_table th {
    padding: 8px 12px;
    font-size: 12px;
  }
  .wsc_facts_table td {
    padding: 8px 12px;
    font-size: 13.5px;
  }
  .wsc_facts_prose_ttl {
    font-size: 14px;
  }
  .wsc_facts_prose {
    font-size: 12px;
  }
}

/* ---------- Accordions (specs / ingredients / COA) ---------- */
details.ct-accordion.wsc_faq_item { border-block-end: 1px solid #e7e9ea; }
.wsc_faq_item summary,
.wsc_lab_toggle,
details.ct-accordion summary {
  min-height: 48px;                    /* touch target */
  display: flex; align-items: center; justify-content: space-between;
  cursor: pointer;
  font-weight: 700;
  font-family: var(--theme-heading-font-family, var(--theme-font-family));
  color: var(--theme-palette-color-4, #192c27);
  list-style: none;
}
details.ct-accordion summary::-webkit-details-marker { display: none; }
details.ct-accordion[open] summary + * { margin-block-start: .5em; }

/* ---------- Lab results (COA) ---------- */
.wsc_sec { margin-top: 24px; }
.wsc_sec_ttl { font-size: 16px; font-weight: 800; color: var(--theme-palette-color-4, #192c27); margin: 0 0 10px; }
.wsc_lab { border: 1px solid var(--theme-palette-color-5, #e7ece9); border-radius: 14px; overflow: hidden; background: #FBFCFC; }

/* COA Multi-Report Tabs */
.wsc_lab_tabs {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 8px !important;
  margin-bottom: 12px !important;
  align-items: center !important;
}
.wsc_lab_tab {
  padding: 8px 16px !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  color: var(--pine, #192c27) !important;
  background: #ffffff !important;
  border: 1.5px solid rgba(25, 43, 38, 0.16) !important;
  border-radius: 999px !important;
  cursor: pointer !important;
  transition: all 0.2s ease !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
  line-height: 1.2 !important;
  user-select: none !important;
}
.wsc_lab_tab:hover {
  border-color: var(--pine, #192c27) !important;
  background: #f4f7f6 !important;
}
.wsc_lab_tab.on {
  background: var(--pine, #192c27) !important;
  color: #ffffff !important;
  border-color: var(--pine, #192c27) !important;
  box-shadow: 0 3px 10px rgba(25, 43, 38, 0.18) !important;
}
.wsc_lab_tab_icon {
  font-size: 14px !important;
  line-height: 1 !important;
}
.wsc_labhead { background: var(--pine, #192c27) !important; color: #fff !important; padding: 14px 18px; display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; }
.wsc_labhead b { font-size: 14.5px; display: block; color: #fff !important; }
.wsc_labhead span { font-size: 13px; color: #cfe6d4 !important; }
.wsc_labchip { flex: none; font-size: 12.5px; font-weight: 800; color: var(--theme-palette-color-1, #62b414); border: 1px solid var(--theme-palette-color-1, #62b414); padding: 4px 10px; border-radius: 999px; white-space: nowrap; }
.wsc_labmeta { font-size: 13px; color: var(--theme-palette-color-3, #434f58); padding: 11px 18px 9px; border-bottom: 1px solid var(--theme-palette-color-5, #e7ece9); }
.wsc_labmeta b { color: var(--theme-palette-color-4, #192c27); }
.wsc_labtable { width: 100%; border-collapse: collapse; font-size: 13.5px; }
.wsc_labtable th { background: #F2F7F6; text-align: left; color: var(--theme-palette-color-4, #192c27); padding: 8px 12px; }
.wsc_labtable td { padding: 8px 12px; border-top: 1px solid var(--theme-palette-color-5, #e7ece9); }
.wsc_labtable td:last-child { text-align: right; font-family: Consolas, monospace; font-weight: 700; color: var(--theme-palette-color-1, #62b414); }
.wsc_labpass { display: flex; gap: 12px; padding: 11px 18px; border-top: 1px solid var(--theme-palette-color-5, #e7ece9); }
.wsc_pct { flex: 1; }
.wsc_pct > span { font-size: 12px; color: var(--theme-palette-color-3, #434f58); display: flex; justify-content: space-between; }
.wsc_pbar { height: 7px; border-radius: 4px; background: #dceee0; margin-top: 3px; overflow: hidden; }
.wsc_pbar i { display: block; height: 100%; background: var(--theme-palette-color-1, #62b414); }
.wsc_labpdf { border-top: 1px solid var(--theme-palette-color-5, #e7ece9); padding: 11px 18px; display: flex; justify-content: space-between; align-items: center; gap: 8px; }
.wsc_labpdf a { display: inline-flex; align-items: center; min-height: 44px; font-weight: 700; font-size: 12.5px; color: var(--theme-palette-color-2, #1614b4); text-decoration: none; }
.wsc_labpdf span { font-size: 12.5px; color: var(--theme-palette-color-3, #434f58); }
.wsc_lab_note { font-size: .72rem; color: var(--theme-palette-color-3, #434f58); opacity: .85; }

/* ---------- Product benefits (4 icon cards) ---------- */
.wsc_bencards { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 12px; margin-top: 10px; }
.wsc_bencard { border: 1px solid var(--theme-palette-color-5, #e7ece9); border-radius: 14px; padding: 16px 14px; background: #FBFCFC; }
.wsc_bencard .ic { font-size: 26px; line-height: 1; }
.wsc_bencard b { display: block; font-size: 13px; color: var(--theme-palette-color-4, #192c27); margin-top: 8px; font-weight: 700; }
.wsc_bencard p { font-size: 13.5px; color: var(--theme-palette-color-3, #5c6b66); margin: 5px 0 0; line-height: 1.45; }
@media (max-width: 991px) {
  .wsc_bencards { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 9px; }
  .wsc_bencard { padding: 12px; border-radius: 12px; }
  .wsc_bencard .ic { font-size: 22px; }
  .wsc_bencard b { font-size: 13.5px; }
  .wsc_bencard p { font-size: 12px; }
}
@media (max-width: 550px) {
  .wsc_bencards { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 9px; }
  .wsc_bencard { padding: 12px; border-radius: 12px; }
  .wsc_bencard .ic { font-size: 22px; }
  .wsc_bencard b { font-size: 12px; }
  .wsc_bencard p { font-size: 12.5px; }
}

/* ---------- Testimonial slider (swipe on mobile) ---------- */
.wsc_slider { position: relative; }
.wsc_slider_viewport { overflow-x: auto; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; }
.wsc_slider_track { display: flex; }
.wsc_slide {
  flex: 0 0 100%;                       /* one card per screen on mobile */
  scroll-snap-align: start;
  padding-inline: .25em 1.5em;
  margin: 0;
}
.wsc_slide_stars { color: #f0bc00; letter-spacing: .15em; }
.wsc_slide blockquote {
  margin: .5em 0;
  font-size: var(--wp--preset--font-size--medium, 20px);
  line-height: 1.4;
  color: var(--theme-palette-color-4, #192c27);
}
.wsc_slide figcaption { display: flex; flex-direction: column; }
.wsc_slide figcaption strong { color: var(--theme-palette-color-4, #192c27); }
.wsc_slide figcaption span { font-size: .8rem; color: var(--theme-palette-color-3, #434f58); }
.wsc_slider_nav { display: flex; align-items: center; justify-content: space-between; margin-block-start: 1em; }
.wsc_slider_nav button {
  width: 48px; height: 48px;             /* touch target */
  border: 1px solid var(--theme-palette-color-4, #192c27);
  border-radius: 50%; background: none; font-size: 1.4rem; cursor: pointer;
}
.wsc_slider_dots { display: flex; gap: .5em; }
.wsc_slider_dots button {
  width: 10px; height: 10px; border-radius: 50%;
  border: 0; background: var(--theme-palette-color-3, #434f58); opacity: .35;
  cursor: pointer; padding: 0;
}
.wsc_slider_dots button[aria-pressed="true"] { opacity: 1; background: var(--theme-palette-color-1, #62b414); }

/* ---------- Frequently Asked Questions (FAQ) Section ---------- */
.wsc_faq_sec {
  margin-top: 32px !important;
  margin-bottom: 32px !important;
  padding-block: 28px !important;
}
.wsc_faq_ttl {
  font-family: var(--theme-heading-font-family, var(--theme-font-family));
  font-size: clamp(1.35rem, 1.1rem + 1.2vw, 2rem);
  font-weight: 800;
  color: var(--theme-palette-color-4, #192c27);
  margin: 0 0 16px;
  line-height: 1.2;
}
.wsc_faq_accord {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.wsc_faq_item {
  border: 1px solid rgba(25, 43, 38, 0.12);
  border-radius: 12px;
  background: #ffffff;
  overflow: hidden;
  transition: all 0.2s ease;
}
.wsc_faq_item[open] {
  border-color: rgba(25, 43, 38, 0.24);
  box-shadow: 0 4px 14px rgba(25, 43, 38, 0.06);
}
.wsc_faq_item summary {
  list-style: none;
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 700;
  font-size: 14.5px;
  color: var(--theme-palette-color-4, #192c27);
  cursor: pointer;
  padding: 14px 18px;
  user-select: none;
  transition: color 0.15s ease;
}
.wsc_faq_item summary:hover {
  color: var(--theme-palette-color-1, #62b414);
}
.wsc_faq_item summary::-webkit-details-marker {
  display: none;
}
.wsc_faq_item summary::after {
  content: "+";
  color: var(--theme-palette-color-1, #62b414);
  font-size: 22px;
  font-weight: 800;
  line-height: 1;
  margin-left: 12px;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}
.wsc_faq_item[open] summary::after {
  content: "\2212";
  color: var(--theme-palette-color-4, #192c27);
}
.wsc_faq_body {
  padding: 0 18px 16px;
  border-top: 1px solid rgba(25, 43, 38, 0.05);
}
.wsc_faq_body p {
  font-size: 14px;
  color: var(--theme-palette-color-3, #434f58);
  line-height: 1.65;
  margin: 10px 0 8px;
}
.wsc_faq_body p:last-child {
  margin-bottom: 0;
}
.wsc_faq .wsc_btn { margin-block-start: 1.5em; }

/* ---------- CTA band ---------- */
.wsc_cta {
  background: var(--theme-palette-color-4, #192c27);
  color: #fff;
  padding-block: var(--theme-content-vertical-spacing, 48px);
}
.wsc_cta_ttl { font-family: var(--theme-heading-font-family, var(--theme-font-family)); color: #fff; }
.wsc_cta_sub { color: color-mix(in srgb, #fff 78%, transparent); }
.wsc_cta .wsc_btn_primary { background: var(--theme-palette-color-1, #62b414); }

/* ---------- Sticky mobile add-to-cart ---------- */
.wsc_sticky {
  position: fixed; inset-inline: 0; inset-block-end: 0;
  z-index: 9999;
  display: flex; align-items: center; gap: .75em;
  padding: .6em var(--theme-content-spacing, 1em);
  background: var(--theme-palette-color-8, #fff);
  border-block-start: 1px solid #e7e9ea;
  box-shadow: 0 -6px 18px rgba(25, 43, 38, .08);
  transform: translateY(105%);
  transition: transform .3s ease-in-out;
}
.wsc_sticky.is-visible { transform: translateY(0); }
.wsc_sticky_price { font-weight: 800; color: var(--theme-palette-color-4, #192c27); white-space: nowrap; }
.wsc_sticky_variant { flex: 1; min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; font-size: .82rem; color: var(--theme-palette-color-3, #434f58); }
.wsc_sticky_atc { flex: none; margin-inline-start: auto; }

/* ---------- Archive: filters + grid ---------- */
.wsc_archive_top { display: flex; flex-direction: column; gap: .75em; padding-block-start: var(--theme-content-vertical-spacing, 32px); }
.wsc_filters_toggle {
  width: 100%; min-height: 48px;
  background: var(--theme-palette-color-7, #FBFCFC);
  border: 1px solid #e7e9ea; border-radius: var(--theme-border-radius, 3px);
  font-family: inherit; font-weight: 700; cursor: pointer;
}
.wsc_filters_panel { display: none; padding-block-start: 1em; }
.wsc_filters.is-open .wsc_filters_panel { display: block; }
.wsc_products { display: grid; grid-template-columns: 1fr; gap: var(--theme-content-spacing, 1.5em); }
.wsc_archive_seo { color: var(--theme-palette-color-3, #434f58); font-size: var(--wp--preset--font-size--small, 13px); }

/* ---------- Complete Your Stack Section ---------- */
.wsc_stack_sec {
  margin-top: 36px !important;
  margin-bottom: 36px !important;
  padding-block: 28px !important;
}
.wsc_stack_ttl {
  font-family: var(--theme-heading-font-family, var(--theme-font-family));
  font-size: clamp(1.35rem, 1.1rem + 1.2vw, 2rem);
  font-weight: 800;
  color: var(--theme-palette-color-4, #192c27);
  margin: 0 0 18px;
  line-height: 1.2;
}
.wsc_stack_grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  width: 100%;
}
.wsc_rcard {
  border: 1px solid rgba(25, 43, 38, 0.12);
  border-radius: 12px;
  padding: 14px;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 2px 8px rgba(25, 43, 38, 0.04);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.wsc_rcard:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(25, 43, 38, 0.09);
  border-color: rgba(25, 43, 38, 0.22);
}
.wsc_rthumb_wrap {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 9px;
  overflow: hidden;
  background: #f4f7f6;
  margin-bottom: 10px;
  position: relative;
}
.wsc_rthumb_wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.25s ease;
}
.wsc_rcard:hover .wsc_rthumb_wrap img {
  transform: scale(1.04);
}
.wsc_rthumb_ph {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  font-size: 38px;
  background: linear-gradient(145deg, #dceee0, #b7d9c6);
}
.wsc_rcard_title {
  display: block;
  text-decoration: none;
  margin-bottom: 6px;
}
.wsc_rcard_title b {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--theme-palette-color-4, #192c27);
  line-height: 1.35;
  transition: color 0.15s ease;
}
.wsc_rcard_title:hover b {
  color: var(--theme-palette-color-1, #62b414);
}
.wsc_rcard_meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}
.wsc_rcard_price {
  font-size: 14.5px;
  font-weight: 800;
  color: var(--theme-palette-color-4, #192c27);
}
.wsc_miniatc {
  width: 100% !important;
  min-height: 38px !important;
  border: 0 !important;
  border-radius: 8px !important;
  background: var(--theme-palette-color-4, #192c27) !important;
  color: #ffffff !important;
  font-size: 12.5px !important;
  font-weight: 800 !important;
  cursor: pointer !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
  text-decoration: none !important;
  transition: all 0.2s ease !important;
  padding: 8px 12px !important;
  margin-top: auto !important;
}
.wsc_miniatc:hover {
  background: var(--theme-palette-color-1, #62b414) !important;
  color: #ffffff !important;
  transform: translateY(-1px) !important;
  box-shadow: 0 4px 12px rgba(98, 180, 20, 0.3) !important;
}

@media (max-width: 1023px) {
  .wsc_stack_grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }
}
@media (max-width: 580px) {
  .wsc_stack_grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }
  .wsc_rcard {
    padding: 10px;
  }
  .wsc_rcard_title b {
    font-size: 12.5px;
  }
  .wsc_miniatc {
    min-height: 34px !important;
    font-size: 11.5px !important;
  }
}

/* ---------- Section 3B — "What's Inside" ingredients grid/slider ----------
   1–3 items → balanced grid (@768+). 4+ items → horizontal slide track
   with flanking left/right arrows (@768+). Under 768px every count renders
   as a swipe carousel with a styled thin scrollbar that telegraphs more
   content. Card order: image → label → dose pill → description. */
.wsc_ing {
  --wsc-ing-gap: 16px;
  --wsc-ing-pad: 20px;
  --wsc-ing-rad: 10px;
  --wsc-ing-ink: var(--theme-palette-color-4, #192c27);
  --wsc-ing-mut: var(--theme-palette-color-3, #434f58);
  --wsc-ing-bg: var(--theme-palette-color-7, #FBFCFC);
  --wsc-ing-soft: var(--theme-palette-color-6, #F2F7F6);
  --wsc-ing-line: color-mix(in srgb, var(--theme-palette-color-3, #434f58) 22%, transparent);
  --wsc-ing-accent: var(--theme-palette-color-1, #62b414);
  margin-top: 36px !important;
  margin-bottom: 36px !important;
  padding-block: 28px !important;
  color: var(--wsc-ing-mut);
}
.wsc_ing_ttl {
  font-family: var(--theme-heading-font-family, var(--theme-font-family));
  color: var(--wsc-ing-ink);
  font-size: clamp(1.35rem, 1.1rem + 1.2vw, 2rem);
  font-weight: 800;
  line-height: 1.2;
  margin: 0 0 16px;
}
.wsc_ing_slider_wrap {
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  width: 100% !important;
  position: relative !important;
}
.wsc_ing_viewport {
  flex: 1 1 0% !important;
  min-width: 0 !important;
  width: 100% !important;
  overflow-x: auto;
  /* swipe feel matches the trust-badge strips (.wsm2_trust/.wst2_trust) */
  scroll-snap-type: x proximity;
  overscroll-behavior-inline: contain;
  -webkit-overflow-scrolling: touch;
  /* thin scrollbar identical to the trust strips: pine thumb, 8% pine track, 999px */
  scrollbar-width: thin;
  scrollbar-color: var(--wsc-ing-ink) rgba(25, 43, 38, .08);
  padding: 6px 2px 12px;
}
.wsc_ing_viewport::-webkit-scrollbar { height: 5px; }
.wsc_ing_viewport::-webkit-scrollbar-track { background: rgba(25, 43, 38, .08); border-radius: 999px; }
.wsc_ing_viewport::-webkit-scrollbar-thumb { background: var(--wsc-ing-ink); border-radius: 999px; }
.wsc_ing_track { display: flex; gap: var(--wsc-ing-gap); }
.wsc_ing_card {
  flex: 0 0 78%;                          /* peek of the next card on mobile */
  scroll-snap-align: start;
  display: flex; flex-direction: column; gap: .75em;
  background: var(--wsc-ing-bg);
  border: 1px solid var(--wsc-ing-line);
  border-radius: var(--wsc-ing-rad);
  padding: var(--wsc-ing-pad);
  box-shadow: 0 2px 8px rgba(25, 43, 38, 0.04);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.wsc_ing_card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(25, 43, 38, 0.08);
}
.wsc_ing_media { border-radius: var(--wsc-ing-rad); overflow: hidden; background: var(--wsc-ing-soft); aspect-ratio: 1 / 1; display: grid; place-items: center; }
.wsc_ing_media img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 1 / 1; display: block; }
.wsc_ing_ph { font-style: normal; font-size: 56px; line-height: 1; user-select: none; }
.wsc_ing_media.ph1 { background: linear-gradient(145deg, #dceee0, #b7d9c6 55%, #9ec9ae); }
.wsc_ing_media.ph2 { background: linear-gradient(145deg, #e2e8f5, #c3cfe9 55%, #a9badc); }
.wsc_ing_media.ph3 { background: linear-gradient(145deg, #f5efda, #ecdcae 55%, #dfc889); }
.wsc_ing_media.ph4 { background: linear-gradient(145deg, #ece7f2, #d8cfe6 55%, #c2b4d8); }
.wsc_ing_media.ph5 { background: linear-gradient(145deg, #e4ece0, #c9d9c2 55%, #adc7a4); }
.wsc_ing_media.ph6 { background: linear-gradient(145deg, #fbe9dd, #f4c9a8 55%, #eaa878); }
.wsc_ing_media.ph7 { background: linear-gradient(145deg, #e3e7ec, #c7cfd8 55%, #a9b4c0); }
.wsc_ing_body { display: flex; flex-direction: column; gap: .45em; }
.wsc_ing_name {
  font-family: var(--theme-heading-font-family, var(--theme-font-family));
  font-size: 1.1rem; font-weight: 700; line-height: 1.3; margin: 0;
  color: var(--wsc-ing-ink);
}
.wsc_ing_desc { margin: 0; font-size: .88rem; line-height: 1.55; color: var(--wsc-ing-mut); }
.wsc_ing_feats {
  list-style: none;
  margin: .25em 0 0;
  padding: 0;
  display: grid;
  gap: .35em;
}
.wsc_ing_feats li {
  position: relative;
  padding-inline-start: 1.1em;
  font-size: .84rem;
  line-height: 1.45;
  color: var(--wsc-ing-mut);
}
.wsc_ing_feats li::before {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  top: .48em;
  width: .45em; height: .45em;
  background: var(--wsc-ing-accent);
  border-radius: 2px;
  transform: rotate(45deg);
}
.wsc_ing_more {
  align-self: flex-start;
  min-height: 44px;                       /* touch target */
  display: inline-flex; align-items: center;
  font-size: .84rem; font-weight: 700;
  color: var(--wsc-ing-accent);
  text-decoration: underline; text-underline-offset: 3px;
}
.wsc_ing_more:hover { color: var(--wsc-ing-ink); text-decoration: none; }

/* Flanking Left/Right Arrow Navigation */
.wsc_ing_arrow {
  flex: 0 0 44px !important;
  width: 44px !important;
  height: 44px !important;
  border-radius: 50% !important;
  background: var(--theme-palette-color-4, var(--pine, #192c27)) !important;
  border: 1.5px solid var(--theme-palette-color-4, var(--pine, #192c27)) !important;
  box-shadow: 0 4px 14px rgba(25, 43, 38, 0.22) !important;
  color: #ffffff !important;
  font-size: 24px !important;
  font-weight: 700 !important;
  line-height: 1 !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  cursor: pointer !important;
  transition: all 0.2s ease-in-out !important;
  user-select: none !important;
  padding: 0 0 2px 0 !important;
  margin: -10px 0 0 0 !important;
}
.wsc_ing_arrow:hover:not([aria-disabled="true"]) {
  background: var(--theme-palette-color-1, var(--lemon, #62b414)) !important;
  color: #ffffff !important;
  border-color: var(--theme-palette-color-1, var(--lemon, #62b414)) !important;
  box-shadow: 0 6px 18px rgba(98, 180, 20, 0.35) !important;
  transform: scale(1.08) !important;
}
.wsc_ing_arrow[aria-disabled="true"] {
  opacity: 0.3 !important;
  cursor: not-allowed !important;
  pointer-events: none !important;
  box-shadow: none !important;
}

@media (max-width: 767px) {
  .wsc_ing_slider_wrap {
    gap: 6px !important;
  }
  .wsc_ing_arrow {
    flex: 0 0 36px !important;
    width: 36px !important;
    height: 36px !important;
    font-size: 20px !important;
    margin: -8px 0 0 0 !important;
  }
}

@media (min-width: 768px) {
  /* 4+ items: slide track with flanking arrows */
  .wsc_ing[data-wsc-ing-slider="1"] .wsc_ing_card { flex: 0 0 calc(50% - 8px); }
  /* 1–3 items: balanced grid — nav is pointless, never show it */
  .wsc_ing[data-wsc-ing-slider="0"] .wsc_ing_arrow { display: none !important; }
  .wsc_ing[data-wsc-ing-slider="0"] .wsc_ing_viewport { overflow: visible; scrollbar-width: none; }
  .wsc_ing[data-wsc-ing-slider="0"] .wsc_ing_viewport::-webkit-scrollbar { display: none; }
  .wsc_ing[data-wsc-ing-slider="0"] .wsc_ing_track { display: grid; grid-template-columns: repeat(3, 1fr); }
  .wsc_ing[data-wsc-ing-count="1"][data-wsc-ing-slider="0"] .wsc_ing_track { grid-template-columns: 1fr; }
  .wsc_ing[data-wsc-ing-count="2"][data-wsc-ing-slider="0"] .wsc_ing_track { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .wsc_ing[data-wsc-ing-slider="1"] .wsc_ing_card { flex: 0 0 calc(33.3333% - 10.666px); }
}

/* ---------- Reviews + off-canvas "Write a review" drawer ----------
   Section = aggregate + verified list. Drawer = CSS-first (hidden checkbox +
   label triggers — works scriptless, zero scroll jump), right slide-out held
   by the REAL WooCommerce review form (comment_form). JS is progressive
   enhancement only (Esc, focus, star fill, label double-toggle guard);
   the form submit is left native to wp-comments-post.php. */
.wsc_rev { padding-block-start: var(--theme-content-vertical-spacing, 40px); }
.wsc_rev_ttl {
  font-family: var(--theme-heading-font-family, var(--theme-font-family));
  color: var(--theme-palette-color-4, #192c27);
  font-size: clamp(1.3rem, 1.05rem + 1.2vw, 2rem);
  line-height: 1.2;
  margin: 0 0 .6em;
}
.wsc_rev_sum { display: flex; flex-wrap: wrap; align-items: center; gap: .9em 1.25em; margin-block-end: 1em; }
.wsc_rev_bigrow { display: flex; align-items: center; gap: .6em; }
.wsc_rev_big {
  font-family: var(--theme-heading-font-family, var(--theme-font-family));
  font-size: 2.1rem; font-weight: 800;
  color: var(--theme-palette-color-4, #192c27);
}
.wsc_rev_stars { color: #f0bc00; font-size: 1.05rem; letter-spacing: .12em; }
.wsc_rev_avgclause { margin: 0; font-size: var(--wp--preset--font-size--small, 13px); color: var(--theme-palette-color-3, #434f58); }
.wsc_rev_avgclause b { color: var(--theme-palette-color-4, #192c27); font-weight: 700; }
.wsc_rev_empty { font-size: var(--wp--preset--font-size--small, 13px); color: var(--theme-palette-color-3, #434f58); }
.wsc_rev_list { margin-block: 14px; }
.wsc_rev_list .commentlist { margin: 0; padding: 0; list-style: none; }
.wsc_rev_list .commentlist > li { padding-block: 18px; border-block-end: 1px solid rgba(25, 43, 38, 0.08); text-align: left; }
.wsc_rev_list .commentlist > li:first-child { padding-block-start: 0; }
.wsc_rev_list .comment_container { display: flex; flex-direction: column; align-items: flex-start; text-align: left; gap: 8px; }
.wsc_rev_list .avatar { width: 44px; height: 44px; flex: none; border-radius: 50%; }

.wsc_rev_list .comment-text { width: 100%; text-align: left; }
.wsc_rev_list .comment-text .meta { font-size: 13.5px; color: var(--slate, #62727d); margin: 4px 0 8px 0; text-align: left; }
.wsc_rev_list .comment-text .meta .woocommerce-review__author { font-weight: 700; color: var(--theme-palette-color-4, #192c27); }
.wsc_rev_list .comment-text .meta .verified { color: var(--theme-palette-color-1, #62b414); font-style: normal; font-weight: 600; }
.wsc_rev_list .comment-text .description { font-size: 14px; line-height: 1.6; color: var(--theme-palette-color-3, #434f58); text-align: left; margin: 0; }
.wsc_rev_list .comment-text .description p { margin: 0; text-align: left; }

/* Review Helpful Voting Hands */
.ct-review-votes {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  justify-content: flex-start !important;
  gap: 10px !important;
  margin-top: 14px !important;
  margin-bottom: 6px !important;
  text-align: left !important;
}

.ct-review-votes .ct-review-vote {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 32px !important;
  height: 32px !important;
  border-radius: 6px !important;
  background: #f4f7f6 !important;
  border: 1px solid rgba(25, 43, 38, 0.12) !important;
  color: var(--theme-palette-color-4, #192c27) !important;
  cursor: pointer !important;
  transition: all 0.2s ease-in-out !important;
  text-decoration: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

.ct-review-votes .ct-review-vote .ct-icon-container {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  line-height: 1 !important;
}

.ct-review-votes .ct-review-vote svg {
  width: 14px !important;
  height: 14px !important;
  fill: currentColor !important;
  transition: transform 0.2s ease !important;
}

.ct-review-votes .ct-review-vote:hover {
  background: var(--theme-palette-color-4, #192c27) !important;
  color: #ffffff !important;
  border-color: var(--theme-palette-color-4, #192c27) !important;
  transform: translateY(-1px) !important;
}

.ct-review-votes .ct-review-vote:hover svg {
  transform: scale(1.1) !important;
}

.ct-review-votes .ct-review-vote[data-button-state="active"],
.ct-review-votes .ct-review-vote.active {
  background: var(--theme-palette-color-1, #62b414) !important;
  color: #ffffff !important;
  border-color: var(--theme-palette-color-1, #62b414) !important;
}

.ct-review-votes .ct-review-vote-count {
  font-size: 12.5px !important;
  color: var(--theme-palette-color-3, #62727d) !important;
  margin-left: 4px !important;
  display: inline-block !important;
}

.ct-review-votes .ct-review-vote-count strong,
.ct-review-votes .ct-review-vote-count .ct-review-upvote-count,
.ct-review-votes .ct-review-vote-count .ct-review-total-count {
  font-weight: 700 !important;
  color: var(--theme-palette-color-4, #192c27) !important;
}

.wsc_rev_wrot {
  min-height: 48px;
  display: inline-flex; align-items: center; justify-content: center;
  gap: .5em; padding-inline: 1.4em;
  background: var(--theme-palette-color-1, #62b414); color: #fff;
  font-weight: 800; border-radius: 999px; cursor: pointer;
  margin-block-start: 1em; text-align: center;
}
.wsc_rev_link {
  min-height: 44px;
  display: inline-flex; align-items: center;
  color: var(--theme-palette-color-2, #1614b4);
  font-weight: 700; text-decoration: underline; cursor: pointer;
}
.wsc_rev_link:hover { text-decoration: none; }

.wsc_rev_ckh { position: fixed; top: 0; left: -9999px; width: 1px; height: 1px; opacity: 0; pointer-events: none; }
#wsc_rev_drawer_ckh:checked ~ .wsc_rev_drawer { visibility: visible; }
#wsc_rev_drawer_ckh:checked ~ .wsc_rev_drawer .wsc_rev_bg { opacity: 1; }
#wsc_rev_drawer_ckh:checked ~ .wsc_rev_drawer .wsc_rev_panel { transform: none; }
.wsc_rev_drawer { position: fixed; inset: 0; z-index: 1201; visibility: hidden; }
.wsc_rev_drawer[aria-hidden="false"] { visibility: visible; }
.wsc_rev_bg { position: absolute; inset: 0; background: rgba(25, 43, 38, .45); opacity: 0; transition: opacity .25s ease; }
.wsc_rev_drawer[aria-hidden="false"] .wsc_rev_bg { opacity: 1; }
.wsc_rev_panel {
  position: absolute; top: 0; right: 0; height: 100%; width: min(420px, 92vw);
  background: var(--theme-palette-color-7, #FBFCFC);
  box-shadow: -14px 0 44px rgba(25, 43, 38, .24);
  transform: translateX(105%);
  transition: transform .28s ease-in-out;
  display: flex; flex-direction: column;
}
.wsc_rev_drawer[aria-hidden="false"] .wsc_rev_panel { transform: none; }
.wsc_rev_hd {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 16px 20px; border-block-end: 1px solid #eef1f2;
}
.wsc_rev_hd h2 {
  margin: 0;
  font-family: var(--theme-heading-font-family, var(--theme-font-family));
  font-size: 1rem; line-height: 1.3; color: var(--theme-palette-color-4, #192c27);
}
.wsc_rev_x {
  width: 34px; height: 34px; flex: none;
  display: grid; place-items: center;
  border: 0; border-radius: 9px; background: var(--theme-palette-color-6, #F2F7F6);
  color: var(--theme-palette-color-4, #192c27); font-size: 1.2rem; line-height: 1; cursor: pointer;
}
.wsc_rev_bd { padding: 20px; overflow-y: auto; }
.wsc_rev_bd .wsc_rev_form { margin: 0; }
.wsc_rev_bd p { margin: 0 0 14px; }
.wsc_rev_bd label {
  display: block; font-size: .78rem; font-weight: 800;
  letter-spacing: .04em; text-transform: uppercase;
  color: var(--theme-palette-color-4, #192c27); margin-block-end: 6px;
}
.wsc_rev_bd .star-picker { display: flex; gap: 4px; align-items: center; }
.wsc_rev_bd .star-picker input { position: absolute; opacity: 0; pointer-events: none; width: 1px; height: 1px; }
.wsc_rev_bd .star-picker label { cursor: pointer; font-size: 22px; line-height: 1; color: rgba(67, 79, 88, .28); margin: 0 2px 0 0; }
.wsc_rev_bd .star-picker input:checked + label { color: #f0bc00; }
.wsc_rev_bd input[type="text"],
.wsc_rev_bd input[type="email"],
.wsc_rev_bd textarea {
  width: 100%;
  border: 1px solid color-mix(in srgb, var(--theme-palette-color-3, #434f58) 30%, transparent);
  border-radius: 10px; background: var(--theme-palette-color-8, #fff);
  color: var(--theme-palette-color-3, #434f58); font: inherit; padding: 10px 12px;
}
.wsc_rev_bd textarea { resize: vertical; min-height: 110px; }
.wsc_rev_bd .comment-form-rating { margin-block-end: 14px; }
.wsc_rev_bd .wsc_rev_sub {
  width: 100%; border: 0; border-radius: 999px;
  background: var(--theme-palette-color-1, #62b414); color: #fff;
  font-weight: 800; font-size: .95rem; padding: 13px 18px; cursor: pointer;
}
.wsc_rev_bd .must-log-in,
.wsc_rev_bd .logged-in-as,
.wsc_rev_bd .comment-notes { font-size: .85rem; color: var(--theme-palette-color-3, #434f58); }
.wsc_rev_bd .must-log-in a,
.wsc_rev_bd .logged-in-as a { color: var(--theme-palette-color-2, #1614b4); }
.wsc_rev_note { margin: 12px 0 0; font-size: .8rem; line-height: 1.5; color: var(--theme-palette-color-3, #434f58); }
.wsc_rev_note a { color: var(--theme-palette-color-2, #1614b4); }

/* ==========================================================================
   TABLET  (768px – 1023px) — min-width: 768px
   ========================================================================== */
@media (min-width: 768px) {
  .wsc_usp_row { grid-template-columns: repeat(4, 1fr); }
  .wsc_steps_row { grid-template-columns: repeat(3, 1fr); }
  .wsc_steps_ttl { text-align: center; }
  .wsc_cats_row { grid-template-columns: repeat(3, 1fr); }
  .wsc_products { grid-template-columns: repeat(2, 1fr); }
  .wsc_slide { flex: 0 0 50%; }
  .wsc_archive_top { flex-direction: row; align-items: center; justify-content: space-between; }
  .wsc_filters_panel { display: block; }
  .wsc_filters_toggle { display: none; }
  .wsc_sticky { display: none; }        /* sticky bar is a mobile-only pattern */
}

/* ==========================================================================
   DESKTOP (>= 1024px) — min-width: 1024px
   ========================================================================== */
@media (min-width: 1024px) {
  .wsc_products { grid-template-columns: repeat(4, 1fr); }
  .wsc_slide { flex: 0 0 33.3334%; }
  .wsc_hero { text-align: center; }
  .wsc_hero_actions { justify-content: center; }
  .wsc_archive_grid { display: grid; grid-template-columns: 280px 1fr; gap: var(--theme-content-spacing, 1.5em); }
  .wsc_slider_nav button { opacity: 0; transition: opacity .2s ease-in-out; }
  .wsc_slider:hover .wsc_slider_nav button { opacity: 1; }
}

/* ---------- Product stats (4 blue numbers) ---------- */
.wsc_stats {
  margin-top: 24px;
  margin-bottom: 24px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  width: 100%;
}
.wsc_stat {
  border: 1px solid var(--line, #e7ece9);
  border-radius: 14px;
  padding: 16px 10px;
  background: var(--nearw, #FBFCFC);
  text-align: center;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  transition: transform .15s ease, box-shadow .15s ease;
}
.wsc_stat:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(22, 20, 180, .06);
}
.wsc_stat b {
  display: block;
  font-size: 26px;
  font-weight: 800;
  color: var(--indigo, #1614b4);
  line-height: 1;
  letter-spacing: -.02em;
}
.wsc_stat span {
  display: block;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--slate, #5c6b66);
  line-height: 1.3;
}

@media (max-width: 991px) {
  .wsc_stats {
    margin-top: 20px;
    margin-bottom: 20px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 8px;
  }
  .wsc_stat {
    padding: 12px 6px;
    border-radius: 12px;
  }
  .wsc_stat b {
    font-size: 20px;
  }
  .wsc_stat span {
    font-size: 12.5px;
  }
}

@media (max-width: 550px) {
  .wsc_stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }
  .wsc_stat {
    padding: 12px 8px;
  }
  .wsc_stat b {
    font-size: 22px;
  }
  .wsc_stat span {
    font-size: 13px;
  }
}