/** Shopify CDN: Minification failed

Line 760:0 Unexpected "}"

**/
/* ============================================================
   Thurso Surf — Visual Identity v5.0
   Overrides for things settings_data.json cannot control.
   Injected after the theme's inline style block for cascade priority.
   ============================================================ */

/* --- Link color (settings hardcode --colorLink to body text) --- */
:root {
  --colorLink: #1A7A7A;
}

/* --- Button refinements (inline style hardcodes weight 800, spacing .3em) --- */
:root {
  --element-button-font-weight: 700;
  --element-button-letter-spacing: 0.1em;
}

/* --- VI design tokens --- */
:root {
  --ts-gold: #DCA075;
  --ts-gold-light: #F7ECE3;
  --ts-gold-50: #FDF8F4;
  --ts-gold-dark: #B07D55;
  --ts-teal: #1A7A7A;
  --ts-teal-light: #E4F3F3;
  --ts-teal-dark: #0f5252;
  --ts-sage: #8FA98A;
  --ts-sage-light: #F0F5EF;
  --ts-coral: #E8725C;
  --ts-coral-light: #FDF0ED;
  --ts-amber: #E5A84B;
  --ts-amber-light: #FDF6E8;
  --ts-warm-white: #F8F6F2;
  --ts-soft-gray: #E8E5E0;
  --ts-font-editorial: 'Source Serif 4', Georgia, serif;
}


/* --- Nav active/hover -> gold --- */
.site-nav__link:hover,
.site-nav__link:focus-visible,
.site-nav__details[open] > .site-nav__link {
  color: var(--ts-gold) !important;
}

/* --- Header bronze accent border --- */
.site-header {
  border-bottom: 4px solid var(--ts-gold) !important;
}

/* --- Dropdown hover --- */
.site-nav__child-link:hover {
  color: var(--ts-gold) !important;
  background-color: var(--ts-gold-50);
}


/* --- Button hover: gold -> gold-dark --- */
.btn:hover,
.btn--full:hover {
  background-color: var(--ts-gold-dark) !important;
  border-color: var(--ts-gold-dark) !important;
  color: #ffffff !important;
}

/* --- Secondary/outline buttons --- */
.btn--secondary,
.btn--tertiary {
  background-color: transparent !important;
  color: var(--colorTextBody) !important;
  border: 1px solid var(--ts-soft-gray) !important;
}
.btn--secondary:hover,
.btn--tertiary:hover {
  background-color: var(--ts-gold-50) !important;
  border-color: var(--ts-gold) !important;
  color: #111111 !important;
}

/* --- ATC stays solid bronze even when demoted to secondary --- */
.add-to-cart.btn--secondary {
  background-color: var(--ts-gold) !important;
  color: #111111 !important;
  border-color: var(--ts-gold) !important;
}
.add-to-cart.btn--secondary:hover {
  background-color: var(--ts-gold-dark) !important;
  border-color: var(--ts-gold-dark) !important;
  color: #ffffff !important;
}

/* --- Inverse button (on dark bg) --- */
.btn--inverse {
  background-color: var(--ts-gold) !important;
  color: #111111 !important;
  border-color: var(--ts-gold) !important;
}
.btn--inverse:hover {
  background-color: #ffffff !important;
  color: #111111 !important;
}


/* --- Editorial typography (Source Serif 4) --- */
.rte blockquote,
.rte blockquote p,
.testimonial__text,
.rich-text__text--large,
.hero__subtitle,
.slideshow__subtitle {
  font-family: var(--ts-font-editorial);
  font-style: italic;
  font-weight: 400;
  text-transform: none;
}

/* --- Product subtitle --- */
.product-subtitle h2 {
  font-family: var(--ts-font-editorial);
  font-style: italic;
  color: #888888;
  font-size: 18px;
  text-transform: none;
  font-weight: 400;
}

/* --- Text link hover consistency --- */
.rte a:not(.rte__image):not(.btn):hover,
.rte a:not(.rte__image):not(.btn):focus-visible,
.rte-setting a:not(.rte__image):not(.btn):hover,
.rte-setting a:not(.rte__image):not(.btn):focus-visible,
.collapsible-content__inner p a:hover,
.collapsible-content__inner p a:focus-visible {
  color: var(--ts-gold);
  text-decoration-color: currentColor;
}


/* --- Variant selector active -> gold ring --- */
.variant-input-wrap .variant-input:checked + label,
.variant-wrapper .is-active {
  border-color: var(--ts-gold) !important;
}

/* --- Tabs active -> gold underline --- */
.product-tab__title.is-active {
  border-bottom-color: var(--ts-gold) !important;
}


/* --- Sale badge -> coral --- */
.grid-product__tag--sale {
  background-color: var(--ts-coral) !important;
  color: #ffffff !important;
}

/* --- Savings text -> coral --- */
.grid-product__price--savings,
.product__price--savings {
  color: var(--ts-coral) !important;
}

/* --- Active filter -> teal --- */
.tag--active a,
.tag-list a.tag--active {
  background-color: var(--ts-teal) !important;
  color: #ffffff !important;
  border-color: var(--ts-teal) !important;
}
.tag-list a:hover {
  border-color: var(--ts-teal) !important;
  color: var(--ts-teal) !important;
}

/* --- Color swatch active -> gold --- */
.grid-product__color-image.is-active {
  border-color: var(--ts-gold) !important;
}


/* --- Footer link hover -> gold --- */
.site-footer a:hover,
.site-footer a:focus-visible,
.site-footer__linklist-link:hover,
.site-footer__linklist-link:focus-visible {
  color: var(--ts-gold) !important;
  text-decoration: underline;
  text-decoration-color: currentColor;
  text-underline-offset: 3px;
}

/* --- Footer bottom border --- */
.site-footer__bottom {
  border-top-color: rgba(255, 255, 255, 0.1) !important;
}


/* --- Form focus -> gold ring --- */
input:focus,
textarea:focus,
select:focus {
  border-color: var(--ts-gold) !important;
  box-shadow: 0 0 0 1px var(--ts-gold) !important;
}


/* --- Design elements (for future section use) --- */

.thurso-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 32px 0;
}
.thurso-divider::before {
  content: '';
  flex: 1;
  height: 2px;
  background: var(--ts-gold);
}
.thurso-divider::after {
  content: '';
  flex: 1;
  height: 2px;
  background: var(--ts-teal);
}

.thurso-label {
  font-family: var(--typeHeaderPrimary), sans-serif;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--ts-teal);
  margin-bottom: 4px;
}

.thurso-editorial {
  font-family: var(--ts-font-editorial);
  font-style: italic;
  font-size: 20px;
  line-height: 1.6;
  color: #555555;
  max-width: 640px;
}

.thurso-highlight {
  background-color: var(--ts-gold-50);
  border-left: 3px solid var(--ts-gold);
  border-radius: 0 6px 6px 0;
  padding: 16px 20px;
}

.thurso-info {
  background-color: var(--ts-teal-light);
  border-left: 3px solid var(--ts-teal);
  border-radius: 0 6px 6px 0;
  padding: 16px 20px;
}

.thurso-badge {
  display: inline-block;
  font-family: var(--typeHeaderPrimary), sans-serif;
  font-weight: 700;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 4px 10px;
  border-radius: 2px;
}
.thurso-badge--gold { background: var(--ts-gold); color: #111111; }
.thurso-badge--teal { background: var(--ts-teal); color: #ffffff; }
.thurso-badge--coral { background: var(--ts-coral); color: #ffffff; }
.thurso-badge--sage { background: var(--ts-sage); color: #ffffff; }
.thurso-badge--amber { background: var(--ts-amber); color: #ffffff; }


/* ============================================================
   Migrated from live theme — Updated with VI v5.0 tokens
   ============================================================ */

/* --- Nav dropdown top-level bold --- */
.site-nav__dropdown-link--top-level {
  font-size: 16px;
  font-weight: bold !important;
}

/* --- Product grid styling --- */
.grid-product__price--original {
  color: #888888;
}

/* --- Read more link --- */
.readmore {
  text-decoration: underline;
  color: inherit;
  text-underline-offset: 3px;
}
.readmore:hover,
.readmore:focus-visible {
  color: var(--ts-gold);
  text-decoration-color: currentColor;
}


/* --- Technology section --- */
.technology-section {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 10px;
}
.technology-item {
  background-color: var(--ts-warm-white);
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 15px;
}
.technology-header {
  display: flex;
  align-items: center;
  gap: 15px;
}
.technology-title {
  font-size: 24px;
  display: contents;
}
@media (max-width: 1024px) {
  .technology-header {
    display: block;
  }
}
@media (max-width: 769px) {
  .technology-header {
    display: flex;
  }
}

/* --- Box container (shared) --- */
.box-container {
  background-color: var(--ts-warm-white);
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 20px;
}

/* --- Product comparison table baseline --- */
.product-comparison.product-table-section {
  padding: 20px;
  margin: 0 auto;
}
.product-comparison .product-table-heading {
  text-align: center;
  font-size: 2em;
  margin-bottom: 20px;
}
.product-comparison .product-specs-table th,
.product-comparison .product-specs-table td {
  padding: 10px;
  text-align: center;
  vertical-align: middle;
}
.product-comparison .product-specs-table th {
  min-width: 150px;
}
.product-comparison .table-wrapper {
  overflow-x: auto;
}
.product-comparison .product-specs-table thead th {
  position: sticky;
  top: 0;
  z-index: 2;
  vertical-align: top;
}
.product-comparison .product-specs-table {
  border-collapse: collapse;
  width: 100%;
  table-layout: fixed;
}
.product-comparison .product-specs-table th:first-child,
.product-comparison .product-specs-table td:first-child {
  width: 180px;
}
.product-comparison .product-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 6px;
  height: 100%;
}
.product-comparison .product-header__link {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  width: 100%;
  min-height: 220px;
  color: inherit;
}
.product-comparison .product-header__image {
  display: block;
  max-width: 100%;
  max-height: 220px;
  width: auto;
  height: auto;
}
.product-comparison .product-header__title {
  color: var(--colorTextBody);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.35;
  text-decoration: none;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 2.7em;
}
.product-comparison .product-header__title:hover,
.product-comparison .product-header__title:focus-visible {
  color: var(--ts-gold);
  text-decoration: underline;
  text-decoration-color: currentColor;
  text-underline-offset: 3px;
}
.product-comparison .product-header__price {
  color: inherit;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.2;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 2px;
  min-height: 2em;
}
.product-comparison .product-header__price-current {
  color: inherit;
}
.product-comparison .product-header__price-compare {
  color: var(--ts-ink-40, #999);
  font-size: 13px;
  font-weight: 400;
  text-decoration: line-through;
}
.product-table-section:not(.product-comparison) .product-specs-table {
  border-collapse: collapse;
  width: auto;
  margin: 0 auto;
}
@media only screen and (max-width: 768px) {
  .product-comparison .product-specs-table {
    min-width: calc(180px + (var(--comparison-product-count, 4) * 220px));
  }
}

/* --- Product specs table --- */
.product-comparison .product-specs-table thead th {
  border: none !important;
}
.product-comparison .product-specs-table tbody td {
  border: none !important;
  border-bottom: none !important;
}
.product-comparison .product-specs-table tbody tr {
  border-bottom: 1px solid var(--ts-soft-gray);
}
.product-comparison .product-specs-table tbody tr:last-child {
  border-bottom: none;
}
.product-specs-table td {
  background-color: var(--ts-warm-white);
  border-bottom: 1px solid var(--ts-soft-gray);
}
.product-specs-table tr:last-child td {
  border-bottom: none;
}

/* --- Performance bars --- */
.performance-bar {
  margin-bottom: 15px;
}
.performance-bar strong {
  display: block;
  margin-bottom: 5px;
}
.progress {
  background-color: #f0f0f0;
  border-radius: 8px;
  height: 10px;
}
.progress-bar {
  background-color: var(--ts-gold);
  height: 100%;
  border-radius: 8px;
}

/* --- Activity icons --- */
.activities-icons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}
.activity-icon {
  flex: 1 1 20%;
  text-align: center;
}
.activity-icon p {
  font-size: 24px;
  font-family: var(--typeHeaderPrimary), sans-serif;
}
@media (max-width: 1024px) {
  .activity-icon {
    flex: 1 1 45%;
  }
}

/* --- What's included --- */
.whats-included-item {
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--ts-soft-gray);
  padding-bottom: 10px;
}
.whats-included-item:last-child {
  border-bottom: none;
}
.whats-included-item img {
  margin-right: 15px;
}
.whats-included-item p {
  font-size: 16px;
}

/* --- Product subtitle --- */
.product-block.subtitle-text {
  margin: 0;
}

/* --- Policy icons --- */
.policy-icons {
  display: flex;
  gap: 10px;
}


/* ============================================================
   CONVERSION COMPONENTS — Extracted from Brand Refresh theme
   ============================================================ */


/* ---- KEY SPECS STRIP ---- */
.key-specs-strip {
  margin: 16px 0;
}

.key-specs-strip .thickness-toggle__title {
  margin: 0;
}

.key-specs-strip .key-specs-strip__top-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(26, 122, 122, 0.2);
}

.key-specs-strip .thickness-toggle__static-specs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: center;
  gap: 8px 16px;
  width: 100%;
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: 0;
}

.key-specs-strip .key-specs-strip__inline-spec {
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
  white-space: nowrap;
  justify-self: center;
}

.key-specs-strip .key-specs-strip__inline-value {
  font-size: 14px;
  font-weight: 700;
  color: var(--thurso-ink, #1a1a2e);
}

.key-specs-strip .key-specs-strip__inline-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--thurso-ink-60, #6e6e88);
}

.key-specs-strip .key-specs-strip__skill-stat-value {
  white-space: nowrap;
}


/* ---- SKILL LEVEL BADGE ---- */
.skill-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 3px 10px;
  border-radius: 2px;
  line-height: 1.4;
}

.skill-badge--beginner {
  background: var(--ts-teal-light, var(--thurso-teal-50));
  color: var(--ts-teal-dark, var(--thurso-teal-700));
}

.skill-badge--intermediate {
  background: var(--ts-gold-light, var(--thurso-bronze-100));
  color: var(--ts-gold-dark, var(--thurso-bronze-700));
}

.skill-badge--advanced {
  background: #111111;
  color: #fff;
}

.skill-badge--all,
.skill-badge--default {
  background: var(--ts-soft-gray, var(--thurso-sand-200));
  color: #555555;
}

/* Skill badge on product cards (overlay) */
.grid-product .skill-badge {
  position: absolute;
  top: 8px;
  left: 8px;
  z-index: 2;
}

@media (max-width: 767px) {
  .key-specs-strip .key-specs-strip__top-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .key-specs-strip .thickness-toggle__static-specs {
    gap: 8px 10px;
  }
}


/* ---- TRUST BADGES BAR (product page) ---- */
.trust-badges {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px 0;
  margin: 8px 0;
  border-top: 1px solid var(--ts-soft-gray, var(--thurso-sand-200));
  border-bottom: 1px solid var(--ts-soft-gray, var(--thurso-sand-200));
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 500;
  color: #555555;
}

.trust-badge svg {
  width: 16px;
  height: 16px;
  color: var(--ts-teal, var(--thurso-teal-500));
  flex-shrink: 0;
}

@media (max-width: 599px) {
  .trust-badges {
    flex-wrap: wrap;
    gap: 10px;
  }
  .trust-badge {
    font-size: 11px;
  }
}


/* ---- PRODUCT SUBTITLE (component override) ---- */
.product-subtitle h2 {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ts-teal, var(--thurso-teal-500));
  margin: 0;
  font-family: var(--typeBasePrimary), var(--typeBaseFallback), sans-serif;
}
.product-subtitle {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin: 6px 0 0;
  line-height: 1.4;
}
.product-subtitle .product-subtitle__badge {
  position: static !important;
  z-index: auto;
  display: inline-block;
}
.product-subtitle__best {
  color: var(--ts-teal, var(--thurso-teal-500));
  font-size: 14px;
  font-weight: 500;
}
.product-subtitle__skill {
  flex-basis: 100%;
  color: var(--ts-ink-70, #555);
  font-size: 12px;
  font-weight: 600;
}

@media screen and (max-width: 749px) {
  .product-subtitle {
    align-items: center;
    flex-direction: column;
    gap: 6px;
    text-align: center;
  }
}


  .comparison-table {
    font-size: 12px;
    min-width: 500px;
  }
  .comparison-table th,
  .comparison-table td {
    padding: 8px;
  }
}


/* ---- STICKY MOBILE ADD TO CART ---- */
.sticky-atc {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: #fff;
  border-top: 1px solid var(--ts-soft-gray, var(--thurso-sand-200));
  box-shadow: 0 -2px 10px rgba(0,0,0,0.08);
  transform: translateY(100%);
  transition: transform 0.3s ease;
  padding: 10px 16px;
}

.sticky-atc--visible {
  transform: translateY(0);
}

.sticky-atc__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  gap: 12px;
}

.sticky-atc__title {
  font-family: var(--typeHeaderPrimary), var(--typeHeaderFallback), sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: #111111;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 200px;
}

.sticky-atc__price {
  font-size: 14px;
  font-weight: 600;
  color: #111111;
}

.sticky-atc__price s {
  color: #a09890;
  font-weight: 400;
  margin-right: 6px;
}

.sticky-atc__button {
  padding: 10px 24px;
  font-size: 13px;
  white-space: nowrap;
  flex-shrink: 0;
}

@media (max-width: 359px) {
  .sticky-atc__title { max-width: 140px; }
}

@media (min-width: 1024px) {
  .sticky-atc { display: none; }
}


/* ---- THICKNESS TOGGLE ---- */
.thickness-toggle {
  background: var(--ts-teal-light, #E4F3F3);
  border: 1px solid var(--ts-teal, #1A7A7A);
  border-radius: 4px;
  padding: 20px;
  margin: 16px 0;
}

.thickness-toggle--comparison {
  margin-top: 12px;
}

.thickness-toggle__static-specs {
  display: flex;
  justify-content: center;
  gap: 24px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ts-ink-80, #333);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(26, 122, 122, 0.2);
}
.thickness-toggle__static-specs span {
  display: inline-flex;
  align-items: center;
}

.thickness-toggle__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.thickness-toggle__title {
  font-family: var(--typeHeaderPrimary), var(--typeHeaderFallback), sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #111111;
  margin: 0;
}

.thickness-toggle__switch {
  display: flex;
  background: var(--ts-soft-gray, var(--thurso-sand-200));
  border-radius: 20px;
  padding: 2px;
}

.thickness-toggle__option {
  padding: 6px 16px;
  border: none;
  background: transparent;
  border-radius: 18px;
  font-size: 13px;
  font-weight: 600;
  color: #888888;
  cursor: pointer;
  transition: all 0.2s ease;
}

.thickness-toggle__option--active {
  background: var(--ts-teal, var(--thurso-teal-500));
  color: #fff;
}

.thickness-toggle__panel {
  display: none;
}

.thickness-toggle__panel--active {
  display: block;
  animation: thicknessToggleFadeIn 0.3s ease;
}

@keyframes thicknessToggleFadeIn {
  from { opacity: 0; transform: translateY(4px); }
  to { opacity: 1; transform: translateY(0); }
}

.thickness-toggle__stats {
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
}

.thickness-toggle__stat {
  flex: 1;
  text-align: center;
  padding: 10px 6px;
  background: #fff;
  border-radius: 4px;
  border: 1px solid var(--ts-soft-gray, var(--thurso-sand-200));
}

.thickness-toggle__stat-value {
  display: block;
  font-family: var(--typeHeaderPrimary), var(--typeHeaderFallback), sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #111111;
  line-height: 1.2;
}

.thickness-toggle__stat-label {
  display: block;
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #888888;
  margin-top: 4px;
}

.thickness-toggle__desc {
  font-size: 13px;
  color: #555555;
  line-height: 1.5;
  margin: 0;
}

.key-specs-strip .thickness-toggle__desc {
  text-align: left;
}

/* ---- BUY BOX POSITIONING SUMMARY ---- */
.product-positioning-summary {
  background: var(--ts-warm-white, #F8F6F2);
  border: 1px solid var(--ts-soft-gray, #E8E5E0);
  border-radius: 4px;
  padding: 18px 20px;
  margin: 16px 0;
}

.product-positioning-summary__eyebrow {
  font-family: var(--typeHeaderPrimary), var(--typeHeaderFallback), sans-serif;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ts-gold-dark, #B07D55);
  margin-bottom: 12px;
}

.product-positioning-summary__content {
  display: grid;
  gap: 14px;
}

.product-positioning-summary__row {
  display: grid;
  gap: 6px;
}

.product-positioning-summary__label {
  font-family: var(--typeHeaderPrimary), var(--typeHeaderFallback), sans-serif;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #111111;
}

.product-positioning-summary__text {
  font-size: 14px;
  line-height: 1.6;
  color: var(--colorTextBody, #333333);
}

.product-positioning-summary__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.product-positioning-summary__chip {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  background: #ffffff;
  border: 1px solid var(--ts-soft-gray, #E8E5E0);
  border-radius: 999px;
  font-size: 12px;
  line-height: 1.35;
  color: var(--colorTextBody, #333333);
}

@media (max-width: 999px) {
  .thickness-toggle__stats { flex-wrap: wrap; }
  .thickness-toggle__stat { flex: 0 0 calc(50% - 4px); }
  .thickness-toggle__stat-value { font-size: 14px; }
  .product-positioning-summary {
    padding: 16px;
  }
}
@media (max-width: 599px) {
  .thickness-toggle__header { flex-direction: column; gap: 10px; align-items: flex-start; }

  .key-specs-strip .thickness-toggle__header {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
  }

  .key-specs-strip .thickness-toggle__title {
    flex: 1 1 auto;
    min-width: 0;
    text-align: left;
  }

  .key-specs-strip .thickness-toggle__switch {
    margin-left: auto;
    flex: 0 0 auto;
  }
}


/* ---- INTERACTIVE KIT GRID (What's in the Box) ---- */
.kit-grid {
  margin: 16px 0;
}

.kit-grid__title {
  font-family: var(--typeHeaderPrimary), var(--typeHeaderFallback), sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--ts-teal, var(--thurso-teal-500));
  margin-bottom: 12px;
}

.kit-grid__items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.kit-grid__item {
  text-align: center;
  padding: 12px 8px;
  border: 1px solid var(--ts-soft-gray, var(--thurso-sand-200));
  border-radius: 4px;
  background: #fff;
  transition: all 0.2s ease;
  cursor: default;
  overflow: hidden;
  min-width: 0;
  position: relative;
}
.kit-grid__badge {
  position: absolute;
  top: 4px;
  right: 4px;
  background: var(--ts-teal, #1A7A7A);
  color: #fff;
  font-size: 8px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  padding: 2px 5px;
  border-radius: 2px;
  line-height: 1.3;
}

.kit-grid__item:hover {
  border-color: var(--ts-teal, var(--thurso-teal-500));
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(16, 132, 116, 0.1);
}
.kit-grid__item--greyed {
  opacity: 0.35;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.kit-grid__item--greyed .kit-grid__badge {
  background: var(--ts-ink-40, #999);
}

.kit-grid__image {
  width: 100%;
  max-width: 60px;
  height: 60px;
  margin: 0 auto 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.kit-grid__image img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.kit-grid__placeholder {
  width: 40px;
  height: 40px;
  color: var(--ts-soft-gray, var(--thurso-sand-400));
}

.kit-grid__placeholder svg {
  width: 100%;
  height: 100%;
}

.kit-grid__label {
  font-size: 11px;
  font-weight: 600;
  color: #555555;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  word-break: break-word;
}

@media (max-width: 999px) {
  .kit-grid__items { grid-template-columns: repeat(3, 1fr); }
  .kit-grid__image { width: 48px; height: 48px; }
  .kit-grid__label { font-size: 10px; }
}


/* ---- SIZE RECOMMENDER ---- */
.size-rec {
  background: var(--ts-warm-white, var(--thurso-sand-50));
  border: 1px solid var(--ts-soft-gray, var(--thurso-sand-200));
  border-radius: 4px;
  padding: 32px;
  text-align: center;
  margin: 0;
}

.size-rec__title {
  font-family: var(--typeHeaderPrimary), var(--typeHeaderFallback), sans-serif;
  font-size: 24px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: #111111;
  margin: 0 0 8px;
}

.size-rec__subtitle {
  font-size: 14px;
  color: #888888;
  margin: 0 0 24px;
}

.size-rec__form {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.size-rec__field {
  text-align: left;
}

.size-rec__label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #111111;
  margin-bottom: 8px;
}

.size-rec__select {
  padding: 10px 16px;
  border: 1px solid var(--ts-soft-gray, var(--thurso-sand-300));
  border-radius: 4px;
  font-size: 14px;
  color: #111111;
  background: #fff;
  min-width: 200px;
}

.size-rec__radios {
  display: flex;
  gap: 8px;
}

.size-rec__radio {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border: 1px solid var(--ts-soft-gray, var(--thurso-sand-300));
  border-radius: 4px;
  cursor: pointer;
  font-size: 13px;
  color: #555555;
  background: #fff;
  transition: all 0.2s ease;
}

.size-rec__radio:has(input:checked),
.size-rec__radio.is-selected {
  border-color: var(--ts-teal, var(--thurso-teal-500));
  background: var(--ts-teal-light, var(--thurso-teal-50));
  color: var(--ts-teal-dark, var(--thurso-teal-700));
}

.size-rec__radio input { display: none; }

.size-rec__result {
  animation: sizeRecFadeIn 0.3s ease;
}

@keyframes sizeRecFadeIn {
  from { opacity: 0; transform: translateY(4px); }
  to { opacity: 1; transform: translateY(0); }
}

.size-rec__result-inner {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  background: #fff;
  border: 2px solid var(--ts-teal, var(--thurso-teal-500));
  border-radius: 4px;
  padding: 16px 24px;
  text-align: left;
}

.size-rec__icon {
  color: var(--ts-teal, var(--thurso-teal-500));
  flex-shrink: 0;
}

.size-rec__rec-text {
  font-size: 15px;
  font-weight: 600;
  color: #111111;
  margin: 0 0 8px;
}

.size-rec__rec-link {
  font-size: 13px;
  padding: 8px 20px;
}

@media (max-width: 599px) {
  .size-rec { padding: 20px 16px; }
  .size-rec__form { flex-direction: column; gap: 16px; }
  .size-rec__select { width: 100%; min-width: 0; }
  .size-rec__radios { flex-wrap: wrap; }
  .size-rec__radio { flex: 1 1 auto; justify-content: center; }
  .size-rec__result-inner { flex-direction: column; text-align: center; }
}


/* ============================================================
   NEW RULES — Conversion Optimization Additions
   ============================================================ */


/* --- Star rating above fold (Judge.me bronze stars) --- */
.jdgm-prev-badge .jdgm-prev-badge__stars {
  color: var(--ts-gold) !important;
}
.jdgm-rev-widg .jdgm-rev__icon {
  color: var(--ts-gold) !important;
}

/* --- Trust icons below ATC --- */
.thurso-trust-icons {
  display: flex;
  justify-content: center;
  gap: 16px;
  padding: 12px 0;
  border-top: 1px solid var(--ts-soft-gray);
  margin-top: 12px;
}
.thurso-trust-icons__item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.thurso-trust-icons__item svg {
  width: 18px;
  height: 18px;
  color: var(--ts-teal);
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .thurso-trust-icons {
    flex-wrap: wrap;
    gap: 8px 16px;
  }
  .thurso-trust-icons__item {
    flex: 0 0 calc(50% - 8px);
    font-size: 10px;
  }
}

/* --- Company stats dark section --- */
.thurso-stats-section {
  background-color: #111111;
  color: #F8F6F2;
}
.thurso-stats-section .text-with-icons__heading {
  color: #F8F6F2 !important;
}
.thurso-stats-section .icon__text-block h4,
.thurso-stats-section .text-with-icons__item h4 {
  color: var(--ts-gold) !important;
  font-size: 36px;
}
.thurso-stats-section .icon__text-block svg,
.thurso-stats-section .text-with-icons__item svg {
  color: var(--ts-gold) !important;
}


/* (duplicate kit-grid block removed — see line ~824) */


/* ---- SIZE RECOMMENDER ---- */
.size-rec {
  background: var(--thurso-sand-50);
  border: 1px solid var(--thurso-sand-200);
  border-radius: 4px;
  padding: 32px;
  text-align: center;
  margin: 0;
}

.size-rec__title {
  font-family: var(--typeHeaderPrimary), var(--typeHeaderFallback);
  font-size: 24px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--thurso-ink);
  margin: 0 0 8px;
}

.size-rec__subtitle {
  font-size: 14px;
  color: var(--thurso-ink-60);
  margin: 0 0 24px;
}

.size-rec__form {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.size-rec__field {
  text-align: left;
}

.size-rec__label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--thurso-ink);
  margin-bottom: 8px;
}

.size-rec__select {
  padding: 10px 16px;
  border: 1px solid var(--thurso-sand-300);
  border-radius: 4px;
  font-size: 14px;
  color: var(--thurso-ink);
  background: #fff;
  min-width: 200px;
}

.size-rec__radios {
  display: flex;
  gap: 8px;
}

.size-rec__radio {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border: 1px solid var(--thurso-sand-300);
  border-radius: 4px;
  cursor: pointer;
  font-size: 13px;
  color: var(--thurso-ink-80);
  background: #fff;
  transition: all 0.2s ease;
}

.size-rec__radio:has(input:checked),
.size-rec__radio.is-selected {
  border-color: var(--thurso-teal-500);
  background: var(--thurso-teal-50);
  color: var(--thurso-teal-700);
}

.size-rec__radio input { display: none; }

.size-rec__result {
  animation: fadeIn 0.3s ease;
}

.size-rec__result-inner {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  background: #fff;
  border: 2px solid var(--thurso-teal-500);
  border-radius: 4px;
  padding: 16px 24px;
  text-align: left;
}

.size-rec__icon {
  color: var(--thurso-teal-500);
  flex-shrink: 0;
}

.size-rec__rec-text {
  font-size: 15px;
  font-weight: 600;
  color: var(--thurso-ink);
  margin: 0 0 8px;
}

.size-rec__rec-link {
  font-size: 13px;
  padding: 8px 20px;
}

@media (max-width: 599px) {
  .size-rec { padding: 20px 16px; }
  .size-rec__form { flex-direction: column; gap: 16px; }
  .size-rec__select { width: 100%; min-width: 0; }
  .size-rec__radios { flex-wrap: wrap; }
  .size-rec__radio { flex: 1 1 auto; justify-content: center; }
  .size-rec__result-inner { flex-direction: column; text-align: center; }
}


/* ---- DRAWERS (cart, mobile nav, filters) ---- */
.drawer__header {
  border-bottom: 1px solid var(--thurso-sand-200);
}

.drawer__title {
  font-family: var(--typeHeaderPrimary), var(--typeHeaderFallback);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.drawer__close-button {
  color: var(--thurso-ink);
  transition: color 0.2s ease;
}

.drawer__close-button:hover {
  color: var(--thurso-teal-500);
}

.drawer__footer {
  border-top: 1px solid var(--thurso-sand-200);
}


/* ---- MOBILE NAV ---- */
.mobile-nav__link {
  color: var(--thurso-ink);
  transition: color 0.2s ease;
}

.mobile-nav__link:hover,
.mobile-nav__link:focus-visible,
.mobile-nav__link[data-active="true"] {
  color: var(--ts-gold);
}

.mobile-nav__link--top-level {
  font-family: var(--typeHeaderPrimary), var(--typeHeaderFallback);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.mobile-nav__toggle .collapsible-trigger__icon {
  color: var(--thurso-ink-60);
}

.mobile-nav__sublist .mobile-nav__link {
  font-weight: 400;
  text-transform: none;
}


/* ---- CART QUANTITY PICKER ---- */
.js-qty__wrapper {
  border-color: var(--thurso-sand-300);
  border-radius: 3px;
}

.js-qty__adjust {
  color: var(--thurso-ink-60);
  transition: color 0.2s ease;
}

.js-qty__adjust:hover {
  color: var(--thurso-teal-500);
}

.js-qty__num {
  color: var(--thurso-ink);
  font-weight: 500;
}


/* ---- TEXT LINKS ---- */
.text-link {
  color: inherit;
  text-decoration: underline;
  text-decoration-color: var(--colorTextBodyAlpha015);
  text-underline-offset: 3px;
  transition: color 0.2s ease, text-decoration-color 0.2s ease;
}

.text-link:hover,
.text-link:focus-visible {
  color: var(--ts-gold);
  text-decoration-color: currentColor;
}

.cart__remove .text-link {
  color: var(--thurso-ink-60);
  font-size: 12px;
}

.cart__remove .text-link:hover {
  color: var(--thurso-error);
}


/* ---- BREADCRUMBS ---- */
.breadcrumb a {
  color: var(--thurso-ink-60);
  transition: color 0.2s ease;
}

.breadcrumb a:hover,
.breadcrumb a:focus-visible {
  color: var(--ts-gold);
}


/* ---- NEWSLETTER INPUT GROUP ---- */
.input-group-field:focus {
  border-color: var(--thurso-teal-500);
  box-shadow: 0 0 0 1px var(--thurso-teal-500);
}

.input-group-btn .btn {
  background: var(--thurso-bronze-500);
  color: #fff;
}

.input-group-btn .btn:hover {
  background: var(--thurso-bronze-600);
}


/* ---- SECTION HEADERS ---- */
.section-header__title {
  font-family: var(--typeHeaderPrimary), var(--typeHeaderFallback);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.section-header__link .btn--secondary {
  background: var(--thurso-teal-500);
  border-color: var(--thurso-teal-500);
}

.section-header__link .btn--secondary:hover {
  background: var(--thurso-teal-600);
  border-color: var(--thurso-teal-600);
}


/* ---- HORIZONTAL RULES ---- */
.hr--small,
.hr--medium,
.hr--large {
  border-color: var(--thurso-sand-200);
}


/* ============================================================
   BUG FIXES — Product Page UX Review (2026-03-13)
   ============================================================ */


/* ---- FIX: Comparison table column alignment ---- */
.comparison-table {
  width: 100%;
  table-layout: fixed;
}
.comparison-table th,
.comparison-table td {
  width: 33.33%;
  text-align: center;
  vertical-align: middle;
  padding: 12px 16px;
}
.comparison-table th:first-child,
.comparison-table td:first-child {
  text-align: left;
  font-weight: 600;
}
.comparison-table thead th {
  font-family: var(--typeHeaderPrimary), var(--typeHeaderFallback);
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding-bottom: 16px;
}
.comparison-table thead th small {
  display: block;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  color: var(--ts-ink-60, #666);
  margin-top: 4px;
}
.comparison-table tbody tr {
  border-bottom: 1px solid var(--ts-sand-200, #e8e4de);
}
.comparison-table tbody td {
  font-size: 14px;
  color: var(--ts-ink-80, #333);
}
.comparison-table__highlight {
  background: #E4F3F3 !important;
  font-weight: 600;
  color: var(--ts-teal) !important;
}

/* (duplicate kit-grid label fix removed — see line ~890) */
/* (duplicate kit-grid overrides removed — see line ~824) */


/* ---- FIX: Hide redundant shipping text (trust icons cover this) ---- */
.product__policies {
  display: none !important;
}


/* ---- FIX: Tighter buy box spacing (default 25px -> 18px blocks, 16px variants) ---- */
.product-single__meta .product-block {
  margin-bottom: 18px;
}
/* Tab blocks: restore default 25px so theme's -25px pull-up nets to flush stacking */
.product-single__meta .product-block--tab {
  margin-bottom: 25px;
}
.product-single__meta .variant-wrapper + .variant-wrapper {
  margin-top: 25px;
}


/* ---- FIX: Close gap between title and Judge.me stars ---- */
.product-block--header {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}
[data-product-blocks] > .product-block:first-child {
  margin-top: 2px !important;
}
.jdgm-preview-badge {
  margin-top: 0 !important;
  margin-bottom: 4px !important;
}


/* ---- FIX: Price typography + sale states ---- */
.product-block--price {
  margin-top: 14px !important;
}
/* Current/sale price — prominent */
.product__price {
  font-size: 24px !important;
  font-weight: 600 !important;
}
/* Sale price — same ink color as regular, premium approach */
.product__price.on-sale {
  color: inherit !important;
}
/* Compare-at (original) price — smaller, muted, strikethrough */
.product__price--compare {
  font-size: 16px !important;
  font-weight: 400 !important;
  color: var(--ts-ink-40, #999) !important;
  text-decoration: line-through;
}
/* Save badge — compact, on-brand teal */
.product__price-savings {
  font-size: 16px !important;
  font-weight: 600 !important;
  color: var(--ts-coral) !important;
  margin-left: 0 !important;
}


/* ---- Compact trust badges (horizontal row, above warranty) ---- */
.thurso-trust-badges {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  padding: 12px 0;
  border-top: 1px solid var(--ts-sand-200, #e8e4de);
  border-bottom: 1px solid var(--ts-sand-200, #e8e4de);
}
.thurso-trust-badges__item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--ts-ink-80, #333);
}
.thurso-trust-badges__item svg {
  flex-shrink: 0;
  color: var(--ts-teal, #1A7A7A);
}
@media (max-width: 999px) {
  .thurso-trust-badges {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 12px;
  }
  .thurso-trust-badges__item {
    font-size: 10px;
  }
}
@media (max-width: 380px) {
  .thurso-trust-badges__item {
    font-size: 9px;
    gap: 4px;
  }
}


/* ---- Inline variant labels with options (grid-aligned) ---- */
.variant-wrapper[data-type="button"] {
  display: grid !important;
  grid-template-columns: auto 1fr;
  align-items: center !important;
  gap: 12px;
}
.variant-wrapper[data-type="button"] > .variant__label {
  margin: 0 !important;
  padding: 0 !important;
  line-height: normal;
  align-self: center !important;
  min-width: 120px;
}
.variant-wrapper[data-type="button"] > .variant-input-wrap {
  display: flex !important;
  flex-wrap: wrap;
  align-items: center !important;
  gap: 6px;
  margin: 0 !important;
  padding: 0 !important;
  border: none !important;
  min-inline-size: 0;
  align-self: center !important;
}
.variant-wrapper[data-type="button"] .variant-input {
  display: inline-flex !important;
  align-items: center !important;
  margin: 0 !important;
}
.variant-wrapper[data-type="button"] .variant-input-wrap .variant__button-label {
  margin: 0 !important;
}
.variant-wrapper[data-type="button"] .variant-input-wrap .color-swatch {
  margin: 0 !important;
}
@media (max-width: 599px) {
  .variant-wrapper[data-type="button"] {
    grid-template-columns: 1fr !important;
    gap: 8px;
    justify-items: center;
  }
  .variant-wrapper .variant__label {
    text-align: center !important;
    margin-bottom: 8px !important;
  }
  .variant-input-wrap {
    justify-content: center !important;
  }
}

/* ---- Color name below variant label ---- */
.variant__label .variant__label-info {
  display: block !important;
  font-size: 14px;
  font-weight: 400 !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
  line-height: 1.3;
  margin-top: 2px;
  color: var(--ts-ink-80, #333);
}


/* ---- Product Card: Board Type Badge ---- */
.ts-board-type-badge {
  position: absolute;
  top: 8px;
  left: 8px;
  z-index: 2;
  background: var(--ts-teal, #1A7A7A);
  color: #fff;
  font-family: var(--typeHeaderPrimary), var(--typeHeaderFallback);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 4px 10px;
  border-radius: 2px;
  line-height: 1.3;
}

/* ---- Product Card: Specs Strip ---- */
.ts-card-specs {
  margin-top: 4px;
  font-size: 12px;
  line-height: 1.5;
  color: var(--colorTextBody, #333);
}
.ts-card-specs__dims {
  display: block;
}
.ts-card-specs__best-for {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: var(--ts-ink-60, #666);
}

/* ---- Collection Page Styles (added from thurso-brand.css) ---- */

/* Sidebar filter styling */
.collection-sidebar__group .collapsible-trigger-btn {
  font-family: var(--typeHeaderPrimary), var(--typeHeaderFallback);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ts-ink, #111);
  padding-bottom: 8px;
  width: 100%;
}
.collection-sidebar__group .tag-list .tag__text,
.collection-sidebar__group .tag-list a,
.collection-sidebar__group .tag-list--checkboxes a {
  font-size: 15px;
  color: var(--ts-ink-80, #333);
}
.collection-sidebar__group .is-active {
  color: var(--ts-teal, #1A7A7A);
  font-weight: 600;
}
.collection-sidebar__group .tag__input:checked + .tag__checkbox-wrapper {
  border-color: var(--ts-teal, #1A7A7A);
}
.collection-sidebar__group .tag__input:focus-visible + .tag__checkbox-wrapper {
  box-shadow: 0 0 0 2px var(--ts-teal, #1A7A7A);
}
.collection-sidebar__group .tag--active .tag__checkbox:before,
.collection-sidebar__group .tag-list--checkboxes .tag--active a:before {
  background: transparent;
  border-color: var(--colorBorder);
}
.collection-sidebar__group .tag--active .tag__checkbox:after,
.collection-sidebar__group .tag-list--checkboxes .tag--active a:after {
  display: block;
  background-color: var(--ts-teal, #1A7A7A);
  border-color: var(--ts-teal, #1A7A7A);
  height: 10px;
  width: 10px;
  left: 3px;
  top: 50%;
  transform: translateY(-50%);
}

/* Active tag/filter states */
.tag--active,
.collection-filter__active {
  background: var(--ts-teal, #1A7A7A);
  color: #fff;
  border-color: var(--ts-teal, #1A7A7A);
}
.collection-sidebar__group .tag--active,
.collection-sidebar__group .collection-filter__active {
  background: transparent;
  color: var(--ts-teal, #1A7A7A);
  border-color: transparent;
}
.tag-list--active-tags .tag--remove .btn,
.tag-list--active-tags .tag-list__remove-tag {
  background: var(--ts-teal, #1A7A7A);
  border-color: var(--ts-teal, #1A7A7A);
  color: #fff !important;
}
.tag-list--active-tags .tag--remove .btn:hover,
.tag-list--active-tags .tag--remove .btn:focus-visible,
.tag-list--active-tags .tag-list__remove-tag:hover,
.tag-list--active-tags .tag-list__remove-tag:focus-visible {
  background: var(--ts-teal-dark, #155f5f);
  border-color: var(--ts-teal-dark, #155f5f);
  color: #fff !important;
}
.tag--active .tag__text,
.tag--active a:not(.btn) {
  color: #fff !important;
  font-weight: 600;
}
.collection-sidebar__group .tag--active .tag__text,
.collection-sidebar__group .tag--active a:not(.btn) {
  color: var(--ts-teal, #1A7A7A) !important;
  font-weight: 600;
}
.tag--active .icon,
.collection-filter__active .icon,
.tag--remove .icon {
  color: #fff !important;
}
.tag--remove a.btn,
.tag-list__remove-tag {
  color: #fff;
  font-size: 12px;
}
.tag--remove a.btn:hover,
.tag-list__remove-tag:hover {
  color: #fff;
}

/* Subcollection navigation pills */
.subcollection-nav {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 16px 0;
  margin-bottom: 8px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.subcollection-nav::-webkit-scrollbar {
  display: none;
}
.subcollection-nav__pill {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  border: 1px solid var(--ts-soft-gray, #ddd);
  border-radius: 20px;
  font-size: 13px;
  font-weight: 500;
  color: var(--ts-ink-80, #333);
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.2s ease;
}
.subcollection-nav__pill:hover {
  border-color: var(--ts-gold, #DCA075);
  color: var(--ts-gold-dark, #B07D55);
}
.subcollection-nav__pill--active {
  background: var(--ts-teal, #1A7A7A);
  border-color: var(--ts-teal, #1A7A7A);
  color: #fff;
}
.subcollection-nav__pill--active:hover {
  background: var(--ts-teal-dark, #0f5252);
  border-color: var(--ts-teal-dark, #0f5252);
  color: #fff;
}
@media (max-width: 767px) {
  .subcollection-nav {
    padding-right: 40px;
    -webkit-mask-image: linear-gradient(to right, black calc(100% - 40px), transparent);
    mask-image: linear-gradient(to right, black calc(100% - 40px), transparent);
  }
}

/* Comparison table mobile scroll wrapper */
.comparison-table-wrap {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

/* Badge styling */
.badge--teal,
.tag--info {
  background: var(--ts-teal-light, #E4F3F3);
  color: var(--ts-teal-dark, #0d6e61);
}

/* Save tag on product grid */
.grid-product__tag--save {
  background: var(--ts-coral, #E8725C);
  color: #fff;
  font-weight: 700;
  font-size: 11px;
  padding: 3px 8px;
  border-radius: 2px;
  position: absolute;
  top: 8px;
  right: 8px;
  z-index: 2;
}
