/* =====================================================================
   TSP Redesign 2026 - theseedpharm.com
   Design system: high-contrast ink on white, rounded corners, soft
   shadows, hover lift. Green is the brand, gold is the accent.
   ===================================================================== */
:root {
  --tsp-green: #437f27;
  --tsp-green-600: #386b20;
  --tsp-green-700: #2f5b1b;
  --tsp-green-900: #0f3011;
  --tsp-green-950: #0a2010;
  --tsp-lime: #8bc34a;
  --tsp-mint: #eaf5e4;
  --tsp-mint-2: #f4faf1;
  --tsp-gold: #f2b705;
  --tsp-gold-700: #8a6100;
  --tsp-ink: #14201a;
  --tsp-ink-2: #2b3a31;
  --tsp-muted: #55655b;
  --tsp-line: #e2e8e0;
  --tsp-line-2: #cfd8cc;
  --tsp-bg: #f6f8f4;
  --tsp-white: #ffffff;
  --tsp-r-sm: 10px;
  --tsp-r: 16px;
  --tsp-r-lg: 22px;
  --tsp-shadow: 0 2px 10px rgba(20, 32, 26, .06), 0 0 0 1px rgba(20, 32, 26, .04);
  --tsp-shadow-hover: 0 16px 36px rgba(20, 32, 26, .16), 0 0 0 1px rgba(67, 127, 39, .18);
  --tsp-ease: cubic-bezier(.2, .7, .2, 1);
}
body.tsp-rd { color: var(--tsp-ink); }
body.tsp-rd a { transition: color .18s var(--tsp-ease); }
body.tsp-rd .tsp-float-emoji { display: none !important; }

/* ---------- buttons ---------- */
.tsp-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  min-height: 46px; padding: 0 22px; border-radius: 999px; font-weight: 700; font-size: 15px;
  line-height: 1; letter-spacing: 0; text-decoration: none; border: 2px solid transparent; cursor: pointer;
  transition: transform .18s var(--tsp-ease), box-shadow .18s var(--tsp-ease), background .18s, color .18s;
}
.tsp-btn:hover { transform: translateY(-2px); box-shadow: 0 10px 22px rgba(20, 32, 26, .18); }
.tsp-btn-gold { background: var(--tsp-gold); color: var(--tsp-green-950) !important; }
.tsp-btn-gold:hover { background: #ffc61a; color: var(--tsp-green-950) !important; }
.tsp-btn-ghost { background: rgba(255, 255, 255, .1); color: #fff !important; border-color: rgba(255, 255, 255, .35); }
.tsp-btn-ghost:hover { background: rgba(255, 255, 255, .18); border-color: #fff; }
.tsp-btn-outline { background: #fff; color: var(--tsp-green-700) !important; border-color: var(--tsp-green); }
.tsp-btn-outline:hover { background: var(--tsp-green); color: #fff !important; }
.tsp-btn-solid { background: var(--tsp-green); color: #fff !important; }
.tsp-btn-solid:hover { background: var(--tsp-green-700); }

/* ---------- pills ---------- */
.tsp-pills { display: flex; flex-wrap: wrap; gap: 5px; }
.tsp-pill {
  display: inline-block; padding: 3px 9px; border-radius: 999px; font-size: 11px; font-weight: 700;
  line-height: 1.35; letter-spacing: .1px; white-space: nowrap; text-transform: none;
}
.tsp-pills-lg .tsp-pill { font-size: 12.5px; padding: 5px 12px; }
.tsp-pill-fem    { background: #ffe3ea; color: #8a1030; }
.tsp-pill-auto   { background: #fff0c4; color: #7a4b00; }
.tsp-pill-cbd    { background: #d7f3ec; color: #0b5f4e; }
.tsp-pill-reg    { background: #e0e9ff; color: #1f3a93; }
.tsp-pill-indica { background: #ece2ff; color: #4b2a8a; }
.tsp-pill-sativa { background: #dff5d6; color: #1f5e1a; }
.tsp-pill-hybrid { background: #e3efff; color: #1d4f8a; }
.tsp-pill-thc    { background: #eceff1; color: #37474f; }

/* =====================================================================
   PRODUCT CARDS (shop, category, related, homepage grids)
   ===================================================================== */
body.tsp-rd .products .tsp-card.col { padding: 0 9px 20px; margin-bottom: 0; }
body.tsp-rd .products.row { margin-left: -9px; margin-right: -9px; }
body.tsp-rd .tsp-card .col-inner { height: 100%; }
.tsp-card-in {
  position: relative; display: flex; flex-direction: column; height: 100%;
  background: var(--tsp-white); border-radius: var(--tsp-r); box-shadow: var(--tsp-shadow); overflow: hidden;
  transition: transform .22s var(--tsp-ease), box-shadow .22s var(--tsp-ease);
}
@media (hover: hover) {
  .tsp-card-in:hover { transform: translateY(-4px); box-shadow: var(--tsp-shadow-hover); }
  .tsp-card-in:hover .tsp-card-img { transform: scale(1.04); }
}
.tsp-card-media { position: relative; display: block; aspect-ratio: 1 / 1; overflow: hidden; background: var(--tsp-mint-2); }
.tsp-card-media img.tsp-card-img, .tsp-card-media img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .5s var(--tsp-ease); }
.tsp-badge {
  position: absolute; top: 10px; left: 10px; z-index: 2; padding: 5px 10px; border-radius: 999px;
  font-size: 11px; font-weight: 800; letter-spacing: .3px; text-transform: uppercase; color: #fff; box-shadow: 0 3px 10px rgba(0, 0, 0, .18);
}
.tsp-badge-new  { background: var(--tsp-green); }
.tsp-badge-sale { background: #c62828; }
.tsp-badge-oos  { background: #37474f; }
.tsp-card-body { display: flex; flex-direction: column; flex: 1 1 auto; gap: 7px; padding: 12px 14px 14px; text-align: left; }
.tsp-card-title { margin: 0; font-size: 15.5px; line-height: 1.3; font-weight: 700; letter-spacing: 0; text-transform: none; }
.tsp-card-title a { color: var(--tsp-ink); text-decoration: none; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.tsp-card-title a:hover { color: var(--tsp-green-700); }
.tsp-card-rating { display: flex; align-items: center; gap: 7px; min-height: 18px; font-size: 12px; color: var(--tsp-muted); }
.tsp-card-rating .star-rating { margin: 0; font-size: 13px; color: #e0a106; }
.tsp-card-rating .star-rating::before { color: #d9dfd6; }
.tsp-card-rating .star-rating span::before { color: #e0a106; }
.tsp-rc-none { color: var(--tsp-green-700); font-weight: 600; }
.tsp-card-buy { display: flex; flex-direction: column; gap: 9px; margin-top: auto; padding-top: 4px; }
.tsp-card-price { display: flex; align-items: baseline; gap: 8px; flex-wrap: wrap; }
.tsp-card-price .tsp-price, .tsp-card-price .price, .tsp-card-price .amount { font-size: 20px; font-weight: 800; color: var(--tsp-ink); line-height: 1.1; }
.tsp-card-price .tsp-price del, .tsp-card-price del .amount { font-size: 14px; color: var(--tsp-muted); font-weight: 500; }
.tsp-card-price .tsp-price ins { text-decoration: none; }
.tsp-price-note { font-size: 12px; color: var(--tsp-muted); font-weight: 600; }
.tsp-packs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 6px; }
.tsp-pack {
  appearance: none; margin: 0; padding: 8px 0; border-radius: var(--tsp-r-sm); border: 1.5px solid var(--tsp-line-2);
  background: #fff; color: var(--tsp-ink-2); font-size: 14px; font-weight: 700; line-height: 1; cursor: pointer; text-align: center;
  transition: border-color .15s, background .15s, color .15s, transform .15s var(--tsp-ease);
}
.tsp-pack:hover { border-color: var(--tsp-green); color: var(--tsp-green-700); }
.tsp-pack.is-on { border-color: var(--tsp-green); background: var(--tsp-mint); color: var(--tsp-green-700); box-shadow: inset 0 0 0 1px var(--tsp-green); }
.tsp-pack.is-oos, .tsp-pack[disabled] { opacity: .45; cursor: not-allowed; text-decoration: line-through; }
.tsp-add, a.tsp-add {
  display: flex; align-items: center; justify-content: center; width: 100%; min-height: 44px; margin: 0; padding: 0 12px;
  border: 0; border-radius: 999px; background: var(--tsp-green); color: #fff !important; font-size: 14px; font-weight: 700;
  letter-spacing: .1px; text-transform: none; cursor: pointer; text-decoration: none;
  transition: background .18s, transform .18s var(--tsp-ease), box-shadow .18s var(--tsp-ease);
}
.tsp-add:hover, a.tsp-add:hover { background: var(--tsp-green-700); transform: translateY(-1px); box-shadow: 0 8px 18px rgba(67, 127, 39, .32); }
.tsp-add.is-busy { opacity: .75; cursor: progress; }
.tsp-add.is-done { background: var(--tsp-green-900); }
.tsp-add.is-error { background: #b3261e; }
.tsp-add[disabled] { background: #cfd8cc; color: #55655b !important; cursor: not-allowed; box-shadow: none; transform: none; }
a.tsp-add.added { background: var(--tsp-green-900); }
a.tsp-add.loading { opacity: .75; }
body.tsp-rd .tsp-card .added_to_cart { display: none; }
body.tsp-rd .tsp-card .qvp { display: none !important; }
/* Flatsome's own hook-injected labels (New/Sale bubbles) - our card renders its own badge */
body.tsp-rd .tsp-card .col-inner > .badge-container, body.tsp-rd .tsp-card .col-inner > .badge, body.tsp-rd .tsp-card .col-inner > .callout { display: none !important; }
/* pack-size tile price sits on one line */
.tsp-pdp-pack-p, .tsp-pdp-pack-p * { display: inline; white-space: nowrap; }
.tsp-pdp-pack-p del { text-decoration: line-through; }

/* mobile card density */
@media (max-width: 549px) {
  body.tsp-rd .products .tsp-card.col { padding: 0 6px 12px; }
  body.tsp-rd .products.row { margin-left: -6px; margin-right: -6px; }
  .tsp-card-body { padding: 10px 10px 12px; gap: 6px; }
  .tsp-card-title { font-size: 14px; }
  .tsp-pill { font-size: 10px; padding: 2px 7px; }
  .tsp-card-price .tsp-price, .tsp-card-price .price, .tsp-card-price .amount { font-size: 18px; }
  .tsp-pack { padding: 8px 0; font-size: 13px; }
  .tsp-add, a.tsp-add { min-height: 42px; font-size: 13.5px; }
}

/* =====================================================================
   CATALOG HEADER (shop / category)
   ===================================================================== */
.tsp-cat-head { background: linear-gradient(180deg, var(--tsp-mint-2) 0%, #fff 100%); border-bottom: 1px solid var(--tsp-line); padding: 18px 0 14px; margin-bottom: 22px; }
.tsp-crumbs { font-size: 13px; color: var(--tsp-muted); margin-bottom: 8px; }
.tsp-crumbs .breadcrumbs, .tsp-crumbs nav { font-size: 13px; text-transform: none; letter-spacing: 0; }
.tsp-crumbs a { color: var(--tsp-muted); }
.tsp-crumbs a:hover { color: var(--tsp-green-700); }
.tsp-cat-head-row { display: flex; gap: 24px; align-items: flex-end; justify-content: space-between; flex-wrap: wrap; }
.tsp-cat-head-main { flex: 1 1 520px; min-width: 0; }
.tsp-cat-title { margin: 0 0 6px; font-size: clamp(26px, 3.2vw, 38px); line-height: 1.12; color: var(--tsp-ink); text-transform: none; letter-spacing: -.01em; }
.tsp-cat-lede { margin: 0; max-width: 760px; font-size: 15.5px; line-height: 1.55; color: var(--tsp-ink-2); }
.tsp-cat-tools { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.tsp-cat-tools .woocommerce-result-count { margin: 0; font-size: 13px; color: var(--tsp-muted); white-space: nowrap; }
.tsp-cat-tools .woocommerce-ordering { margin: 0; }
.tsp-cat-tools .woocommerce-ordering select {
  margin: 0; height: 42px; padding: 0 36px 0 14px; border-radius: 999px; border: 1.5px solid var(--tsp-line-2); background-color: #fff;
  font-size: 13.5px; font-weight: 600; color: var(--tsp-ink); box-shadow: none;
}
.tsp-cat-tools .category-filtering { margin: 0; }
.tsp-cat-tools .filter-button {
  display: inline-flex; align-items: center; gap: 6px; height: 42px; padding: 0 16px; border-radius: 999px; border: 1.5px solid var(--tsp-line-2);
  background: #fff; color: var(--tsp-ink) !important; font-size: 13px; font-weight: 700; text-transform: none; letter-spacing: 0;
}
.tsp-cat-tools .filter-button:hover { border-color: var(--tsp-green); color: var(--tsp-green-700) !important; }
.tsp-cat-tools .category-filtering .inline-block { display: none; }
.tsp-chips { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; margin-top: 14px; }
.tsp-chips-group { display: flex; gap: 8px; flex-wrap: wrap; }
.tsp-chips-sep { width: 1px; height: 26px; background: var(--tsp-line-2); }
.tsp-chip {
  display: inline-flex; align-items: center; gap: 6px; height: 36px; padding: 0 14px; border-radius: 999px; border: 1.5px solid var(--tsp-line-2);
  background: #fff; color: var(--tsp-ink) !important; font-size: 13px; font-weight: 700; text-decoration: none; white-space: nowrap;
  transition: border-color .15s, background .15s, color .15s, transform .15s var(--tsp-ease);
}
.tsp-chip:hover { border-color: var(--tsp-green); color: var(--tsp-green-700) !important; transform: translateY(-1px); }
.tsp-chip.is-on { background: var(--tsp-green); border-color: var(--tsp-green); color: #fff !important; }
.tsp-chip-alt { background: var(--tsp-mint-2); }
.tsp-chip-x { font-size: 16px; line-height: 1; opacity: .85; }
@media (max-width: 849px) {
  .tsp-cat-head { padding: 12px 0 10px; margin-bottom: 12px; }
  .tsp-cat-head-row { gap: 12px; }
  .tsp-cat-tools { width: 100%; justify-content: space-between; }
  .tsp-cat-tools .woocommerce-result-count { display: none; }
  .tsp-cat-tools .woocommerce-ordering select { height: 40px; font-size: 13px; }
  .tsp-cat-lede { font-size: 14px; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
  .tsp-chips { flex-wrap: nowrap; overflow-x: auto; -webkit-overflow-scrolling: touch; margin: 12px -15px 0; padding: 2px 15px 6px; scrollbar-width: none; }
  .tsp-chips::-webkit-scrollbar { display: none; }
  .tsp-chips-group { flex-wrap: nowrap; }
  .tsp-chip { height: 34px; padding: 0 12px; font-size: 12.5px; }
}
/* Flatsome's own (now unused) featured title band: keep hidden if any plugin re-adds it */
body.tsp-rd .shop-page-title.featured-title { display: none; }
/* archive description moved under the grid */
.tsp-archive-desc { max-width: 900px; margin: 34px auto 10px; padding: 26px 28px; background: var(--tsp-mint-2); border-radius: var(--tsp-r-lg); color: var(--tsp-ink-2); font-size: 15px; line-height: 1.65; }
.tsp-archive-desc h2, .tsp-archive-desc h3 { text-transform: none; letter-spacing: 0; color: var(--tsp-ink); }
.tsp-archive-desc .term-description { margin: 0; }
body.tsp-rd .tsp-cat-seo { max-width: 900px; margin: 24px auto; }
body.tsp-rd .woocommerce-pagination .page-numbers li a, body.tsp-rd .woocommerce-pagination .page-numbers li span { border-radius: 999px; }
body.tsp-rd nav.woocommerce-pagination { margin-top: 8px; }
body.tsp-rd .woocommerce-pagination .page-numbers li .page-number { border-radius: 999px !important; border-color: var(--tsp-line-2); }
body.tsp-rd .woocommerce-pagination .page-numbers li .page-number.current { background: var(--tsp-green); border-color: var(--tsp-green); color: #fff; }

/* Off-canvas filter drawer */
body.tsp-rd #shop-sidebar .sidebar-inner { padding: 16px; }
body.tsp-rd #shop-sidebar .widget { margin: 0 0 12px; padding: 14px 16px; border-radius: var(--tsp-r); background: var(--tsp-mint-2); border: 1px solid var(--tsp-line); box-shadow: none; }
body.tsp-rd #shop-sidebar .widget-title, body.tsp-rd #shop-sidebar .widget > span.widget-title { font-size: 11.5px; letter-spacing: .9px; text-transform: uppercase; color: var(--tsp-muted); margin-bottom: 8px; }
body.tsp-rd #shop-sidebar .widget-title::after, body.tsp-rd #shop-sidebar .is-divider { display: none; }
body.tsp-rd #shop-sidebar .searchform .flex-row { border-radius: 999px; overflow: hidden; border: 1.5px solid var(--tsp-line-2); background: #fff; }
body.tsp-rd #shop-sidebar .searchform input.search-field { border: 0; box-shadow: none; height: 44px; background: #fff; }
body.tsp-rd #shop-sidebar .searchform .ux-search-submit { background: var(--tsp-green) !important; border: 0; color: #fff !important; }
body.tsp-rd #shop-sidebar .product-categories li { border-color: var(--tsp-line); }
body.tsp-rd #shop-sidebar .product-categories li a { display: block; padding: 9px 0; font-size: 15px; font-weight: 600; color: var(--tsp-ink); }
body.tsp-rd #shop-sidebar .product-categories li a:hover, body.tsp-rd #shop-sidebar .product-categories li.current-cat > a { color: var(--tsp-green-700); }
body.tsp-rd #shop-sidebar .product-categories li .count { font-size: 12px; color: var(--tsp-muted); background: #fff; border: 1px solid var(--tsp-line); border-radius: 999px; padding: 1px 8px; }
body.tsp-rd #shop-sidebar .price_slider_wrapper .ui-slider .ui-slider-range { background: var(--tsp-green); }
body.tsp-rd #shop-sidebar .price_slider_wrapper .ui-slider .ui-slider-handle { background: #fff; border: 2px solid var(--tsp-green); }
body.tsp-rd #shop-sidebar .price_slider_amount .button { background: var(--tsp-green) !important; border-radius: 999px; text-transform: none; letter-spacing: 0; font-weight: 700; }
body.tsp-rd #shop-sidebar .price_slider_amount .price_label { font-size: 14px; color: var(--tsp-ink); }
body.tsp-rd #shop-sidebar .woocommerce-widget-layered-nav-filters li a { border-radius: 999px; }

/* =====================================================================
   PRODUCT PAGE
   ===================================================================== */
body.tsp-rd.single-product .product-gallery { padding-top: 10px; }
body.tsp-rd.single-product .product-gallery .woocommerce-product-gallery__image img,
body.tsp-rd.single-product .product-gallery .product-gallery-slider img { border-radius: var(--tsp-r-lg); }
body.tsp-rd.single-product .product-gallery .product-gallery-slider { border-radius: var(--tsp-r-lg); overflow: hidden; box-shadow: var(--tsp-shadow); }
body.tsp-rd.single-product .product-thumbnails img { border-radius: var(--tsp-r-sm); }
body.tsp-rd.single-product .product-info { padding-top: 10px; }
body.tsp-rd.single-product .product-info .breadcrumbs { font-size: 13px; text-transform: none; letter-spacing: 0; color: var(--tsp-muted); margin-bottom: 8px; }
body.tsp-rd.single-product h1.product-title { font-size: clamp(26px, 3vw, 36px); line-height: 1.12; margin: 0 0 10px; color: var(--tsp-ink); text-transform: none; }
.tsp-pdp-meta { display: flex; flex-direction: column; gap: 9px; margin: 0 0 10px; }
.tsp-genetics { display: inline-flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 600; color: var(--tsp-ink-2); }
.tsp-genetics svg { color: var(--tsp-green); flex: none; }
body.tsp-rd.single-product .product-info .woocommerce-product-rating { margin: 0 0 12px; }
body.tsp-rd.single-product .product-info .woocommerce-product-rating .star-rating { color: #e0a106; }
body.tsp-rd.single-product .product-info .woocommerce-review-link { color: var(--tsp-muted); font-size: 13.5px; }
body.tsp-rd.single-product .product-short-description { font-size: 15.5px; line-height: 1.62; color: var(--tsp-ink-2); margin-bottom: 14px; }
.tsp-stock { display: inline-flex; align-items: center; gap: 7px; padding: 6px 12px; border-radius: 999px; font-size: 13px; font-weight: 700; margin: 0 0 14px; }
.tsp-stock-in { background: var(--tsp-mint); color: var(--tsp-green-700); }
.tsp-stock-out { background: #fdecea; color: #8a1a13; }
.tsp-pdp-packs-title { font-size: 12px; font-weight: 800; letter-spacing: .8px; text-transform: uppercase; color: var(--tsp-muted); margin: 0 0 8px; }
/* hide the raw variation controls, keep them in the DOM for WooCommerce */
body.tsp-rd.single-product form.variations_form table.variations tr.tsp-row-hidden { display: none !important; }
body.tsp-rd.single-product form.variations_form table.variations { margin-bottom: 8px; }
body.tsp-rd.single-product form.variations_form table.variations td.label { display: none; }
body.tsp-rd.single-product form.variations_form table.variations td.value { padding: 0; }
body.tsp-rd.single-product form.variations_form .reset_variations { display: none !important; }
.tsp-pdp-packs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin: 0 0 14px; }
.tsp-pdp-pack {
  appearance: none; display: flex; flex-direction: column; align-items: center; gap: 2px; margin: 0; padding: 12px 6px 11px;
  border-radius: 14px; border: 1.5px solid var(--tsp-line-2); background: #fff; color: var(--tsp-ink); cursor: pointer; line-height: 1.1; text-align: center;
  transition: border-color .15s, background .15s, transform .15s var(--tsp-ease), box-shadow .15s var(--tsp-ease);
}
.tsp-pdp-pack:hover { border-color: var(--tsp-green); transform: translateY(-2px); box-shadow: 0 8px 20px rgba(20, 32, 26, .1); }
.tsp-pdp-pack.is-on { border-color: var(--tsp-green); background: var(--tsp-mint); box-shadow: inset 0 0 0 1.5px var(--tsp-green); }
.tsp-pdp-pack[disabled] { opacity: .5; cursor: not-allowed; transform: none; box-shadow: none; }
.tsp-pdp-pack-n { font-size: 22px; font-weight: 800; }
.tsp-pdp-pack-l { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .5px; color: var(--tsp-muted); }
.tsp-pdp-pack-p { margin-top: 4px; font-size: 14px; font-weight: 700; color: var(--tsp-green-700); }
.tsp-pdp-pack-p .price, .tsp-pdp-pack-p .amount { font-size: 14px; font-weight: 700; color: var(--tsp-green-700); }
.tsp-pdp-pack-p del, .tsp-pdp-pack-p del .amount { font-size: 11px; color: var(--tsp-muted); font-weight: 500; }
.tsp-pdp-pack-p ins { text-decoration: none; }
.tsp-pdp-pack-oos { font-size: 10px; color: #8a1a13; font-weight: 700; }
body.tsp-rd.single-product .single_variation_wrap .woocommerce-variation-price { margin: 4px 0 10px; }
body.tsp-rd.single-product .single_variation_wrap .woocommerce-variation-price .price,
body.tsp-rd.single-product .single_variation_wrap .woocommerce-variation-price .amount { font-size: 34px !important; font-weight: 800; color: var(--tsp-ink) !important; }
body.tsp-rd.single-product .single_variation_wrap .woocommerce-variation-price del .amount { font-size: 18px !important; color: var(--tsp-muted) !important; font-weight: 500; }
body.tsp-rd.single-product .single_variation_wrap .woocommerce-variation-availability { font-size: 13px; }
body.tsp-rd.single-product .woocommerce-variation-add-to-cart, body.tsp-rd.single-product form.cart:not(.variations_form) {
  display: flex; flex-wrap: wrap; gap: 10px; align-items: stretch;
}
body.tsp-rd.single-product .quantity { margin: 0; border-radius: 999px; overflow: hidden; border: 1.5px solid var(--tsp-line-2); background: #fff; height: 50px; }
body.tsp-rd.single-product .quantity .minus, body.tsp-rd.single-product .quantity .plus { border: 0; background: #fff; color: var(--tsp-ink); height: 100%; }
body.tsp-rd.single-product .quantity input.qty { border: 0; height: 100%; font-weight: 700; }
body.tsp-rd.single-product .single_add_to_cart_button,
body.tsp-rd.single-product button.single_add_to_cart_button.button {
  flex: 1 1 auto !important; width: auto !important; min-width: 220px; max-width: 460px; height: 50px !important; min-height: 50px; max-height: 50px; line-height: 50px !important; margin: 0; border-radius: 999px; background: var(--tsp-green) !important; color: #fff !important;
  font-size: 16px; font-weight: 800; letter-spacing: .1px; text-transform: none; box-shadow: 0 8px 20px rgba(67, 127, 39, .28);
  transition: transform .18s var(--tsp-ease), box-shadow .18s var(--tsp-ease), background .18s;
}
body.tsp-rd.single-product .single_add_to_cart_button:hover { background: var(--tsp-green-700) !important; transform: translateY(-2px); box-shadow: 0 12px 26px rgba(67, 127, 39, .36); }
body.tsp-rd.single-product .single_add_to_cart_button.disabled, body.tsp-rd.single-product .single_add_to_cart_button[disabled] { background: #cfd8cc !important; color: #55655b !important; box-shadow: none; }
/* linked variation (feminized / auto twin) chips from WPC Linked Variation */
body.tsp-rd.single-product .wpclv-attributes { margin: 4px 0 8px; }
body.tsp-rd.single-product .wpclv-attributes .wpclv-attribute { margin: 0 0 6px; }
body.tsp-rd.single-product .wpclv-attributes .wpclv-attribute-label { font-size: 12px; font-weight: 800; letter-spacing: .8px; text-transform: uppercase; color: var(--tsp-muted); margin-bottom: 6px; }
body.tsp-rd.single-product .wpclv-attributes .wpclv-terms { display: flex; flex-wrap: wrap; gap: 8px; }
body.tsp-rd.single-product .wpclv-attributes .wpclv-term, body.tsp-rd.single-product .wpclv-attributes .wpclv-term-button { display: inline-flex !important; align-items: center; margin: 0 !important; padding: 0 !important; border: 1.5px solid var(--tsp-line-2) !important; border-radius: 999px !important; background: #fff !important; box-shadow: none !important; color: var(--tsp-ink-2) !important; font-size: 13.5px; font-weight: 700; cursor: pointer; transition: border-color .15s, background .15s, color .15s; }
body.tsp-rd.single-product .wpclv-attributes .wpclv-term > span { display: inline-block !important; padding: 8px 16px !important; margin: 0 !important; background: transparent !important; border: 0 !important; border-radius: 999px !important; box-shadow: none !important; color: inherit !important; line-height: 1.2; }
body.tsp-rd.single-product .wpclv-attributes .wpclv-term:hover { border-color: var(--tsp-green) !important; color: var(--tsp-green-700) !important; }
body.tsp-rd.single-product .wpclv-attributes .wpclv-term.active, body.tsp-rd.single-product .wpclv-attributes .wpclv-term.wpclv-term-selected { border-color: var(--tsp-green) !important; background: var(--tsp-mint) !important; color: var(--tsp-green-700) !important; }
/* trust block that Flatsome injects after add-to-cart */
body.tsp-rd.single-product .after_add_to_cart_btn_text { margin: 18px 0 6px; padding: 16px 18px; border-radius: var(--tsp-r); background: var(--tsp-mint-2); border: 1px solid var(--tsp-line); }
body.tsp-rd.single-product .after_add_to_cart_btn_text img.safe-checkout-image { max-width: 320px; width: 100%; height: auto; display: block; margin: 0 0 12px; }
body.tsp-rd.single-product .after_add_to_cart_btn_text ul { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin: 0; }
body.tsp-rd.single-product .after_add_to_cart_btn_text li { font-size: 13px; font-weight: 700; color: var(--tsp-ink-2); margin: 0; line-height: 1.3; }
body.tsp-rd.single-product .after_add_to_cart_btn_text li::before { color: var(--tsp-green); }
@media (max-width: 549px) { body.tsp-rd.single-product .after_add_to_cart_btn_text ul { grid-template-columns: 1fr 1fr; } }
/* at a glance */
.tsp-glance { margin: 18px 0 10px; }
.tsp-glance-title { font-size: 13px; font-weight: 800; letter-spacing: .8px; text-transform: uppercase; color: var(--tsp-muted); margin: 0 0 10px; }
.tsp-glance-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 8px; margin: 0; }
.tsp-glance-item { margin: 0; padding: 10px 12px; border-radius: 12px; background: #fff; border: 1px solid var(--tsp-line); }
.tsp-glance-item dt { display: block; font-size: 11px; font-weight: 700; letter-spacing: .4px; text-transform: uppercase; color: var(--tsp-muted); margin: 0 0 3px; }
.tsp-glance-item dd { display: block; margin: 0; font-size: 14px; font-weight: 600; color: var(--tsp-ink); line-height: 1.3; text-transform: none; letter-spacing: 0; }
body.tsp-rd.single-product .product_meta { margin-top: 12px; font-size: 13px; color: var(--tsp-muted); }
/* summary -> tabs spacing (Flatsome stacks 40+30+30+30px of padding here) */
body.tsp-rd.single-product .product-main { padding-bottom: 8px; }
body.tsp-rd.single-product .product-info { padding-bottom: 0; }
body.tsp-rd.single-product .product-footer { padding-top: 0; }
/* tabs: pill strip, no boxed panel, readable measure */
body.tsp-rd.single-product .product-footer .woocommerce-tabs { margin-top: 18px; padding-top: 14px; border-top: 1px solid var(--tsp-line); }
body.tsp-rd.single-product .product-footer .woocommerce-tabs .nav.nav-tabs { display: flex; flex-wrap: wrap; gap: 8px; border: 0 !important; margin: 0 0 6px; }
body.tsp-rd.single-product .product-footer .woocommerce-tabs .nav.nav-tabs > li { display: block; margin: 0; border: 0; }
body.tsp-rd.single-product .product-footer .woocommerce-tabs .nav.nav-tabs > li > a { display: inline-flex; align-items: center; height: 40px; padding: 0 18px; border: 1.5px solid var(--tsp-line-2) !important; border-radius: 999px !important; font-size: 13px; letter-spacing: .3px; color: var(--tsp-ink-2); background: #fff; transition: background .15s, border-color .15s, color .15s; }
body.tsp-rd.single-product .product-footer .woocommerce-tabs .nav.nav-tabs > li > a:hover { border-color: var(--tsp-green) !important; color: var(--tsp-green-700); }
body.tsp-rd.single-product .product-footer .woocommerce-tabs .nav.nav-tabs > li.active > a { color: #fff; background: var(--tsp-green); border-color: var(--tsp-green) !important; }
body.tsp-rd.single-product .product-footer .woocommerce-tabs .nav.nav-tabs > li > a::before, body.tsp-rd.single-product .product-footer .woocommerce-tabs .nav.nav-tabs > li > a::after { display: none !important; }
body.tsp-rd.single-product .product-footer .woocommerce-tabs .tab-panels { padding: 18px 0 0 !important; border: 0 !important; }
body.tsp-rd.single-product .product-footer .woocommerce-tabs .panel { max-width: 920px; padding: 0; font-size: 16px; line-height: 1.7; color: var(--tsp-ink-2); }
body.tsp-rd.single-product .product-footer .woocommerce-tabs .panel > h2:first-child { margin-top: 0; }
body.tsp-rd.single-product .product-footer .woocommerce-tabs .panel h2 { font-size: 22px; text-transform: none; letter-spacing: -.01em; color: var(--tsp-ink); margin: 26px 0 10px; }
body.tsp-rd.single-product .product-footer .woocommerce-tabs .panel h3 { font-size: 18px; text-transform: none; letter-spacing: 0; color: var(--tsp-ink); margin: 22px 0 8px; }
body.tsp-rd.single-product .product-footer .woocommerce-tabs .panel p { margin: 0 0 14px; }
body.tsp-rd.single-product .product-footer .woocommerce-tabs .panel a { color: var(--tsp-green-700); font-weight: 600; }
body.tsp-rd.single-product .product-footer .woocommerce-tabs .panel table.shop_attributes { border: 1px solid var(--tsp-line); border-radius: var(--tsp-r); overflow: hidden; }
body.tsp-rd.single-product .product-footer .woocommerce-tabs .panel table.shop_attributes th { width: 200px; background: var(--tsp-mint-2); color: var(--tsp-ink); font-weight: 700; text-transform: none; letter-spacing: 0; }
body.tsp-rd.single-product .product-footer .woocommerce-tabs .panel table.shop_attributes td, body.tsp-rd.single-product .product-footer .woocommerce-tabs .panel table.shop_attributes th { padding: 10px 14px; border-color: var(--tsp-line); }
body.tsp-rd.single-product .product-footer .woocommerce-tabs #reviews { max-width: none; }
body.tsp-rd.single-product .related.products h3, body.tsp-rd.single-product .related h3.product-section-title, body.tsp-rd.single-product .product-section-title { text-transform: none; letter-spacing: 0; font-size: 22px; color: var(--tsp-ink); }
/* sticky bar */
body.tsp-rd .sticky-add-to-cart--active { box-shadow: 0 -8px 24px rgba(20, 32, 26, .12); }
body.tsp-rd .sticky-add-to-cart .button { border-radius: 999px; background: var(--tsp-green); }
@media (max-width: 849px) {
  /* tabs as a horizontal pill strip instead of Flatsome's stacked list */
  body.tsp-rd.single-product .product-footer .woocommerce-tabs .nav.nav-tabs { display: flex; flex-wrap: nowrap; overflow-x: auto; -webkit-overflow-scrolling: touch; gap: 6px; padding-bottom: 6px; margin: 0 -15px 6px; padding-left: 15px; scrollbar-width: none; border-bottom: 0; }
  body.tsp-rd.single-product .product-footer .woocommerce-tabs .nav.nav-tabs::-webkit-scrollbar { display: none; }
  body.tsp-rd.single-product .product-footer .woocommerce-tabs .nav.nav-tabs > li { flex: none !important; display: block !important; width: auto !important; margin: 0 !important; border: 0 !important; }
  body.tsp-rd.single-product .product-footer .woocommerce-tabs .nav.nav-tabs > li > a { display: inline-flex !important; width: auto !important; align-items: center; height: 38px; padding: 0 16px !important; border-radius: 999px !important; border: 1.5px solid var(--tsp-line-2) !important; background: #fff; font-size: 12.5px; letter-spacing: .3px; white-space: nowrap; }
  body.tsp-rd.single-product .product-footer .woocommerce-tabs .nav.nav-tabs > li.active > a { background: var(--tsp-green); border-color: var(--tsp-green); color: #fff; }
  body.tsp-rd.single-product .product-footer .woocommerce-tabs .tab-panels { padding-top: 12px; }
  body.tsp-rd.single-product .product-footer .woocommerce-tabs .panel { padding: 0; }
  body.tsp-rd.single-product h1.product-title { font-size: 24px; }
  .tsp-pdp-packs { gap: 8px; }
  .tsp-pdp-pack { padding: 10px 4px 9px; }
  .tsp-pdp-pack-n { font-size: 19px; }
  .tsp-pdp-pack-p, .tsp-pdp-pack-p .price, .tsp-pdp-pack-p .amount { font-size: 12.5px; }
  .tsp-glance-grid { grid-template-columns: repeat(2, 1fr); }
  body.tsp-rd.single-product .single_variation_wrap .woocommerce-variation-price .price, body.tsp-rd.single-product .single_variation_wrap .woocommerce-variation-price .amount { font-size: 28px !important; }
}

/* =====================================================================
   HOMEPAGE
   ===================================================================== */
body.tsp-home .tsp-sec { padding: 52px 0 0 !important; }
body.tsp-home .tsp-sec.tsp-sec-hero { padding-top: 22px !important; }
body.tsp-home .tsp-sec.tsp-sec-faq { padding-bottom: 48px !important; }
body.tsp-home .tsp-sec > .section-content > .container, .tsp-wrap { max-width: 1440px; margin-left: auto; margin-right: auto; padding-left: 20px; padding-right: 20px; }
body.tsp-home .section-content { padding: 0 !important; }
.tsp-sec-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 16px; margin: 0 0 24px; flex-wrap: wrap; }
.tsp-sec-title { margin: 0; font-size: clamp(22px, 2.6vw, 30px); line-height: 1.15; text-transform: none; letter-spacing: -.01em; color: var(--tsp-ink); }
.tsp-sec-sub { margin: 4px 0 0; font-size: 15px; color: var(--tsp-muted); }
.tsp-sec-link { font-weight: 700; color: var(--tsp-green-700); white-space: nowrap; }
/* hero */
.tsp-hero { padding: 18px 0 4px; }
.tsp-hero-grid { display: grid; grid-template-columns: minmax(0, 1.65fr) minmax(280px, 1fr); gap: 16px; }
.tsp-hero-main {
  position: relative; overflow: hidden; padding: 44px 44px 40px; border-radius: var(--tsp-r-lg); color: #fff;
  background: radial-gradient(120% 140% at 100% 0%, #2f6b26 0%, #143d17 45%, #0f3011 100%);
  box-shadow: 0 18px 40px rgba(15, 48, 17, .28);
}
.tsp-hero-main::after { content: ""; position: absolute; right: -60px; bottom: -80px; width: 320px; height: 320px; border-radius: 50%; background: radial-gradient(circle, rgba(139, 195, 74, .35) 0%, rgba(139, 195, 74, 0) 70%); pointer-events: none; }
.tsp-hero-kicker { font-size: 12px; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; color: var(--tsp-gold); margin-bottom: 10px; }
.tsp-hero-title { margin: 0 0 10px; font-size: clamp(30px, 4.2vw, 52px); line-height: 1.05; color: #fff; text-transform: none; letter-spacing: -.02em; }
.tsp-hero-title em { font-style: normal; color: var(--tsp-lime); }
.tsp-hero-sub { margin: 0 0 18px; font-size: 16px; color: rgba(255, 255, 255, .88); max-width: 520px; }
.tsp-tiers { display: flex; flex-wrap: wrap; gap: 10px; margin: 0 0 22px; padding: 0; list-style: none; }
.tsp-tiers li { display: inline-flex; align-items: baseline; gap: 6px; padding: 9px 16px; border-radius: 999px; border: 1.5px solid rgba(255, 255, 255, .35); background: rgba(255, 255, 255, .08); font-size: 15px; margin: 0; }
.tsp-tiers li strong { color: var(--tsp-lime); font-weight: 800; }
.tsp-tiers li.is-gold { background: var(--tsp-gold); border-color: var(--tsp-gold); color: var(--tsp-green-950); }
.tsp-tiers li.is-gold strong { color: var(--tsp-green-950); }
.tsp-hero-actions { display: flex; flex-wrap: wrap; gap: 10px; position: relative; z-index: 1; }
.tsp-hero-side { display: grid; grid-template-rows: repeat(3, 1fr); gap: 12px; }
.tsp-hero-tile {
  display: flex; align-items: center; gap: 14px; padding: 16px 18px; border-radius: var(--tsp-r); background: #fff; box-shadow: var(--tsp-shadow);
  color: var(--tsp-ink) !important; text-decoration: none; transition: transform .2s var(--tsp-ease), box-shadow .2s var(--tsp-ease);
}
.tsp-hero-tile:hover { transform: translateY(-3px); box-shadow: var(--tsp-shadow-hover); }
.tsp-tile-icon { flex: none; width: 48px; height: 48px; border-radius: 14px; display: grid; place-items: center; }
.tsp-tile-icon svg { width: 26px; height: 26px; }
.tsp-tile-ship .tsp-tile-icon { background: var(--tsp-mint); color: var(--tsp-green-700); }
.tsp-tile-germ .tsp-tile-icon { background: #fff0c4; color: #7a4b00; }
.tsp-tile-discreet .tsp-tile-icon { background: #e0e9ff; color: #1f3a93; }
.tsp-tile-text { display: flex; flex-direction: column; gap: 2px; line-height: 1.25; }
.tsp-tile-text strong { font-size: 15.5px; }
.tsp-tile-text span { font-size: 13px; color: var(--tsp-muted); }
/* usps */
.tsp-usps-list { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin: 14px 0 0; padding: 0; list-style: none; }
.tsp-usps-list li { display: flex; flex-direction: column; gap: 2px; margin: 0; padding: 12px 16px; border-radius: 12px; background: var(--tsp-mint-2); border: 1px solid var(--tsp-line); line-height: 1.25; }
.tsp-usps-list strong { font-size: 14.5px; color: var(--tsp-ink); }
.tsp-usps-list span { font-size: 12.5px; color: var(--tsp-muted); }
/* intro */
.tsp-intro { max-width: 860px; margin: 0 auto; padding: 6px 0 0; text-align: center; }
.tsp-intro h1 { font-size: clamp(24px, 3vw, 34px); line-height: 1.15; text-transform: none; letter-spacing: -.01em; margin: 0 0 10px; color: var(--tsp-ink); }
.tsp-intro p { font-size: 16px; line-height: 1.6; color: var(--tsp-ink-2); margin: 0; }
.tsp-intro a { color: var(--tsp-green-700); font-weight: 600; }
/* category tiles */
.tsp-catgrid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.tsp-catcard { display: flex; flex-direction: column; border-radius: var(--tsp-r); overflow: hidden; background: #fff; box-shadow: var(--tsp-shadow); color: var(--tsp-ink) !important; text-decoration: none; transition: transform .2s var(--tsp-ease), box-shadow .2s var(--tsp-ease); }
.tsp-catcard:hover { transform: translateY(-4px); box-shadow: var(--tsp-shadow-hover); }
.tsp-catcard-media { display: block; aspect-ratio: 16 / 10; overflow: hidden; background: var(--tsp-mint-2); }
.tsp-catcard-media img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .5s var(--tsp-ease); }
.tsp-catcard:hover .tsp-catcard-media img { transform: scale(1.05); }
.tsp-catcard-body { display: flex; flex-direction: column; gap: 3px; padding: 14px 16px 16px; }
.tsp-catcard-body strong { font-size: 16.5px; }
.tsp-catcard-body span { font-size: 13px; color: var(--tsp-muted); }
.tsp-catcard-body em { font-style: normal; font-size: 12px; font-weight: 700; color: var(--tsp-green-700); margin-top: 4px; }
/* shop tabs */
.tsp-tabs-nav { display: flex; gap: 8px; flex-wrap: wrap; margin: 0 0 18px; }
.tsp-tab { appearance: none; margin: 0; height: 40px; padding: 0 18px; border-radius: 999px; border: 1.5px solid var(--tsp-line-2); background: #fff; color: var(--tsp-ink); font-size: 14px; font-weight: 700; cursor: pointer; transition: background .15s, border-color .15s, color .15s; }
.tsp-tab:hover { border-color: var(--tsp-green); color: var(--tsp-green-700); }
.tsp-tab.is-on { background: var(--tsp-green); border-color: var(--tsp-green); color: #fff; }
.tsp-tab-panel[hidden] { display: none; }
.tsp-tab-more { text-align: center; margin: 10px 0 0; }
/* trust grid */
.tsp-about { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr); gap: 28px; align-items: start; }
.tsp-about-copy h2 { font-size: clamp(22px, 2.6vw, 30px); text-transform: none; letter-spacing: -.01em; margin: 0 0 10px; color: var(--tsp-ink); }
.tsp-about-copy h3 { font-size: 18px; text-transform: none; letter-spacing: 0; margin: 18px 0 6px; color: var(--tsp-ink); }
.tsp-about-copy p { font-size: 15px; line-height: 1.65; color: var(--tsp-ink-2); }
.tsp-trust { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.tsp-trust-item { padding: 18px 18px 16px; border-radius: var(--tsp-r); background: var(--tsp-mint-2); border: 1px solid var(--tsp-line); transition: transform .2s var(--tsp-ease), box-shadow .2s var(--tsp-ease); }
.tsp-trust-item:hover { transform: translateY(-3px); box-shadow: var(--tsp-shadow-hover); background: #fff; }
.tsp-trust-item h3 { margin: 0 0 6px; font-size: 16px; text-transform: none; letter-spacing: 0; color: var(--tsp-ink); }
.tsp-trust-item p { margin: 0; font-size: 13.5px; line-height: 1.5; color: var(--tsp-ink-2); }
/* blog + faq polish */
body.tsp-home .blog-posts .box-blog-post .box-text { text-align: left; }
body.tsp-home .blog-posts .box-blog-post .box-image img { border-radius: var(--tsp-r); }
body.tsp-home .blog-posts .post-title { font-size: 15px; text-transform: none; letter-spacing: 0; }
body.tsp-home .accordion { border-radius: var(--tsp-r); }
body.tsp-home .accordion-title { padding: 14px 16px; font-size: 15px; text-transform: none; letter-spacing: 0; }
body.tsp-home .accordion-title.active { color: var(--tsp-green-700); }
body.tsp-home .accordion-inner { padding: 6px 16px 18px; font-size: 15px; line-height: 1.65; color: var(--tsp-ink-2); }
@media (max-width: 849px) {
  .tsp-hero { padding: 8px 0 0; }
  .tsp-hero-grid { grid-template-columns: 1fr; gap: 10px; }
  .tsp-hero-main { padding: 26px 20px 24px; border-radius: 18px; }
  .tsp-hero-title { font-size: 30px; }
  .tsp-hero-sub { font-size: 14.5px; margin-bottom: 14px; }
  .tsp-tiers { gap: 6px; margin-bottom: 16px; }
  .tsp-tiers li { padding: 7px 12px; font-size: 13.5px; }
  .tsp-hero-actions .tsp-btn { min-height: 42px; padding: 0 16px; font-size: 14px; }
  .tsp-hero-side { grid-template-rows: none; grid-template-columns: 1fr; gap: 8px; }
  .tsp-hero-tile { padding: 12px 14px; border-radius: 14px; }
  .tsp-tile-icon { width: 40px; height: 40px; border-radius: 12px; }
  .tsp-tile-text strong { font-size: 14px; }
  .tsp-usps-list { grid-template-columns: 1fr 1fr; gap: 8px; }
  .tsp-catgrid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .tsp-catcard-body { padding: 10px 12px 12px; }
  .tsp-catcard-body strong { font-size: 14.5px; }
  .tsp-about { grid-template-columns: 1fr; gap: 18px; }
  .tsp-trust { grid-template-columns: 1fr 1fr; gap: 8px; }
  .tsp-trust-item { padding: 14px; }
  .tsp-tabs-nav { flex-wrap: nowrap; overflow-x: auto; margin: 0 -15px 14px; padding: 2px 15px 6px; scrollbar-width: none; }
  .tsp-tabs-nav::-webkit-scrollbar { display: none; }
  .tsp-tab { flex: none; height: 36px; padding: 0 14px; font-size: 13px; }
  body.tsp-home .tsp-sec { padding: 36px 0 0 !important; }
  body.tsp-home .tsp-sec.tsp-sec-hero { padding-top: 12px !important; }
  body.tsp-home .tsp-sec.tsp-sec-faq { padding-bottom: 32px !important; }
  .tsp-sec-head { margin-bottom: 16px; }
  .tsp-intro { padding-top: 0; }
  .tsp-intro p { font-size: 15px; }
}
@media (max-width: 549px) {
  .tsp-trust { grid-template-columns: 1fr; }
  .tsp-hero-actions .tsp-btn-ghost { display: none; }
}

/* =====================================================================
   AUSTRALIAN LOCATION PAGES
   ===================================================================== */
body.tsp-au-page #content > .page-wrapper, body.tsp-au-page .page-wrapper { padding-top: 0; }
body.tsp-au-page .entry-content > * { max-width: 1100px; margin-left: auto; margin-right: auto; }
.tsp-au-hero {
  position: relative; overflow: hidden; margin: 18px auto 26px; padding: 44px 44px 40px; border-radius: var(--tsp-r-lg); color: #fff;
  background: radial-gradient(120% 140% at 100% 0%, #2f6b26 0%, #143d17 45%, #0f3011 100%); box-shadow: 0 18px 40px rgba(15, 48, 17, .28);
}
.tsp-au-hero::before { content: ""; position: absolute; left: -80px; bottom: -120px; width: 380px; height: 380px; border-radius: 50%; background: radial-gradient(circle, rgba(242, 183, 5, .28) 0%, rgba(242, 183, 5, 0) 70%); pointer-events: none; }
.tsp-au-hero-in { position: relative; display: grid; grid-template-columns: minmax(0, 1.4fr) minmax(280px, 1fr); gap: 28px; align-items: center; }
.tsp-au-kicker { display: inline-flex; align-items: center; gap: 10px; font-size: 12px; font-weight: 800; letter-spacing: 1.6px; text-transform: uppercase; color: var(--tsp-gold); margin-bottom: 12px; }
.tsp-au-flag { display: inline-grid; place-items: center; width: 34px; height: 24px; border-radius: 6px; background: #fff; color: var(--tsp-green-900); font-size: 11px; letter-spacing: 1px; }
.tsp-au-title { margin: 0 0 12px; font-size: clamp(28px, 4vw, 46px); line-height: 1.06; color: #fff; text-transform: none; letter-spacing: -.02em; }
.tsp-au-lede p { font-size: 16.5px; line-height: 1.55; color: rgba(255, 255, 255, .9); margin: 0 0 18px; font-weight: 500; }
.tsp-au-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 16px; }
.tsp-au-promises { display: flex; flex-wrap: wrap; gap: 8px 18px; margin: 0; padding: 0; list-style: none; }
.tsp-au-promises li { position: relative; margin: 0; padding-left: 20px; font-size: 13.5px; color: rgba(255, 255, 255, .85); }
.tsp-au-promises li::before { content: ""; position: absolute; left: 0; top: 6px; width: 11px; height: 11px; border-radius: 50%; background: var(--tsp-lime); box-shadow: 0 0 0 3px rgba(139, 195, 74, .25); }
.tsp-au-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin: 0; }
.tsp-au-stat { margin: 0; padding: 14px 14px 12px; border-radius: 14px; background: rgba(255, 255, 255, .08); border: 1px solid rgba(255, 255, 255, .16); backdrop-filter: blur(4px); }
.tsp-au-stat dt { font-size: 11px; font-weight: 700; letter-spacing: .6px; text-transform: uppercase; color: rgba(255, 255, 255, .7); margin: 0 0 4px; }
.tsp-au-stat dd { margin: 0; display: flex; flex-direction: column; }
.tsp-au-stat dd strong { font-size: 19px; line-height: 1.15; color: #fff; }
.tsp-au-stat dd small { font-size: 12px; color: rgba(255, 255, 255, .75); }
/* prose */
.tsp-au.tsp-prose { font-size: 16.5px; line-height: 1.7; color: var(--tsp-ink-2); }
.tsp-au.tsp-prose h2 { font-size: clamp(21px, 2.4vw, 28px); line-height: 1.2; text-transform: none; letter-spacing: -.01em; color: var(--tsp-ink); margin: 30px 0 10px; }
.tsp-au.tsp-prose h3 { font-size: 18px; text-transform: none; letter-spacing: 0; color: var(--tsp-ink); margin: 18px 0 6px; }
.tsp-au.tsp-prose p { margin: 0 0 14px; }
.tsp-au.tsp-prose a { color: var(--tsp-green-700); font-weight: 600; }
/* calendar table -> timeline strip */
body.tsp-au-page figure.tsp-cal { margin: 8px 0 22px; }
body.tsp-au-page figure.tsp-cal table { width: 100%; border-collapse: separate; border-spacing: 0; border: 1px solid var(--tsp-line); border-radius: var(--tsp-r); overflow: hidden; background: #fff; }
body.tsp-au-page figure.tsp-cal thead th { background: var(--tsp-green-900); color: #fff; font-size: 12px; letter-spacing: .6px; text-transform: uppercase; padding: 10px 16px; border: 0; text-align: left; }
body.tsp-au-page figure.tsp-cal tbody td { padding: 12px 16px; border: 0; border-top: 1px solid var(--tsp-line); font-size: 15px; color: var(--tsp-ink-2); }
body.tsp-au-page figure.tsp-cal tbody td:first-child { width: 36%; font-weight: 700; color: var(--tsp-ink); background: var(--tsp-mint-2); }
body.tsp-au-page figure.tsp-cal tbody tr:last-child td { background: #fff4d6; color: #7a4b00; font-weight: 700; }
body.tsp-au-page figure.tsp-cal tbody tr:last-child td:first-child { background: #fde9b4; }
/* generic tables on the hub */
body.tsp-au-page figure.wp-block-table:not(.tsp-cal) table { border: 1px solid var(--tsp-line); border-radius: var(--tsp-r); overflow: hidden; }
body.tsp-au-page figure.wp-block-table:not(.tsp-cal) th, body.tsp-au-page figure.wp-block-table:not(.tsp-cal) td { padding: 10px 14px; border: 0; border-top: 1px solid var(--tsp-line); font-size: 15px; }
body.tsp-au-page figure.wp-block-table:not(.tsp-cal) thead th { background: var(--tsp-green-900); color: #fff; border-top: 0; text-transform: uppercase; font-size: 12px; letter-spacing: .6px; }
/* stats table fallback (hidden - hero shows the same data) */
body.tsp-au-page figure.tsp-stats { display: none; }
/* picks */
.tsp-picks { margin: 34px auto; }
.tsp-picks-title { font-size: clamp(22px, 2.6vw, 30px); text-transform: none; letter-spacing: -.01em; color: var(--tsp-ink); margin: 0 0 6px; }
.tsp-picks-intro { font-size: 15.5px; color: var(--tsp-muted); margin: 0 0 18px; }
.tsp-pick { display: grid; grid-template-columns: minmax(0, 1.5fr) minmax(300px, 1fr); gap: 22px; align-items: stretch; padding: 22px; margin: 0 0 14px; border-radius: var(--tsp-r-lg); background: #fff; box-shadow: var(--tsp-shadow); transition: box-shadow .2s var(--tsp-ease); }
.tsp-pick:hover { box-shadow: var(--tsp-shadow-hover); }
.tsp-pick-copy h3 { font-size: 22px; text-transform: none; letter-spacing: -.01em; color: var(--tsp-ink); margin: 0 0 4px; }
.tsp-pick-tag { font-size: 13px; font-weight: 800; letter-spacing: .6px; text-transform: uppercase; color: var(--tsp-green-700); margin: 0 0 12px; }
.tsp-specs { display: flex; flex-wrap: wrap; gap: 8px; margin: 0 0 14px; padding: 0; list-style: none; }
.tsp-specs li { margin: 0; padding: 7px 12px; border-radius: 999px; background: var(--tsp-mint-2); border: 1px solid var(--tsp-line); font-size: 13px; color: var(--tsp-ink-2); }
.tsp-specs li strong { color: var(--tsp-ink); }
.tsp-pick-copy p { font-size: 15.5px; line-height: 1.65; color: var(--tsp-ink-2); margin: 0; }
.tsp-buybox { display: grid; grid-template-columns: 120px minmax(0, 1fr); gap: 14px; height: 100%; padding: 14px; border-radius: var(--tsp-r); background: var(--tsp-mint-2); border: 1px solid var(--tsp-line); }
.tsp-buybox-media { display: block; aspect-ratio: 1 / 1; border-radius: 12px; overflow: hidden; align-self: start; }
.tsp-buybox-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.tsp-buybox-body { display: flex; flex-direction: column; gap: 7px; min-width: 0; }
.tsp-buybox .tsp-card-title { font-size: 15px; }
.tsp-buybox .tsp-packs { grid-template-columns: repeat(4, 1fr); }
/* callouts: law + shipping */
.tsp-au-notes { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin: 26px auto; }
.tsp-note { padding: 22px 24px; border-radius: var(--tsp-r-lg); background: #fff; border: 1px solid var(--tsp-line); box-shadow: var(--tsp-shadow); font-size: 15px; line-height: 1.65; color: var(--tsp-ink-2); }
.tsp-note h2 { font-size: 19px; text-transform: none; letter-spacing: 0; color: var(--tsp-ink); margin: 0 0 8px; padding-left: 30px; position: relative; }
.tsp-note h2::before { content: ""; position: absolute; left: 0; top: 2px; width: 20px; height: 20px; border-radius: 6px; background: var(--tsp-mint); box-shadow: inset 0 0 0 2px var(--tsp-green); }
.tsp-note-law h2::before { background: #fff0c4; box-shadow: inset 0 0 0 2px #b7791f; }
.tsp-note p:last-child { margin-bottom: 0; }
.tsp-note em { display: block; margin-top: 8px; font-size: 13.5px; color: var(--tsp-muted); }
/* faq (Australian pages only - the product page has its own details.tsp-faq) */
.tsp-au.tsp-faq { margin: 26px auto; }
.tsp-au.tsp-faq h2 { font-size: clamp(22px, 2.6vw, 30px); text-transform: none; letter-spacing: -.01em; color: var(--tsp-ink); margin: 0 0 12px; }
.tsp-au.tsp-faq h3 { position: relative; margin: 0; padding: 16px 18px 6px 44px; font-size: 16.5px; text-transform: none; letter-spacing: 0; color: var(--tsp-ink); background: #fff; border: 1px solid var(--tsp-line); border-bottom: 0; border-radius: var(--tsp-r) var(--tsp-r) 0 0; }
.tsp-au.tsp-faq h3::before { content: "Q"; position: absolute; left: 14px; top: 14px; width: 22px; height: 22px; border-radius: 50%; background: var(--tsp-green); color: #fff; font-size: 12px; font-weight: 800; display: grid; place-items: center; }
.tsp-au.tsp-faq h3 + p { margin: 0 0 12px; padding: 0 18px 16px 44px; font-size: 15px; line-height: 1.65; color: var(--tsp-ink-2); background: #fff; border: 1px solid var(--tsp-line); border-top: 0; border-radius: 0 0 var(--tsp-r) var(--tsp-r); }
/* cities grid */
.tsp-cities { margin: 30px auto 20px; }
.tsp-cities-title { font-size: clamp(22px, 2.6vw, 30px); text-transform: none; letter-spacing: -.01em; color: var(--tsp-ink); margin: 0 0 14px; }
.tsp-cities-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.tsp-city { display: flex; flex-direction: column; gap: 5px; padding: 16px 16px 14px; border-radius: var(--tsp-r); background: #fff; border: 1px solid var(--tsp-line); box-shadow: var(--tsp-shadow); color: var(--tsp-ink) !important; text-decoration: none; transition: transform .2s var(--tsp-ease), box-shadow .2s var(--tsp-ease); }
.tsp-city:hover { transform: translateY(-3px); box-shadow: var(--tsp-shadow-hover); }
.tsp-city-hub { background: var(--tsp-green-900); color: #fff !important; border-color: var(--tsp-green-900); }
.tsp-city-hub .tsp-city-climate, .tsp-city-hub .tsp-city-note { color: rgba(255, 255, 255, .8); }
.tsp-city-name { font-size: 18px; font-weight: 800; line-height: 1.1; }
.tsp-city-climate { font-size: 12.5px; font-weight: 700; color: var(--tsp-green-700); }
.tsp-city-row { display: flex; gap: 12px; font-size: 12.5px; color: var(--tsp-muted); }
.tsp-city-row b { color: var(--tsp-ink); }
.tsp-city-risk { display: inline-block; width: max-content; margin-top: 2px; padding: 3px 9px; border-radius: 999px; font-size: 11px; font-weight: 700; background: #eceff1; color: #37474f; }
.tsp-city-risk.is-high, .tsp-city-risk.is-severe-in-the-wet { background: #fdecea; color: #8a1a13; }
.tsp-city-risk.is-moderate { background: #fff0c4; color: #7a4b00; }
.tsp-city-risk.is-low { background: var(--tsp-mint); color: var(--tsp-green-700); }
.tsp-city-note { font-size: 12.5px; line-height: 1.4; color: var(--tsp-muted); margin-top: 2px; }
/* cta */
.tsp-au-cta { display: flex; align-items: center; justify-content: space-between; gap: 18px; flex-wrap: wrap; margin: 26px auto; padding: 22px 26px; border-radius: var(--tsp-r-lg); background: var(--tsp-green-900); color: #fff; box-shadow: 0 14px 34px rgba(15, 48, 17, .25); }
.tsp-au-cta-copy { display: flex; flex-direction: column; gap: 4px; }
.tsp-au-cta-copy strong { font-size: 19px; }
.tsp-au-cta-copy span { font-size: 14px; color: rgba(255, 255, 255, .82); }
.tsp-au-cta-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.tsp-au-cta .tsp-btn-outline { background: transparent; color: #fff !important; border-color: rgba(255, 255, 255, .5); }
.tsp-au-cta .tsp-btn-outline:hover { background: #fff; color: var(--tsp-green-900) !important; }
@media (max-width: 849px) {
  .tsp-au-hero { margin: 10px auto 18px; padding: 26px 20px 24px; border-radius: 18px; }
  .tsp-au-hero-in { grid-template-columns: 1fr; gap: 18px; }
  .tsp-au-title { font-size: 28px; }
  .tsp-au-lede p { font-size: 15px; }
  .tsp-au-actions .tsp-btn { min-height: 42px; padding: 0 16px; font-size: 14px; }
  .tsp-au-stats { grid-template-columns: 1fr 1fr; gap: 8px; }
  .tsp-au-stat { padding: 11px 12px 10px; }
  .tsp-au-stat dd strong { font-size: 16px; }
  .tsp-au.tsp-prose { font-size: 15.5px; }
  .tsp-pick { grid-template-columns: 1fr; gap: 14px; padding: 16px; }
  .tsp-buybox { grid-template-columns: 96px minmax(0, 1fr); padding: 12px; }
  .tsp-au-notes { grid-template-columns: 1fr; }
  .tsp-cities-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
  .tsp-city { padding: 12px; }
  .tsp-city-name { font-size: 16px; }
  .tsp-au-cta { padding: 18px; }
}
@media (max-width: 400px) { .tsp-buybox { grid-template-columns: 1fr; } .tsp-buybox-media { max-width: 140px; } }

/* =====================================================================
   MOBILE BOTTOM NAV (restyle of tsp-mobile-nav.php)
   ===================================================================== */
body.tsp-rd .tsp-mobile-nav { background: #fff !important; border-top: 1px solid var(--tsp-line) !important; box-shadow: 0 -8px 24px rgba(20, 32, 26, .12) !important; }
body.tsp-rd .tsp-mobile-nav .tsp-nav-item { color: var(--tsp-ink-2) !important; }
body.tsp-rd .tsp-mobile-nav .tsp-nav-item.active { color: var(--tsp-green-700) !important; background: var(--tsp-mint) !important; border-radius: 12px; }
body.tsp-rd .tsp-mobile-nav .tsp-nav-item.tsp-highlight { background: var(--tsp-green) !important; color: #fff !important; border-radius: 12px; }
body.tsp-rd .tsp-mobile-nav .tsp-nav-label { color: inherit !important; font-weight: 700 !important; font-size: 10.5px !important; letter-spacing: .2px; }
body.tsp-rd .tsp-mobile-nav .tsp-nav-emoji { animation: none !important; font-size: 20px !important; }
body.tsp-rd .tsp-mobile-nav .tsp-nav-item::after { display: none !important; }

/* =====================================================================
   HEADER / MENUS (design only - same links, same order)
   ===================================================================== */
body.tsp-rd .header-top { background: var(--tsp-green-900) !important; }
body.tsp-rd .header-top .nav > li > a, body.tsp-rd .header-top .html, body.tsp-rd .header-top .icon { color: rgba(255, 255, 255, .92) !important; }
body.tsp-rd .header-top .html strong { letter-spacing: .6px; }
body.tsp-rd .header-main { transition: box-shadow .25s var(--tsp-ease); }
body.tsp-rd #header.tsp-scrolled .header-main, body.tsp-rd #masthead.tsp-scrolled .header-main { box-shadow: 0 8px 24px rgba(20, 32, 26, .08); }
body.tsp-rd .header-main .searchform .flex-row { border-radius: 999px; }
body.tsp-rd .header-main .search-form input[type="search"] { border-radius: 999px 0 0 999px; }
body.tsp-rd .header-main .search-form .ux-search-submit { border-radius: 0 999px 999px 0; }
body.tsp-rd .header-main .header-nav-main > li > a { font-size: 13.5px; letter-spacing: .4px; color: var(--tsp-ink-2); }
body.tsp-rd .header-main .header-nav-main > li > a:hover, body.tsp-rd .header-main .header-nav-main > li.active > a, body.tsp-rd .header-main .header-nav-main > li.current-menu-item > a, body.tsp-rd .header-main .header-nav-main > li.is-mega-on > a { color: var(--tsp-green-700); }
body.tsp-rd .header-main .header-nav-main > li.tsp-mega-trigger > a::after { content: ""; display: inline-block; width: 7px; height: 7px; margin-left: 6px; border-right: 2px solid currentColor; border-bottom: 2px solid currentColor; transform: translateY(-3px) rotate(45deg); opacity: .6; }
body.tsp-rd .header-main .account-item > a, body.tsp-rd .header-main .cart-item > a { font-size: 13px; letter-spacing: .3px; }
body.tsp-rd .cart-icon strong { border-radius: 9px; border-width: 2px; }
body.tsp-rd .header-bottom { background: #fff !important; border-bottom: 1px solid var(--tsp-line); }
body.tsp-rd .header-bottom .nav > li > a { padding: 0 14px; margin: 0 2px; height: 34px; line-height: 34px; border-radius: 999px; font-size: 12.5px; letter-spacing: .5px; color: var(--tsp-ink-2); transition: background .15s, color .15s; }
body.tsp-rd .header-bottom .nav > li > a:hover, body.tsp-rd .header-bottom .nav > li.active > a, body.tsp-rd .header-bottom .nav > li.current-menu-item > a { background: var(--tsp-mint); color: var(--tsp-green-700); }
body.tsp-rd .header-bottom .nav > li > a::before, body.tsp-rd .header-bottom .nav > li > a::after, body.tsp-rd .header-main .header-nav-main > li > a::before { display: none; }
/* mega panel */
body.tsp-rd .header-main.tsp-has-mega { position: relative; }
.tsp-mega { position: absolute; left: 0; right: 0; top: 100%; z-index: 90; padding: 10px 0 0; opacity: 0; visibility: hidden; transform: translateY(-6px); transition: opacity .18s var(--tsp-ease), transform .18s var(--tsp-ease), visibility .18s; pointer-events: none; }
.tsp-mega.is-open { opacity: 1; visibility: visible; transform: none; pointer-events: auto; }
.tsp-mega-in { display: grid; grid-template-columns: minmax(0, 1fr) 300px; gap: 18px; max-width: 1180px; margin: 0 auto; padding: 18px; background: #fff; border-radius: var(--tsp-r-lg); box-shadow: 0 24px 60px rgba(20, 32, 26, .18), 0 0 0 1px rgba(20, 32, 26, .05); }
.tsp-mega-cats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.tsp-mega-cat { display: flex; align-items: center; gap: 14px; padding: 12px; border-radius: 14px; border: 1px solid var(--tsp-line); color: var(--tsp-ink) !important; text-decoration: none; transition: transform .15s var(--tsp-ease), box-shadow .15s var(--tsp-ease), border-color .15s; }
.tsp-mega-cat:hover { transform: translateY(-2px); box-shadow: var(--tsp-shadow-hover); border-color: var(--tsp-green); }
.tsp-mega-thumb { flex: none; width: 64px; height: 64px; border-radius: 12px; overflow: hidden; background: var(--tsp-mint-2); }
.tsp-mega-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.tsp-mega-text { display: flex; flex-direction: column; gap: 2px; line-height: 1.25; }
.tsp-mega-text strong { font-size: 15px; }
.tsp-mega-text span { font-size: 12.5px; color: var(--tsp-muted); }
.tsp-mega-text em { font-style: normal; font-size: 11.5px; font-weight: 700; color: var(--tsp-green-700); }
.tsp-mega-all { grid-column: 1 / -1; display: inline-flex; align-items: center; gap: 8px; justify-self: start; padding: 10px 16px; border-radius: 999px; background: var(--tsp-green); color: #fff !important; font-weight: 700; font-size: 13.5px; text-decoration: none; }
.tsp-mega-all:hover { background: var(--tsp-green-700); }
.tsp-mega-side { padding: 18px; border-radius: 16px; color: #fff; background: radial-gradient(120% 140% at 100% 0%, #2f6b26 0%, #143d17 50%, #0f3011 100%); }
.tsp-mega-kicker { font-size: 11px; font-weight: 800; letter-spacing: 1.6px; text-transform: uppercase; color: var(--tsp-gold); margin-bottom: 6px; }
.tsp-mega-title { font-size: 20px; font-weight: 800; line-height: 1.15; margin-bottom: 12px; }
.tsp-mega-tiers { list-style: none; margin: 0 0 12px; padding: 0; display: flex; flex-direction: column; gap: 6px; }
.tsp-mega-tiers li { margin: 0; padding: 7px 12px; border-radius: 999px; background: rgba(255, 255, 255, .1); border: 1px solid rgba(255, 255, 255, .22); font-size: 13.5px; }
.tsp-mega-tiers li strong { color: var(--tsp-lime); }
.tsp-mega-note { font-size: 12px; color: rgba(255, 255, 255, .8); line-height: 1.4; }
@media (max-width: 849px) { .tsp-mega { display: none !important; } }
/* mobile drawer */
body.tsp-rd .off-canvas .nav > li > a { text-transform: none; letter-spacing: 0; }
body.tsp-rd #main-menu .sidebar-menu { padding: 16px 16px 24px; }
body.tsp-rd #main-menu .nav-sidebar { display: flex; flex-wrap: wrap; gap: 6px 8px; }
body.tsp-rd #main-menu .nav-sidebar > li { flex: 0 0 100%; border: 0 !important; margin: 0; }
body.tsp-rd #main-menu .nav-sidebar > li.header-search-form { margin-bottom: 8px; }
body.tsp-rd #main-menu .nav-sidebar .searchform .flex-row { border-radius: 999px; overflow: hidden; border: 1.5px solid var(--tsp-line-2); }
body.tsp-rd #main-menu .nav-sidebar .searchform input.search-field { border: 0; box-shadow: none; height: 44px; }
body.tsp-rd #main-menu .nav-sidebar .searchform .ux-search-submit { background: var(--tsp-green) !important; border: 0; color: #fff !important; }
body.tsp-rd #main-menu .tsp-drawer-label { flex: 0 0 100%; margin: 14px 0 2px; padding: 0 2px; font-size: 11px; font-weight: 800; letter-spacing: 1px; text-transform: uppercase; color: var(--tsp-muted); }
body.tsp-rd #main-menu .nav-sidebar > li.tsp-drawer-cat { flex: 0 0 calc(50% - 4px); }
body.tsp-rd #main-menu .nav-sidebar > li.tsp-drawer-cat > a { display: flex; align-items: center; min-height: 54px; padding: 10px 12px; border-radius: 14px; background: var(--tsp-mint-2); border: 1px solid var(--tsp-line); font-size: 14px; font-weight: 700; color: var(--tsp-ink); text-transform: none; letter-spacing: 0; }
body.tsp-rd #main-menu .nav-sidebar > li.tsp-drawer-cat.current-menu-item > a, body.tsp-rd #main-menu .nav-sidebar > li.tsp-drawer-cat > a:active { background: var(--tsp-mint); border-color: var(--tsp-green); color: var(--tsp-green-700); }
body.tsp-rd #main-menu .nav-sidebar > li.menu-item:not(.tsp-drawer-cat) > a { display: flex; align-items: center; justify-content: space-between; padding: 12px 6px; font-size: 15.5px; font-weight: 600; color: var(--tsp-ink); text-transform: none; letter-spacing: 0; border-bottom: 1px solid var(--tsp-line); }
body.tsp-rd #main-menu .nav-sidebar > li.menu-item:not(.tsp-drawer-cat) > a::after { content: ""; width: 8px; height: 8px; border-right: 2px solid var(--tsp-line-2); border-top: 2px solid var(--tsp-line-2); transform: rotate(45deg); }
body.tsp-rd #main-menu .nav-sidebar > li.account-item > a { display: flex; align-items: center; justify-content: center; margin-top: 4px; min-height: 46px; border-radius: 999px; background: var(--tsp-green); color: #fff !important; font-weight: 700; font-size: 14.5px; text-transform: none; letter-spacing: 0; }
body.tsp-rd #main-menu .nav-sidebar > li.account-item > a::after { display: none; }
body.tsp-rd #main-menu .nav-sidebar > li.account-item > a i { display: none; }
body.tsp-rd #main-menu .nav-sidebar > li.header-newsletter-item > a { display: flex; align-items: center; justify-content: center; min-height: 44px; border-radius: 999px; border: 1.5px solid var(--tsp-green); color: var(--tsp-green-700) !important; font-weight: 700; font-size: 14px; text-transform: none; letter-spacing: 0; }
body.tsp-rd #main-menu .nav-sidebar > li.header-social-icons { text-align: left; padding: 6px 0 0; }
body.tsp-rd #main-menu .nav-sidebar > li.html_topbar_left { margin-top: 12px; padding: 10px 12px; border-radius: 12px; background: var(--tsp-mint-2); font-size: 12px; color: var(--tsp-muted); }
body.tsp-rd #main-menu .nav-sidebar > li.html_topbar_left strong { color: var(--tsp-green-700); letter-spacing: .3px; }
body.tsp-rd .off-canvas-left .mfp-content, body.tsp-rd .off-canvas .mfp-content { width: 320px; }
body.tsp-rd .off-canvas .mfp-close { top: 6px; right: 6px; }

/* =====================================================================
   CART (presentation only; checkout untouched)
   ===================================================================== */
body.tsp-rd.woocommerce-cart .cart-wrapper .checkout-breadcrumbs, body.tsp-rd .checkout-breadcrumbs { margin-bottom: 26px; }
body.tsp-rd .checkout-breadcrumbs a, body.tsp-rd .checkout-breadcrumbs .breadcrumb-step { text-transform: none; letter-spacing: 0; }
body.tsp-rd .cart-empty { font-size: 18px; color: var(--tsp-ink-2); }
body.tsp-rd .return-to-shop .button, body.tsp-rd .cart-empty + .return-to-shop .button { border-radius: 999px; background: var(--tsp-green); text-transform: none; letter-spacing: 0; font-weight: 700; padding: 0 26px; }
body.tsp-rd table.shop_table.cart { border: 1px solid var(--tsp-line); border-radius: var(--tsp-r); overflow: hidden; }
body.tsp-rd table.shop_table.cart th { background: var(--tsp-mint-2); color: var(--tsp-ink); font-size: 12px; letter-spacing: .6px; text-transform: uppercase; border-color: var(--tsp-line); }
body.tsp-rd table.shop_table.cart td { border-color: var(--tsp-line); vertical-align: middle; }
body.tsp-rd table.shop_table.cart td.product-thumbnail img { width: 72px; border-radius: 12px; }
body.tsp-rd table.shop_table.cart td.product-name a { color: var(--tsp-ink); font-weight: 700; }
body.tsp-rd table.shop_table.cart .variation { font-size: 12.5px; color: var(--tsp-muted); }
body.tsp-rd table.shop_table.cart .quantity { border: 1.5px solid var(--tsp-line-2); border-radius: 999px; overflow: hidden; }
body.tsp-rd table.shop_table.cart .quantity .minus, body.tsp-rd table.shop_table.cart .quantity .plus { border: 0; background: #fff; }
body.tsp-rd table.shop_table.cart .quantity input.qty { border: 0; }
body.tsp-rd table.shop_table.cart .product-remove a.remove { border: 1.5px solid var(--tsp-line-2); border-radius: 50%; color: var(--tsp-muted) !important; }
body.tsp-rd table.shop_table.cart .product-remove a.remove:hover { background: #fdecea; border-color: #b3261e; color: #b3261e !important; }
body.tsp-rd .coupon input.input-text { border-radius: 999px; border: 1.5px solid var(--tsp-line-2); height: 44px; box-shadow: none; }
body.tsp-rd .coupon .button, body.tsp-rd table.shop_table.cart .button[name="update_cart"] { border-radius: 999px; text-transform: none; letter-spacing: 0; font-weight: 700; }
body.tsp-rd .cart-collaterals .cart_totals table { border: 1px solid var(--tsp-line); border-radius: var(--tsp-r); overflow: hidden; }
body.tsp-rd .cart-collaterals .cart_totals th, body.tsp-rd .cart-collaterals .cart_totals td { border-color: var(--tsp-line); }
body.tsp-rd .cart-collaterals .cart_totals .order-total .amount { font-size: 20px; }
body.tsp-rd .wc-proceed-to-checkout .checkout-button { border-radius: 999px; text-transform: none; letter-spacing: 0; font-weight: 800; font-size: 16px; }
body.tsp-rd .cart-sidebar .cart-wrapper h4, body.tsp-rd .cart_totals h4, body.tsp-rd .cart_totals h2 { text-transform: none; letter-spacing: 0; }
/* "Popular Cannabis Seeds" chip block printed by the traffic-recovery plugin (inline-styled) */
body.tsp-rd .tsp-recovery-links { max-width: 1400px !important; margin: 0 auto !important; padding: 26px 20px 44px !important; background: transparent !important; border-radius: 0 !important; }
body.tsp-rd .tsp-recovery-links h4 { font-size: 13px !important; font-weight: 800; letter-spacing: .9px; text-transform: uppercase; color: var(--tsp-muted) !important; margin: 0 0 12px !important; }
body.tsp-rd .tsp-recovery-links ul { gap: 8px !important; }
body.tsp-rd .tsp-recovery-links a { display: inline-block; padding: 8px 14px !important; border-radius: 999px !important; background: #fff !important; border: 1px solid var(--tsp-line-2); color: var(--tsp-ink) !important; font-size: 13.5px !important; font-weight: 600; transition: border-color .15s, color .15s, transform .15s var(--tsp-ease); }
body.tsp-rd .tsp-recovery-links a:hover { border-color: var(--tsp-green); color: var(--tsp-green-700) !important; background: var(--tsp-mint-2) !important; transform: translateY(-1px); }
/* archive / page titles */
body.tsp-rd.blog .page-title h1, body.tsp-rd.blog h1.entry-title, body.tsp-rd .page-title-inner h1 { color: var(--tsp-ink); }
/* Flatsome page headers ship a mobile variant without the H1 - show the real one on phones too */
@media (max-width: 549px) {
  body.tsp-rd .page-title.featured-title.hide-for-small { display: block !important; }
  body.tsp-rd .page-title.featured-title.show-for-small { display: none !important; }
  body.tsp-rd .page-title.featured-title .page-title-inner { min-height: 220px; padding: 30px 15px; justify-content: center; }
  body.tsp-rd .page-title.featured-title h1 { font-size: 26px; }
  body.tsp-rd.single-product .woocommerce-variation-add-to-cart .single_add_to_cart_button, body.tsp-rd.single-product form.cart .single_add_to_cart_button { flex: none !important; width: 100% !important; height: 50px !important; }
}
/* the H1 an SEO plugin injects into Flatsome's featured page header must stay readable on the photo */
body.tsp-rd .page-title.featured-title .tsp-page-h1, body.tsp-rd .page-title.featured-title h1 { color: #fff !important; text-shadow: 0 2px 14px rgba(0, 0, 0, .45); margin: 0 0 8px; text-transform: none; letter-spacing: -.01em; }

/* =====================================================================
   OTHER MU-PLUGIN BLOCKS UNDER PRODUCTS / CATEGORIES (inline-styled) -
   pulled into the design system without touching their files
   ===================================================================== */
body.tsp-rd.single-product .related.products { margin-top: 10px; }
body.tsp-rd.single-product .tsp-strain-enhanced { background: var(--tsp-mint-2) !important; border: 1px solid var(--tsp-line) !important; border-radius: var(--tsp-r-lg) !important; padding: 22px !important; margin-top: 26px !important; box-shadow: none !important; }
body.tsp-rd.single-product .tsp-strain-enhanced h3, body.tsp-rd.single-product .sp-product-tips h3, body.tsp-rd.single-product .sp-product-tips h2 { text-transform: none !important; letter-spacing: 0 !important; color: var(--tsp-ink) !important; }
body.tsp-rd details.tsp-expand { background: #fff !important; border: 1px solid var(--tsp-line) !important; border-radius: 14px !important; margin: 0 0 10px !important; box-shadow: none !important; overflow: hidden; }
body.tsp-rd details.tsp-expand > summary { padding: 14px 18px !important; font-size: 15.5px !important; font-weight: 700 !important; color: var(--tsp-ink) !important; background: #fff !important; border: 0 !important; border-radius: 0 !important; text-transform: none !important; letter-spacing: 0 !important; cursor: pointer; list-style: none; }
body.tsp-rd details.tsp-expand > summary::-webkit-details-marker { display: none; }
body.tsp-rd details.tsp-expand[open] > summary { background: var(--tsp-mint) !important; color: var(--tsp-green-700) !important; }
body.tsp-rd details.tsp-expand > summary .tsp-arrow { float: right; color: var(--tsp-muted); transition: transform .2s var(--tsp-ease); }
body.tsp-rd details.tsp-expand[open] > summary .tsp-arrow { transform: rotate(180deg); }
body.tsp-rd details.tsp-expand > div, body.tsp-rd details.tsp-expand .tsp-expand-content { padding: 8px 18px 16px !important; border: 0 !important; border-radius: 0 !important; font-size: 15px; line-height: 1.65; color: var(--tsp-ink-2); }
body.tsp-rd details.tsp-expand .tsp-expand-content h3 { font-size: 17px; text-transform: none; letter-spacing: 0; color: var(--tsp-ink); margin: 14px 0 6px; }
body.tsp-rd details.tsp-faq { border: 1px solid var(--tsp-line) !important; border-radius: 12px !important; margin: 0 0 8px !important; background: #fff !important; }
body.tsp-rd details.tsp-faq > summary { padding: 12px 16px !important; font-weight: 700 !important; font-size: 15px !important; color: var(--tsp-ink) !important; cursor: pointer; list-style: none; }
body.tsp-rd details.tsp-faq > summary::-webkit-details-marker { display: none; }
body.tsp-rd details.tsp-faq > p { padding: 0 16px 12px; margin: 0; font-size: 14.5px; color: var(--tsp-ink-2); }
body.tsp-rd.single-product .sp-product-tips { margin-top: 22px !important; padding: 22px !important; border: 1px solid var(--tsp-line) !important; border-radius: var(--tsp-r-lg) !important; background: #fff; }
body.tsp-rd.single-product .sp-product-tips .sp-tips-header { margin-bottom: 14px !important; }
body.tsp-rd.single-product .tsp-strain-enhanced a, body.tsp-rd.single-product .sp-product-tips a { color: var(--tsp-green-700); }
/* category page: intro + "Growing guide / FAQs" expanders under the grid */
body.tsp-rd .shop-container .tsp-cat { max-width: 900px; margin: 18px auto 0; }
body.tsp-rd .shop-container .tsp-cat .tsp-cat-intro { font-size: 16px; line-height: 1.65; color: var(--tsp-ink-2); margin: 0 0 14px; }
body.tsp-rd .shop-container .tsp-cat .tsp-cat-actions { display: flex; flex-direction: column; gap: 0; }
body.tsp-rd .shop-container .tsp-cat details.tsp-expand > summary { font-size: 16px !important; }
body.tsp-rd .tsp-archive-desc { margin-top: 16px; }
body.tsp-rd .shop-container > hr, body.tsp-rd .tsp-cat-tail > hr { display: none; }
/* everything printed under the grid lives in one readable column */
body.tsp-rd .tsp-cat-tail { max-width: 960px; margin: 8px auto 44px; padding: 0 15px; font-size: 16px; line-height: 1.7; color: var(--tsp-ink-2); }
body.tsp-rd .tsp-cat-tail > h2, body.tsp-rd .tsp-cat-tail .tsp-cat-seo h2 { font-size: clamp(22px, 2.4vw, 28px); line-height: 1.2; text-transform: none; letter-spacing: -.01em; color: var(--tsp-ink); margin: 40px 0 12px; }
body.tsp-rd .tsp-cat-tail > h3, body.tsp-rd .tsp-cat-tail .tsp-cat-seo h3 { font-size: 19px; text-transform: none; letter-spacing: 0; color: var(--tsp-ink); margin: 26px 0 8px; }
body.tsp-rd .tsp-cat-tail > h4, body.tsp-rd .tsp-cat-tail .tsp-cat-seo h4 { font-size: 16.5px; text-transform: none; letter-spacing: 0; color: var(--tsp-ink); margin: 18px 0 6px; }
body.tsp-rd .tsp-cat-tail > p, body.tsp-rd .tsp-cat-tail > ul, body.tsp-rd .tsp-cat-tail > ol { margin: 0 0 14px; }
body.tsp-rd .tsp-cat-tail > ul, body.tsp-rd .tsp-cat-tail > ol { padding-left: 22px; }
body.tsp-rd .tsp-cat-tail > a, body.tsp-rd .tsp-cat-tail .tsp-cat-seo a { color: var(--tsp-green-700); font-weight: 600; }
body.tsp-rd .tsp-cat-tail > a { display: inline-block; margin: 0 8px 8px 0; padding: 7px 14px; border-radius: 999px; border: 1px solid var(--tsp-line-2); background: #fff; font-size: 13.5px; color: var(--tsp-ink) !important; text-decoration: none; }
body.tsp-rd .tsp-cat-tail > a:hover { border-color: var(--tsp-green); color: var(--tsp-green-700) !important; }
body.tsp-rd .tsp-cat-tail .tsp-archive-desc { max-width: none; margin-left: 0; margin-right: 0; }
body.tsp-rd .tsp-cat-tail .tsp-cat, body.tsp-rd .tsp-cat-tail .tsp-cat-seo { max-width: none; }
body.tsp-rd .tsp-cat-tail > section, body.tsp-rd .tsp-cat-tail > div:not([class]) { margin: 18px 0; }
body.tsp-rd .tsp-cat-tail > section h2, body.tsp-rd .tsp-cat-tail > section h3, body.tsp-rd .tsp-cat-tail > div:not([class]) h3 { text-transform: none; letter-spacing: 0; color: var(--tsp-ink); }
/* Flatsome's hook-injected New/Sale bubbles on cards (we render our own badge) */
.tsp-card .badge-container, .tsp-card .badge-container .badge, .tsp-card .callout.badge { display: none !important; }
/* long bare URLs in category copy must wrap on phones */
.tsp-archive-desc a, .tsp-cat-seo a, .tsp-archive-desc, .tsp-cat-seo, .shop-container .term-description, body.tsp-rd .shop-container a:not(.tsp-btn):not(.tsp-chip):not(.tsp-add) { overflow-wrap: anywhere; word-break: break-word; }
body.tsp-rd .shop-container > p, body.tsp-rd .shop-container > ul, body.tsp-rd .shop-container > h2, body.tsp-rd .shop-container > h3 { max-width: 900px; margin-left: auto; margin-right: auto; }
/* mobile nav line icons */
body.tsp-rd .tsp-mobile-nav .tsp-nav-emoji.tsp-nav-svg { display: inline-flex; align-items: center; justify-content: center; height: 24px; }
body.tsp-rd .tsp-mobile-nav .tsp-nav-item.tsp-highlight .tsp-nav-svg { color: #fff; }
/* search results header */
.tsp-cat-head-search .tsp-cat-lede a { color: var(--tsp-green-700); font-weight: 700; }

/* =====================================================================
   BLOG + STATIC PAGES (typography and sidebar polish, no structure change)
   ===================================================================== */
body.tsp-rd.blog .page-title, body.tsp-rd.archive:not(.woocommerce) .page-title { text-transform: none; }
body.tsp-rd .blog-archive .entry-header .entry-title, body.tsp-rd .blog-single .entry-header .entry-title, body.tsp-rd .entry-header-text .entry-title { text-transform: none; letter-spacing: -.01em; color: var(--tsp-ink); }
body.tsp-rd .entry-header-text .entry-title { font-size: clamp(24px, 3vw, 36px); line-height: 1.15; }
body.tsp-rd .entry-header-text .entry-meta { text-transform: none; letter-spacing: 0; color: var(--tsp-muted); font-size: 13px; }
body.tsp-rd .entry-header-text .entry-category { letter-spacing: .6px; }
body.tsp-rd .entry-header-text .entry-category a { color: var(--tsp-green-700); }
body.tsp-rd .entry-content { font-size: 16.5px; line-height: 1.72; color: var(--tsp-ink-2); }
body.tsp-rd .entry-content h2 { font-size: clamp(21px, 2.4vw, 28px); text-transform: none; letter-spacing: -.01em; color: var(--tsp-ink); margin-top: 1.6em; }
body.tsp-rd .entry-content h3 { font-size: 19px; text-transform: none; letter-spacing: 0; color: var(--tsp-ink); }
body.tsp-rd .entry-content a:not(.button):not(.tsp-btn) { color: var(--tsp-green-700); font-weight: 600; }
body.tsp-rd .entry-content img { border-radius: var(--tsp-r); }
body.tsp-rd .entry-image img, body.tsp-rd .badge-outline .badge-inner { border-radius: var(--tsp-r); }
body.tsp-rd .badge-outline .badge-inner { border-color: var(--tsp-green); color: var(--tsp-green-700); }
body.tsp-rd .blog-archive .post-item .box-blog-post .box-text, body.tsp-rd .blog-archive .article-inner { text-align: left; }
body.tsp-rd .sidebar-inner .widget, body.tsp-rd #secondary .widget { padding: 16px 18px; margin-bottom: 14px; border-radius: var(--tsp-r); background: var(--tsp-mint-2); border: 1px solid var(--tsp-line); }
body.tsp-rd .sidebar-inner .widget-title, body.tsp-rd #secondary .widget-title, body.tsp-rd .sidebar-inner .widget > h3 { font-size: 13px; letter-spacing: .8px; text-transform: uppercase; color: var(--tsp-muted); }
body.tsp-rd .sidebar-inner .widget ul li, body.tsp-rd #secondary .widget ul li { border-color: var(--tsp-line); }
body.tsp-rd .sidebar-inner .widget ul li a, body.tsp-rd #secondary .widget ul li a { color: var(--tsp-ink-2); }
body.tsp-rd .sidebar-inner .widget ul li a:hover, body.tsp-rd #secondary .widget ul li a:hover { color: var(--tsp-green-700); }
body.tsp-rd .sidebar-inner .searchform .flex-row, body.tsp-rd #secondary .searchform .flex-row { border-radius: 999px; overflow: hidden; }
body.tsp-rd .sidebar-inner .searchform .ux-search-submit, body.tsp-rd #secondary .searchform .ux-search-submit, body.tsp-rd .widget_search .button { background: var(--tsp-green) !important; border-color: var(--tsp-green) !important; color: #fff !important; }
body.tsp-rd .widget_product_list .product_list_widget li, body.tsp-rd .product_list_widget li { padding: 10px 0; border-color: var(--tsp-line); }
body.tsp-rd .product_list_widget img { border-radius: 10px; }
body.tsp-rd .product_list_widget .product-title, body.tsp-rd .product_list_widget a { color: var(--tsp-ink); font-weight: 600; text-transform: none; letter-spacing: 0; }
body.tsp-rd .product_list_widget .amount { color: var(--tsp-ink); font-weight: 700; }
body.tsp-rd.single-post .entry-content > p:first-of-type { font-size: 18px; color: var(--tsp-ink); }
body.tsp-rd .page-title.featured-title .title-overlay { background: linear-gradient(180deg, rgba(10, 32, 16, .35), rgba(10, 32, 16, .65)); }
body.tsp-rd .page-title.featured-title h1 { text-transform: none; letter-spacing: -.01em; }
body.tsp-rd .page-title.featured-title .breadcrumbs { text-transform: none; letter-spacing: 0; }
body.tsp-rd .accordion-title { text-transform: none; letter-spacing: 0; }
@media (max-width: 849px) {
  body.tsp-rd .sidebar-inner .widget, body.tsp-rd #secondary .widget { padding: 12px 14px; }
  body.tsp-rd .entry-content { font-size: 15.5px; }
}
