/* MH Intelliforge sample-store demo theme. Shared layout + component styles,
   themed per category via [data-store] token overrides below. */

:root {
  --bg: #ffffff;
  --surface: #f6f6f4;
  --ink: #1a1a1a;
  --muted: #6b6b6b;
  --line: #e6e3dd;
  --accent: #1a1a1a;
  --accent-ink: #ffffff;
  --radius: 6px;
  --font-head: Georgia, "Times New Roman", serif;
  --font-body: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
}

[data-store="beauty"] {
  --bg: #fdf6f2;
  --surface: #fbeae2;
  --ink: #402a24;
  --muted: #8a6f65;
  --line: #f0d9cd;
  --accent: #c77b5f;
  --accent-ink: #ffffff;
  --radius: 18px;
  --font-head: "Trebuchet MS", "Segoe UI", sans-serif;
  --font-body: "Trebuchet MS", "Segoe UI", sans-serif;
}

[data-store="electronics"] {
  --bg: #0c0d10;
  --surface: #16181d;
  --ink: #f2f3f5;
  --muted: #9aa0ab;
  --line: #262931;
  --accent: #ff5a1f;
  --accent-ink: #0c0d10;
  --radius: 3px;
  --font-head: "Arial Black", Impact, sans-serif;
  --font-body: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
}

[data-store="jewellery"] {
  --bg: #fdfaf5;
  --surface: #f3ead9;
  --ink: #1a1610;
  --muted: #8a7f66;
  --line: #e8dcc0;
  --accent: #a67c3d;
  --accent-ink: #ffffff;
  --radius: 2px;
  --font-head: "Didot", Georgia, "Times New Roman", serif;
  --font-body: Georgia, "Times New Roman", serif;
}

[data-store="hardware"] {
  --bg: #f5f4f0;
  --surface: #ebe9e1;
  --ink: #1c1c1a;
  --muted: #6b6a62;
  --line: #d8d5c9;
  --accent: #e2711d;
  --accent-ink: #ffffff;
  --radius: 4px;
  --font-head: "Arial Black", Impact, sans-serif;
  --font-body: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

/* Scroll-reveal animation */
.ts-reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s cubic-bezier(.16,.84,.44,1), transform .7s cubic-bezier(.16,.84,.44,1); }
.ts-reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .ts-reveal { opacity: 1; transform: none; transition: none; }
}

/* Image fade-in once actually loaded */
.ts-tile img, .ts-hero-bg img { opacity: 0; transition: opacity .5s ease; }
.ts-tile img.ts-img-loaded, .ts-hero-bg img.ts-img-loaded { opacity: 1; }
body {
  margin: 0; background: var(--bg); color: var(--ink); font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3 { font-family: var(--font-head); margin: 0; line-height: 1.15; }
.ts-shell { width: min(100% - 40px, 1180px); margin: 0 auto; }

/* Demo banner: makes it unmistakable this is a concept store */
.ts-demo-banner {
  background: var(--ink); color: var(--bg); text-align: center; font-size: 12px;
  letter-spacing: .04em; padding: 8px 16px;
}
.ts-demo-banner a { text-decoration: underline; }

/* Header */
.ts-header {
  border-bottom: 1px solid var(--line); position: sticky; top: 0; z-index: 20;
  background: var(--bg);
}
.ts-nav { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 20px 0; }
.ts-logo { font-family: var(--font-head); font-size: 22px; font-weight: 700; letter-spacing: .02em; }
.ts-links { display: flex; align-items: center; gap: 28px; font-size: 13px; letter-spacing: .03em; }
.ts-links a { opacity: .82; transition: opacity .2s ease; }
.ts-links a:hover { opacity: 1; }
.ts-nav-right { display: flex; align-items: center; gap: 18px; }
.ts-icon-btn {
  width: 38px; height: 38px; border-radius: 50%; border: 1px solid var(--line); background: transparent;
  color: var(--ink); display: grid; place-items: center; cursor: pointer;
}
.ts-icon-btn svg { width: 17px; height: 17px; stroke: currentColor; fill: none; stroke-width: 1.6; }
.ts-icon-btn { position: relative; transition: transform .2s ease; }
.ts-icon-btn.ts-bump { animation: ts-bump .38s ease; }
@keyframes ts-bump { 0% { transform: scale(1); } 40% { transform: scale(1.22); } 100% { transform: scale(1); } }
.ts-cart-badge {
  position: absolute; top: -4px; right: -4px; min-width: 16px; height: 16px; padding: 0 3px; border-radius: 999px;
  background: var(--accent); color: var(--accent-ink); font-size: 10px; line-height: 16px; text-align: center;
  opacity: 0; transform: scale(.5); transition: opacity .2s ease, transform .2s ease;
}
.ts-cart-badge.is-shown { opacity: 1; transform: scale(1); }

/* Megamenu */
.ts-has-mega { position: relative; }
.ts-megamenu {
  position: absolute; top: 100%; left: 50%; transform: translate(-50%, 8px); width: min(560px, 90vw);
  background: var(--bg); border: 1px solid var(--line); border-radius: calc(var(--radius) * .8);
  box-shadow: 0 24px 50px rgba(0,0,0,.16); padding: 26px; opacity: 0; pointer-events: none; z-index: 30;
  transition: opacity .22s ease, transform .22s ease;
}
.ts-has-mega:hover .ts-megamenu, .ts-has-mega:focus-within .ts-megamenu { opacity: 1; pointer-events: auto; transform: translate(-50%, 0); }
.ts-megamenu-cols { display: grid; grid-template-columns: 1fr 1.3fr; gap: 26px; }
.ts-megamenu h4 { font-size: 11px; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); margin: 0 0 12px; font-family: var(--font-body); }
.ts-megamenu-cats { display: flex; flex-direction: column; gap: 4px; }
.ts-megamenu-cats a { padding: 6px 0; font-size: 13px; color: var(--ink); opacity: .85; transition: opacity .2s ease, transform .2s ease; }
.ts-megamenu-cats a:hover { opacity: 1; transform: translateX(3px); color: var(--accent); }
.ts-megamenu-feature { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.ts-megamenu-feature a { display: block; }
.ts-megamenu-feature .ts-tile { aspect-ratio: 1/1; margin-bottom: 6px; border-radius: calc(var(--radius) * .6); }
.ts-megamenu-feature span { font-size: 11px; color: var(--ink); }
@media (max-width: 900px) { .ts-megamenu { display: none; } }

/* Mobile app-style bottom nav */
.ts-bottom-nav { display: none; }
@media (max-width: 900px) {
  .ts-bottom-nav {
    display: flex; position: fixed; left: 0; right: 0; bottom: 0; z-index: 40;
    background: var(--bg); border-top: 1px solid var(--line); padding: 6px 4px calc(6px + env(safe-area-inset-bottom));
    box-shadow: 0 -8px 24px rgba(0,0,0,.06);
  }
  .ts-bottom-nav a, .ts-bottom-nav button {
    flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 4px;
    padding: 6px 2px; border: 0; background: none; color: var(--muted); font: inherit; font-size: 10px; cursor: pointer;
  }
  .ts-bottom-nav svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
  .ts-bottom-nav .is-active { color: var(--accent); }
  .ts-bottom-nav-cart { position: relative; }
  body { padding-bottom: 0; }
  main, footer.ts-footer { padding-bottom: 0; }
}
@media (max-width: 900px) {
  .ts-footer { margin-bottom: 66px; }
}

/* Buttons */
.ts-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  height: 48px; padding: 0 26px; border-radius: var(--radius); font-size: 13px; font-weight: 600;
  letter-spacing: .04em; border: 1px solid var(--accent); background: var(--accent); color: var(--accent-ink);
  cursor: pointer; transition: transform .2s ease, opacity .2s ease;
}
.ts-btn:hover { transform: translateY(-2px); opacity: .92; }
.ts-btn-outline { background: transparent; color: var(--ink); border-color: var(--line); }
.ts-btn-outline:hover { border-color: var(--accent); }
.ts-btn[disabled] { opacity: .55; cursor: default; transform: none; }

/* Hero: split layout (fashion, beauty) */
.ts-hero { padding: 70px 0 60px; }
.ts-hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 50px; align-items: center; }
.ts-eyebrow { font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: var(--accent); margin-bottom: 14px; }
.ts-hero h1 { font-size: 46px; }
.ts-hero p { color: var(--muted); font-size: 16px; line-height: 1.6; margin: 18px 0 28px; max-width: 46ch; }

/* Hero: full-bleed layout (electronics) */
.ts-hero-full { padding: 0; }
.ts-hero-full .ts-hero-bg { position: relative; min-height: 560px; display: flex; align-items: flex-end; overflow: hidden; }
.ts-hero-full .ts-hero-bg img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transition: opacity .6s ease; }
.ts-hero-full .ts-hero-bg img.ts-img-loaded { opacity: 1; }
.ts-hero-full .ts-hero-bg:after { content: ''; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(0,0,0,.85), rgba(0,0,0,.1) 60%, rgba(0,0,0,.5)); }
.ts-hero-full-copy { position: relative; z-index: 1; padding: 64px 0; color: #fff; }
.ts-hero-full-copy .ts-eyebrow { color: var(--accent); }
.ts-hero-full-copy h1 { font-size: 46px; color: #fff; max-width: 16ch; }
.ts-hero-full-copy p { color: rgba(255,255,255,.75); font-size: 16px; line-height: 1.6; margin: 18px 0 28px; max-width: 46ch; }

/* Hero: centered layout (jewellery) — stacked, magazine-style, not a side-by-side split */
.ts-hero-centered { padding: 80px 0 0; text-align: center; }
.ts-hero-centered .ts-hero-copy { max-width: 640px; margin: 0 auto; }
.ts-hero-centered .ts-eyebrow { justify-content: center; display: flex; }
.ts-hero-centered h1 { font-size: 48px; }
.ts-hero-centered p { margin: 18px auto 28px; }
.ts-hero-centered .ts-chip-row { justify-content: center; }
.ts-hero-centered .ts-btn { margin: 0 auto; }
.ts-hero-banner { margin-top: 56px; aspect-ratio: 21/9; position: relative; overflow: hidden; }
.ts-hero-banner img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transition: opacity .6s ease; }
.ts-hero-banner img.ts-img-loaded { opacity: 1; }
.ts-hero-banner:after { content: ''; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(0,0,0,.45), transparent 40%); }
.ts-hero-banner span { position: absolute; left: 0; right: 0; bottom: 22px; text-align: center; color: #fff; font-size: 12px; letter-spacing: .12em; text-transform: uppercase; }
@media (max-width: 640px) { .ts-hero-centered h1 { font-size: 32px; } .ts-hero-banner { aspect-ratio: 4/5; } }

/* Hero: utility layout (hardware) — compact, catalog-first, quick-category strip baked in */
.ts-hero-utility { padding: 46px 0 0; }
.ts-hero-utility .ts-hero-utility-top { display: grid; grid-template-columns: 1.2fr .8fr; gap: 40px; align-items: center; padding-bottom: 34px; }
.ts-hero-utility h1 { font-size: 38px; }
.ts-hero-utility p { margin: 14px 0 22px; }
.ts-hero-utility .ts-stat-row { display: flex; gap: 28px; flex-wrap: wrap; }
.ts-hero-utility .ts-stat-row div { font-size: 12px; color: var(--muted); }
.ts-hero-utility .ts-stat-row strong { display: block; font-size: 20px; color: var(--accent); font-family: var(--font-head); }
.ts-hero-utility .ts-tile { aspect-ratio: 4/3; }
.ts-hero-quick-links { display: flex; gap: 10px; overflow-x: auto; padding: 18px 0; border-top: 1px solid var(--line); }
.ts-hero-quick-link {
  flex: none; display: flex; align-items: center; gap: 8px; padding: 10px 16px; border-radius: 999px;
  border: 1px solid var(--line); background: var(--surface); font-size: 12px; font-weight: 600; color: var(--ink);
  transition: border-color .2s ease, color .2s ease;
}
.ts-hero-quick-link:hover { border-color: var(--accent); color: var(--accent); }
.ts-hero-quick-link svg { width: 16px; height: 16px; fill: none; stroke: currentColor; stroke-width: 1.8; }
@media (max-width: 900px) { .ts-hero-utility .ts-hero-utility-top { grid-template-columns: 1fr; } }

/* Bento featured grid (beauty) */
.ts-grid-bento { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: auto; gap: 22px; }
.ts-grid-bento .ts-card:first-child { grid-column: span 2; grid-row: span 2; }
.ts-grid-bento .ts-card:first-child .ts-tile { aspect-ratio: auto; flex: 1; min-height: 340px; }
.ts-grid-bento .ts-card:first-child { display: flex; }
.ts-grid-bento .ts-card:first-child > a { display: flex; flex-direction: column; flex: 1; }
@media (max-width: 900px) {
  .ts-grid-bento .ts-card:first-child { grid-column: span 2; grid-row: span 1; }
  .ts-grid-bento .ts-card:first-child .ts-tile { min-height: 0; }
}

/* Editorial grid: 2 large columns (jewellery — fewer, bigger statement pieces) */
.ts-grid-editorial { display: grid; grid-template-columns: repeat(2, 1fr); gap: 34px; }
.ts-grid-editorial .ts-tile { aspect-ratio: 1/1.1; }
.ts-grid-editorial h3 { font-size: 17px; }
@media (max-width: 640px) { .ts-grid-editorial { grid-template-columns: 1fr; } }

/* Compact grid: 5 dense columns (hardware — catalog browsing) */
.ts-grid-compact { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; }
.ts-grid-compact h3 { font-size: 12.5px; }
.ts-grid-compact .ts-price { font-size: 12px; }
@media (max-width: 900px) { .ts-grid-compact { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 480px) { .ts-grid-compact { grid-template-columns: repeat(2, 1fr); } }

/* Product tile (photo, with a gradient fallback behind it) */
.ts-tile {
  border-radius: var(--radius); background: linear-gradient(135deg, var(--accent) 0%, var(--surface) 130%);
  position: relative; overflow: hidden; display: flex; align-items: flex-end; color: #fff;
}
.ts-tile img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.ts-tile:before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 30% 20%, rgba(255,255,255,.28), transparent 55%); }
.ts-tile:after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(0,0,0,.55)); }
.ts-tile span { position: relative; z-index: 1; padding: 16px 18px; font-size: 12px; letter-spacing: .06em; text-transform: uppercase; opacity: .95; }
.ts-hero-art { aspect-ratio: 4/3; }

/* Section titles */
.ts-section { padding: 56px 0; }
.ts-section-head { display: flex; align-items: baseline; justify-content: space-between; gap: 20px; margin-bottom: 28px; flex-wrap: wrap; }
.ts-section-head h2 { font-size: 28px; }
.ts-section-head a { font-size: 13px; color: var(--accent); }

/* Product grid */
.ts-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.ts-card { display: flex; flex-direction: column; transition: transform .3s ease; }
.ts-card > a { display: block; color: inherit; position: relative; }
.ts-card .ts-tile { aspect-ratio: 1/1; margin-bottom: 12px; }
.ts-card .ts-tile img { transition: opacity .5s ease, transform .5s ease; }
.ts-card:hover { transform: translateY(-4px); }
.ts-card:hover .ts-tile img { transform: scale(1.07); }
.ts-card:hover .ts-tile:before { opacity: .5; }
.ts-card h3 { font-size: 14px; font-weight: 600; margin-bottom: 4px; }
.ts-card .ts-price { font-size: 13px; color: var(--muted); }
.ts-card .ts-price s { margin-right: 6px; opacity: .6; }
.ts-card-add { margin-top: 10px; height: 38px; font-size: 12px; padding: 0 16px; }

/* Testimonials */
.ts-testimonials { background: var(--surface); }
.ts-testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.ts-testimonial-card { background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; }
.ts-testimonial-stars { color: var(--accent); font-size: 13px; letter-spacing: 2px; margin-bottom: 12px; }
.ts-testimonial-card p { font-size: 14px; line-height: 1.7; color: var(--ink); margin: 0 0 16px; }
.ts-testimonial-card span { font-size: 12px; color: var(--muted); }

/* Newsletter */
.ts-newsletter { background: var(--ink); color: var(--bg); text-align: center; padding: 56px 0; }
.ts-newsletter h2 { font-size: 24px; margin-bottom: 10px; }
.ts-newsletter p { color: var(--bg); opacity: .72; font-size: 14px; margin: 0 0 24px; }
.ts-newsletter-form { display: flex; gap: 10px; max-width: 380px; margin: 0 auto; }
.ts-newsletter-form input {
  flex: 1; height: 46px; border-radius: calc(var(--radius) * .6); border: 1px solid rgba(255,255,255,.25);
  background: rgba(255,255,255,.08); color: var(--bg); padding: 0 14px; font-size: 13px;
}
.ts-newsletter-form input::placeholder { color: rgba(255,255,255,.55); }
.ts-newsletter-form .ts-btn { height: 46px; background: var(--accent); border-color: var(--accent); color: var(--accent-ink); }
.ts-newsletter-status { font-size: 12px; margin-top: 12px; opacity: .8; min-height: 16px; }

@media (max-width: 900px) {
  .ts-testimonial-grid { grid-template-columns: 1fr; }
  .ts-newsletter-form { flex-direction: column; }
}

/* Category chips */
.ts-chip-row { display: flex; gap: 12px; flex-wrap: wrap; margin: 34px 0 0; }
.ts-chip {
  padding: 9px 18px; border-radius: 999px; border: 1px solid var(--line); font-size: 12px;
  letter-spacing: .03em; color: var(--muted);
}

/* Trust strip */
.ts-trust { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 26px 0; }
.ts-trust div { text-align: center; font-size: 12px; letter-spacing: .04em; color: var(--muted); }
.ts-trust strong { display: block; color: var(--ink); font-size: 14px; margin-bottom: 4px; }

/* Breadcrumb */
.ts-breadcrumb { font-size: 12px; color: var(--muted); padding: 18px 0 0; }
.ts-breadcrumb a { color: var(--muted); }
.ts-breadcrumb a:hover { color: var(--accent); }

/* Product detail */
.ts-product { padding: 30px 0 70px; display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.ts-gallery-main { aspect-ratio: 1/1; margin-bottom: 12px; }
.ts-gallery-thumbs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.ts-gallery-thumbs .ts-tile { aspect-ratio: 1/1; border-radius: calc(var(--radius) * .6); cursor: pointer; opacity: .65; }
.ts-gallery-thumbs .ts-tile.is-active { opacity: 1; outline: 2px solid var(--accent); outline-offset: 2px; }
.ts-product-info .ts-price-now { font-size: 22px; font-weight: 700; }
.ts-product-info .ts-price-was { font-size: 14px; color: var(--muted); text-decoration: line-through; margin-left: 8px; }
.ts-rating { display: flex; align-items: center; gap: 8px; font-size: 12px; color: var(--muted); margin: 10px 0 22px; }
.ts-rating svg { width: 13px; height: 13px; fill: var(--accent); }
.ts-swatch-row { display: flex; gap: 10px; margin: 8px 0 24px; }
.ts-swatch {
  width: 40px; height: 40px; border-radius: 50%; border: 2px solid var(--line); cursor: pointer;
  display: grid; place-items: center;
}
.ts-swatch.is-active { border-color: var(--accent); }
.ts-size-row { display: flex; gap: 10px; margin: 8px 0 26px; flex-wrap: wrap; }
.ts-size {
  min-width: 46px; height: 42px; padding: 0 10px; border: 1px solid var(--line); border-radius: calc(var(--radius) * .6);
  display: grid; place-items: center; font-size: 13px; cursor: pointer;
}
.ts-size.is-active { border-color: var(--accent); background: var(--accent); color: var(--accent-ink); }

/* Pack / bundle pricing cards (e.g. "1 Pack" / "2 Pack" / "3 Pack") */
.ts-pack-row { display: flex; gap: 12px; margin: 8px 0 26px; flex-wrap: wrap; }
.ts-pack-card {
  position: relative; flex: 1; min-width: 120px; display: flex; flex-direction: column; align-items: center;
  gap: 4px; padding: 16px 12px 14px; border: 1px solid var(--line); border-radius: calc(var(--radius) * .6);
  background: var(--bg); cursor: pointer; transition: border-color .2s ease, background .2s ease, transform .2s ease;
}
.ts-pack-card:hover { transform: translateY(-2px); }
.ts-pack-card.is-active { border-color: var(--accent); border-width: 2px; background: var(--surface); }
.ts-pack-label { font-size: 13px; font-weight: 600; color: var(--ink); }
.ts-pack-price { font-size: 16px; font-weight: 700; color: var(--ink); }
.ts-pack-compare { font-size: 11px; color: var(--muted); text-decoration: line-through; }
.ts-pack-save {
  position: absolute; top: -10px; right: -8px; background: var(--accent); color: var(--accent-ink);
  font-size: 10px; font-weight: 700; letter-spacing: .02em; padding: 3px 8px; border-radius: 999px;
  box-shadow: 0 4px 10px rgba(0,0,0,.15);
}
@media (max-width: 480px) {
  .ts-pack-row { flex-wrap: nowrap; }
}
.ts-qty-row { display: flex; align-items: center; gap: 16px; margin-bottom: 14px; }
.ts-qty { display: inline-flex; align-items: center; border: 1px solid var(--line); border-radius: calc(var(--radius) * .6); }
.ts-qty button { width: 36px; height: 40px; border: 0; background: none; font-size: 16px; cursor: pointer; color: var(--ink); }
.ts-qty span { width: 34px; text-align: center; font-size: 13px; }
.ts-buy-row { display: flex; gap: 10px; margin-bottom: 6px; }
.ts-buy-row .ts-btn { flex: 1; }
.ts-add-status { font-size: 13px; color: var(--accent); min-height: 18px; margin-top: 12px; }

/* Compact quantity selector on product cards */
.ts-card-qty-row { display: flex; align-items: center; gap: 8px; margin-top: 10px; }
.ts-qty-sm { transform: scale(.88); transform-origin: left center; }
.ts-qty-sm button { width: 30px; height: 32px; font-size: 14px; }
.ts-qty-sm span { width: 26px; font-size: 12px; }
.ts-card .ts-card-add { flex: 1; margin-top: 0; }
.ts-accordion { border-top: 1px solid var(--line); margin-top: 30px; }
.ts-accordion details { border-bottom: 1px solid var(--line); padding: 14px 0; }
.ts-accordion summary { cursor: pointer; font-size: 13px; font-weight: 600; list-style: none; }
.ts-accordion summary::-webkit-details-marker { display: none; }
.ts-accordion p { color: var(--muted); font-size: 13px; line-height: 1.6; margin: 10px 0 0; }
.ts-product-desc p { color: var(--muted); font-size: 14px; line-height: 1.7; }

/* Collection page */
.ts-collection-head { padding: 40px 0 10px; }
.ts-toolbar { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 18px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); margin-bottom: 30px; flex-wrap: wrap; }
.ts-toolbar span { font-size: 12px; color: var(--muted); }
.ts-select { border: 1px solid var(--line); border-radius: calc(var(--radius) * .6); padding: 8px 12px; font-size: 12px; background: var(--bg); color: var(--ink); }

/* Footer */
.ts-footer { border-top: 1px solid var(--line); padding: 40px 0; margin-top: 30px; }
.ts-footer-row { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: 12px; color: var(--muted); }
.ts-footer-row a { color: var(--accent); }

/* Cart drawer */
.ts-cart-backdrop {
  position: fixed; inset: 0; z-index: 68; background: rgba(10, 10, 10, .5);
  opacity: 0; pointer-events: none; transition: opacity .3s ease;
}
html.ts-cart-open .ts-cart-backdrop { opacity: 1; pointer-events: auto; }
.ts-cart-drawer {
  position: fixed; top: 0; right: 0; bottom: 0; z-index: 69; width: min(420px, 92vw);
  background: var(--bg); color: var(--ink); box-shadow: -20px 0 50px rgba(0,0,0,.25);
  display: flex; flex-direction: column; transform: translateX(100%); transition: transform .35s ease;
}
html.ts-cart-open .ts-cart-drawer { transform: translateX(0); }
.ts-cart-head { display: flex; align-items: center; justify-content: space-between; padding: 20px 22px; border-bottom: 1px solid var(--line); }
.ts-cart-head h3 { font-size: 17px; font-family: var(--font-body); font-weight: 700; }
.ts-cart-shipping { padding: 16px 22px; border-bottom: 1px solid var(--line); }
.ts-cart-shipping-bar { height: 5px; border-radius: 99px; background: var(--surface); overflow: hidden; }
.ts-cart-shipping-bar i { display: block; height: 100%; width: 0%; background: var(--accent); transition: width .35s ease; }
.ts-cart-shipping p { font-size: 12px; color: var(--muted); margin: 10px 0 0; }
.ts-cart-offers { padding: 4px 22px 14px; display: flex; flex-direction: column; gap: 8px; }
.ts-cart-offer { display: flex; align-items: center; gap: 8px; font-size: 12px; color: var(--muted); }
.ts-cart-offer svg { width: 15px; height: 15px; flex: none; border-radius: 50%; padding: 2px; box-sizing: border-box; border: 1px solid var(--line); fill: none; stroke: var(--muted); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; transition: border-color .25s ease, stroke .25s ease, background .25s ease; }
.ts-cart-offer.is-unlocked { color: var(--ink); font-weight: 600; }
.ts-cart-offer.is-unlocked svg { border-color: var(--accent); stroke: var(--accent-ink); background: var(--accent); }
.ts-cart-items { flex: 1; overflow-y: auto; padding: 6px 22px; }
.ts-cart-empty { font-size: 13px; color: var(--muted); padding: 20px 0; }
.ts-cart-line { display: flex; gap: 12px; padding: 14px 0; border-bottom: 1px solid var(--line); align-items: center; }
.ts-cart-line .ts-tile { width: 62px; height: 62px; flex: none; border-radius: calc(var(--radius) * .6); }
.ts-cart-line .ts-tile span { display: none; }
.ts-cart-line-info { flex: 1; min-width: 0; }
.ts-cart-line-info h5 { font-size: 13px; font-weight: 600; margin: 0 0 4px; }
.ts-cart-line-info span { font-size: 12px; color: var(--muted); }
.ts-cart-line-remove { background: none; border: 0; color: var(--muted); font-size: 11px; text-decoration: underline; cursor: pointer; padding: 0; margin-top: 6px; }
.ts-cart-upsell { padding: 16px 22px; border-top: 1px solid var(--line); }
.ts-cart-upsell h4 { font-size: 12px; text-transform: uppercase; letter-spacing: .06em; color: var(--muted); margin-bottom: 12px; font-family: var(--font-body); }
.ts-cart-upsell-row { display: flex; gap: 12px; }
.ts-cart-upsell-item { flex: 1; text-align: center; }
.ts-cart-upsell-item .ts-tile { aspect-ratio: 1/1; margin-bottom: 8px; border-radius: calc(var(--radius) * .6); }
.ts-cart-upsell-item h5 { font-size: 11.5px; font-weight: 600; margin: 0 0 2px; }
.ts-cart-upsell-item span { font-size: 11px; color: var(--muted); display: block; margin-bottom: 6px; }
.ts-cart-upsell-item button { width: 100%; font-size: 11px; padding: 7px 0; border-radius: calc(var(--radius) * .6); border: 1px solid var(--line); background: transparent; color: var(--ink); cursor: pointer; }
.ts-cart-upsell-item button:hover { border-color: var(--accent); color: var(--accent); }
.ts-cart-footer { padding: 18px 22px; border-top: 1px solid var(--line); }
.ts-cart-subtotal { display: flex; justify-content: space-between; font-size: 14px; margin-bottom: 14px; }
.ts-cart-subtotal strong { font-size: 16px; }

/* A+ content */
.ts-aplus { padding: 20px 0 10px; border-top: 1px solid var(--line); margin-top: 40px; }
.ts-aplus-block { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: center; padding: 48px 0; }
.ts-aplus-block.ts-aplus-reverse .ts-aplus-media { order: 2; }
.ts-aplus-media { aspect-ratio: 16/11; }
.ts-aplus-block h3 { font-size: 24px; margin-bottom: 14px; }
.ts-aplus-block p { color: var(--muted); font-size: 14px; line-height: 1.7; }
.ts-aplus-features { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; padding: 36px 0; border-top: 1px solid var(--line); }
.ts-aplus-features div { text-align: center; }
.ts-aplus-features strong { display: block; font-size: 20px; color: var(--accent); font-family: var(--font-head); margin-bottom: 6px; }
.ts-aplus-features span { font-size: 12px; color: var(--muted); }

/* Collection filters */
.ts-collection-layout { display: grid; grid-template-columns: 220px 1fr; gap: 40px; align-items: start; }
.ts-filter-panel h4 { font-size: 12px; text-transform: uppercase; letter-spacing: .06em; color: var(--muted); margin: 0 0 14px; font-family: var(--font-body); }
.ts-filter-list { display: flex; flex-direction: column; gap: 4px; }
.ts-filter-btn {
  display: flex; align-items: center; justify-content: space-between; gap: 8px; width: 100%;
  padding: 9px 10px; border-radius: calc(var(--radius) * .6); border: 0; background: transparent;
  color: var(--muted); font-size: 13px; text-align: left; cursor: pointer; transition: background .2s ease, color .2s ease;
}
.ts-filter-btn:hover { color: var(--ink); }
.ts-filter-btn.is-active { background: var(--surface); color: var(--accent); font-weight: 600; }
.ts-filter-btn em { font-style: normal; font-size: 11px; opacity: .7; }
.ts-card[hidden] { display: none; }

@media (max-width: 900px) {
  .ts-collection-layout { grid-template-columns: 1fr; }
  .ts-filter-list { flex-direction: row; flex-wrap: wrap; }
  .ts-filter-btn { width: auto; }
  .ts-aplus-block, .ts-aplus-block.ts-aplus-reverse { grid-template-columns: 1fr; }
  .ts-aplus-block.ts-aplus-reverse .ts-aplus-media { order: 0; }
  .ts-aplus-features { grid-template-columns: repeat(2, 1fr); }
}

/* Toast */
.ts-toast {
  position: fixed; left: 50%; bottom: 26px; transform: translate(-50%, 120%); z-index: 60;
  background: var(--ink); color: var(--bg); padding: 12px 22px; border-radius: 999px; font-size: 13px;
  box-shadow: 0 14px 34px rgba(0,0,0,.25); transition: transform .35s ease;
}
.ts-toast.is-shown { transform: translate(-50%, 0); }

@media (max-width: 900px) {
  .ts-hero-grid { grid-template-columns: 1fr; }
  .ts-grid { grid-template-columns: repeat(2, 1fr); }
  .ts-product { grid-template-columns: 1fr; gap: 30px; }
  .ts-links { display: none; }
}

/* Stock urgency badge */
.ts-stock-badge {
  display: inline-flex; align-items: center; gap: 6px; font-size: 11px; font-weight: 600; color: #c0392b;
  background: rgba(192, 57, 43, .1); border-radius: 999px; padding: 4px 10px; margin: 10px 0;
}
.ts-stock-badge:before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: #c0392b; }
.ts-card .ts-stock-badge { position: absolute; top: 10px; left: 10px; z-index: 1; margin: 0; background: rgba(255,255,255,.92); }

/* Sticky add-to-cart bar */
.ts-sticky-bar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 35; background: var(--bg); border-bottom: 1px solid var(--line);
  box-shadow: 0 8px 24px rgba(0,0,0,.08); transform: translateY(-100%); transition: transform .3s ease;
}
.ts-sticky-bar.is-shown { transform: translateY(0); }
.ts-sticky-bar-row { display: flex; align-items: center; gap: 16px; padding: 12px 0; }
.ts-sticky-bar .ts-tile { width: 44px; height: 44px; flex: none; border-radius: calc(var(--radius) * .6); }
.ts-sticky-bar .ts-tile span { display: none; }
.ts-sticky-bar-name { flex: 1; min-width: 0; font-size: 13px; font-weight: 600; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.ts-sticky-bar-price { font-size: 14px; font-weight: 700; }
.ts-sticky-bar .ts-btn { height: 40px; padding: 0 20px; font-size: 12px; }

/* Review breakdown */
.ts-review-summary { display: flex; gap: 28px; align-items: center; padding: 22px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); margin: 30px 0; }
.ts-review-score { text-align: center; flex: none; }
.ts-review-score strong { display: block; font-size: 36px; font-family: var(--font-head); }
.ts-review-score .ts-stars { color: var(--accent); font-size: 13px; margin: 4px 0; }
.ts-review-score span { font-size: 11px; color: var(--muted); }
.ts-review-bars { flex: 1; display: flex; flex-direction: column; gap: 5px; }
.ts-review-bar-row { display: flex; align-items: center; gap: 8px; font-size: 11px; color: var(--muted); }
.ts-review-bar-row .ts-bar-track { flex: 1; height: 6px; border-radius: 99px; background: var(--surface); overflow: hidden; }
.ts-review-bar-row .ts-bar-fill { display: block; height: 100%; background: var(--accent); }
.ts-review-list { display: flex; flex-direction: column; gap: 20px; margin-bottom: 30px; }
.ts-review-item { border-bottom: 1px solid var(--line); padding-bottom: 18px; }
.ts-review-item-head { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-bottom: 6px; }
.ts-review-item-head strong { font-size: 13px; }
.ts-review-item-head time { font-size: 11px; color: var(--muted); }
.ts-review-item .ts-stars { color: var(--accent); font-size: 12px; margin-bottom: 6px; display: block; }
.ts-review-item p { font-size: 13px; color: var(--muted); line-height: 1.6; margin: 0; }

/* Trust badges */
.ts-trust-badges { display: flex; flex-wrap: wrap; gap: 14px; margin: 16px 0; }
.ts-trust-badges div { display: flex; align-items: center; gap: 6px; font-size: 11px; color: var(--muted); }
.ts-trust-badges svg { width: 16px; height: 16px; fill: none; stroke: var(--accent); stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }

/* Bundle offer */
.ts-bundle-offer { display: flex; align-items: center; gap: 10px; padding: 12px 14px; border: 1px dashed var(--accent); border-radius: calc(var(--radius) * .6); font-size: 12px; color: var(--ink); margin: 16px 0; background: var(--surface); }
.ts-bundle-offer svg { width: 18px; height: 18px; flex: none; fill: none; stroke: var(--accent); stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.ts-bundle-offer.is-active { border-style: solid; }
.ts-bundle-offer.is-active b { color: var(--accent); }

/* Recently viewed */
.ts-recent { display: none; }
.ts-recent.has-items { display: block; }

/* Exit-intent offer */
.ts-exit-backdrop {
  position: fixed; inset: 0; z-index: 90; background: rgba(0,0,0,.55); opacity: 0; pointer-events: none; transition: opacity .3s ease;
}
.ts-exit-backdrop.is-shown { opacity: 1; pointer-events: auto; }
.ts-exit-modal {
  position: fixed; top: 50%; left: 50%; z-index: 91; width: min(400px, 88vw);
  background: var(--bg); border-radius: calc(var(--radius) * .8); padding: 34px 30px; text-align: center;
  box-shadow: 0 30px 60px rgba(0,0,0,.35); opacity: 0; pointer-events: none;
  transform: translate(-50%, -50%) scale(.92); transition: opacity .3s ease, transform .3s ease;
}
.ts-exit-modal.is-shown { opacity: 1; pointer-events: auto; transform: translate(-50%, -50%) scale(1); }
.ts-exit-modal .ts-eyebrow { justify-content: center; display: flex; }
.ts-exit-modal h3 { font-size: 24px; margin: 6px 0 10px; }
.ts-exit-modal p { color: var(--muted); font-size: 13px; margin: 0 0 20px; }
.ts-exit-code { display: inline-block; border: 1px dashed var(--accent); border-radius: calc(var(--radius) * .6); padding: 10px 18px; font-weight: 700; letter-spacing: .06em; margin-bottom: 20px; }
.ts-exit-close { position: absolute; top: 14px; right: 14px; width: 30px; height: 30px; border-radius: 50%; border: 1px solid var(--line); background: transparent; color: var(--ink); cursor: pointer; }

@media (max-width: 640px) {
  .ts-review-summary { flex-direction: column; align-items: flex-start; gap: 16px; }
}

/* ---- Phase 1 additions: announcement bar, wishlist, drawer menu ---- */
.ts-announcement { background: var(--accent); color: var(--accent-ink); text-align: center; font-size: 12px; letter-spacing: .04em; padding: 9px 16px; font-weight: 600; }

.ts-wishlist-badge {
  position: absolute; top: -4px; right: -4px; min-width: 16px; height: 16px; padding: 0 3px; border-radius: 999px;
  background: var(--ink); color: var(--bg); font-size: 10px; line-height: 16px; text-align: center;
  opacity: 0; transform: scale(.5); transition: opacity .2s ease, transform .2s ease;
}
.ts-wishlist-badge.is-shown { opacity: 1; transform: scale(1); }
.ts-wish-btn {
  position: absolute; top: 10px; right: 10px; z-index: 2; width: 32px; height: 32px; border-radius: 50%;
  border: 0; background: rgba(255,255,255,.9); color: var(--ink); display: grid; place-items: center; cursor: pointer;
  transition: transform .2s ease, color .2s ease;
}
.ts-wish-btn svg { width: 16px; height: 16px; fill: none; stroke: currentColor; stroke-width: 1.8; }
.ts-wish-btn:hover { transform: scale(1.08); }
.ts-wish-btn.is-active { color: #e0455f; }
.ts-wish-btn.is-active svg { fill: #e0455f; }
.ts-card { position: relative; }
.ts-pdp-wish {
  display: inline-flex; align-items: center; gap: 6px; height: 48px; padding: 0 18px; border-radius: var(--radius);
  border: 1px solid var(--line); background: transparent; color: var(--ink); font-size: 13px; cursor: pointer;
}
.ts-pdp-wish svg { width: 16px; height: 16px; fill: none; stroke: currentColor; stroke-width: 1.8; }
.ts-pdp-wish.is-active { color: #e0455f; border-color: #e0455f; }
.ts-pdp-wish.is-active svg { fill: #e0455f; }

.ts-menu-toggle {
  display: none; width: 38px; height: 38px; border-radius: 50%; border: 1px solid var(--line); background: transparent;
  color: var(--ink); cursor: pointer; align-items: center; justify-content: center; flex-direction: column; gap: 4px;
}
.ts-menu-toggle span { width: 16px; height: 1.6px; background: currentColor; display: block; }
.ts-drawer-backdrop { position: fixed; inset: 0; z-index: 68; background: rgba(0,0,0,.5); opacity: 0; pointer-events: none; transition: opacity .3s ease; }
.ts-drawer-backdrop.is-shown { opacity: 1; pointer-events: auto; }
.ts-nav-drawer {
  position: fixed; top: 0; left: 0; bottom: 0; z-index: 69; width: min(320px, 86vw); background: var(--bg);
  box-shadow: 20px 0 50px rgba(0,0,0,.2); padding: 24px; transform: translateX(-100%); transition: transform .35s ease;
  display: flex; flex-direction: column; gap: 4px;
}
.ts-nav-drawer.is-shown { transform: translateX(0); }
.ts-nav-drawer a { padding: 12px 4px; font-size: 15px; border-bottom: 1px solid var(--line); }
.ts-nav-drawer-close { align-self: flex-end; width: 32px; height: 32px; border-radius: 50%; border: 1px solid var(--line); background: none; color: var(--ink); margin-bottom: 10px; cursor: pointer; }
@media (max-width: 900px) {
  .ts-menu-toggle { display: inline-flex; }
}

/* Category cards */
.ts-cat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.ts-cat-card { position: relative; border-radius: var(--radius); overflow: hidden; aspect-ratio: 3/4; display: flex; align-items: flex-end; color: #fff; background: linear-gradient(135deg, var(--accent) 0%, var(--surface) 130%); }
.ts-cat-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transition: opacity .5s ease, transform .5s ease; }
.ts-cat-card img.ts-img-loaded { opacity: 1; }
.ts-cat-card:hover img { transform: scale(1.06); }
.ts-cat-card:after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(0,0,0,.6)); }
.ts-cat-card span { position: relative; z-index: 1; padding: 18px; font-size: 15px; font-weight: 700; }
@media (max-width: 900px) { .ts-cat-grid { grid-template-columns: repeat(2, 1fr); } }

/* Trust row (icons) */
.ts-trust-row { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; padding: 30px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.ts-trust-row div { text-align: center; }
.ts-trust-row svg { width: 26px; height: 26px; fill: none; stroke: var(--accent); stroke-width: 1.4; margin-bottom: 8px; }
.ts-trust-row span { display: block; font-size: 12px; color: var(--muted); }
@media (max-width: 900px) { .ts-trust-row { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 480px) { .ts-trust-row { grid-template-columns: repeat(2, 1fr); } }

/* UGC grid */
.ts-ugc-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 10px; }
.ts-ugc-item { position: relative; aspect-ratio: 1/1; border-radius: calc(var(--radius) * .5); overflow: hidden; background: linear-gradient(135deg, var(--accent) 0%, var(--surface) 130%); }
.ts-ugc-item img { width: 100%; height: 100%; object-fit: cover; opacity: 0; transition: opacity .5s ease; }
.ts-ugc-item img.ts-img-loaded { opacity: 1; }
@media (max-width: 900px) { .ts-ugc-grid { grid-template-columns: repeat(3, 1fr); } }

/* Editorial cards */
.ts-editorial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.ts-editorial-card { display: block; }
.ts-editorial-card .ts-tile { aspect-ratio: 4/3; margin-bottom: 12px; }
.ts-editorial-card h3 { font-size: 15px; margin: 0 0 4px; }
.ts-editorial-card span { font-size: 12px; color: var(--muted); }
@media (max-width: 900px) { .ts-editorial-grid { grid-template-columns: 1fr; } }

/* Best-sellers carousel */
.ts-carousel-wrap { position: relative; }
.ts-carousel { display: flex; gap: 22px; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; padding-bottom: 4px; }
.ts-carousel::-webkit-scrollbar { display: none; }
.ts-carousel .ts-card { flex: 0 0 240px; scroll-snap-align: start; }
.ts-carousel-nav { display: flex; gap: 8px; }
.ts-carousel-nav button { width: 36px; height: 36px; border-radius: 50%; border: 1px solid var(--line); background: var(--bg); color: var(--ink); cursor: pointer; }
.ts-carousel-nav button:hover { border-color: var(--accent); color: var(--accent); }
.ts-card-badges { position: absolute; top: 10px; left: 10px; z-index: 1; display: flex; flex-direction: column; gap: 4px; }
.ts-card-badge { font-size: 10px; font-weight: 700; letter-spacing: .03em; padding: 4px 8px; border-radius: 999px; background: var(--ink); color: var(--bg); }
.ts-card-badge.is-sale { background: #c0392b; color: #fff; }
.ts-card-hover-img { position: absolute; inset: 0; opacity: 0; transition: opacity .3s ease; }
.ts-card:hover .ts-card-hover-img { opacity: 1; }

/* PDP tabs */
.ts-tabs-nav { display: flex; gap: 4px; border-bottom: 1px solid var(--line); overflow-x: auto; }
.ts-tabs-nav button { padding: 12px 16px; font-size: 12px; font-weight: 600; color: var(--muted); background: none; border: 0; border-bottom: 2px solid transparent; cursor: pointer; white-space: nowrap; }
.ts-tabs-nav button.is-active { color: var(--accent); border-color: var(--accent); }
.ts-tab-panel { display: none; padding: 18px 2px; font-size: 13px; color: var(--muted); line-height: 1.7; }
.ts-tab-panel.is-active { display: block; }

/* Frequently bought together */
.ts-fbt { border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; }
.ts-fbt-row { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.ts-fbt-item { display: flex; flex-direction: column; align-items: center; gap: 6px; width: 100px; text-align: center; }
.ts-fbt-item .ts-tile { width: 84px; height: 84px; }
.ts-fbt-item input[type="checkbox"] { margin-top: 4px; }
.ts-fbt-item span { font-size: 11px; }
.ts-fbt-plus { font-size: 20px; color: var(--muted); }
.ts-fbt-footer { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-top: 18px; flex-wrap: wrap; }
.ts-fbt-total { font-size: 13px; }
.ts-fbt-total b { font-size: 18px; }
.ts-fbt-save { color: var(--accent); font-size: 12px; font-weight: 600; }

/* Delivery / pincode checker */
.ts-delivery-check { display: flex; gap: 8px; margin: 16px 0; }
.ts-delivery-check input { flex: 1; height: 44px; border: 1px solid var(--line); border-radius: calc(var(--radius) * .6); padding: 0 14px; font-size: 13px; }
.ts-delivery-check button { height: 44px; padding: 0 18px; border-radius: calc(var(--radius) * .6); border: 1px solid var(--ink); background: var(--ink); color: var(--bg); font-size: 12px; cursor: pointer; }
.ts-delivery-result { font-size: 12px; color: var(--muted); min-height: 16px; }
.ts-delivery-result.is-success { color: #2f9e5f; }
.ts-delivery-result.is-error { color: #c0392b; }

/* Subscribe vs one-time */
.ts-purchase-options { display: flex; flex-direction: column; gap: 8px; margin: 16px 0; }
.ts-purchase-option { display: flex; align-items: center; justify-content: space-between; gap: 10px; border: 1px solid var(--line); border-radius: calc(var(--radius) * .6); padding: 12px 14px; cursor: pointer; }
.ts-purchase-option.is-active { border-color: var(--accent); background: var(--surface); }
.ts-purchase-option-label { display: flex; align-items: center; gap: 10px; font-size: 13px; }
.ts-purchase-option-price { font-size: 13px; font-weight: 700; }
.ts-purchase-option-save { font-size: 11px; color: var(--accent); font-weight: 600; }

/* Collection filters: price + availability */
.ts-filter-section { border-top: 1px solid var(--line); padding-top: 16px; margin-top: 16px; }
.ts-filter-section h4 { font-size: 12px; text-transform: uppercase; letter-spacing: .06em; color: var(--muted); margin: 0 0 12px; }
.ts-filter-check { display: flex; align-items: center; gap: 8px; font-size: 13px; padding: 6px 0; cursor: pointer; }
