/**
 * True Sciences v10 — dark starry redesign (Next.js parity).
 */

body.ts-v10 {
  --brand: #002c50;
  --brand-dark: #001830;
  --brand-mid: #003868;
  --brand-deep: #084878;
  --brand-light: #4888b8;
  --brand-glow: #6a9ec8;
  --accent-start: #003868;
  --accent-end: #4888b8;
  --accent-light-start: #7aaed0;
  --accent-light-end: #c8d8ea;
  --btn-start: #003868;
  --btn-mid: #2878b0;
  --btn-end: #4888b8;
  --card-bg: rgba(255, 255, 255, 0.1);
  --card-border: rgba(200, 216, 234, 0.16);
  --ts-container-px: clamp(1.25rem, 5vw, 5rem);
  --ts-body-text: rgba(255, 255, 255, 0.95);

  background-color: #002038 !important;
  color: var(--ts-body-text);
}

html:has(body.ts-v10) {
  background-color: #002038;
  /* Marquee track is width:max-content — clip page-level horizontal scroll (768–1023px). */
  overflow-x: clip;
}

body.ts-v10 .site-container,
body.ts-v10 .container-tight {
  width: 100%;
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: var(--ts-container-px);
}

/* ── Starry background ── */
body.ts-v10 .starry-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

body.ts-v10 .starry-bg__fallback {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    #001830 0%,
    #002038 22%,
    #002c50 48%,
    #084878 74%,
    #002848 100%
  );
}

body.ts-v10 .starry-bg__canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

body.ts-v10 main,
body.ts-v10 .ts-v10-footer,
body.ts-v10 .ts-v10-announce {
  position: relative;
  z-index: 1;
}

/* Template-part wrapper only wraps announce + nav — don't trap sticky in a short box. */
body.ts-v10 :is(header, div).wp-block-template-part:has(.ts-v10-header) {
  display: contents;
}

/* ── Typography utilities ── */
body.ts-v10 .heading-hero {
  font-size: clamp(2.25rem, 5vw, 4.5rem);
  font-weight: 700;
  line-height: 1.11;
  letter-spacing: -0.06em;
  color: rgba(255, 255, 255, 0.95);
}

body.ts-v10 .heading-section {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.17;
  letter-spacing: -0.03em;
  color: rgba(255, 255, 255, 0.95);
}

body.ts-v10 .heading-card {
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: -0.03em;
  color: rgba(255, 255, 255, 0.95);
}

body.ts-v10 .body-lg {
  font-size: 1.125rem;
  line-height: 1.56;
  color: var(--ts-body-text);
}

body.ts-v10 .body-md {
  font-size: 1rem;
  line-height: 1.5;
  color: var(--ts-body-text);
}

body.ts-v10 .body-sm {
  font-size: 0.875rem;
  line-height: 1.5;
  color: var(--ts-body-text);
}

body.ts-v10 .eyebrow {
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.55);
}

body.ts-v10 .text-gradient {
  background: linear-gradient(
    90deg,
    var(--accent-light-start) 0%,
    var(--accent-light-end) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}

body.ts-v10 .logo-text {
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.95);
  text-decoration: none;
}

/* ── Buttons ── */
body.ts-v10 .ts-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 52px;
  padding: 0 2rem;
  border-radius: 9999px;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition:
    opacity 0.2s,
    box-shadow 0.3s,
    background 0.2s,
    border-color 0.2s;
}

body.ts-v10 .ts-btn--primary {
  color: #fff;
  background: linear-gradient(
    90deg,
    var(--btn-start) 0%,
    var(--btn-mid) 50%,
    var(--btn-end) 100%
  );
  box-shadow:
    0 2px 16px rgba(0, 56, 104, 0.35),
    0 0 32px rgba(72, 136, 184, 0.15);
}

body.ts-v10 .ts-btn--primary:hover {
  opacity: 0.92;
  box-shadow:
    0 4px 24px rgba(0, 56, 104, 0.45),
    0 0 48px rgba(80, 152, 200, 0.22);
}

body.ts-v10 .ts-btn--secondary {
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.22);
}

body.ts-v10 .ts-btn--secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.35);
}

body.ts-v10 .glass-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  backdrop-filter: blur(12px);
}

body.ts-v10 .badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  padding: 0.5rem 1rem;
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
}

body.ts-v10 .hero-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.375rem;
  min-height: 26px;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.12);
  padding: 0.3125rem 0.75rem 0.3125rem 0.625rem;
  font-size: 12px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.01em;
  color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
}

body.ts-v10 .hero-badge > span {
  display: inline-flex;
  align-items: center;
  line-height: 1;
}

body.ts-v10 .hero-badge svg {
  display: block;
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

@media (min-width: 768px) {
  body.ts-v10 .hero-badge {
    gap: 0.5rem;
    min-height: 36px;
    padding: 0.5rem 1rem 0.5rem 0.75rem;
    font-size: 14px;
  }

  body.ts-v10 .hero-badge svg {
    width: 20px;
    height: 20px;
  }
}

body.ts-v10 .stat-value {
  margin: 0;
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

@media (min-width: 768px) {
  body.ts-v10 .stat-value {
    font-size: 2rem;
  }
}

body.ts-v10 .link-accent {
  color: var(--accent-light-start);
  text-decoration: none;
}

body.ts-v10 .link-accent:hover {
  color: var(--accent-light-end);
}

body.ts-v10 .link-arrow {
  font-size: 1rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
}

body.ts-v10 .link-arrow:hover {
  color: rgba(255, 255, 255, 0.95);
}

@keyframes ts-marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@keyframes ts-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}

@keyframes ts-float-subtle {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-3px);
  }
}

body.ts-v10 .animate-float {
  animation: ts-float 4s ease-in-out infinite;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

body.ts-v10 .hero-vials-glow {
  position: absolute;
  left: 50%;
  bottom: 0;
  width: min(115%, var(--ts-hero-visual-width, 720px));
  height: 88%;
  transform: translateX(-50%);
  border-radius: 50%;
  background: radial-gradient(
    ellipse 100% 100% at 50% 100%,
    rgba(72, 128, 176, 0.2) 0%,
    rgba(8, 72, 120, 0.14) 32%,
    rgba(0, 44, 80, 0.12) 55%,
    transparent 82%
  );
  filter: blur(48px);
}

body.ts-v10 .precision-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 0.75rem;
  background: linear-gradient(
    95deg,
    rgba(0, 56, 104, 0.28) 16%,
    rgba(72, 136, 184, 0.22) 69%
  );
  padding: 0.375rem;
}

@media (min-width: 1024px) {
  body.ts-v10 .precision-icon {
    width: 3rem;
    height: 3rem;
    padding: 0.5rem;
  }
}

/* ── Announcement bar ── */
body.ts-v10 .ts-v10-announce {
  --ts-announce-bg: var(--btn-end);
  --ts-announce-fg: rgba(255, 255, 255, 0.95);
  --ts-announce-fg-label: rgba(255, 255, 255, 0.82);
  --ts-announce-fg-muted: rgba(255, 255, 255, 0.72);
  --ts-announce-dot: rgba(255, 255, 255, 0.42);
  --ts-announce-link: #ffffff;
  --ts-announce-border: rgba(255, 255, 255, 0.16);

  position: relative;
  z-index: 50;
  overflow: hidden;
  background: var(--ts-announce-bg);
  border-bottom: 1px solid var(--ts-announce-border);
  padding-block: 0.625rem;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, sans-serif;
}

body.ts-v10 .ts-v10-announce__static {
  display: none;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.375rem 0.5rem;
  text-align: center;
}

body.ts-v10 .ts-v10-announce__segment {
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  line-height: 1.4;
  color: var(--ts-announce-fg);
}

body.ts-v10 .ts-v10-announce__segment--label {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ts-announce-fg-label);
}

body.ts-v10 .ts-v10-announce__segment--muted {
  color: var(--ts-announce-fg-muted);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}

body.ts-v10 .ts-v10-announce__dot {
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1;
  color: var(--ts-announce-dot);
  user-select: none;
}

body.ts-v10 .ts-v10-announce__link {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--ts-announce-link);
  text-decoration: none;
  transition: color 0.15s ease;
}

body.ts-v10 .ts-v10-announce__link:hover {
  color: rgba(255, 255, 255, 0.82);
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

body.ts-v10 .ts-v10-announce__marquee {
  display: block;
  overflow: hidden;
  white-space: nowrap;
}

body.ts-v10 .ts-v10-announce__track {
  display: flex;
  flex-wrap: nowrap;
  width: max-content;
  animation: ts-marquee 38s linear infinite;
}

body.ts-v10 .ts-v10-announce__item {
  display: inline-flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 0.375rem;
  margin-inline: 1.75rem;
  white-space: nowrap;
}

@media (min-width: 1024px) {
  body.ts-v10 .ts-v10-announce {
    display: flex;
    align-items: center;
    padding-block: 0.5625rem;
    min-height: 0;
  }

  body.ts-v10 .ts-v10-announce__static {
    display: flex;
    align-items: center;
    width: 100%;
    min-height: 0;
    padding-block: 0;
  }

  body.ts-v10 .ts-v10-announce__inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    align-items: center;
    width: 100%;
    min-height: 0;
    column-gap: clamp(2rem, 6vw, 4rem);
  }

  body.ts-v10 .ts-v10-announce__group {
    display: inline-flex;
    align-items: center;
    flex-wrap: nowrap;
    gap: 0.5rem;
    min-width: 0;
    white-space: nowrap;
  }

  body.ts-v10 .ts-v10-announce__group--brand {
    justify-self: start;
    gap: 0.875rem;
  }

  body.ts-v10 .ts-v10-announce__group--shipping {
    justify-self: center;
  }

  body.ts-v10 .ts-v10-announce__group--support {
    justify-self: end;
    gap: 0.625rem;
  }

  body.ts-v10 .ts-v10-announce__divider {
    display: none;
  }

  body.ts-v10 .ts-v10-announce__dot--inline {
    font-size: 0.5625rem;
    line-height: 1;
    color: rgba(255, 255, 255, 0.38);
  }

  body.ts-v10 .ts-v10-announce__static .ts-v10-announce__segment {
    font-size: 0.625rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    line-height: 1;
    color: var(--ts-announce-fg);
  }

  body.ts-v10 .ts-v10-announce__static .ts-v10-announce__segment--label {
    font-weight: 800;
    letter-spacing: 0.12em;
    color: var(--ts-announce-fg);
  }

  body.ts-v10 .ts-v10-announce__static .ts-v10-announce__segment--muted {
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: none;
    color: var(--ts-announce-fg-muted);
  }

  body.ts-v10 .ts-v10-announce__static .ts-v10-announce__link {
    font-size: 0.625rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    line-height: 1;
    text-transform: lowercase;
  }

  body.ts-v10 .ts-v10-announce__marquee {
    display: none;
  }
}

@media (max-width: 1023px) {
  body.ts-v10 .ts-v10-announce {
    padding-block: 0.3125rem;
  }

  body.ts-v10 .ts-v10-announce__static {
    display: none;
  }

  body.ts-v10 .ts-v10-announce__item {
    margin-inline: 1.125rem;
    gap: 0.3125rem;
  }

  body.ts-v10 .ts-v10-announce__marquee {
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, sans-serif;
    text-transform: uppercase;
  }

  body.ts-v10 .ts-v10-announce__marquee .ts-v10-announce__segment {
    font-size: 0.625rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    line-height: 1.2;
    color: var(--ts-announce-fg);
  }

  body.ts-v10 .ts-v10-announce__marquee .ts-v10-announce__segment--label {
    font-size: 0.625rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    color: var(--ts-announce-fg-label);
  }

  body.ts-v10 .ts-v10-announce__marquee .ts-v10-announce__segment--muted {
    font-size: 0.625rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    color: var(--ts-announce-fg-muted);
  }

  body.ts-v10 .ts-v10-announce__marquee .ts-v10-announce__link {
    font-size: 0.625rem;
    font-weight: 700;
    letter-spacing: 0.06em;
  }

  body.ts-v10 .ts-v10-announce__marquee .ts-v10-announce__dot {
    font-size: 0.5625rem;
  }
}

@media (max-width: 1023px) and (prefers-reduced-motion: reduce) {
  body.ts-v10 .ts-v10-announce {
    padding-block: 0.375rem;
  }

  body.ts-v10 .ts-v10-announce__marquee {
    display: none;
  }

  body.ts-v10 .ts-v10-announce__static {
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-inline: var(--ts-container-px);
    text-align: left;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, sans-serif;
  }

  body.ts-v10 .ts-v10-announce__inner {
    display: inline-flex;
    align-items: center;
    flex-wrap: nowrap;
    gap: 0.625rem;
    min-width: max-content;
  }

  body.ts-v10 .ts-v10-announce__group {
    display: inline-flex;
    align-items: center;
    flex-wrap: nowrap;
    gap: 0.375rem;
    flex-shrink: 0;
  }

  body.ts-v10 .ts-v10-announce__divider {
    display: block;
    flex-shrink: 0;
    width: 1px;
    height: 0.875rem;
    background: rgba(255, 255, 255, 0.28);
  }

  body.ts-v10 .ts-v10-announce__static::-webkit-scrollbar {
    display: none;
  }

  body.ts-v10 .ts-v10-announce__static .ts-v10-announce__segment {
    font-size: 0.625rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    flex-shrink: 0;
    white-space: nowrap;
  }

  body.ts-v10 .ts-v10-announce__static .ts-v10-announce__segment--label {
    font-weight: 800;
    letter-spacing: 0.12em;
  }

  body.ts-v10 .ts-v10-announce__static .ts-v10-announce__segment--muted {
    font-size: 0.625rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: none;
  }

  body.ts-v10 .ts-v10-announce__static .ts-v10-announce__link {
    font-size: 0.625rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: lowercase;
    flex-shrink: 0;
    white-space: nowrap;
  }
}

/* ── Header ── */
body.ts-v10 .ts-v10-header {
  position: sticky;
  top: var(--ts-header-sticky-top, 0);
  z-index: 40;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  /* No backdrop-filter — it creates a fixed-position containing block and breaks the mobile nav overlay. */
  background: rgba(0, 44, 80, 0.97);
  padding-block: 0 !important;
  box-shadow: 0 4px 24px rgba(0, 24, 48, 0.35);
}

body.ts-v10 .ts-v10-header__inner {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 1rem;
  position: relative;
  min-height: 4rem;
  padding-block: 0 !important;
  margin-block: 0 !important;
}

body.ts-v10 .ts-v10-header__inner.is-layout-flex,
body.ts-v10 .ts-v10-header__inner.is-layout-flow {
  display: grid !important;
}

@media (min-width: 768px) {
  body.ts-v10 .ts-v10-header__inner {
    min-height: 5.5rem;
  }
}

/* Let logo + nav participate in the grid (they live inside core/html). */
body.ts-v10 .ts-v10-header__inner > .wp-block-html {
  display: contents;
}

body.ts-v10 .ts-v10-header__inner .logo-text {
  grid-column: 1;
  justify-self: start;
  align-self: center;
  display: flex;
  align-items: center;
  white-space: nowrap;
  min-height: 4rem;
  margin: 0;
}

@media (min-width: 768px) {
  body.ts-v10 .ts-v10-header__inner .logo-text {
    min-height: 5.5rem;
  }
}

body.ts-v10 .ts-v10-header__nav {
  grid-column: 2;
  display: none;
  align-items: center;
  align-self: center;
  justify-content: center;
  gap: 2rem;
  margin: 0;
  padding: 0;
  list-style: none;
  min-height: 4rem;
}

@media (min-width: 768px) {
  body.ts-v10 .ts-v10-header__nav {
    display: flex;
    min-height: 5.5rem;
  }
}

body.ts-v10 .ts-v10-header__nav a {
  font-size: 1rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  white-space: nowrap;
}

body.ts-v10 .ts-v10-header__nav a:hover {
  opacity: 0.8;
}

body.ts-v10 .ts-v10-header__actions {
  grid-column: 3;
  justify-self: end;
  align-self: center;
  display: flex !important;
  align-items: center !important;
  justify-content: center;
  gap: 0.5rem;
  margin: 0 !important;
  padding: 0 !important;
  flex-wrap: nowrap;
  line-height: 1;
  min-height: 4rem;
}

@media (min-width: 768px) {
  body.ts-v10 .ts-v10-header__actions {
    gap: 0.75rem;
    min-height: 5.5rem;
  }
}

body.ts-v10 .ts-v10-header__actions > *,
body.ts-v10 .ts-v10-header__actions .wp-block-woocommerce-mini-cart,
body.ts-v10 .ts-v10-header__actions .wp-block-navigation {
  display: flex !important;
  align-items: center !important;
  margin: 0 !important;
  line-height: 1 !important;
}

body.ts-v10 .ts-v10-header__actions > .wp-block-html {
  display: flex !important;
  align-items: center !important;
  margin: 0 !important;
}

body.ts-v10 .ts-v10-header__actions .wc-block-mini-cart {
  display: flex !important;
  align-items: center !important;
  line-height: 1 !important;
  vertical-align: middle !important;
}

/* Unified header icon controls */
body.ts-v10 .ts-v10-header__actions {
  --ts-header-icon-btn: 2.5rem;
  --ts-header-icon-glyph: 1.25rem;
  --ts-header-icon-bag-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 2 3 6v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V6l-3-4Z'/%3E%3Cpath d='M3 6h18'/%3E%3Cpath d='M16 10a4 4 0 0 1-8 0'/%3E%3C/svg%3E");
  --ts-header-icon-menu-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='4' x2='20' y1='6' y2='6'/%3E%3Cline x1='4' x2='20' y1='12' y2='12'/%3E%3Cline x1='4' x2='20' y1='18' y2='18'/%3E%3C/svg%3E");
}

/* Unified icon hit targets — cart, account, mobile menu */
body.ts-v10 .ts-v10-header__actions .ts-v10-icon-btn,
body.ts-v10 .ts-v10-header__actions .wc-block-mini-cart__button,
body.ts-v10
  .ts-v10-header__actions
  button.wp-block-navigation__responsive-container-open {
  box-sizing: border-box !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: var(--ts-header-icon-btn) !important;
  height: var(--ts-header-icon-btn) !important;
  min-width: var(--ts-header-icon-btn) !important;
  min-height: var(--ts-header-icon-btn) !important;
  max-width: var(--ts-header-icon-btn) !important;
  max-height: var(--ts-header-icon-btn) !important;
  padding: 0 !important;
  margin: 0 !important;
  border: none !important;
  border-radius: 9999px !important;
  background: transparent !important;
  color: rgba(255, 255, 255, 0.9) !important;
  font-size: var(--ts-header-icon-glyph) !important;
  line-height: 1 !important;
  gap: 0 !important;
  cursor: pointer;
  flex-shrink: 0;
  transition: opacity 0.2s;
}

body.ts-v10 .ts-v10-header__actions .wc-block-mini-cart__button {
  position: relative;
  overflow: visible !important;
}

/* Match account icon — replace WC bag with same lucide-style 24×24 glyph */
body.ts-v10 .ts-v10-header__actions .wc-block-mini-cart__quantity-badge > svg,
body.ts-v10
  .ts-v10-header__actions
  .wc-block-mini-cart__quantity-badge
  .wc-block-mini-cart__icon {
  display: none !important;
}

body.ts-v10
  .ts-v10-header__actions
  .wc-block-mini-cart__quantity-badge::before {
  content: '';
  flex-shrink: 0;
  width: var(--ts-header-icon-glyph);
  height: var(--ts-header-icon-glyph);
  background-color: currentColor;
  -webkit-mask-image: var(--ts-header-icon-bag-mask);
  mask-image: var(--ts-header-icon-bag-mask);
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
}

body.ts-v10 .ts-v10-header__actions .ts-v10-icon-btn svg {
  width: var(--ts-header-icon-glyph) !important;
  height: var(--ts-header-icon-glyph) !important;
  min-width: var(--ts-header-icon-glyph) !important;
  min-height: var(--ts-header-icon-glyph) !important;
  max-width: var(--ts-header-icon-glyph) !important;
  max-height: var(--ts-header-icon-glyph) !important;
  display: block;
  margin: 0 !important;
  flex-shrink: 0;
}

/* Match bag icon — lucide Menu at stroke-width 2 */
body.ts-v10
  .ts-v10-header__actions
  .wp-block-navigation__responsive-container-open
  svg {
  display: none !important;
}

body.ts-v10
  .ts-v10-header__actions
  .wp-block-navigation__responsive-container-open::before {
  content: '';
  flex-shrink: 0;
  width: var(--ts-header-icon-glyph);
  height: var(--ts-header-icon-glyph);
  background-color: currentColor;
  -webkit-mask-image: var(--ts-header-icon-menu-mask);
  mask-image: var(--ts-header-icon-menu-mask);
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
}

body.ts-v10 .ts-v10-header__actions .wc-block-mini-cart__amount {
  display: none !important;
}

body.ts-v10 .ts-v10-header__actions .wc-block-mini-cart__quantity-badge {
  position: static !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: var(--ts-header-icon-glyph) !important;
  height: var(--ts-header-icon-glyph) !important;
  margin: 0 !important;
  padding: 0 !important;
  line-height: 1 !important;
}

body.ts-v10 .ts-v10-header__actions .wc-block-mini-cart__badge {
  position: absolute !important;
  top: 0.0625rem !important;
  right: 0.0625rem !important;
  left: auto !important;
  margin: 0 !important;
  transform: none !important;
  min-width: 1.125rem !important;
  height: 1.125rem !important;
  padding: 0 0.3125rem !important;
  font-size: 0.6875rem !important;
  font-weight: 700 !important;
  line-height: 1 !important;
  letter-spacing: 0 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  background: linear-gradient(
    135deg,
    var(--btn-mid) 0%,
    var(--btn-end) 100%
  ) !important;
  color: #fff !important;
  border: 1.5px solid rgba(0, 44, 80, 0.85) !important;
  border-radius: 9999px !important;
  box-shadow: 0 1px 4px rgba(0, 44, 80, 0.35);
  z-index: 2;
}

body.ts-v10 .ts-v10-header__actions .wc-block-mini-cart__badge:empty,
body.ts-v10 .ts-v10-header__actions .wc-block-mini-cart__badge[hidden] {
  display: none !important;
}

body.ts-v10 .ts-v10-header__actions .wc-block-mini-cart__button:hover,
body.ts-v10 .ts-v10-header__actions .wc-block-mini-cart__button:focus-visible {
  background: rgba(255, 255, 255, 0.08) !important;
  opacity: 1;
}

@media (max-width: 767px) {
  /* Mobile header actions: bag + hamburger only */
  body.ts-v10 .ts-v10-header__actions > .wp-block-html,
  body.ts-v10 .ts-v10-header__actions .ts-v10-icon-btn,
  body.ts-v10 .ts-v10-header__actions .ts-v10-icon-btn--account {
    display: none !important;
  }

  body.ts-v10 .ts-v10-header__actions > .wp-block-woocommerce-mini-cart,
  body.ts-v10 .ts-v10-header__actions > .wp-block-navigation {
    display: flex !important;
  }

  body.ts-v10
    .ts-v10-header__actions
    .wp-block-navigation__responsive-container-open {
    display: flex !important;
    touch-action: manipulation;
    cursor: pointer;
    position: relative;
    z-index: 2;
  }

  body.ts-v10 .ts-v10-header__inner {
    grid-template-columns: 1fr auto;
  }

  body.ts-v10 .ts-v10-header__inner .logo-text {
    grid-column: 1;
  }

  body.ts-v10 .ts-v10-header__actions {
    grid-column: 2;
    gap: 0.5rem;
  }
}

@media (min-width: 768px) {
  body.ts-v10 .ts-v10-header__actions > .wp-block-html {
    display: flex !important;
  }
}

body.ts-v10
  .ts-v10-header__actions
  button.wp-block-navigation__responsive-container-open:hover,
body.ts-v10 .ts-v10-header__actions .ts-v10-icon-btn:hover {
  opacity: 0.8;
  background: transparent !important;
}

body.ts-v10 .ts-v10-header__actions .ts-v10-icon-btn {
  text-decoration: none;
}

/* Mobile menu block — hamburger only below md */
body.ts-v10 .ts-v10-header__actions .wp-block-navigation {
  display: none;
  align-items: center;
  margin: 0 !important;
  padding: 0 !important;
}

@media (max-width: 767px) {
  body.ts-v10 .ts-v10-header__actions .wp-block-navigation {
    display: flex !important;
  }
}

@media (min-width: 768px) {
  body.ts-v10 .ts-v10-header__actions .wp-block-navigation,
  body.ts-v10 .ts-v10-header__actions .ts-v10-mobile-nav {
    display: none !important;
    width: 0 !important;
    min-width: 0 !important;
    overflow: hidden !important;
    margin: 0 !important;
    padding: 0 !important;
    pointer-events: none !important;
  }
}

/* ── Mobile side drawer — minimal, clean, well-spaced ── */
@media (max-width: 767px) {
  body.ts-v10.ts-v10-drawer-open {
    overflow: hidden;
    touch-action: none;
  }

  body.ts-v10:not(.ts-v10-drawer-open)
    .wp-block-navigation__responsive-container:not(.is-menu-open) {
    display: none !important;
  }

  body.ts-v10.ts-v10-drawer-open .ts-v10-header {
    z-index: 100002;
  }

  body.ts-v10.ts-v10-drawer-open .wp-block-navigation__responsive-container {
    --ts-drawer-pad: 1.75rem;

    position: fixed !important;
    inset: 0 !important;
    z-index: 100000 !important;
    display: flex !important;
    flex-direction: row;
    align-items: stretch;
    justify-content: flex-end;
    width: 100vw !important;
    max-width: none !important;
    height: 100dvh !important;
    min-height: 100vh !important;
    padding: 0 !important;
    overflow: hidden !important;
    background: rgba(0, 32, 56, 0.45) !important;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    animation: ts-v10-drawer-backdrop-in 0.2s ease-out forwards !important;
  }

  body.ts-v10.ts-v10-drawer-open
    .wp-block-navigation__responsive-container
    .wp-block-navigation__responsive-close {
    position: relative;
    flex: 0 0 auto;
    display: flex !important;
    flex-direction: column !important;
    width: min(20rem, 88vw) !important;
    max-width: 88vw !important;
    height: 100% !important;
    max-height: 100dvh !important;
    margin: 0 !important;
    background: #fafbfc !important;
    box-shadow: -8px 0 32px rgba(0, 24, 48, 0.12);
    animation: ts-v10-drawer-panel-in 0.26s cubic-bezier(0.22, 1, 0.36, 1)
      forwards !important;
    overflow: hidden;
    min-height: 0;
  }

  body.ts-v10.ts-v10-drawer-open
    .wp-block-navigation__responsive-container
    .wp-block-navigation__responsive-dialog {
    flex: 1 1 auto !important;
    display: flex !important;
    flex-direction: column !important;
    min-height: 0 !important;
    height: 100% !important;
    width: 100% !important;
    margin-top: 0 !important;
  }

  body.ts-v10.ts-v10-drawer-open
    .wp-block-navigation__responsive-container
    .wp-block-navigation__responsive-container-content {
    flex: 1 1 auto !important;
    display: flex !important;
    flex-direction: column !important;
    min-height: 0 !important;
    height: 100% !important;
    overflow: hidden !important;
    gap: 0;
    padding: calc(3.25rem + env(safe-area-inset-top, 0px)) var(--ts-drawer-pad)
      calc(1.25rem + env(safe-area-inset-bottom, 0px)) !important;
  }

  body.ts-v10.ts-v10-drawer-open
    .wp-block-navigation__responsive-container
    .wp-block-navigation__responsive-container-close {
    position: absolute;
    top: calc(1rem + env(safe-area-inset-top, 0px));
    right: 1.25rem;
    left: auto;
    z-index: 4;
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 2.25rem;
    height: 2.25rem;
    padding: 0 !important;
    border: none !important;
    border-radius: 9999px !important;
    background: rgba(0, 44, 80, 0.06) !important;
    color: #4a5568 !important;
    box-shadow: none !important;
    transition: background-color 0.15s ease;
  }

  body.ts-v10.ts-v10-drawer-open
    .wp-block-navigation__responsive-container
    .wp-block-navigation__responsive-container-close:hover {
    background: rgba(0, 44, 80, 0.1) !important;
  }

  body.ts-v10.ts-v10-drawer-open
    .wp-block-navigation__responsive-container
    .wp-block-navigation__responsive-container-close
    svg {
    width: 1rem !important;
    height: 1rem !important;
    fill: currentColor !important;
  }

  body.ts-v10 .ts-v10-mobile-drawer-header {
    flex: 0 0 auto;
    order: 1;
    margin: 0 0 2rem;
    padding: 0;
    border: none;
  }

  body.ts-v10 .ts-v10-mobile-drawer-header__brand {
    display: block;
    margin: 0;
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #6b7280;
    line-height: 1.2;
  }

  body.ts-v10.ts-v10-drawer-open
    .wp-block-navigation__responsive-container
    .wp-block-navigation__container {
    flex: 1 1 auto;
    order: 2;
    display: flex !important;
    flex-direction: column !important;
    flex-wrap: nowrap !important;
    justify-content: center !important;
    align-items: stretch !important;
    gap: 0.25rem !important;
    min-height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: visible !important;
    list-style: none !important;
  }

  body.ts-v10.ts-v10-drawer-open
    .wp-block-navigation__responsive-container
    .wp-block-navigation-item {
    width: 100%;
    margin: 0 !important;
    flex: 0 0 auto;
  }

  body.ts-v10.ts-v10-drawer-open
    .wp-block-navigation__responsive-container
    .wp-block-navigation-item__content {
    display: block !important;
    width: 100%;
    min-height: 2.75rem;
    padding: 0.75rem 0 !important;
    border: none !important;
    border-radius: 0 !important;
    background: transparent !important;
    font-size: 1.125rem !important;
    font-weight: 500 !important;
    line-height: 1.3 !important;
    letter-spacing: -0.02em;
    color: #1a2332 !important;
    text-decoration: none !important;
    transition: color 0.15s ease;
  }

  body.ts-v10.ts-v10-drawer-open
    .wp-block-navigation__responsive-container
    .wp-block-navigation-item__content:hover,
  body.ts-v10.ts-v10-drawer-open
    .wp-block-navigation__responsive-container
    .wp-block-navigation-item__content:focus-visible {
    color: #002c50 !important;
    background: transparent !important;
  }

  body.ts-v10.ts-v10-drawer-open
    .wp-block-navigation__responsive-container
    .wp-block-navigation-item__content[aria-current='page'] {
    color: #002c50 !important;
    font-weight: 600 !important;
  }

  body.ts-v10.ts-v10-drawer-open
    .wp-block-navigation__responsive-container
    .ts-mobile-support {
    flex: 0 0 auto;
    order: 3;
    margin: 2rem 0 0 !important;
    padding: 1.5rem 0 0 !important;
    border-top: 1px solid rgba(0, 44, 80, 0.08) !important;
  }

  body.ts-v10.ts-v10-drawer-open
    .wp-block-navigation__responsive-container
    .ts-mobile-support__title {
    margin: 0 0 0.625rem !important;
    font-size: 0.6875rem !important;
    font-weight: 600 !important;
    letter-spacing: 0.12em !important;
    text-transform: uppercase !important;
    color: #9ca3af !important;
  }

  body.ts-v10.ts-v10-drawer-open
    .wp-block-navigation__responsive-container
    .ts-footer-support-card {
    display: flex !important;
    flex-direction: column !important;
    gap: 0.25rem !important;
    padding: 0 !important;
    border: none !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
  }

  body.ts-v10.ts-v10-drawer-open
    .wp-block-navigation__responsive-container
    .ts-footer-support-card__email {
    font-size: 0.9375rem !important;
    font-weight: 500 !important;
    color: #003868 !important;
    text-decoration: none !important;
    line-height: 1.4;
  }

  body.ts-v10.ts-v10-drawer-open
    .wp-block-navigation__responsive-container
    .ts-footer-support-card__email:hover {
    color: #002c50 !important;
  }

  body.ts-v10.ts-v10-drawer-open
    .wp-block-navigation__responsive-container
    .ts-footer-support-card__hours {
    margin: 0 !important;
    font-size: 0.8125rem !important;
    color: #9ca3af !important;
    line-height: 1.4;
  }

  body.ts-v10.ts-v10-drawer-open
    .wp-block-navigation__responsive-container
    .ts-mobile-support__lead {
    display: none !important;
  }

  body.ts-v10.ts-v10-drawer-open
    .wp-block-navigation__responsive-container
    .ts-v10-mobile-drawer-footer,
  body.ts-v10.ts-v10-drawer-open
    .wp-block-navigation__responsive-container
    .ts-mobile-account {
    flex: 0 0 auto;
    order: 4;
    margin: 1.25rem 0 0 !important;
    padding: 0 !important;
  }

  body.ts-v10.ts-v10-drawer-open
    .wp-block-navigation__responsive-container
    .ts-mobile-account-list {
    display: flex !important;
    flex-direction: column !important;
    gap: 0.5rem !important;
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
  }

  body.ts-v10.ts-v10-drawer-open
    .wp-block-navigation__responsive-container
    .ts-mobile-account-link {
    display: flex !important;
    align-items: center;
    justify-content: center;
    min-height: 2.875rem;
    padding: 0.75rem 1.25rem !important;
    border-radius: 9999px !important;
    font-size: 1rem !important;
    font-weight: 600 !important;
    color: #1a2332 !important;
    text-decoration: none !important;
    transition: opacity 0.15s ease;
  }

  body.ts-v10.ts-v10-drawer-open
    .wp-block-navigation__responsive-container
    .ts-mobile-account-link[data-variant='signin'],
  body.ts-v10.ts-v10-drawer-open
    .wp-block-navigation__responsive-container
    .ts-mobile-account-link[data-variant='account'] {
    background: linear-gradient(
      90deg,
      var(--btn-start) 0%,
      var(--btn-mid) 50%,
      var(--btn-end) 100%
    ) !important;
    color: #fff !important;
    font-weight: 600 !important;
    box-shadow: none !important;
    border: none !important;
  }

  body.ts-v10.ts-v10-drawer-open
    .wp-block-navigation__responsive-container
    .ts-mobile-account-link[data-variant='signin']:hover,
  body.ts-v10.ts-v10-drawer-open
    .wp-block-navigation__responsive-container
    .ts-mobile-account-link[data-variant='account']:hover {
    opacity: 0.9;
  }

  body.ts-v10.ts-v10-drawer-open
    .wp-block-navigation__responsive-container
    .ts-mobile-account-link[data-variant='logout'] {
    min-height: auto;
    padding: 0.5rem !important;
    background: transparent !important;
    color: #9ca3af !important;
    font-size: 0.875rem !important;
    font-weight: 500 !important;
  }

  body.ts-v10.ts-v10-drawer-open
    .wp-block-navigation__responsive-container
    .ts-mobile-account-link[data-variant='logout']:hover {
    color: #002c50 !important;
  }

  body.ts-v10.admin-bar.ts-v10-drawer-open
    .wp-block-navigation__responsive-container
    .wp-block-navigation__responsive-container-content {
    padding-top: calc(
      3.25rem + var(--wp-admin--admin-bar--height, 46px)
    ) !important;
  }

  body.ts-v10.admin-bar.ts-v10-drawer-open
    .wp-block-navigation__responsive-container
    .wp-block-navigation__responsive-container-close {
    top: calc(1rem + var(--wp-admin--admin-bar--height, 46px));
  }

  @media (max-height: 640px) {
    body.ts-v10.ts-v10-drawer-open
      .wp-block-navigation__responsive-container
      .wp-block-navigation__responsive-container-content {
      padding-top: calc(2.75rem + env(safe-area-inset-top, 0px)) !important;
      padding-bottom: calc(0.875rem + env(safe-area-inset-bottom, 0px)) !important;
    }

    body.ts-v10 .ts-v10-mobile-drawer-header {
      margin-bottom: 1.25rem;
    }

    body.ts-v10.ts-v10-drawer-open
      .wp-block-navigation__responsive-container
      .wp-block-navigation-item__content {
      min-height: 2.5rem;
      padding-block: 0.625rem !important;
      font-size: 1.0625rem !important;
    }

    body.ts-v10.ts-v10-drawer-open
      .wp-block-navigation__responsive-container
      .ts-mobile-support {
      margin-top: 1.25rem !important;
      padding-top: 1rem !important;
    }

    body.ts-v10.ts-v10-drawer-open
      .wp-block-navigation__responsive-container
      .ts-mobile-account {
      margin-top: 1rem !important;
    }
  }
}


@keyframes ts-v10-drawer-backdrop-in {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes ts-v10-drawer-panel-in {
  from {
    transform: translateX(100%);
  }

  to {
    transform: translateX(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  body.ts-v10.ts-v10-drawer-open .wp-block-navigation__responsive-container,
  body.ts-v10.ts-v10-drawer-open
    .wp-block-navigation__responsive-container
    .wp-block-navigation__responsive-close {
    animation: none !important;
  }
}

@media (min-width: 768px) {
  body.ts-v10 .ts-v10-header .wp-block-navigation__container {
    display: none !important;
  }
}

/* ── Footer ── */
body.ts-v10 .ts-v10-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: color-mix(in srgb, var(--brand-dark) 80%, transparent);
  backdrop-filter: blur(8px);
  padding: 2.5rem 0;
}

body.ts-v10 .ts-v10-footer__grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  body.ts-v10 .ts-v10-footer__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  body.ts-v10 .ts-v10-footer__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

body.ts-v10 .ts-v10-footer__title {
  margin-bottom: 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: #fff;
}

body.ts-v10 .ts-v10-footer__links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

body.ts-v10 .ts-v10-footer__links a {
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  font-size: 0.875rem;
}

body.ts-v10 .ts-v10-footer__links a:hover {
  color: rgba(255, 255, 255, 0.9);
}

body.ts-v10 .ts-v10-footer__disclaimer {
  margin-top: 2.5rem;
  padding: 1.5rem;
  border-radius: 1rem;
}

body.ts-v10 .ts-v10-footer__disclaimer-title {
  margin: 0 0 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

body.ts-v10 .ts-v10-footer__copy {
  margin-top: 1.5rem;
  text-align: center;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.65);
}

/* ── Hero ── */
body.ts-v10 .ts-v10-hero {
  --ts-hero-visual-width: 720px;
  padding-block: 0;
}

@media (min-width: 768px) {
  body.ts-v10 .ts-v10-hero {
    --ts-hero-visual-width: 640px;
  }
}

body.ts-v10 .ts-v10-hero__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: calc(100svh - 88px);
  padding-top: 130px;
}

@media (min-width: 768px) {
  body.ts-v10 .ts-v10-hero__inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    min-height: 0;
    padding-top: clamp(2rem, 3.5vw, 2.625rem);
    padding-bottom: clamp(2rem, 3.5vw, 2.625rem);
  }
}

@media (min-width: 1024px) {
  body.ts-v10 .ts-v10-hero__inner {
    padding-top: 3.25rem;
    padding-bottom: 3.25rem;
  }
}

body.ts-v10 .ts-v10-hero__copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  text-align: center;
  max-width: 608px;
}

body.ts-v10 .ts-v10-hero__lead {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  width: 100%;
}

@media (min-width: 768px) {
  body.ts-v10 .ts-v10-hero__lead {
    align-items: flex-start;
    gap: 1rem;
  }
}

@media (min-width: 768px) {
  body.ts-v10 .ts-v10-hero__copy {
    align-items: flex-start;
    text-align: left;
    gap: 1.75rem;
    max-width: 35rem;
  }
}

body.ts-v10 .ts-v10-hero__title {
  margin: 0;
  font-size: clamp(2rem, 9vw, 2.375rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: rgba(255, 255, 255, 0.95);
  overflow: visible;
}

body.ts-v10 .ts-v10-hero__title-line {
  display: block;
  overflow: visible;
  padding-bottom: 0.06em;
}

body.ts-v10 .ts-v10-hero__title-line.text-gradient {
  padding-bottom: 0.1em;
}

@media (min-width: 768px) {
  body.ts-v10 .ts-v10-hero__title {
    font-size: clamp(2.5rem, 4.25vw, 3.875rem);
    line-height: 1.11;
    letter-spacing: -0.06em;
  }

  body.ts-v10 .ts-v10-hero__title-line {
    white-space: nowrap;
  }

  body.ts-v10 .ts-v10-hero__title-line.text-gradient {
    padding-bottom: 0.08em;
  }
}

body.ts-v10 .ts-v10-hero__copy .body-lg {
  max-width: 21.25rem;
  margin: 0;
  font-size: 1rem;
  line-height: 1.5;
}

@media (min-width: 768px) {
  body.ts-v10 .ts-v10-hero__copy .body-lg {
    max-width: 25.5rem;
    font-size: 1.0625rem;
    line-height: 1.53;
  }
}

body.ts-v10 .ts-v10-hero__actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  width: 100%;
}

@media (min-width: 640px) {
  body.ts-v10 .ts-v10-hero__actions {
    flex-direction: row;
    width: auto;
  }
}

body.ts-v10 .ts-v10-hero__badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
}

@media (min-width: 768px) {
  body.ts-v10 .ts-v10-hero__badges {
    flex-wrap: nowrap;
    justify-content: flex-start;
    gap: 0.75rem;
  }
}

body.ts-v10 .ts-v10-hero__visual {
  position: relative;
  margin-top: 2rem;
  width: 100%;
  max-width: min(100%, var(--ts-hero-visual-width, 720px));
  aspect-ratio: 1370 / 848;
  height: auto;
}

@media (min-width: 768px) {
  body.ts-v10 .ts-v10-hero__visual {
    margin-top: 0;
    width: var(--ts-hero-visual-width, 640px);
    flex-shrink: 0;
    transform: translateX(1rem);
  }
}

body.ts-v10 .ts-v10-hero__visual .animate-float {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

body.ts-v10 .ts-v10-hero__photo,
body.ts-v10 .ts-v10-hero__visual picture,
body.ts-v10 .ts-v10-hero__visual picture img,
body.ts-v10 .ts-v10-hero__mobile-vial picture,
body.ts-v10 .ts-v10-hero__mobile-vial picture img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
  max-height: 100%;
}

body.ts-v10 .ts-v10-hero__photo,
body.ts-v10 .ts-v10-hero__visual picture img {
  aspect-ratio: 1370 / 848;
  object-fit: contain;
  object-position: center;
}

body.ts-v10 .ts-v10-products,
body.ts-v10 .ts-v10-quality,
body.ts-v10 .ts-v10-precision,
body.ts-v10 .ts-v10-faq,
body.ts-v10 .ts-v10-newsletter {
  content-visibility: auto;
  contain-intrinsic-size: auto 800px;
}

body.ts-v10 .ts-v10-hero__mobile-vials {
  display: none;
}

@media (max-width: 767px) {
  /*
   * Mobile hero spacing strategy:
   * - Full viewport height below announce + header chrome
   * - Top-anchored (flex-start), never vertically centered — tall phones stay aligned with short ones
   * - Width-based clamps (vw) for offset/gaps — SE & 12 Pro share ~375–430px width, so rhythm matches
   */
  body.ts-v10 .ts-v10-hero {
    position: relative;
    z-index: 3;
    overflow: visible;
    /* 4rem header + ~1.375rem announce bar */
    --ts-v10-top-chrome: calc(4rem + 1.375rem + 1px);
    --ts-hero-pad-top: clamp(3.25rem, 2.5rem + 4vw, 4.5rem);
    --ts-hero-pad-bottom: clamp(1.75rem, 1.25rem + 3vw, 2.5rem);
    --ts-hero-stack-gap: clamp(1.125rem, 0.875rem + 1.5vw, 1.375rem);
    --ts-hero-lead-gap: clamp(0.875rem, 0.625rem + 1.25vw, 1.125rem);
    min-height: calc(100svh - var(--ts-v10-top-chrome));
  }

  body.ts-v10 .ts-v10-hero__inner {
    position: relative;
    box-sizing: border-box;
    min-height: calc(100svh - var(--ts-v10-top-chrome));
    padding-top: max(var(--ts-hero-pad-top), env(safe-area-inset-top, 0px));
    padding-bottom: var(--ts-hero-pad-bottom);
    justify-content: flex-start;
    overflow: visible;
  }

  body.ts-v10 .ts-v10-hero__copy {
    position: relative;
    z-index: 2;
    gap: var(--ts-hero-stack-gap);
    width: 100%;
    max-width: 22rem;
  }

  body.ts-v10 .ts-v10-hero__lead {
    gap: var(--ts-hero-lead-gap);
  }

  body.ts-v10 .ts-v10-hero__title {
    font-size: clamp(1.875rem, 8.5vw, 2.375rem);
    line-height: 1.15;
  }

  body.ts-v10 .ts-v10-hero__copy .body-lg {
    max-width: min(21.25rem, 100%);
  }

  body.ts-v10 .ts-v10-hero__actions {
    width: 100%;
    max-width: min(15rem, 100%);
    gap: 0.75rem;
  }

  body.ts-v10 .ts-v10-hero__actions .ts-btn {
    width: 100%;
    min-height: 3.25rem;
    padding-inline: 1.75rem;
    font-weight: 600;
  }

  body.ts-v10 .ts-v10-hero__badges {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, max-content));
    justify-content: center;
    gap: 0.5rem;
    max-width: 100%;
  }

  body.ts-v10 .ts-v10-hero__badges .hero-badge {
    max-width: 100%;
  }

  body.ts-v10 .ts-v10-hero__badges .hero-badge:nth-child(3) {
    grid-column: 1 / -1;
    justify-self: center;
  }

  body.ts-v10 .ts-v10-hero__visual {
    display: none !important;
  }

  body.ts-v10 .ts-v10-hero__mobile-vials {
    display: block;
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    overflow: visible;
  }

  body.ts-v10 .ts-v10-hero__mobile-vial {
    position: absolute;
    filter: drop-shadow(0 12px 28px rgba(0, 24, 48, 0.42));
    will-change: transform;
  }

  body.ts-v10 .ts-v10-hero__mobile-vial img {
    display: block;
    width: 100%;
    height: auto;
    max-width: none;
    object-fit: contain;
    animation: ts-float-subtle 7s ease-in-out infinite;
  }

  body.ts-v10 .ts-v10-hero__mobile-vial--glp3 {
    top: max(calc(var(--ts-hero-pad-top) - 13.25rem), -0.75rem);
    left: 58%;
    width: clamp(3.5rem, 14vw, 4.25rem);
    transform: rotate(10deg) translateX(-50%);
  }

  body.ts-v10 .ts-v10-hero__mobile-vial--glp3 img {
    animation-delay: -0.4s;
  }

  body.ts-v10 .ts-v10-hero__mobile-vial--bpc {
    bottom: clamp(4.75rem, 18vw, 6.25rem);
    left: max(0.25rem, 12vw);
    width: clamp(9.3rem, 42vw, 12rem);
    transform: rotate(-10deg);
    transform-origin: bottom left;
  }

  body.ts-v10 .ts-v10-hero__mobile-vial--bpc img {
    animation-delay: -1.6s;
  }

  body.ts-v10 .ts-v10-hero__mobile-vial--ghk {
    right: clamp(1.25rem, 7vw, 2.25rem);
    left: auto;
    bottom: clamp(-4.5rem, -12vw, -2.75rem);
    width: clamp(10.75rem, 46vw, 13.75rem);
    transform: rotate(8deg);
    transform-origin: bottom right;
    z-index: 4;
  }

  body.ts-v10 .ts-v10-hero__mobile-vial--ghk img {
    animation-delay: -2.8s;
  }

  @media (prefers-reduced-motion: reduce) {
    body.ts-v10 .ts-v10-hero__mobile-vial img {
      animation: none;
    }
  }
}

/* ── Trust features grid ── */
body.ts-v10 .ts-v10-trust__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

body.ts-v10 .ts-v10-trust__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  min-height: 140px;
  padding: 1rem;
  border-radius: 12px;
  text-align: center;
}

body.ts-v10 .ts-v10-trust__icon {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.92);
}

body.ts-v10 .ts-v10-trust__icon svg {
  display: block;
  width: 2rem;
  height: 2rem;
}

body.ts-v10 .ts-v10-trust__card-body {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  min-width: 0;
}

body.ts-v10 .ts-v10-trust__card h3 {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.33;
  letter-spacing: -0.03em;
  color: #fff;
}

body.ts-v10 .ts-v10-trust__card p {
  margin: 0;
  font-size: 0.75rem;
  line-height: 1.5;
  color: var(--ts-body-text);
}

@media (max-width: 767px) {
  body.ts-v10 .ts-v10-trust {
    --ts-trust-gap: clamp(0.5rem, 2vw, 0.75rem);
  }

  body.ts-v10 .ts-v10-section.ts-v10-trust {
    position: relative;
    z-index: 2;
    padding-block: clamp(1rem, 4vw, 1.375rem);
  }

  body.ts-v10 .ts-v10-trust__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--ts-trust-gap);
  }

  body.ts-v10 .ts-v10-trust__card {
    flex-direction: column;
    align-items: center;
    gap: 0.625rem;
    min-height: 8.75rem;
    height: 100%;
    padding: 0.875rem 0.625rem;
    border-radius: 0.75rem;
    text-align: center;
  }

  body.ts-v10 .ts-v10-trust__icon svg {
    width: 1.75rem;
    height: 1.75rem;
  }

  body.ts-v10 .ts-v10-trust__card-body {
    align-items: center;
    gap: 0.25rem;
  }

  body.ts-v10 .ts-v10-trust__card h3 {
    font-size: 0.9375rem;
    line-height: 1.3;
    letter-spacing: -0.02em;
  }

  body.ts-v10 .ts-v10-trust__card p {
    font-size: 0.6875rem;
    line-height: 1.45;
  }
}

@media (min-width: 768px) {
  body.ts-v10 .ts-v10-trust__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }

  body.ts-v10 .ts-v10-trust__card {
    align-items: flex-start;
    min-height: 180px;
    padding: 1.25rem 1.5rem;
    border-radius: 24px;
    text-align: left;
    gap: 1rem;
  }

  body.ts-v10 .ts-v10-trust__icon svg {
    width: 2.5rem;
    height: 2.5rem;
  }

  body.ts-v10 .ts-v10-trust__card-body {
    gap: 0.5rem;
  }

  body.ts-v10 .ts-v10-trust__card p {
    font-size: 1rem;
  }
}

/* ── Featured products (Woo grid) ── */
body.ts-v10 .ts-v10-products__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  max-width: 666px;
  margin-inline: auto;
  text-align: center;
  margin-bottom: 1.5rem;
}

body.ts-v10 .ts-v10-products__head .heading-section {
  margin: 0;
  line-height: 1.1;
}

body.ts-v10 .ts-v10-products__head .body-md {
  margin: 0;
}

body.ts-v10 .ts-v10-products-grid.wp-block-woocommerce-product-collection {
  display: block !important;
  width: 100%;
  max-width: 100%;
  margin-inline: 0;
}

body.ts-v10 .ts-v10-products-grid ul.wc-block-product-template,
body.ts-v10 .ts-v10-products-grid ul.wc-block-product-template.is-flex-container {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(0.75rem, 2vw, 1rem);
  width: 100%;
  margin: 0 !important;
  padding: 0 !important;
  list-style: none;
  flex-wrap: unset !important;
}

body.ts-v10 .ts-v10-products-grid ul.wc-block-product-template.is-flex-container > li {
  width: 100% !important;
  max-width: none !important;
  display: flex !important;
  flex-direction: column;
}

body.ts-v10 .ts-v10-products-grid .wc-block-product {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  width: 100%;
  min-height: 100%;
  margin: 0;
  overflow: hidden;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(12px);
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
}

body.ts-v10 .ts-v10-products-grid .wc-block-product:hover {
  border-color: rgba(255, 255, 255, 0.25);
  box-shadow: 0 0 24px 4px rgba(0, 56, 104, 0.28);
}

body.ts-v10 .ts-v10-products-grid .ts-catalog-product-media {
  position: relative;
  margin: 0 !important;
  padding: 0 !important;
  overflow: hidden;
}

body.ts-v10 .ts-v10-products-grid .ts-catalog-product-media::before {
  display: none;
}

body.ts-v10 .ts-v10-products-grid .wp-block-woocommerce-product-image {
  position: relative;
  z-index: 1;
  aspect-ratio: 1;
  margin: 0 !important;
  padding: 0 !important;
  background-color: var(--ts-product-card-bg-color, #002850);
  background-image: url('../images/card-bg.webp');
  background-image: var(--ts-product-card-bg-image, url('../images/card-bg.webp'));
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: block !important;
  overflow: hidden;
}

body.ts-v10 .ts-v10-products-grid .wp-block-woocommerce-product-image a {
  position: absolute;
  inset: 0;
  display: flex !important;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  padding: clamp(0.2rem, 0.85vw, 0.45rem);
  line-height: 0;
}

body.ts-v10 .ts-v10-products-grid .wp-block-woocommerce-product-image img {
  display: block;
  flex: 1 1 auto;
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain !important;
  object-position: center;
  transform: scale(0.99);
  transform-origin: center center;
  transition: transform 0.45s ease;
}

body.ts-v10 .ts-v10-products-grid .wc-block-product:hover .wp-block-woocommerce-product-image img {
  transform: scale(1.04);
}

body.ts-v10 .ts-v10-products-grid .wc-block-components-product-summary,
body.ts-v10 .ts-v10-products-grid .wp-block-post-excerpt {
  display: none !important;
}

body.ts-v10 .ts-v10-products-grid .ts-v10-product-card-body {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  gap: 0.375rem;
  padding: 0.75rem 0.875rem 0.875rem;
  background: rgba(255, 255, 255, 0.05);
  font-feature-settings: 'cv11', 'ss01', 'tnum';
  -webkit-font-smoothing: antialiased;
}

body.ts-v10 .ts-v10-products-grid .ts-catalog-card-footer {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.25rem;
}

body.ts-v10 .ts-v10-products-grid .wp-block-post-title {
  flex: none;
  width: 100%;
  min-width: 0;
  margin: 0 !important;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif !important;
  font-size: 1rem !important;
  font-weight: 600 !important;
  line-height: 1.5 !important;
  letter-spacing: -0.03em !important;
}

body.ts-v10 .ts-v10-products-grid .wp-block-post-title a {
  display: block;
  overflow: visible;
  white-space: normal;
  overflow-wrap: break-word;
  color: rgba(255, 255, 255, 0.96) !important;
  text-decoration: none !important;
  transition: color 0.2s ease;
}

body.ts-v10 .ts-v10-products-grid .wp-block-post-title.has-medium-font-size,
body.ts-v10 .ts-v10-products-grid .wp-block-post-title.has-medium-font-size a {
  font-size: inherit !important;
  line-height: inherit !important;
}

body.ts-v10 .ts-v10-products-grid .wp-block-post-title a:hover {
  color: var(--accent-light-end) !important;
}

body.ts-v10 .ts-v10-products-grid .ts-v10-product-card-cat {
  display: block !important;
  margin: 0 !important;
  padding: 0 !important;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif !important;
  font-size: 0.75rem !important;
  font-weight: 400 !important;
  line-height: 1.33 !important;
  letter-spacing: 0 !important;
  color: rgba(255, 255, 255, 0.55) !important;
  text-transform: capitalize;
  overflow-wrap: break-word;
}

body.ts-v10 .ts-v10-products-grid .ts-v10-product-card-cat:not(:has(a)) {
  display: none !important;
}

body.ts-v10 .ts-v10-products-grid .ts-v10-product-card-cat a {
  color: inherit !important;
  text-decoration: none !important;
  pointer-events: none;
}

body.ts-v10 .ts-v10-products-grid .wc-block-components-product-price {
  display: flex;
  flex-direction: row;
  align-items: baseline;
  align-self: flex-start;
  flex-shrink: 0;
  gap: 0.3125rem;
  margin: 0 !important;
  text-align: left;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif !important;
  color: rgba(255, 255, 255, 0.96) !important;
  font-size: 1rem !important;
  font-weight: 600 !important;
  line-height: 1.5 !important;
  letter-spacing: -0.03em !important;
  font-variant-numeric: tabular-nums;
}

body.ts-v10 .ts-v10-products-grid .wc-block-components-product-price .woocommerce-Price-amount,
body.ts-v10 .ts-v10-products-grid .wc-block-components-product-price bdi {
  font: inherit !important;
  color: inherit !important;
  letter-spacing: inherit !important;
}

body.ts-v10 .ts-v10-products-grid .ts-v10-product-card-body .wp-block-woocommerce-product-button,
body.ts-v10 .ts-v10-products-grid .ts-v10-product-card-body .ts-v10-product-card-atc {
  width: 100%;
  margin-top: auto;
}

body.ts-v10 .ts-v10-products-grid .wc-block-product.is-variation-open {
  overflow: visible;
  z-index: 6;
}

body.ts-v10 .ts-v10-products-grid .wc-block-product.is-variation-open .ts-v10-product-card-body {
  overflow: visible;
}

body.ts-v10 .ts-v10-products-grid .ts-v10-product-card-atc {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  margin: 0;
}

body.ts-v10 .ts-v10-products-grid .ts-v10-variation-dropup {
  position: absolute;
  right: 0;
  bottom: calc(100% + 0.5rem);
  left: 0;
  z-index: 8;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  padding: 0.875rem;
  border-radius: 1rem;
  background: #fff;
  box-shadow:
    0 18px 40px rgba(0, 44, 80, 0.28),
    0 0 0 1px rgba(0, 44, 80, 0.06);
}

body.ts-v10 .ts-v10-products-grid .ts-v10-variation-dropup[hidden] {
  display: none !important;
}

body.ts-v10 .ts-v10-products-grid .ts-v10-variation-dropup__heading {
  display: block;
  margin: 0;
  padding: 0 0.125rem;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 0.8125rem;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: #5c6575;
  text-align: left;
}

body.ts-v10 .ts-v10-products-grid .ts-v10-variation-dropup__list {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

body.ts-v10 .ts-v10-products-grid .ts-v10-variation-option {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  column-gap: 0.625rem;
  width: 100%;
  min-height: 2.375rem;
  padding: 0.5rem 0.875rem;
  border: none;
  border-radius: 9999px;
  background: #eef1f6;
  color: #002c50;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  text-align: left;
  cursor: pointer;
  transition:
    background 0.15s ease,
    box-shadow 0.15s ease;
}

body.ts-v10 .ts-v10-products-grid .ts-v10-variation-option:hover,
body.ts-v10 .ts-v10-products-grid .ts-v10-variation-option.is-selected {
  background: #e3e9f2;
}

body.ts-v10 .ts-v10-products-grid .ts-v10-variation-option.is-selected {
  box-shadow: inset 0 0 0 1.5px rgba(0, 56, 104, 0.35);
}

body.ts-v10 .ts-v10-products-grid .ts-v10-variation-option__label {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 0.8125rem;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: #24344d;
}

body.ts-v10 .ts-v10-products-grid .ts-v10-variation-option__price {
  white-space: nowrap;
  font-size: 0.8125rem;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.02em;
  color: #002c50;
  font-variant-numeric: tabular-nums;
}

/* Shared card CTA — simple + variable (ghost pill) */
body.ts-v10 .ts-v10-products-grid .ts-v10-product-card-body .wp-block-button__link {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 2.5rem;
  margin-top: 0;
  padding-inline: 1.5rem !important;
  border-radius: 110px !important;
  border: 1px solid rgba(255, 255, 255, 0.45) !important;
  background: rgba(255, 255, 255, 0.08) !important;
  color: rgba(255, 255, 255, 0.95) !important;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif !important;
  font-size: 0.8125rem !important;
  font-weight: 700 !important;
  line-height: 1.5 !important;
  letter-spacing: -0.01em !important;
  text-transform: none !important;
  text-decoration: none !important;
  cursor: pointer;
  transition:
    background 0.2s,
    border-color 0.2s,
    opacity 0.2s;
}

body.ts-v10 .ts-v10-products-grid .ts-v10-product-card-body .wp-block-button__link:hover:not(:disabled) {
  background: rgba(255, 255, 255, 0.14) !important;
  border-color: rgba(255, 255, 255, 0.65) !important;
  color: rgba(255, 255, 255, 0.95) !important;
}

body.ts-v10 .ts-v10-products-grid .ts-v10-product-card-body .wp-block-button__link:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

body.ts-v10 .ts-v10-products-grid .ts-v10-product-card-body .wp-block-button__link.loading {
  opacity: 0.7;
  pointer-events: none;
}

body.ts-v10 .ts-v10-products-grid .wp-block-button__link.wc-interactive.loading,
body.ts-v10 .wc-block-product .wp-block-button__link.wc-interactive.loading {
  position: relative;
}

body.ts-v10 .ts-v10-products-grid .wp-block-button__link.wc-interactive.loading > span,
body.ts-v10 .wc-block-product .wp-block-button__link.wc-interactive.loading > span {
  visibility: hidden;
}

body.ts-v10 .ts-v10-products-grid .wp-block-button__link.wc-interactive.loading::after,
body.ts-v10 .wc-block-product .wp-block-button__link.wc-interactive.loading::after {
  content: var(--ts-atc-loading-text, "Adding…");
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font: inherit;
  letter-spacing: inherit;
  color: inherit;
}

body.ts-v10 .ts-v10-products-grid .ts-v10-product-card-body .wp-block-button__link span {
  font: inherit !important;
  color: inherit !important;
  letter-spacing: inherit !important;
}

/* Stay on grid after add — show in-cart label; re-click opens mini-cart drawer. */
body.ts-v10 .wc-block-product .added_to_cart,
body.ts-v10 .ts-v10-products-grid .added_to_cart {
  display: none !important;
}

body.ts-v10 .wc-block-product .add_to_cart_button.ts-in-cart,
body.ts-v10 .wc-block-product .ts-v10-variation-add-btn.ts-in-cart {
  opacity: 0.92;
}

@keyframes ts-cart-badge-pulse {
  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.12);
  }
}

body.ts-v10 .wc-block-mini-cart__badge.ts-cart-badge-pulse {
  animation: ts-cart-badge-pulse 0.35s ease;
}

body.ts-v10 .ts-v10-products__cta {
  display: flex;
  justify-content: center;
  margin-top: 1.5rem;
}

/* Mobile cards — tighter grid rhythm, readable type in 2-col layout */
@media (max-width: 767px) {
  body.ts-v10 .ts-v10-products-grid .wp-block-woocommerce-product-image a {
    padding: 0.15rem;
  }

  body.ts-v10 .ts-v10-products-grid .wp-block-woocommerce-product-image img {
    transform: scale(1.06);
  }

  body.ts-v10 .ts-v10-products-grid .wc-block-product:hover .wp-block-woocommerce-product-image img {
    transform: scale(1.11);
  }

  body.ts-v10 .ts-v10-products-grid ul.wc-block-product-template,
  body.ts-v10 .ts-v10-products-grid ul.wc-block-product-template.is-flex-container {
    gap: 0.75rem;
  }

  body.ts-v10 .ts-v10-products-grid .ts-v10-product-card-body {
    gap: 0.3125rem;
    padding: 0.75rem;
  }

  body.ts-v10 .ts-v10-products-grid .wp-block-post-title {
    font-size: clamp(0.875rem, 3.6vw, 1rem) !important;
    line-height: 1.375 !important;
  }

  body.ts-v10 .ts-v10-products-grid .wc-block-components-product-price {
    font-size: clamp(0.875rem, 3.6vw, 1rem) !important;
    line-height: 1.375 !important;
  }

  body.ts-v10 .ts-v10-products-grid .ts-v10-product-card-cat {
    font-size: 0.75rem !important;
    line-height: 1.33 !important;
  }

  body.ts-v10 .ts-v10-products-grid .ts-v10-product-card-body .wp-block-button__link {
    min-height: 2.5rem;
    padding-inline: 1rem !important;
    font-size: 0.8125rem !important;
  }

  body.ts-v10 .ts-v10-products-grid .ts-v10-variation-dropup {
    padding: 0.75rem;
    gap: 0.5rem;
  }

  body.ts-v10 .ts-v10-products-grid .ts-v10-variation-dropup__heading {
    font-size: 0.75rem;
  }

  body.ts-v10 .ts-v10-products-grid .ts-v10-variation-option {
    min-height: 2.25rem;
    padding: 0.4375rem 0.75rem;
  }

  body.ts-v10 .ts-v10-products-grid .ts-v10-variation-option__label,
  body.ts-v10 .ts-v10-products-grid .ts-v10-variation-option__price {
    font-size: 0.75rem;
  }
}

@media (min-width: 768px) {
  body.ts-v10 .ts-v10-section.ts-v10-products {
    padding-block: 2rem;
  }

  body.ts-v10 .ts-v10-products__head {
    gap: 0.75rem;
    margin-bottom: 2rem;
  }

  body.ts-v10 .ts-v10-products-grid ul.wc-block-product-template,
  body.ts-v10 .ts-v10-products-grid ul.wc-block-product-template.is-flex-container {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(1rem, 2vw, 1.5rem);
  }

  body.ts-v10 .ts-v10-products-grid .ts-v10-product-card-body {
    gap: 0.4375rem;
    padding: 0.875rem 1rem 1rem;
  }

  body.ts-v10 .ts-v10-products-grid .ts-v10-product-card-cat {
    font-size: 0.8125rem !important;
    line-height: 1.38 !important;
  }

  body.ts-v10 .ts-v10-products-grid .wp-block-post-title {
    font-size: 1.125rem !important;
    line-height: 1.6667 !important;
  }

  body.ts-v10 .ts-v10-products-grid .wc-block-components-product-price {
    font-size: 1.125rem !important;
    line-height: 1.6667 !important;
  }

  body.ts-v10 .ts-v10-products-grid .ts-v10-product-card-body .wp-block-button__link {
    min-height: 2.5rem;
    font-size: 0.875rem !important;
  }

  body.ts-v10 .ts-v10-products__cta {
    margin-top: 2rem;
  }
}

@media (min-width: 1280px) {
  body.ts-v10 .ts-v10-products-grid ul.wc-block-product-template,
  body.ts-v10 .ts-v10-products-grid ul.wc-block-product-template.is-flex-container {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

/* ── Precision section ── */
body.ts-v10 .ts-v10-precision__head {
  margin-bottom: 2rem;
  text-align: left;
}

body.ts-v10 .ts-v10-precision__head .heading-section {
  margin: 0;
  max-width: none;
}

@media (min-width: 768px) {
  body.ts-v10 .ts-v10-precision__head {
    margin-bottom: 2.5rem;
    text-align: center;
  }

  body.ts-v10 .ts-v10-precision__head .heading-section {
    max-width: 41.625rem;
    margin-inline: auto;
  }
}

body.ts-v10 .ts-v10-precision__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  margin-bottom: 2rem;
}

@media (min-width: 1024px) {
  body.ts-v10 .ts-v10-precision__grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
  }

  body.ts-v10 .ts-v10-precision__card {
    width: 400px;
    min-height: 192px;
  }
}

body.ts-v10 .ts-v10-precision__card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem;
  border-radius: 24px;
}

@media (min-width: 1024px) {
  body.ts-v10 .ts-v10-precision__card {
    gap: 1rem;
    padding: 1.5rem;
  }
}

body.ts-v10 .ts-v10-precision__card--wide {
  grid-column: 1 / -1;
}

@media (min-width: 1024px) {
  body.ts-v10 .ts-v10-precision__card--wide {
    grid-column: auto;
  }
}

body.ts-v10 .ts-v10-precision__card .precision-icon svg {
  width: 1.5rem;
  height: 1.5rem;
  color: #fff;
}

@media (min-width: 1024px) {
  body.ts-v10 .ts-v10-precision__card .precision-icon svg {
    width: 2rem;
    height: 2rem;
  }
}

body.ts-v10 .ts-v10-precision__card h3 {
  margin: 0;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: #fff;
}

@media (min-width: 1024px) {
  body.ts-v10 .ts-v10-precision__card h3 {
    font-size: 1.125rem;
    line-height: 1.33;
  }
}

body.ts-v10 .ts-v10-precision__card p {
  margin: 0;
  font-size: 0.75rem;
  line-height: 1.33;
  letter-spacing: -0.01em;
  color: rgba(255, 255, 255, 0.7);
}

@media (min-width: 1024px) {
  body.ts-v10 .ts-v10-precision__card p {
    font-size: 0.875rem;
    line-height: 1.43;
  }
}

body.ts-v10 .ts-v10-precision__cta {
  text-align: center;
}

@media (max-width: 1023px) {
  body.ts-v10 .ts-v10-precision__cta .ts-btn {
    width: 100%;
  }
}

/* ── Quality section ── */
body.ts-v10 .ts-v10-quality__grid {
  display: grid;
  gap: 1.5rem;
  align-items: start;
}

@media (min-width: 1024px) {
  body.ts-v10 .ts-v10-quality__grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
  }

  body.ts-v10 .ts-v10-quality__content {
    order: -1;
  }
}

body.ts-v10 .ts-v10-quality__content .heading-section {
  margin: 0;
}

body.ts-v10 .ts-v10-quality__eyebrow {
  margin: 0 0 0.5rem;
}

body.ts-v10 .ts-v10-quality__lede {
  margin: 1rem 0 0;
}

body.ts-v10 .ts-v10-quality__badge {
  margin-top: 1.5rem;
}

body.ts-v10 .ts-v10-quality__image {
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 1.5rem;
}

body.ts-v10 .ts-v10-quality__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

body.ts-v10 .ts-v10-quality__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  margin-top: 1.5rem;
}

body.ts-v10 .ts-v10-quality__stat {
  padding: 0.875rem 0.5rem;
  border-radius: 1rem;
  text-align: center;
}

body.ts-v10 .ts-v10-quality__stat .body-sm {
  margin: 0.25rem 0 0;
}

body.ts-v10 .ts-v10-quality__analysis {
  margin-top: 1.5rem;
  padding: 1.25rem;
  border-radius: 1rem;
}

body.ts-v10 .ts-v10-quality__analysis .heading-card {
  margin: 0;
}

body.ts-v10 .ts-v10-quality__analysis p {
  margin: 0.5rem 0 0;
}

body.ts-v10 .ts-v10-quality__analysis p + p {
  margin-top: 0.75rem;
}

body.ts-v10 .ts-v10-quality__analysis strong {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 600;
}

body.ts-v10 .ts-v10-quality__actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

@media (min-width: 640px) {
  body.ts-v10 .ts-v10-quality__actions {
    flex-direction: row;
    align-items: center;
  }
}

@media (min-width: 1024px) {
  body.ts-v10 .ts-v10-quality__stats {
    gap: 1rem;
    margin-top: 2rem;
  }

  body.ts-v10 .ts-v10-quality__stat {
    padding: 1rem;
  }

  body.ts-v10 .ts-v10-quality__analysis {
    margin-top: 2rem;
    padding: 1.5rem;
  }
}

@media (max-width: 767px) {
  body.ts-v10 .ts-v10-section.ts-v10-quality {
    padding-block: clamp(1rem, 4vw, 1.375rem);
  }

  body.ts-v10 .ts-v10-quality__grid {
    gap: 1.25rem;
  }

  body.ts-v10 .ts-v10-quality__image {
    border-radius: 1.25rem;
  }

  body.ts-v10 .ts-v10-quality__content .heading-section {
    font-size: clamp(1.75rem, 7vw, 2.25rem);
    line-height: 1.12;
  }

  body.ts-v10 .ts-v10-quality__lede {
    margin-top: 0.75rem;
    font-size: 0.875rem;
    line-height: 1.5;
  }

  body.ts-v10 .ts-v10-quality__badge {
    margin-top: 1.25rem;
  }

  body.ts-v10 .ts-v10-quality__stats {
    margin-top: 1.25rem;
    gap: 0.5rem;
  }

  body.ts-v10 .ts-v10-quality__stat {
    padding: 0.75rem 0.375rem;
    border-radius: 0.75rem;
  }

  body.ts-v10 .ts-v10-quality__stat .stat-value {
    font-size: 1.375rem;
  }

  body.ts-v10 .ts-v10-quality__stat .body-sm {
    font-size: 0.6875rem;
    line-height: 1.35;
  }

  body.ts-v10 .ts-v10-quality__analysis {
    margin-top: 1.25rem;
    padding: 1rem;
    border-radius: 0.875rem;
  }

  body.ts-v10 .ts-v10-quality__analysis .heading-card {
    font-size: 1rem;
    line-height: 1.35;
  }

  body.ts-v10 .ts-v10-quality__analysis .body-sm {
    font-size: 0.75rem;
    line-height: 1.45;
  }

  body.ts-v10 .ts-v10-quality__actions {
    margin-top: 1.25rem;
    align-items: stretch;
  }

  body.ts-v10 .ts-v10-quality__actions .ts-btn {
    width: 100%;
  }

  body.ts-v10 .ts-v10-quality__actions .body-sm {
    text-align: center;
    font-size: 0.75rem;
  }
}

/* ── FAQ ── */
body.ts-v10 .ts-v10-faq__layout {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 1024px) {
  body.ts-v10 .ts-v10-faq__layout {
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
  }
}

body.ts-v10 .ts-v10-faq__intro .heading-section {
  margin: 0;
}

body.ts-v10 .ts-v10-faq__eyebrow {
  margin: 0 0 0.5rem;
}

body.ts-v10 .ts-v10-faq__lede {
  margin: 0.75rem 0 0;
}

body.ts-v10 .ts-v10-faq__support {
  margin-top: 2rem;
  padding: 1.5rem;
  border-radius: 1rem;
}

body.ts-v10 .ts-v10-faq__support .heading-card {
  margin: 0;
}

body.ts-v10 .ts-v10-faq__support p {
  margin: 0.5rem 0 0;
}

body.ts-v10 .ts-v10-faq__support-link {
  display: inline-block;
  margin-top: 0.75rem;
  font-size: 0.875rem;
  font-weight: 500;
}

body.ts-v10 .ts-v10-faq__list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

body.ts-v10 .ts-v10-faq-item {
  overflow: hidden;
  border-radius: 1rem;
}

body.ts-v10 .ts-v10-faq-trigger {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem;
  border: none;
  background: transparent;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.4;
  text-align: left;
  cursor: pointer;
}

body.ts-v10 .ts-v10-faq-trigger span {
  flex: 1;
  min-width: 0;
}

body.ts-v10 .ts-v10-faq-panel {
  display: none;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0.75rem 1.25rem 1.25rem;
}

body.ts-v10 .ts-v10-faq-panel p {
  margin: 0;
}

body.ts-v10 .ts-v10-faq-item.is-open .ts-v10-faq-panel {
  display: block;
}

body.ts-v10 .ts-v10-faq-item.is-open .ts-v10-faq-chevron {
  transform: rotate(180deg);
}

body.ts-v10 .ts-v10-faq-chevron {
  flex-shrink: 0;
  transition: transform 0.2s;
  opacity: 0.5;
}

body.ts-v10 .ts-v10-faq__view-all {
  display: inline-block;
  margin-top: 0.25rem;
}

@media (max-width: 767px) {
  body.ts-v10 .ts-v10-section.ts-v10-faq {
    padding-block: clamp(1rem, 4vw, 1.375rem);
  }

  body.ts-v10 .ts-v10-faq__layout {
    gap: 1.25rem;
  }

  body.ts-v10 .ts-v10-faq__intro .heading-section {
    font-size: clamp(1.75rem, 7vw, 2.25rem);
    line-height: 1.12;
  }

  body.ts-v10 .ts-v10-faq__lede {
    margin-top: 0.625rem;
    font-size: 0.875rem;
    line-height: 1.5;
  }

  body.ts-v10 .ts-v10-faq__support {
    margin-top: 1.25rem;
    padding: 1rem;
    border-radius: 0.875rem;
  }

  body.ts-v10 .ts-v10-faq__support .heading-card {
    font-size: 1rem;
    line-height: 1.35;
  }

  body.ts-v10 .ts-v10-faq__support .body-sm {
    font-size: 0.75rem;
    line-height: 1.45;
  }

  body.ts-v10 .ts-v10-faq__support-link {
    margin-top: 0.625rem;
    font-size: 0.8125rem;
  }

  body.ts-v10 .ts-v10-faq__list {
    gap: 0.5rem;
  }

  body.ts-v10 .ts-v10-faq-item {
    border-radius: 0.875rem;
  }

  body.ts-v10 .ts-v10-faq-trigger {
    gap: 0.75rem;
    padding: 0.875rem 1rem;
    font-size: 0.875rem;
    line-height: 1.35;
  }

  body.ts-v10 .ts-v10-faq-chevron {
    width: 1.125rem;
    height: 1.125rem;
  }

  body.ts-v10 .ts-v10-faq-panel {
    padding: 0.625rem 1rem 1rem;
  }

  body.ts-v10 .ts-v10-faq-panel .body-sm {
    font-size: 0.75rem;
    line-height: 1.45;
  }

  body.ts-v10 .ts-v10-faq__view-all {
    margin-top: 0.375rem;
    font-size: 0.875rem;
  }
}

/* ── Newsletter ── */
body.ts-v10 .ts-v10-newsletter {
  border-radius: 1.5rem;
  padding: 1.25rem 1rem;
}

@media (min-width: 768px) {
  body.ts-v10 .ts-v10-newsletter {
    padding: 2rem 2.5rem;
    border-radius: 1.5rem;
  }
}

body.ts-v10 .ts-v10-newsletter__layout {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  align-items: stretch;
}

@media (min-width: 768px) {
  body.ts-v10 .ts-v10-newsletter__layout {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 2.5rem;
  }
}

body.ts-v10 .ts-v10-newsletter__copy {
  flex: 1;
  min-width: 0;
  text-align: left;
}

body.ts-v10 .ts-v10-newsletter__title {
  margin: 0;
  font-size: clamp(1.375rem, 4vw, 1.75rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.03em;
  color: rgba(255, 255, 255, 0.95);
}

body.ts-v10 .ts-v10-newsletter__lede {
  margin: 0.5rem 0 0;
  max-width: 26rem;
  font-size: 0.8125rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.72);
}

@media (min-width: 768px) {
  body.ts-v10 .ts-v10-newsletter__lede {
    font-size: 0.9375rem;
  }
}

body.ts-v10 .ts-v10-newsletter__form-wrap {
  width: 100%;
  flex-shrink: 0;
}

@media (min-width: 768px) {
  body.ts-v10 .ts-v10-newsletter__form-wrap {
    width: min(100%, 28rem);
  }
}

body.ts-v10 .ts-v10-newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin: 0;
}

@media (min-width: 640px) {
  body.ts-v10 .ts-v10-newsletter-form {
    flex-direction: row;
    align-items: center;
  }
}

body.ts-v10 .ts-v10-newsletter-form input[type='email'] {
  flex: 1;
  min-width: 0;
  min-height: 48px;
  padding: 0 1.25rem;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 0.875rem;
  letter-spacing: -0.01em;
  outline: none;
  backdrop-filter: blur(4px);
  transition:
    border-color 0.2s,
    background 0.2s;
}

@media (min-width: 768px) {
  body.ts-v10 .ts-v10-newsletter-form input[type='email'] {
    min-height: 52px;
    font-size: 1rem;
  }
}

body.ts-v10 .ts-v10-newsletter-form input[type='email']:focus {
  border-color: rgba(80, 152, 200, 0.6);
  background: rgba(255, 255, 255, 0.12);
}

body.ts-v10 .ts-v10-newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.45);
}

body.ts-v10 .ts-v10-newsletter-form .ts-btn {
  flex-shrink: 0;
}

@media (min-width: 640px) {
  body.ts-v10 .ts-v10-newsletter-form .ts-btn {
    min-width: 8.5rem;
  }
}

@media (max-width: 639px) {
  body.ts-v10 .ts-v10-newsletter-form .ts-btn {
    width: 100%;
    min-height: 48px;
  }
}

body.ts-v10 .ts-v10-newsletter-success {
  margin: 0.75rem 0 0;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.9);
}

@media (max-width: 767px) {
  body.ts-v10 .ts-v10-section.ts-v10-newsletter-section {
    padding-block: clamp(1rem, 4vw, 1.375rem);
  }
}

/* ── Verification modal ── */
body.ts-v10.ts-verification-open {
  overflow: hidden;
}

body.ts-v10 .ts-verification-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
}

body.ts-v10 .ts-verification-modal[hidden] {
  display: none !important;
}

body.ts-v10 .ts-verification-modal__dialog {
  width: 100%;
  max-width: 28rem;
  padding: 2rem;
  border-radius: 1.5rem;
  background: #fff;
  color: #444;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
}

body.ts-v10 .ts-verification-modal__logo {
  margin: 0 0 0.25rem;
  text-align: center;
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brand);
}

body.ts-v10 .ts-verification-modal__title {
  margin: 0 0 1rem;
  text-align: center;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--brand-light);
}

body.ts-v10 .ts-verification-modal__lead {
  margin: 0 0 1.5rem;
  text-align: center;
  font-size: 0.875rem;
  line-height: 1.6;
  color: #666;
}

body.ts-v10 .ts-verification-check {
  display: flex;
  gap: 0.75rem;
  padding: 1rem;
  margin-bottom: 0.75rem;
  border: 1px solid #e0e0e0;
  border-radius: 0.75rem;
  cursor: pointer;
  font-size: 0.875rem;
  line-height: 1.5;
}

body.ts-v10 .ts-verification-check strong {
  color: var(--brand);
}

body.ts-v10 .ts-verification-modal__submit {
  width: 100%;
  margin-top: 0.5rem;
}

body.ts-v10 .ts-verification-modal__submit:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

body.ts-v10 .ts-verification-modal__fine {
  margin: 1rem 0 0;
  text-align: center;
  font-size: 11px;
  line-height: 1.5;
  color: #999;
}

/* ── Shop toolbar (compact header) ── */
body.ts-v10 .ts-shop-toolbar-wrap {
  background: transparent !important;
  padding-top: clamp(1rem, 3vw, 1.75rem);
  padding-bottom: 0.75rem;
}

body.ts-v10 .ts-shop-toolbar {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

body.ts-v10 .ts-shop-toolbar__head {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

body.ts-v10 .ts-shop-toolbar__title {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(1.375rem, 4.5vw, 1.75rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: rgba(255, 255, 255, 0.96) !important;
}

body.ts-v10 .ts-shop-toolbar__subtitle {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.55) !important;
}

body.ts-v10 .ts-shop-toolbar__pills {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 0.5rem;
  margin: 0;
  padding-bottom: 0.125rem;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

body.ts-v10 .ts-shop-toolbar__pills::-webkit-scrollbar {
  display: none;
}

body.ts-v10 .ts-shop-toolbar__pills .ts-shop-cat-pill {
  flex-shrink: 0;
  padding: 0.4375rem 0.875rem;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  background: rgba(255, 255, 255, 0.08) !important;
  color: rgba(255, 255, 255, 0.78) !important;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
  text-decoration: none !important;
  white-space: nowrap;
  transition:
    background 0.18s ease,
    border-color 0.18s ease,
    color 0.18s ease;
}

body.ts-v10 .ts-shop-toolbar__pills .ts-shop-cat-pill:hover {
  color: rgba(255, 255, 255, 0.95) !important;
  border-color: rgba(255, 255, 255, 0.22) !important;
  background: rgba(255, 255, 255, 0.12) !important;
}

body.ts-v10 .ts-shop-toolbar__pills .ts-shop-cat-pill.is-active {
  border-color: rgba(255, 255, 255, 0.08) !important;
  background: rgba(255, 255, 255, 0.94) !important;
  color: #002c50 !important;
}

body.ts-v10 .ts-shop-page-body {
  background: transparent !important;
  padding-top: 0.5rem;
  padding-bottom: clamp(2rem, 6vw, 4rem);
}

@media (max-width: 767px) {
  body.ts-v10 .ts-shop-toolbar-wrap {
    padding-top: 0.875rem;
    padding-bottom: 0.5rem;
  }

  body.ts-v10 .ts-shop-toolbar {
    gap: 0.625rem;
  }

  body.ts-v10 .ts-shop-toolbar__title {
    font-size: 1.375rem;
  }

  body.ts-v10 .ts-shop-toolbar__subtitle {
    font-size: 0.8125rem;
  }

  body.ts-v10 .ts-shop-toolbar__pills .ts-shop-cat-pill {
    padding: 0.375rem 0.75rem;
    font-size: 0.75rem;
  }

  body.ts-v10 .ts-shop-page-body {
    padding-top: 0.375rem;
  }
}

@media (min-width: 768px) {
  body.ts-v10 .ts-shop-toolbar {
    gap: 0.875rem;
  }
}

body.ts-v10 .ts-shop-products-grid.wp-block-woocommerce-product-collection {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

body.ts-v10 .ts-shop-products-grid .wp-block-query-pagination,
body.ts-v10 .ts-shop-products-grid nav.wp-block-query-pagination {
  margin-top: clamp(2rem, 5vw, 2.75rem);
}

body.ts-v10 .ts-shop-products-grid .wp-block-query-pagination a,
body.ts-v10 .ts-shop-products-grid .wp-block-query-pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.25rem;
  min-height: 2.25rem;
  padding: 0.35rem 0.75rem;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.8125rem;
  font-weight: 600;
  text-decoration: none !important;
  transition:
    background 0.18s ease,
    border-color 0.18s ease,
    color 0.18s ease;
}

body.ts-v10 .ts-shop-products-grid .wp-block-query-pagination a:hover {
  color: rgba(255, 255, 255, 0.95);
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.1);
}

body.ts-v10 .ts-shop-products-grid .wp-block-query-pagination span.current {
  border-color: rgba(255, 255, 255, 0.85);
  background: rgba(255, 255, 255, 0.92);
  color: #002c50;
}

/* ── Section spacing ── */
body.ts-v10 .ts-v10-section {
  padding-block: 1.25rem;
}

body.ts-v10 .ts-v10-section.ts-v10-hero {
  padding-block: 0;
}

@media (min-width: 1024px) {
  body.ts-v10 .ts-v10-section {
    padding-block: 2rem;
  }
}

/* Suppress old light-theme header/footer when v10 markup present */
body.ts-v10 .ts-header-sticky,
body.ts-v10 .ts-promo-strip,
body.ts-v10 .ts-site-header {
  display: none !important;
}

/* Hidden while TRUE_SCIENCES_FREE_SHIPPING_UI_ENABLED is off. */
body.ts-free-shipping-ui-off .ts-v10-announce__group--shipping,
body.ts-free-shipping-ui-off .ts-v10-hero__badges .hero-badge:nth-child(3),
body.ts-free-shipping-ui-off .ts-v10-quality__stat:nth-child(3),
body.ts-free-shipping-ui-off .wc-block-mini-cart__drawer .ts-free-shipping {
  display: none !important;
}
