/* ═══════════════════════════════════════════════════════════════
   SnapShopHub — Single Product Page Styles
   Loaded only on is_product() pages.
════════════════════════════════════════════════════════════════ */

/* ── Design tokens ───────────────────────────────────────────── */
:root {
  --ssh-navy:         #1e3a8a;
  --ssh-navy-d:       #15265f;
  --ssh-ink:          #14213d;
  --ssh-teal:         #1c98ab;
  --ssh-teal-d:       #1585962;
  --ssh-green:        #3f9142;
  --ssh-green-b:      #8bc34a;
  --ssh-body:         #4b5563;
  --ssh-muted:        #6b7280;
  --ssh-soft:         #f6f7f9;
  --ssh-soft2:        #eef1f6;
  --ssh-line:         #e5e7eb;
  --ssh-r:            14px;
  --ssh-r-sm:         8px;
  --ssh-shadow:       0 1px 2px rgba(16,24,40,.04),0 6px 20px rgba(16,24,40,.07);
  --ssh-maxw:         1240px;
  --ssh-font-head:    'Plus Jakarta Sans', sans-serif;
  --ssh-font-body:    'Inter', sans-serif;
}

/* ── Page wrapper ────────────────────────────────────────────── */
.ssh-product-page {
  font-family: var(--ssh-font-body);
  color: var(--ssh-body);
  background: #fff;
}
.ssh-product-page *,
.ssh-product-page *::before,
.ssh-product-page *::after { box-sizing: border-box; }

/* ── Inner container ─────────────────────────────────────────── */
.ssh-container {
  width: 100%;
  max-width: var(--ssh-maxw);
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Breadcrumb ──────────────────────────────────────────────── */
.ssh-breadcrumb {
  background: var(--ssh-soft);
  padding: 10px 0;
  font-size: 13px;
  color: var(--ssh-muted);
  border-bottom: 1px solid var(--ssh-line);
}
.ssh-breadcrumb ol {
  list-style: none;
  margin: 0; padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  align-items: center;
}
.ssh-breadcrumb li + li::before {
  content: '›';
  margin-right: 4px;
  color: #cbd5e1;
}
.ssh-breadcrumb a { color: var(--ssh-teal); text-decoration: none; }
.ssh-breadcrumb a:hover { text-decoration: underline; }
.ssh-breadcrumb li:last-child { color: var(--ssh-ink); font-weight: 500; }

/* ── Hero ────────────────────────────────────────────────────── */
.ssh-hero {
  padding: 40px 0 48px;
}
.ssh-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}
.ssh-hero-grid > * { min-width: 0; }
@media (max-width: 900px) {
  .ssh-hero-grid { grid-template-columns: 1fr; gap: 32px; }
}

/* Gallery */
.ssh-gallery { position: sticky; top: 100px; }
@media (max-width: 900px) { .ssh-gallery { position: static !important; top: auto !important; } }

/* ── Main image ── */
.ssh-gallery-main {
  border-radius: var(--ssh-r);
  overflow: hidden;
  border: 1px solid var(--ssh-line);
  background: var(--ssh-soft);
  aspect-ratio: 1 / 1;
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.ssh-gallery-zoom {
  display: block;
  width: 100%; height: 100%;
  pointer-events: none;
}
.ssh-gallery-zoom img {
  width: 100%; height: 100%;
  object-fit: contain;
  padding: 20px;
}
.ssh-gallery-zoom-icon { display: none; }

/* Prev/Next arrows on main */
.ssh-gal-arr {
  position: absolute !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  background: rgba(255,255,255,.92) !important;
  border: 1px solid #e5e7eb !important;
  border-radius: 50% !important;
  width: 34px !important; height: 34px !important;
  min-width: 0 !important; min-height: 0 !important;
  padding: 0 !important;
  display: flex !important; align-items: center !important; justify-content: center !important;
  cursor: pointer !important; z-index: 2 !important;
  color: #1a1a1a !important;
  opacity: 0; transition: opacity .2s;
  box-shadow: 0 2px 8px rgba(0,0,0,.15) !important;
  line-height: 1 !important;
  font-size: 0 !important;
}
.ssh-gal-arr svg { display: block; flex-shrink: 0; }
.ssh-gallery-main:hover .ssh-gal-arr { opacity: 1; }
.ssh-gal-prev { left: 8px !important; right: auto !important; }
.ssh-gal-next { right: 8px !important; left: auto !important; }
.ssh-gal-arr:hover { background: #fff !important; }

/* ── Thumbnail strip ── */
.ssh-gallery-thumbs {
  display: flex;
  gap: 8px;
  margin-top: 12px;
  overflow-x: auto;
  padding-bottom: 4px;
  scrollbar-width: none;
}
.ssh-gallery-thumbs::-webkit-scrollbar { display: none; }
.ssh-thumb {
  flex-shrink: 0;
  width: 72px; height: 72px;
  border-radius: 8px;
  border: 2px solid #e5e7eb !important;
  background: #ffffff !important;
  overflow: hidden;
  cursor: pointer;
  padding: 0;
  transition: border-color .15s;
  box-shadow: none !important;
  outline: none !important;
}
.ssh-thumb img {
  width: 100%; height: 100%;
  object-fit: contain;
  padding: 6px;
  background: #ffffff;
}
.ssh-thumb:hover { border-color: #0e9e8e !important; background: #ffffff !important; }
.ssh-thumb:focus { outline: none !important; background: #ffffff !important; }
.ssh-thumb.active { border-color: #0e9e8e !important; background: #ffffff !important; box-shadow: none !important; }

/* ── Lightbox ── */
.ssh-lightbox {
  position: fixed; inset: 0; z-index: 99999;
  display: flex; align-items: center; justify-content: center;
}
.ssh-lightbox[hidden] { display: none; }
.ssh-lightbox-overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,.88);
}
.ssh-lightbox-inner {
  position: relative; z-index: 1;
  display: flex; align-items: center; justify-content: center;
  max-width: 92vw; max-height: 92vh;
}
.ssh-lightbox-img {
  max-width: 80vw; max-height: 85vh;
  object-fit: contain;
  border-radius: 8px;
  display: block;
}
.ssh-lightbox-close {
  position: fixed; top: 18px; right: 18px;
  background: rgba(255,255,255,.15); border: none;
  border-radius: 50%; width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; color: #fff;
}
.ssh-lightbox-close:hover { background: rgba(255,255,255,.25); }
.ssh-lightbox-arr {
  background: rgba(255,255,255,.15); border: none;
  border-radius: 50%; width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; color: #fff; flex-shrink: 0; margin: 0 10px;
}
.ssh-lightbox-arr:hover { background: rgba(255,255,255,.3); }
.ssh-lightbox-counter {
  position: fixed; bottom: 20px; left: 50%; transform: translateX(-50%);
  color: #fff; font-size: 13px; background: rgba(0,0,0,.4);
  padding: 4px 12px; border-radius: 20px;
}
.ssh-cert-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}
.ssh-cert-pill {
  background: var(--ssh-soft2);
  border: 1px solid var(--ssh-line);
  border-radius: 999px;
  padding: 4px 12px;
  font-size: 12px;
  font-weight: 600;
  color: var(--ssh-navy) !important;
  font-family: var(--ssh-font-head);
  letter-spacing: .3px;
}

/* Hero content */
.ssh-hero-content { display: flex; flex-direction: column; gap: 10px; }
.ssh-hero-content .ssh-eyebrow       { margin-bottom: -8px; }
.ssh-hero-content .ssh-product-title { margin-bottom: -8px; }
.ssh-hero-content .ssh-rating-row    { margin-bottom: -4px; }

.ssh-eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--ssh-teal);
  font-family: var(--ssh-font-head);
}
.ssh-product-title {
  font-family: var(--ssh-font-head);
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 800;
  color: var(--ssh-ink);
  line-height: 1.2;
  margin: 0;
}

/* Rating row */
.ssh-product-price {
  margin: 10px 0 4px;
}
.ssh-product-price .price {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--ssh-green);
  line-height: 1.2;
}
.ssh-product-price .price ins {
  text-decoration: none;
}
.ssh-product-price .price del {
  font-size: 1rem;
  color: #9ca3af;
  margin-right: 6px;
  font-weight: 400;
}

.ssh-rating-row {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.ssh-rating-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: var(--ssh-green);
  color: #fff;
  font-family: var(--ssh-font-head);
  font-size: 13px;
  font-weight: 700;
  border-radius: 6px;
  padding: 3px 10px;
  line-height: 1;
}
.ssh-stars {
  display: inline-flex;
  gap: 2px;
  line-height: 1;
}
.ssh-star {
  font-size: 20px;
  line-height: 1;
}
.ssh-star-full  { color: #f59e0b; }
.ssh-star-half  { color: #f59e0b; opacity: .5; }
.ssh-star-empty { color: var(--ssh-line); }
.ssh-rating-count {
  font-family: var(--ssh-font-body);
  font-size: 14px;
  color: var(--ssh-muted);
  text-decoration: none;
}
.ssh-rating-count:hover { color: var(--ssh-teal); text-decoration: underline; }

/* ── Reviews popup ───────────────────────────────────────────── */
.ssh-rev-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,.45);
  z-index: 99999;
  display: flex; align-items: center; justify-content: center;
  padding: 16px;
}
.ssh-rev-overlay[hidden] { display: none; }
.ssh-rev-modal {
  background: #fff;
  border-radius: 16px;
  width: 100%; max-width: 520px;
  max-height: 85vh;
  display: flex; flex-direction: column;
  box-shadow: 0 20px 60px rgba(0,0,0,.18);
  overflow: hidden;
}
.ssh-rev-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px 16px;
  border-bottom: 1px solid var(--ssh-line);
  flex-shrink: 0;
}
.ssh-rev-head h2 {
  font-family: var(--ssh-font-head);
  font-size: 18px; font-weight: 800;
  color: var(--ssh-ink); margin: 0;
}
.ssh-rev-close {
  background: transparent;
  border: none;
  width: 34px; height: 34px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  color: var(--ssh-muted);
  font-size: 18px; line-height: 1;
  flex-shrink: 0;
  outline: none;
}
.ssh-rev-close:hover,
.ssh-rev-close:focus { background: transparent; color: var(--ssh-muted); outline: none; }

/* Sort bar */
.ssh-rev-sort-bar {
  display: flex; align-items: center; gap: 6px; flex-wrap: wrap;
  padding: 10px 24px;
  border-bottom: 1px solid var(--ssh-line);
  flex-shrink: 0;
}
.ssh-rev-sort-label {
  font-family: var(--ssh-font-body);
  font-size: 13px; color: var(--ssh-muted);
  white-space: nowrap;
}
.ssh-rev-sort-select {
  font-family: var(--ssh-font-body);
  font-size: 13px; font-weight: 500;
  color: var(--ssh-ink);
  border: 1px solid var(--ssh-line);
  border-radius: 8px;
  padding: 6px 32px 6px 12px;
  background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2.5' stroke-linecap='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E") no-repeat right 10px center;
  appearance: none; -webkit-appearance: none;
  cursor: pointer;
  transition: border-color .15s;
}
.ssh-rev-sort-select:focus { outline: none; border-color: var(--ssh-teal); }
.ssh-rev-summary {
  display: flex; align-items: center; gap: 16px;
  padding: 16px 24px;
  border-bottom: 1px solid var(--ssh-line);
  flex-shrink: 0;
}
.ssh-rev-avg {
  font-family: var(--ssh-font-head);
  font-size: 48px; font-weight: 800;
  color: var(--ssh-ink); line-height: 1;
}
.ssh-rev-total {
  font-size: 13px; color: var(--ssh-muted);
  margin: 4px 0 0; font-family: var(--ssh-font-body);
}
.ssh-rev-list {
  overflow-y: auto;
  padding: 8px 24px 24px;
  display: flex; flex-direction: column; gap: 0;
}
.ssh-rev-item {
  display: flex; gap: 14px;
  padding: 18px 0;
  border-bottom: 1px solid var(--ssh-line);
}
.ssh-rev-item:last-child { border-bottom: none; }
.ssh-rev-avatar {
  flex-shrink: 0;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--ssh-teal);
  color: #fff;
  font-family: var(--ssh-font-head);
  font-size: 16px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}
.ssh-rev-body { flex: 1; min-width: 0; }
.ssh-rev-meta {
  display: flex; align-items: center;
  justify-content: space-between; gap: 8px;
  margin-bottom: 2px;
}
.ssh-rev-name {
  font-family: var(--ssh-font-head);
  font-size: 14px; font-weight: 700;
  color: var(--ssh-ink);
}
.ssh-rev-date {
  font-size: 12px; color: var(--ssh-muted);
  font-family: var(--ssh-font-body);
}
.ssh-rev-text {
  font-family: var(--ssh-font-body);
  font-size: 14px; color: var(--ssh-body);
  line-height: 1.6; margin: 0;
}

/* About bullets */
.ssh-about-bullets {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.ssh-about-bullet {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  line-height: 1.5;
}
.ssh-about-bullet .bul-icon {
  flex-shrink: 0;
  width: 18px; height: 18px;
  color: var(--ssh-teal);
  margin-top: 2px;
}
.ssh-about-bullet strong { color: var(--ssh-ink); }

/* Top Highlights table */
.ssh-highlights {
  border: 1px solid var(--ssh-line);
  border-radius: var(--ssh-r-sm);
  overflow: hidden;
  margin-top: 4px;
}
.ssh-highlights dl {
  margin: 0;
  padding: 0;
}
.ssh-highlights-title {
  background: var(--ssh-teal);
  color: #fff;
  font-family: var(--ssh-font-head);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .8px;
  text-transform: uppercase;
  padding: 14px 18px;
}
.ssh-hrow {
  display: grid;
  grid-template-columns: 42% 58%;
  border-top: 1px solid var(--ssh-line);
  font-size: 14px;
}
.ssh-hrow:first-child { border-top: none; }
.ssh-hrow dt, .ssh-hrow dd {
  margin: 0;
  padding: 13px 18px;
  line-height: 1.4;
}
.ssh-hrow dt { color: var(--ssh-muted); font-weight: 500; }
.ssh-hrow dd { font-weight: 700; color: var(--ssh-ink); border-left: 1px solid var(--ssh-line); margin-left: 0; }

/* ── Action buttons ──────────────────────────────────────────── */
.ssh-action-wrap {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 4px;
}
.ssh-btn-row {
  display: flex;
  flex-wrap: nowrap;
  gap: 10px;
  align-items: center;
}
.ssh-btn-row .ssh-btn,
.ssh-btn-row .ssh-qty-cart-pill,
.ssh-btn-row .ssh-btn-atc-init {
  flex: 1;
  width: auto;
  justify-content: center;
}
/* Initial Add to Cart button */
.ssh-btn-atc-init {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  height: 48px;
  padding: 0 28px;
  background: var(--ssh-teal);
  color: #fff;
  border: 2px solid var(--ssh-teal);
  border-radius: 999px;
  font-family: var(--ssh-font-head);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
  cursor: pointer;
  transition: background .2s;
  flex-shrink: 0;
  white-space: nowrap;
}
.ssh-btn-atc-init:hover { background: #17849a; border-color: #17849a; }
.ssh-btn-atc-init svg { flex-shrink: 0; }

/* Qty stepper pill */
.ssh-qty-cart-pill {
  display: flex;
  align-items: center;
  background: var(--ssh-teal);
  border: 2px solid var(--ssh-teal);
  border-radius: 999px;
  height: 48px;
  overflow: hidden;
}
.ssh-qty-cart-pill .ssh-qty-btn {
  background: transparent;
  border: none;
  cursor: pointer;
  flex: 1; height: 100%;
  font-size: 20px;
  line-height: 1;
  font-family: var(--ssh-font-head);
  font-weight: 400;
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  padding: 0;
  margin: 0;
  transition: background .15s;
}
.ssh-qty-cart-pill .ssh-qty-btn:hover { background: rgba(0,0,0,.1); }
.ssh-qty-display {
  width: 52px;
  background: transparent !important;
  border: none !important;
  border-left: 1px solid rgba(255,255,255,.3) !important;
  border-right: 1px solid rgba(255,255,255,.3) !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  text-align: center;
  font-size: 15px;
  line-height: 1;
  font-family: var(--ssh-font-head);
  font-weight: 700;
  color: #fff !important;
  height: 100%;
  padding: 0 4px;
  outline: none !important;
  -moz-appearance: textfield;
}
/* Span version (sticky bar) — flex-centers the text node */
span.ssh-qty-display {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}
.ssh-qty-display:focus {
  background: transparent !important;
  box-shadow: none !important;
  border-color: rgba(255,255,255,.3) !important;
  color: #fff !important;
}
.ssh-qty-display::-webkit-outer-spin-button,
.ssh-qty-display::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }

/* Shared button base */
.ssh-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 0 22px;
  height: 48px;
  border-radius: 999px;
  font-family: var(--ssh-font-head);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
  cursor: pointer;
  text-decoration: none;
  border: 2px solid transparent;
  transition: opacity .15s, transform .1s;
  white-space: nowrap;
}
.ssh-btn:hover { opacity: .88; transform: translateY(-1px); }
.ssh-btn:active { transform: translateY(0); }
.ssh-btn-buy:hover, .ssh-btn-buy:focus     { color: #fff !important; }
.ssh-btn-enquiry:hover, .ssh-btn-enquiry:focus { color: var(--ssh-teal) !important; background: transparent !important; }
.ssh-btn-cart:hover, .ssh-btn-cart:focus   { color: #fff !important; }
.ssh-btn svg { width: 17px; height: 17px; flex-shrink: 0; }

.ssh-btn-cart {
  background: var(--ssh-teal);
  color: #fff;
  border-color: var(--ssh-teal);
}
.ssh-btn-buy {
  background: var(--ssh-navy);
  color: #fff;
  border-color: var(--ssh-navy);
}
.ssh-btn-enquiry {
  background: transparent;
  color: var(--ssh-teal);
  border-color: var(--ssh-teal);
}

/* ── Request Callback button ─────────────────────────────────── */
.ssh-btn-callback {
  background: transparent;
  color: var(--ssh-teal);
  border-color: var(--ssh-teal);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.ssh-btn-callback:hover, .ssh-btn-callback:focus {
  background: var(--ssh-teal) !important;
  color: #fff !important;
}
.ssh-callback-link {
  background: none;
  border: none;
  padding: 0;
  color: var(--ssh-teal);
  font-weight: 600;
  font-size: inherit;
  cursor: pointer;
  text-decoration: underline;
  font-family: inherit;
  outline: none;
}
.ssh-callback-link:hover,
.ssh-callback-link:focus { background: none !important; color: var(--ssh-teal) !important; box-shadow: none !important; }

/* ── Callback error spans ─────────────────────────────────────── */
.ssh-cb-err {
  display: none;
  font-size: 12px;
  color: #ef4444;
  font-weight: 500;
  margin-top: 3px;
}

/* ── Callback box ────────────────────────────────────────────── */
.ssh-callback-box {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #e8f7f9;
  border: 1px solid #b2e4ec;
  border-radius: var(--ssh-r-sm);
  padding: 12px 16px;
  font-size: 13.5px;
  color: var(--ssh-ink);
  line-height: 1.5;
  margin-top: 16px;
}
.ssh-callback-box svg {
  flex-shrink: 0;
  color: var(--ssh-teal);
}
.ssh-callback-box a {
  color: var(--ssh-teal);
  font-weight: 600;
  text-decoration: none;
}
.ssh-callback-box a:hover { text-decoration: underline; }

/* ── Bulk Pricing Tiers ──────────────────────────────────────── */
.ssh-bulk-tiers {
  display: flex;
  gap: 10px;
  margin: 14px 0;
  flex-wrap: wrap;
}
.ssh-bulk-tier {
  position: relative;
  border: 1.5px solid #b2dbd9;
  border-radius: 10px;
  padding: 12px 16px 10px;
  background: #fff;
  flex: 1 1 0;
  min-width: 130px;
  box-sizing: border-box;
}
.ssh-bulk-badge {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  color: #00a297;
  font-size: 11.5px;
  font-weight: 600;
  padding: 0 6px;
  white-space: nowrap;
  line-height: 1.4;
}
.ssh-bulk-badge em {
  font-style: italic;
  font-weight: 700;
}
.ssh-bulk-label {
  font-size: 15px;
  color: #111827;
  text-align: center;
  line-height: 1.4;
}
.ssh-bulk-label strong {
  font-weight: 700;
}

/* ── Payment trust ───────────────────────────────────────────── */
.ssh-payment-trust {
  text-align: center;
  padding: 16px 14px 14px;
  background: #f3f4f6;
  border-radius: 10px;
  margin-top: 12px;
}
.ssh-payment-trust-title {
  font-size: 14px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
}
.ssh-payment-trust-title svg { color: #1a1a1a; }
.ssh-payment-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
  justify-content: center;
}
.ssh-pm {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 6px;
  flex: 0 0 calc(12.5% - 6px);
  min-width: 52px;
  max-width: 80px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 1px 3px rgba(0,0,0,.07);
  overflow: hidden;
  box-sizing: border-box;
}
.ssh-pm img {
  width: auto !important;
  height: auto !important;
  max-width: 100% !important;
  max-height: 100% !important;
  display: block;
  object-fit: contain;
}

/* ── Accordion sections ──────────────────────────────────────── */
.ssh-sections {
  border-top: 2px solid var(--ssh-soft2);
  padding: 32px 0;
}

.ssh-acc {
  border: 1px solid var(--ssh-line) !important;
  border-radius: var(--ssh-r) !important;
  margin-bottom: 12px;
  overflow: hidden;
  background: #fff !important;
}
.ssh-acc-head {
  width: 100%;
  background: #fff !important;
  border: none !important;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 22px;
  text-align: left;
  transition: background .15s;
  box-shadow: none !important;
  outline: none;
}
.ssh-acc-head:hover { background: var(--ssh-soft); }
.ssh-acc-head[aria-expanded="true"] { background: var(--ssh-soft2); }
.ssh-acc-icon { display: none; }
.ssh-acc-head h2,
.ssh-acc-head h2 * {
  flex: 1;
  font-family: var(--ssh-font-head) !important;
  font-size: 17px !important;
  font-weight: 700 !important;
  color: var(--ssh-ink) !important;
  margin: 0 !important;
  padding: 0 !important;
  background: transparent !important;
  text-transform: none !important;
  letter-spacing: 0 !important;
}
.ssh-acc-chev {
  color: var(--ssh-muted);
  transition: transform .25s;
  flex-shrink: 0;
}
.ssh-acc-head[aria-expanded="true"] .ssh-acc-chev { transform: rotate(180deg); }
.ssh-acc-panel { display: none; }
.ssh-acc-panel[open] { display: block; }
.ssh-acc-body {
  padding: 24px 22px 28px;
  border-top: 1px solid var(--ssh-line);
}
.ssh-acc-body table {
  width: 100%;
  display: block;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

/* ── Section: Overview ───────────────────────────────────────── */
.ssh-overview-lede {
  font-size: 15px;
  line-height: 1.7;
  color: var(--ssh-body);
  margin-bottom: 28px;
}

/* Stat tiles */
.ssh-stat-tiles {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 32px;
}
.ssh-stat {
  background: #fff;
  border: 1px solid var(--ssh-line);
  border-radius: var(--ssh-r);
  padding: 20px 16px;
  box-shadow: 0 1px 3px rgba(0,0,0,.06);
}
.ssh-stat-icon {
  width: 36px;
  height: 36px;
  background: var(--ssh-soft2);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  color: var(--ssh-teal);
}
.ssh-stat-val {
  font-family: var(--ssh-font-head);
  font-size: 20px;
  font-weight: 800;
  color: var(--ssh-ink);
  display: block;
  margin-bottom: 4px;
}
.ssh-stat-lbl {
  font-size: 12px;
  color: var(--ssh-muted);
  line-height: 1.3;
  display: block;
}

.ssh-sub-h {
  font-size: 17px;
  font-weight: 700;
  margin: 32px 0 16px;
  color: var(--ssh-ink);
}

/* Key feature cards */
.ssh-feat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.ssh-feat-card {
  background: #fff;
  border: 1px solid var(--ssh-line);
  border-radius: var(--ssh-r-sm);
  padding: 20px 18px;
}
.ssh-feat-card-title {
  font-family: var(--ssh-font-head);
  font-size: 14px;
  font-weight: 700;
  color: var(--ssh-ink);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.ssh-feat-num {
  min-width: 28px;
  height: 28px;
  background: var(--ssh-teal);
  color: #fff;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  flex-shrink: 0;
}
.ssh-feat-card p { font-size: 13px; line-height: 1.6; margin: 0; color: var(--ssh-body); }

/* ── Section: Tech Specs ─────────────────────────────────────── */
.ssh-spec-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.ssh-spec-table tr:nth-child(even) td { background: var(--ssh-soft); }
.ssh-spec-table td {
  padding: 9px 14px;
  border: 1px solid var(--ssh-line);
  vertical-align: top;
}
.ssh-spec-table td:first-child {
  font-weight: 600;
  color: var(--ssh-ink);
  width: 42%;
  white-space: nowrap;
}

/* ── Section: Certifications ─────────────────────────────────── */
.ssh-cert-text { font-size: 14px; line-height: 1.7; color: var(--ssh-body); margin-bottom: 24px; }
.ssh-cert-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 8px;
}
.ssh-cert {
  width: 128px;
  height: 128px;
  border-radius: 16px;
  border: 2px solid #cdd9f3;
  display: grid;
  place-content: center;
  justify-items: center;
  text-align: center;
  background: #fff;
  gap: 6px;
}
.ssh-cert-green { border-color: #cfe6cf; }
.ssh-cert-big {
  font-family: var(--ssh-font-head);
  font-weight: 800;
  font-size: 26px;
  color: var(--ssh-navy);
  line-height: 1;
}
.ssh-cert-green .ssh-cert-big { color: var(--ssh-green); }
.ssh-cert small {
  font-size: 10.5px;
  color: var(--ssh-muted);
  font-weight: 600;
  letter-spacing: .02em;
  max-width: 100px;
  text-align: center;
  line-height: 1.4;
}

/* ── Section: How to Use ─────────────────────────────────────── */
/* Video block */
.ssh-howto-video {
  border-radius: var(--ssh-r);
  overflow: hidden;
  margin-bottom: 24px;
}
.ssh-video-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--ssh-soft);
}
.ssh-video-wrap iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: none; }
/* Placeholder thumbnail */
.ssh-video-thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  background-size: cover;
  background-position: center;
  background-color: #e8edf5;
  border-radius: var(--ssh-r);
  display: flex;
  align-items: center;
  justify-content: center;
}
.ssh-play-btn {
  width: 64px; height: 64px;
  background: rgba(255,255,255,.9);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--ssh-teal);
}
.ssh-video-cap-overlay {
  position: absolute;
  bottom: 16px; left: 16px;
  background: rgba(255,255,255,.92);
  border-radius: 20px;
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ssh-ink);
}
.ssh-video-placeholder-note {
  margin: 10px 0 20px;
  font-size: 13px;
  color: #b45309;
  background: #fffbeb;
  border: 1px solid #fcd34d;
  border-radius: var(--ssh-r-sm);
  padding: 8px 12px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.ssh-video-cap { font-size: 13px; color: var(--ssh-muted); margin: 8px 0 0; }
/* Steps 2-column grid */
.ssh-howto-steps {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 20px;
}
.ssh-step {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.ssh-step-num {
  flex-shrink: 0;
  width: 28px; height: 28px;
  background: var(--ssh-teal);
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px;
  font-weight: 700;
}
.ssh-step-content { font-size: 14px; line-height: 1.6; color: var(--ssh-body); }
.ssh-step-content strong { color: var(--ssh-ink); }
/* Note box */
.ssh-howto-note {
  background: var(--ssh-soft);
  border-left: 3px solid var(--ssh-teal);
  border-radius: 0 var(--ssh-r-sm) var(--ssh-r-sm) 0;
  padding: 12px 16px;
  font-size: 13.5px;
  color: var(--ssh-body);
  line-height: 1.6;
}

/* ── Section: Box Contents ───────────────────────────────────── */
.ssh-inbox-layout {
  display: flex;
  gap: 40px;
  align-items: center;
}
.ssh-inbox-img {
  flex: 0 0 300px;
  max-width: 300px;
  border: 1px solid var(--ssh-line);
  border-radius: var(--ssh-r);
  overflow: hidden;
  background: var(--ssh-soft);
  padding: 16px;
}
.ssh-inbox-img img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}
.ssh-box-list {
  flex: 1;
  list-style: none;
  padding: 0; margin: 0;
  font-size: 15px;
}
.ssh-box-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid var(--ssh-line);
  color: var(--ssh-body);
}
.ssh-box-list li:last-child { border-bottom: none; }
.ssh-box-list li svg { color: var(--ssh-muted); flex-shrink: 0; }
@media (max-width: 700px) {
  .ssh-inbox-layout { flex-direction: column; }
  .ssh-inbox-img { flex: none; max-width: 100%; width: 100%; }
}

/* ── Section: Where It's Used ────────────────────────────────── */
.ssh-chip-groups { display: flex; flex-direction: column; gap: 18px; }
.ssh-chip-group-label {
  font-size: 11px;
  font-weight: 700;
  color: var(--ssh-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 20px 0 8px;
  font-family: var(--ssh-font-head);
}
.ssh-chip-group-label:first-child { margin-top: 0; }
.ssh-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.ssh-chip {
  background: var(--ssh-soft);
  border: 1px solid var(--ssh-line);
  border-radius: 999px;
  padding: 5px 14px;
  font-size: 13px;
  color: var(--ssh-ink);
}

/* ── Section: Handling & Safety ─────────────────────────────── */
.ssh-safe-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 20px;
}
.ssh-safe-card {
  background: #fff;
  border: 1px solid var(--ssh-line);
  border-radius: var(--ssh-r);
  padding: 20px 18px;
}
.ssh-safe-icon {
  width: 38px; height: 38px;
  background: var(--ssh-soft2);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: var(--ssh-teal);
  margin-bottom: 14px;
}
.ssh-safe-title {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--ssh-ink);
  margin-bottom: 8px;
  font-family: var(--ssh-font-head);
}
.ssh-safe-card p { font-size: 13px; line-height: 1.6; margin: 0; color: var(--ssh-body); }
.ssh-safety-disclaimer {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: var(--ssh-soft);
  border: 1px solid var(--ssh-line);
  border-radius: var(--ssh-r);
  padding: 14px 18px;
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--ssh-body);
}
.ssh-safety-disclaimer svg { color: var(--ssh-muted); flex-shrink: 0; margin-top: 2px; }
.ssh-safety-disclaimer p { margin: 0; }
.ssh-safety-disclaimer strong { color: var(--ssh-ink); }
.ssh-disclaimer {
  background: var(--ssh-soft);
  border: 1px solid var(--ssh-line);
  border-radius: var(--ssh-r-sm);
  padding: 12px 16px;
  font-size: 12.5px;
  color: var(--ssh-muted);
  line-height: 1.6;
  margin-top: 18px;
}

/* ── Section: Control Panel ──────────────────────────────────── */
.ssh-ctrl-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.ssh-ctrl-table thead th {
  background: var(--ssh-soft2);
  color: var(--ssh-ink);
  padding: 10px 14px;
  text-align: left;
  font-family: var(--ssh-font-head);
  font-size: 12px;
  letter-spacing: .5px;
  text-transform: uppercase;
}
.ssh-ctrl-table tbody tr:nth-child(even) td { background: var(--ssh-soft); }
.ssh-ctrl-table td {
  padding: 9px 14px;
  border: 1px solid var(--ssh-line);
  vertical-align: top;
}
.ssh-ctrl-table td:first-child { font-weight: 600; color: var(--ssh-ink); }

/* ── Section: Pulse Ratio Guide ──────────────────────────────── */
.ssh-section-note {
  font-size: 14px;
  color: var(--ssh-body);
  margin-bottom: 20px;
  line-height: 1.6;
}
.ssh-pulse-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.ssh-pulse-table thead th {
  background: var(--ssh-soft2);
  color: var(--ssh-ink);
  padding: 10px 14px;
  text-align: left;
  font-family: var(--ssh-font-head);
  font-size: 12px;
  letter-spacing: .5px;
  text-transform: uppercase;
}
.ssh-pulse-table tbody tr:nth-child(even) td { background: var(--ssh-soft); }
.ssh-pulse-table td {
  padding: 9px 14px;
  border: 1px solid var(--ssh-line);
  vertical-align: top;
}

/* ── Section: Treatment Guide ────────────────────────────────── */
.ssh-treat-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.ssh-treat-table thead th {
  background: var(--ssh-soft2);
  color: var(--ssh-ink);
  padding: 10px 14px;
  text-align: left;
  font-family: var(--ssh-font-head);
  font-size: 12px;
  letter-spacing: .5px;
  text-transform: uppercase;
}
.ssh-treat-table tbody tr:nth-child(even) td { background: var(--ssh-soft); }
.ssh-treat-table td {
  padding: 9px 14px;
  border: 1px solid var(--ssh-line);
  vertical-align: top;
}

/* ── Section: Educational block ─────────────────────────────── */
.ssh-edu-block {
  background: linear-gradient(135deg, var(--ssh-soft2) 0%, #e8f7f9 100%);
  border: 1px solid #b2e4ec;
  border-radius: var(--ssh-r);
  padding: 24px;
}
.ssh-edu-block h3 {
  font-family: var(--ssh-font-head);
  font-size: 18px;
  font-weight: 800;
  color: var(--ssh-teal);
  margin: 0 0 12px;
}
.ssh-edu-block p { font-size: 14px; line-height: 1.7; margin: 0; }

/* ── Section: Comparison table ───────────────────────────────── */
.ssh-vs-intro { font-size: 15px; color: var(--ssh-muted); margin: 0 0 20px; line-height: 1.6; }
.ssh-vs { border: 1px solid var(--ssh-line); border-radius: 14px; overflow: hidden; }
.ssh-vs-row { display: grid; grid-template-columns: 1fr 1.25fr 1.25fr; }
.ssh-vs-row > div { padding: 16px 20px; border-top: 1px solid var(--ssh-line); vertical-align: top; font-size: 14px; }
.ssh-vs-head > div { border-top: none; padding: 14px 20px; }
.ssh-vs-key { color: var(--ssh-muted); font-weight: 600; font-size: 14px; }
.ssh-vs-head .ssh-vs-key { color: var(--ssh-muted); font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: .6px; }
.ssh-vs-ours { background: var(--ssh-teal); color: #fff !important; display: flex; flex-direction: column; gap: 4px; }
.ssh-vs-ours svg { flex-shrink: 0; margin-top: 2px; }
.ssh-vs-row:not(.ssh-vs-head) .ssh-vs-ours { background: #eef1f8; color: var(--ssh-navy) !important; flex-direction: row; align-items: flex-start; gap: 8px; font-weight: 600; }
.ssh-vs-row:not(.ssh-vs-head) .ssh-vs-ours svg { stroke: var(--ssh-navy); }
.ssh-vs-lbl { font-size: 14px; font-weight: 700; color: #fff; }
.ssh-vs-tag { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .8px; color: var(--ssh-teal); }
.ssh-vs-alt { color: var(--ssh-body); }
.ssh-vs-foot { font-size: 13.5px; color: var(--ssh-muted); margin: 16px 0 0; font-style: italic; }
@media (max-width: 700px) {
  .ssh-vs-row { grid-template-columns: 1fr; }
  .ssh-vs-row > div { border-top: 1px solid var(--ssh-line); }
  .ssh-vs-head { display: none; }
}

/* ── Section: Compatible Devices ────────────────────────────── */
.ssh-compat-note {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 16px;
}
.ssh-compat-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.ssh-compat-table thead th {
  background: var(--ssh-teal);
  color: #fff;
  padding: 10px 14px;
  text-align: left;
  font-family: var(--ssh-font-head);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .5px;
}
.ssh-compat-table tbody tr:nth-child(even) td { background: var(--ssh-soft); }
.ssh-compat-table td {
  padding: 9px 14px;
  border: 1px solid var(--ssh-line);
  vertical-align: top;
}
.ssh-compat-yes { color: var(--ssh-green); font-weight: 700; }
.ssh-compat-no  { color: #ef4444; font-weight: 700; }

/* ── Section: Exercise Routine ───────────────────────────────── */
.ssh-exercise-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 14px;
}
.ssh-exercise-card {
  background: var(--ssh-soft);
  border: 1px solid var(--ssh-line);
  border-radius: var(--ssh-r-sm);
  padding: 16px;
}
.ssh-exercise-card h4 {
  font-family: var(--ssh-font-head);
  font-size: 14px;
  font-weight: 700;
  color: var(--ssh-teal);
  margin: 0 0 8px;
}
.ssh-exercise-card p { font-size: 13px; line-height: 1.6; margin: 0; }

/* ── Section: Shipping & Support ─────────────────────────────── */
.ssh-shipping-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 14px;
}
.ssh-shipping-card {
  background: var(--ssh-soft);
  border: 1px solid var(--ssh-line);
  border-radius: var(--ssh-r-sm);
  padding: 16px;
}
.ssh-shipping-card h4 {
  font-family: var(--ssh-font-head);
  font-size: 14px;
  font-weight: 700;
  color: var(--ssh-teal);
  margin: 0 0 6px;
  display: flex;
  align-items: center;
  gap: 7px;
}
.ssh-shipping-card h4 svg { color: var(--ssh-teal); }
.ssh-shipping-card p { font-size: 13px; line-height: 1.6; margin: 0; }

/* ── Section: FAQ ────────────────────────────────────────────── */
/* ── FAQ standalone section ─────────────────────────────────── */
.ssh-faq-section {
  background: var(--ssh-soft);
  padding: 32px 0 36px;
  margin-top: 0;
}
.ssh-faq-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--ssh-green);
  margin-bottom: 8px;
}
.ssh-faq-heading {
  font-family: var(--ssh-font-head);
  font-size: 28px;
  font-weight: 800;
  color: var(--ssh-ink);
  margin: 0 0 32px;
}
.ssh-faq-list {
  display: flex;
  flex-direction: column;
  max-width: 740px;
  margin: 0 auto;
}
.ssh-qa {
  border-bottom: 1px solid var(--ssh-line);
  background: transparent;
}
.ssh-qa:first-child { border-top: 1px solid var(--ssh-line); }
.ssh-qa-q {
  width: 100%;
  background: transparent !important;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 4px;
  text-align: left;
  font-family: var(--ssh-font-head);
  font-size: 15px;
  font-weight: 600;
  color: var(--ssh-ink) !important;
  box-shadow: none !important;
  text-transform: none !important;
  letter-spacing: 0 !important;
}
.ssh-qa-q:hover,
.ssh-qa-q:focus {
  background: transparent !important;
  color: var(--ssh-ink) !important;
  box-shadow: none !important;
  outline: none;
}
.ssh-qa-q svg { flex-shrink: 0; color: var(--ssh-muted); transition: transform .25s; }
.ssh-qa-q[aria-expanded="true"] svg { transform: rotate(180deg); }
.ssh-qa-a {
  display: none;
  padding: 0 4px 18px;
  font-size: 14px;
  line-height: 1.75;
  color: var(--ssh-body);
}

/* ── Sticky bar ──────────────────────────────────────────────── */
.ssh-sticky-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--ssh-teal);
  color: #fff;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  z-index: 999;
  transform: translateY(100%);
  transition: transform .3s;
  flex-wrap: wrap;
}
.ssh-sticky-bar.visible { transform: translateY(0); }
.ssh-sticky-name {
  font-family: var(--ssh-font-head);
  font-size: 15px;
  font-weight: 700;
  flex: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.ssh-sticky-actions { display: flex; gap: 10px; }
.ssh-sticky-bar .ssh-btn {
  height: 44px;
  padding: 0 16px;
  font-size: 13px;
}
.ssh-sticky-bar .ssh-btn-cart { background: var(--ssh-teal); border-color: #fff; width: 160px; justify-content: center; }
.ssh-sticky-bar .ssh-btn-enquiry { color: #fff; border-color: #fff; width: 160px; justify-content: center; }
.ssh-sticky-bar .ssh-qty-cart-pill {
  height: 44px;
  width: 160px;
  border: 2px solid #fff;
  background: var(--ssh-teal);
}

/* ── Responsive ──────────────────────────────────────────────── */
@media (max-width: 768px) {
  /* Add right padding so content isn't hidden under the BULK ENQUIRY fab */
  .ssh-container { padding-right: 40px; }
  /* Reviews section doesn't need the extra right padding — cards use full width */
  .ssh-inline-reviews .ssh-container { padding-right: 24px; }
}
@media (max-width: 700px) {
  .ssh-hero { padding: 24px 0 32px; }
  .ssh-btn-row { flex-wrap: wrap; }
  .ssh-qty-cart-pill { flex: 1 1 100%; }
  .ssh-btn-buy, .ssh-btn-enquiry { flex: 1 1 calc(50% - 5px); justify-content: center; }
  .ssh-howto-layout { flex-direction: column; }
  .ssh-feat-grid, .ssh-safe-grid { grid-template-columns: 1fr 1fr; }
  .ssh-stat-tiles { grid-template-columns: repeat(2, 1fr); }
  .ssh-feat-grid  { grid-template-columns: repeat(2, 1fr); }
  .ssh-sticky-name { display: none; }
  /* Prevent comparison table from overflowing */
  .ssh-vs { overflow-x: auto; }
  /* Reviews section */
  .ssh-inline-reviews { padding: 36px 0; }
  .ssh-ir-header { flex-direction: column; align-items: flex-start; gap: 8px; }
}
@media (max-width: 480px) {
  .ssh-feat-grid, .ssh-safe-grid, .ssh-exercise-grid, .ssh-shipping-grid { grid-template-columns: 1fr; }
}

/* ── Ingredient card ── */
.ssh-ing-card {
  display: flex;
  gap: 12px;
  align-items: center;
  border: 1px solid var(--ssh-line);
  border-radius: 10px;
  padding: 14px 16px;
  margin-top: 14px;
}
.ssh-ing-icon {
  flex: 0 0 34px;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  border: 1px solid var(--ssh-line);
  color: var(--ssh-teal);
  display: flex;
  align-items: center;
  justify-content: center;
}
.ssh-ing-card h4 { font-size: 14px; font-weight: 700; margin: 0 0 2px; color: var(--ssh-ink); }
.ssh-ing-card p  { font-size: 13px; color: var(--ssh-muted); margin: 0; }
.ssh-edu-para    { margin-bottom: 12px; }

/* ── Pricing / Usage box ── */
.ssh-pu-box {
  display: flex;
  gap: 16px;
  background: linear-gradient(180deg, #f3f6ff, #eef2fd);
  border: 1px solid #d6dffb;
  border-left: 4px solid var(--ssh-teal);
  border-radius: 14px;
  padding: 20px 22px;
  margin: 18px 0 8px;
}
.ssh-pu-icon {
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--ssh-teal);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ssh-pu-body p {
  margin: 0 0 10px;
  font-size: 14.5px;
  color: var(--ssh-muted);
}
.ssh-pu-body p:last-child { margin-bottom: 0; }
.ssh-pu-body strong { color: var(--ssh-ink); }

/* ── Bulk Enquiry Modal ── */
html.ssh-modal-open { overflow: hidden !important; }

.ssh-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.45);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  padding: 16px;
}
.ssh-modal-overlay[hidden] { display: none; }
.ssh-modal {
  background: #fff !important;
  border-radius: 16px;
  padding: 32px 28px 28px;
  width: 100%;
  max-width: 440px;
  box-shadow: 0 20px 60px rgba(0,0,0,.18);
  position: relative;
}
.ssh-modal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 6px;
}
.ssh-modal-head h2 {
  font-size: 20px;
  font-weight: 800;
  color: var(--ssh-ink);
  margin: 0;
}
.ssh-modal-close {
  background: transparent !important;
  border: none !important;
  border-radius: 8px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #374151 !important;
  transition: color .15s;
  flex-shrink: 0;
}
.ssh-modal-close svg { display: block; width: 20px !important; height: 20px !important; stroke: #6b7280 !important; flex-shrink: 0; }
.ssh-modal-close:hover svg, .ssh-modal-close:focus svg { stroke: #111827 !important; }
.ssh-modal-sub {
  font-size: 14px;
  color: var(--ssh-muted);
  margin: 0 0 14px;
}
.ssh-modal-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.ssh-modal-form label {
  display: flex;
  flex-direction: column;
  gap: 5px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ssh-ink);
}
.ssh-modal-form input {
  height: 44px;
  border: 1.5px solid var(--ssh-line);
  border-radius: 8px;
  padding: 0 14px;
  font-size: 14px;
  color: var(--ssh-ink);
  background: #fff;
  outline: none;
  transition: border-color .15s;
  width: 100%;
  box-sizing: border-box;
}
.ssh-modal-form input:focus { border-color: var(--ssh-teal); }
.ssh-modal-submit {
  height: 46px;
  background: var(--ssh-teal);
  color: #fff !important;
  border: none;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  margin-top: 4px;
  transition: opacity .15s;
}
.ssh-modal-submit:hover { opacity: .88; }
.ssh-modal-thanks {
  text-align: center;
  padding: 24px 0 8px;
  font-size: 15px;
  font-weight: 600;
  color: var(--ssh-green);
}

/* ── WPForms inside callback modal ── */
.ssh-wpforms-wrap .wpforms-container { margin: 0; }
.ssh-wpforms-wrap .wpforms-form { display: flex; flex-direction: column; gap: 0; }
.ssh-wpforms-wrap .wpforms-form .wpforms-field { margin-bottom: 10px !important; padding: 0 !important; }
.ssh-wpforms-wrap .wpforms-form .wpforms-field:last-of-type { margin-bottom: 0 !important; }
.ssh-wpforms-wrap .wpforms-form label.wpforms-field-label {
  font-family: var(--ssh-font-body);
  font-size: 13px !important;
  font-weight: 600 !important;
  color: #0e4d57 !important;
  margin-bottom: 4px !important;
  display: block !important;
}
.ssh-wpforms-wrap .wpforms-form input[type="text"],
.ssh-wpforms-wrap .wpforms-form input[type="email"],
.ssh-wpforms-wrap .wpforms-form input[type="tel"] {
  font-family: var(--ssh-font-body) !important;
  font-size: 14px !important;
  color: #0e4d57 !important;
  background: #f9fafb !important;
  border: 1.5px solid #e5e7eb !important;
  border-radius: 8px !important;
  padding: 0 14px !important;
  height: 42px !important;
  width: 100% !important;
  max-width: 100% !important;
  box-sizing: border-box !important;
  box-shadow: none !important;
  outline: none !important;
  margin: 0 !important;
  transition: border-color .15s, box-shadow .15s !important;
}
.ssh-wpforms-wrap .wpforms-form input:focus {
  border-color: var(--ssh-teal) !important;
  background: #fff !important;
  box-shadow: 0 0 0 3px rgba(28,152,171,.15) !important;
}
.ssh-wpforms-wrap .wpforms-form .wpforms-submit-container { margin-top: 18px !important; padding: 0 !important; }
.ssh-wpforms-wrap .wpforms-form button[type="submit"],
.ssh-wpforms-wrap .wpforms-form input[type="submit"] {
  font-family: var(--ssh-font-head) !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  background: var(--ssh-teal) !important;
  color: #fff !important;
  border: none !important;
  border-radius: 999px !important;
  padding: 0 !important;
  height: 48px !important;
  cursor: pointer !important;
  box-shadow: 0 4px 14px rgba(28,152,171,.35) !important;
  transition: background .2s !important;
  width: 100% !important;
  display: block !important;
}
.ssh-wpforms-wrap .wpforms-form button[type="submit"]:hover {
  background: #17849a !important;
}
.ssh-wpforms-wrap .wpforms-field-hidden { display: none !important; }
.ssh-wpforms-wrap .wpforms-confirmation-container-full {
  background: #d1fae5;
  color: #065f46;
  border-radius: 10px;
  padding: 14px 16px;
  font-weight: 600;
  font-size: 14px;
  margin-top: 8px;
}
.ssh-wpforms-wrap .wpforms-error { font-size: 12px !important; color: #ef4444 !important; margin-top: 3px !important; }
.ssh-wpforms-wrap .wpforms-field-has-error input { border-color: #ef4444 !important; background: #fff5f5 !important; }

/* ── Suppress theme sticky/fixed footer on our custom product page ── */
.single-product .base-sticky-footer,
.single-product .woo-sticky-add-to-cart,
.single-product #base-woo-sticky-add-to-cart,
.single-product [class*="sticky-add-to-cart"],
.single-product [class*="sticky-footer"],
.single-product [class*="product-sticky"],
.single-product .tmcore-sticky-bar {
  display: none !important;
}

/* ── Inline Reviews Section ──────────────────────────────────── */
.ssh-inline-reviews {
  background: #fff;
  padding: 32px 0 36px;
  border-top: 1px solid var(--ssh-line);
  overflow-x: clip;
}
.ssh-ir-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 20px;
}
.ssh-ir-title {
  font-family: var(--ssh-font-head);
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 800;
  color: var(--ssh-ink);
  margin: 0;
}
.ssh-ir-summary {
  display: flex;
  align-items: center;
  gap: 12px;
}
.ssh-ir-avg {
  font-family: var(--ssh-font-head);
  font-size: 48px;
  font-weight: 800;
  color: var(--ssh-ink);
  line-height: 1;
}
.ssh-ir-summary-right { display: flex; flex-direction: column; gap: 2px; }
.ssh-ir-count {
  font-family: var(--ssh-font-body);
  font-size: 13px;
  color: var(--ssh-muted);
  margin: 0;
}
.ssh-ir-sort-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
}
.ssh-ir-wrap {
  position: relative;
  overflow-x: clip;
}
.ssh-ir-wrap::before,
.ssh-ir-wrap::after {
  content: '';
  position: absolute;
  top: 0;
  width: 80px; height: 100%;
  pointer-events: none;
  transition: opacity .3s;
  z-index: 1;
}
.ssh-ir-wrap::after {
  right: 0;
  background: linear-gradient(to right, transparent, var(--ssh-soft) 85%);
}
.ssh-ir-wrap::before {
  left: 0;
  background: linear-gradient(to left, transparent, var(--ssh-soft) 85%);
  opacity: 0;
}
.ssh-ir-wrap.ssh-ir-end::after   { opacity: 0; }
.ssh-ir-wrap.ssh-ir-start::before { opacity: 0; }

/* Arrow buttons shared style */
.ssh-ir-arrow,
.ssh-ir-arrow-m {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: #fff !important;
  border: 1px solid #d1d5db;
  box-shadow: 0 2px 8px rgba(0,0,0,.12);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  color: #374151;
  padding: 0;
  line-height: 1;
  transition: opacity .25s;
  flex-shrink: 0;
}
.ssh-ir-arrow svg,
.ssh-ir-arrow-m svg { display: block; flex-shrink: 0; stroke: #374151; }
.ssh-ir-arrow:hover, .ssh-ir-arrow:focus, .ssh-ir-arrow:active,
.ssh-ir-arrow-m:hover, .ssh-ir-arrow-m:focus, .ssh-ir-arrow-m:active { background: #fff !important; outline: none; }
.ssh-ir-arrow:disabled, .ssh-ir-arrow[disabled],
.ssh-ir-arrow-m:disabled, .ssh-ir-arrow-m[disabled] { opacity: 0.3; cursor: default; pointer-events: none; }

/* Desktop: arrows overlaid absolutely over the fade areas */
.ssh-ir-arrow-prev {
  position: absolute;
  left: 6px; top: 50%; transform: translateY(-50%);
  z-index: 3;
}
.ssh-ir-arrow-next {
  position: absolute;
  right: 6px; top: 50%; transform: translateY(-50%);
  z-index: 3;
}

/* Mobile nav row — hidden on desktop */
.ssh-ir-mobile-nav { display: none; }
@media (max-width: 600px) {
  /* Hide the absolute-positioned desktop arrows */
  .ssh-ir-arrow-prev, .ssh-ir-arrow-next { display: none; }
  /* Show the below-cards row */
  .ssh-ir-mobile-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 16px;
  }
  /* No fade overlays on mobile */
  .ssh-ir-wrap::before,
  .ssh-ir-wrap::after { display: none; }
  /* Each card fills the full available width */
  .ssh-ir-item { flex: 0 0 calc(100% - 0px); min-width: 0; }
  /* Keep clip so next cards don't bleed into view */
  .ssh-ir-wrap { overflow-x: clip; }
  .ssh-ir-list {
    scroll-snap-type: x mandatory;
    padding-right: 0;
  }
}
.ssh-ir-list {
  display: flex;
  flex-wrap: nowrap;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding-bottom: 8px;
}
.ssh-ir-list::-webkit-scrollbar { display: none; }
.ssh-ir-item {
  flex: 0 0 420px;
  scroll-snap-align: start;
  background: #fff;
  border: 1px solid var(--ssh-line);
  border-radius: 12px;
  padding: 24px;
  display: flex;
  gap: 14px;
  box-shadow: 0 1px 4px rgba(0,0,0,.05);
}
@media (max-width: 600px) {
  .ssh-ir-item { flex: 0 0 88vw; } /* overridden at ≤600px below */
  .ssh-ir-header { flex-direction: column; align-items: flex-start; }
}

/* ── Related Products Section ─────────────────────────────────── */
.ssh-related-section {
  padding: 32px 0 36px;
  background: var(--ssh-soft);
}
.ssh-related-title {
  font-family: var(--ssh-font-head);
  font-size: 22px;
  font-weight: 800;
  color: var(--ssh-ink);
  margin: 0 0 28px;
}
/* Hide WooCommerce's own "Related products" heading since we supply our own */
.ssh-related-section .related.products > h2 {
  display: none;
}
.ssh-related-section .related.products ul.products {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.ssh-related-section .related.products,
.ssh-related-section .related.products ul.products li.product,
.ssh-related-section .related.products ul.products li.product:hover {
  border: none !important;
  box-shadow: none !important;
  outline: none !important;
}
.ssh-related-section .woocommerce:not(.categories-wrap) ul.products.grid-cols:after,
.ssh-related-section .woocommerce:not(.categories-wrap) .woocommerce-carousel .splide__track:after,
.woocommerce:not(.categories-wrap) ul.products.grid-cols:after,
.woocommerce:not(.categories-wrap) .woocommerce-carousel .splide__track:after {
  border: none !important;
  box-shadow: none !important;
}
@media (max-width: 900px) {
  .ssh-related-section .related.products ul.products { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .ssh-related-section .related.products ul.products { grid-template-columns: 1fr 1fr; gap: 12px; }
  .ssh-related-title { font-size: 18px; }
}

/* ── Bulk tier buttons ───────────────────────────────────────────────── */
.ssh-bulk-tier-btn {
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  font-family: inherit;
  text-align: center;
  transition: border-color .18s, box-shadow .18s, transform .1s;
}
.ssh-bulk-tiers .ssh-bulk-tier-btn:hover,
.ssh-bulk-tiers .ssh-bulk-tier-btn:focus {
  border-color: var(--ssh-green, #00a297) !important;
  box-shadow: 0 2px 10px rgba(0,162,151,.15) !important;
  background: #fff !important;
  color: #111827 !important;
  outline: none !important;
}
.ssh-bulk-tier-btn:active {
  transform: scale(.97);
}
.ssh-bulk-tier-btn:disabled {
  opacity: .6;
  cursor: wait;
}

