:root {
  --bg: #f4f6f9;
  --bg-elevated: #eef2f7;
  --surface: #ffffff;
  --surface-2: #f8fafc;
  --text: #121826;
  --muted: #5c6573;
  --border: #e2e8f0;
  --accent: #1a5cff;
  --accent-hover: #1248d4;
  --accent-soft: rgba(26, 92, 255, 0.12);
  --navy: #0b1f4d;
  --steel: #334155;
  --success: #0d8a4f;
  --radius: 14px;
  --radius-sm: 10px;
  --radius-pill: 999px;
  --shadow: 0 8px 24px rgba(20, 30, 50, 0.06);
  --shadow-glass: 0 12px 36px rgba(11, 31, 77, 0.14);
  --glass-bg: rgba(255, 255, 255, 0.72);
  --glass-border: rgba(255, 255, 255, 0.45);
  --glass-dark: rgba(8, 14, 28, 0.78);
  --safe-top: env(safe-area-inset-top, 0px);
  --safe-bottom: env(safe-area-inset-bottom, 0px);
  --safe-left: env(safe-area-inset-left, 0px);
  --safe-right: env(safe-area-inset-right, 0px);
  --z-header: 1000;
  --z-bottom-nav: 120;
  --z-sticky-buy: 110;
  --z-modal: 200;
  --z-toast: 3000;
  --motion-fast: 160ms;
  --motion-med: 280ms;
  --bottom-nav-h: 64px;
  --sticky-buy-h: 64px;
  font-family: "Segoe UI", system-ui, -apple-system, sans-serif;
}

* { box-sizing: border-box; }
body.tm-light {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
}
body.tm-has-bottom-nav { padding-bottom: 0; }
a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--accent-hover); }
.tm-container { max-width: 1180px; margin: 0 auto; padding: 0 1rem; }
.tm-main { padding: 1.25rem 0 3rem; }
.tm-muted { color: var(--muted); font-size: 0.92rem; }

.tm-header {
  position: sticky;
  top: 0;
  z-index: var(--z-header);
}
.tm-header--glass {
  background: var(--glass-dark);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow-glass);
  color: #fff;
}
@supports ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  .tm-header--glass {
    background: rgba(8, 14, 28, 0.72);
    backdrop-filter: blur(14px) saturate(130%);
    -webkit-backdrop-filter: blur(14px) saturate(130%);
  }
}
.tm-header__shell {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 0.55rem 0 0.65rem;
}
.tm-header__topline {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  width: 100%;
  min-width: 0;
}
.tm-header__grid { display: none; }
.tm-header__brand { display: contents; }
.tm-header__logo,
.tm-logo {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  min-width: 0;
  text-decoration: none;
}
.tm-header__city-compact,
.header-city-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  border: none;
  background: none;
  padding: 0;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
  min-width: 0;
  max-width: 52vw;
  white-space: nowrap;
  overflow: hidden;
}
.tm-header__city-icon { opacity: 0.85; flex-shrink: 0; filter: brightness(0) invert(1); }
.tm-header__city-label,
.tm-header__city-label.city-name {
  font-weight: 600;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 140px;
}
.tm-header__city-change,
.tm-header__city-change.city-change {
  color: #8ab4ff;
  text-decoration: underline;
  text-underline-offset: 2px;
  flex-shrink: 0;
}
.tm-header__catalog {
  display: none;
  align-items: center;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 600;
  white-space: nowrap;
}
.tm-header__catalog:hover { color: #fff; background: rgba(255, 255, 255, 0.12); }
.tm-header__search {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  padding: 0.45rem 0.85rem;
  background: rgba(255, 255, 255, 0.08);
  position: relative;
}
.tm-header__search input {
  flex: 1;
  border: none;
  background: transparent;
  font-size: 0.92rem;
  outline: none;
  min-width: 0;
  color: #fff;
}
.tm-header__search input::placeholder { color: rgba(255, 255, 255, 0.55); }
.tm-header__search-icon { opacity: 0.7; flex-shrink: 0; filter: brightness(0) invert(1); }
.tm-header__search-btn {
  border: none;
  background: var(--accent);
  color: #fff;
  border-radius: 999px;
  padding: 0.4rem 0.85rem;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
}
.tm-search-suggest {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 8px);
  z-index: 140;
  background: #171717;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.42);
  max-height: min(70vh, 420px);
  overflow-y: auto;
  padding: 0.35rem 0;
}
.tm-search-suggest[hidden] { display: none !important; }
.tm-search-suggest__item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-height: 44px;
  padding: 0.55rem 0.85rem;
  color: #fff;
  text-decoration: none;
  cursor: pointer;
}
.tm-search-suggest__item:hover,
.tm-search-suggest__item--active {
  background: rgba(255, 255, 255, 0.08);
}
.tm-search-suggest__thumb {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  object-fit: contain;
  background: rgba(255, 255, 255, 0.06);
  flex-shrink: 0;
}
.tm-search-suggest__body { min-width: 0; flex: 1; }
.tm-search-suggest__title {
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.25;
  color: #fff;
}
.tm-search-suggest__meta {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.62);
  margin-top: 0.15rem;
}
.tm-search-suggest__price {
  font-size: 0.86rem;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
  flex-shrink: 0;
}
.tm-search-suggest__empty,
.tm-search-suggest__footer {
  padding: 0.75rem 0.85rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.72);
}
.tm-search-suggest__footer a { color: var(--accent); }
.tm-header__actions {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  margin-left: auto;
  flex-shrink: 0;
}
.tm-header__icon-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  min-width: 40px;
  min-height: 40px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}
.tm-header__icon-btn img { display: block; filter: brightness(0) invert(1); }
.tm-header__icon-btn--cart { background: var(--accent); border-color: rgba(26, 92, 255, 0.9); }
.tm-header__icon-btn--support { background: rgba(255, 255, 255, 0.1); }
.tm-header__badge,
.tm-bottom-nav__badge {
  position: absolute;
  top: -4px;
  right: -4px;
  min-width: 16px;
  height: 16px;
  padding: 0 4px;
  border-radius: 999px;
  background: #e53935;
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  line-height: 16px;
  text-align: center;
}
.tm-header__badge:empty,
.tm-header__badge[hidden],
.tm-bottom-nav__badge[hidden] { display: none; }
.tm-cart-btn { display: none; }
.tm-logo {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  min-width: 0;
  text-decoration: none;
}
.tm-logo__img {
  display: block;
  width: auto;
  height: 38px;
  max-width: 170px;
  object-fit: contain;
}
.tm-logo__text {
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
  color: #fff;
  line-height: 1.2;
  white-space: nowrap;
}
.tm-header__city {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  flex-wrap: wrap;
  min-width: 0;
}
.tm-header__city-name {
  font-size: 0.88rem;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.tm-city-btn {
  border: 1px solid rgba(228, 232, 238, 0.95);
  background: rgba(255, 255, 255, 0.65);
  border-radius: 999px;
  padding: 0.28rem 0.6rem;
  cursor: pointer;
  font-size: 0.78rem;
  color: var(--muted);
}
.tm-header__contact {
  font-size: 0.85rem;
  color: var(--text);
  padding: 0.35rem 0.55rem;
  border-radius: 8px;
  border: 1px solid transparent;
}
.tm-header__contact:hover {
  border-color: var(--border);
  background: rgba(255,255,255,0.7);
}
.tm-cart-btn {
  background: var(--accent);
  color: #fff;
  padding: 0.48rem 0.85rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.85rem;
  white-space: nowrap;
}
.tm-badge {
  background: rgba(255,255,255,0.25);
  padding: 0.1rem 0.45rem;
  border-radius: 999px;
  font-size: 0.75rem;
}

.tm-commerce-hero {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin-bottom: 1rem;
  box-shadow: var(--shadow);
}
.tm-commerce-hero h1 {
  margin: 0 0 0.5rem;
  font-size: clamp(1.35rem, 3vw, 1.85rem);
  line-height: 1.2;
}
.tm-lead { margin: 0; color: var(--muted); max-width: 52ch; }
.tm-hero-search {
  display: flex;
  gap: 0.5rem;
  margin-top: 1rem;
}
.tm-hero-search input {
  flex: 1;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0.65rem 0.85rem;
  font-size: 1rem;
}

.tm-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.tm-filters select, .tm-select, .tm-input, .tm-textarea {
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0.55rem 0.75rem;
  font-size: 0.95rem;
  background: var(--surface);
}
.tm-textarea { width: 100%; resize: vertical; }
label { display: block; margin: 0.75rem 0 0.35rem; font-size: 0.88rem; color: var(--muted); }

.tm-section-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin: 1rem 0;
}
.tm-section-head h2 { margin: 0; font-size: 1.2rem; }

.tm-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1rem;
}
.tm-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  position: relative;
}
.tm-card__top {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  z-index: 2;
}
.tm-fav-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.92);
  cursor: pointer;
  padding: 0;
}
.tm-fav-btn img { opacity: 0.55; }
.tm-fav-btn--active img { opacity: 1; filter: invert(24%) sepia(89%) saturate(4685%) hue-rotate(346deg); }
.tm-gallery-main--with-fav { position: relative; }
.tm-gallery-main--with-fav .tm-fav-btn {
  position: absolute;
  top: 0.65rem;
  right: 0.65rem;
  z-index: 2;
}
.tm-card__img-wrap {
  display: block;
  aspect-ratio: 1;
  background: #fff;
  border-bottom: 1px solid var(--border);
}
.tm-card__img-wrap picture,
.tm-card__img-wrap img,
.tm-product-card__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.tm-card__img-wrap img {
  padding: 0.75rem;
}
.tm-card__body { padding: 0.9rem; flex: 1; display: flex; flex-direction: column; }
.tm-card h3 { margin: 0.35rem 0; font-size: 0.98rem; line-height: 1.3; }
.tm-card h3 a { color: var(--text); }
.tm-tag {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--muted);
}
.tm-price { font-size: 1.15rem; font-weight: 700; margin: 0.35rem 0; }
.tm-stock { font-size: 0.82rem; color: var(--muted); margin-bottom: 0.75rem; }
.tm-stock--in { color: var(--success); }
.tm-card__actions { display: flex; gap: 0.5rem; margin-top: auto; }

.tm-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 0.6rem 1rem;
  font-weight: 600;
  cursor: pointer;
  font-size: 0.92rem;
}
.tm-btn:hover { background: var(--accent-hover); color: #fff; }
.tm-btn--ghost {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--border);
}
.tm-btn--ghost:hover { background: #eef2ff; }
.tm-btn--sm { padding: 0.45rem 0.7rem; font-size: 0.85rem; }
.tm-btn--block { width: 100%; }
.tm-btn--buy {
  background: linear-gradient(135deg, #1a5cff, #0b3fd6);
  box-shadow: 0 6px 16px rgba(26, 92, 255, 0.28);
}
.tm-btn--buy:hover { background: linear-gradient(135deg, #2f6bff, #0b3fd6); }

.tm-toast {
  position: fixed;
  left: 50%;
  bottom: calc(var(--bottom-nav-h) + var(--safe-bottom) + 24px);
  transform: translateX(-50%) translateY(20px);
  background: rgba(5, 7, 12, 0.92);
  color: #fff;
  padding: 0.7rem 1.2rem;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
  z-index: var(--z-toast);
}
body.tm-has-sticky-buy .tm-toast {
  bottom: calc(var(--bottom-nav-h) + var(--sticky-buy-h) + var(--safe-bottom) + 24px);
}
.tm-toast--show { opacity: 1; transform: translateX(-50%) translateY(0); }

.tm-panel {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
  margin-top: 1.25rem;
  box-shadow: var(--shadow);
}
.tm-panel--compact h2 { margin-top: 0; font-size: 1.05rem; }

.tm-product-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 1.5rem;
  align-items: start;
}
.tm-gallery-main {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem;
}
.tm-gallery-main img { width: 100%; height: auto; display: block; }
.tm-thumbs { display: flex; gap: 0.5rem; margin-top: 0.75rem; flex-wrap: wrap; }
.tm-thumbs img {
  width: 72px; height: 72px; object-fit: contain;
  border: 2px solid transparent; border-radius: 8px; cursor: pointer; background: #fff;
}
.tm-thumbs img.active { border-color: var(--accent); }
.tm-buybox {
  position: sticky;
  top: 80px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
  box-shadow: var(--shadow);
}
.tm-buybox h1 { margin: 0.35rem 0; font-size: 1.35rem; }
.tm-buybox__price { font-size: 1.6rem; font-weight: 700; margin: 0.5rem 0; }
.tm-buybox__actions { display: grid; gap: 0.5rem; margin: 1rem 0; }
.tm-marketplace { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.tm-marketplace a {
  border: 1px solid var(--border);
  padding: 0.4rem 0.7rem;
  border-radius: 8px;
  font-size: 0.88rem;
  background: #fff;
}
.tm-spec-table { width: 100%; border-collapse: collapse; }
.tm-spec-table th, .tm-spec-table td {
  text-align: left;
  padding: 0.5rem 0.75rem;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
}
.tm-spec-table th { color: var(--muted); width: 40%; font-weight: 500; }

.tm-cart-table { width: 100%; border-collapse: collapse; }
.tm-cart-thumb-cell { width: 64px; padding-right: 0.5rem; vertical-align: middle; }
.tm-cart-thumb {
  display: block;
  width: 72px;
  height: 72px;
  object-fit: contain;
  border-radius: 8px;
  background: #f4f6f8;
  border: 1px solid var(--border);
}

.tm-checkout-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 1rem;
  align-items: start;
}
.tm-summary-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0;
  font-size: 0.9rem;
}
.tm-summary-line--item .tm-cart-thumb {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
}
.tm-summary-line--item span:first-of-type {
  flex: 1;
  min-width: 0;
}
.tm-summary-line--total {
  font-weight: 700;
  border-top: 1px solid var(--border);
  margin-top: 0.5rem;
  padding-top: 0.75rem;
}
.tm-form-error { color: #c62828; font-size: 0.82rem; display: none; }
.tm-form-error.visible { display: block; }
.tm-checkbox { display: flex; gap: 0.5rem; align-items: flex-start; margin-top: 1rem; font-size: 0.88rem; }
.tm-notice {
  background: #eef4ff;
  border: 1px solid #c5d7ff;
  color: #1a3d8f;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  margin-bottom: 1rem;
  font-size: 0.9rem;
}
.tm-notice--staging {
  background: #fff8e6;
  border-color: #f0d78c;
  color: #6b4e00;
}
.tm-contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.5rem;
}
.tm-city-pick--suggested { border-color: var(--accent); background: #f0f5ff; }

.tm-hero-media {
  max-width: 1180px;
  width: 100%;
  margin: 0 auto 0.5rem;
  padding: 0;
  background: transparent;
  box-sizing: border-box;
}
.tm-hero-media__track {
  display: flex;
  align-items: flex-start;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  background: #2b2b2b;
  padding: 16px 0 0;
  box-sizing: border-box;
}
.tm-hero-media__track::-webkit-scrollbar { display: none; }
.tm-hero-media__slide {
  flex: 0 0 100%;
  scroll-snap-align: start;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 24px;
  box-sizing: border-box;
  text-decoration: none;
}
.tm-hero-media__picture {
  display: block;
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
  line-height: 0;
}
.tm-hero-media__image {
  display: block;
  width: 100%;
  height: auto;
  max-width: 520px;
  border-radius: 6px;
  object-fit: contain;
  background: transparent;
  aspect-ratio: 1 / 1;
}
.tm-hero-media__dots {
  display: flex;
  justify-content: center;
  gap: 0.4rem;
  margin: 0;
  padding: 12px 0 16px;
  background: #2b2b2b;
  box-sizing: border-box;
}
.tm-hero-media__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  border: none;
  padding: 0;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
}
.tm-hero-media__dot--active {
  background: #fff;
  width: 20px;
  border-radius: 999px;
}
@media (min-width: 768px) {
  .tm-hero-media__picture,
  .tm-hero-media__image {
    max-width: 940px;
  }
  .tm-hero-media__image {
    aspect-ratio: 940 / 370;
  }
  .tm-hero-media__slide {
    padding: 0 32px;
  }
}

.tm-promo-carousel {
  margin-bottom: 0.75rem;
  position: relative;
}
.tm-promo-carousel__track {
  display: flex;
  gap: 0.75rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  padding: 0.25rem 0 0.5rem;
  scrollbar-width: none;
}
.tm-promo-carousel__track::-webkit-scrollbar { display: none; }
.tm-promo-slide {
  flex: 0 0 min(88%, 340px);
  scroll-snap-align: start;
  background: linear-gradient(135deg, #fff 0%, #f3f6ff 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem 1.1rem;
  box-shadow: var(--shadow);
}
.tm-promo-slide__title {
  margin: 0 0 0.35rem;
  font-size: 1.05rem;
  line-height: 1.25;
}
.tm-promo-slide__text {
  margin: 0 0 0.75rem;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.4;
}
.tm-promo-slide__cta { margin-top: auto; }
.tm-promo-carousel__dots {
  display: flex;
  justify-content: center;
  gap: 0.35rem;
  margin-top: 0.35rem;
}
.tm-promo-carousel__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  border: none;
  padding: 0;
  background: #c5cdd8;
  cursor: pointer;
}
.tm-promo-carousel__dot--active { background: var(--accent); width: 18px; border-radius: 999px; }

.tm-product-carousel-wrap {
  margin-bottom: 0.85rem;
  position: relative;
}
.tm-product-carousel { position: relative; }
.tm-product-carousel__track {
  display: flex;
  gap: 0.75rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  padding: 0.25rem 0 0.5rem;
  scrollbar-width: none;
}
.tm-product-carousel__track::-webkit-scrollbar { display: none; }
.tm-card--carousel {
  flex: 0 0 100%;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  min-height: 420px;
  max-width: 100%;
  overflow: hidden;
}
.tm-card--carousel .tm-card__img-wrap {
  aspect-ratio: 1 / 1;
  max-height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f7f9fc;
  border-radius: var(--radius) var(--radius) 0 0;
  overflow: hidden;
}
.tm-card--carousel .tm-card__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 0.5rem;
}
.tm-card--carousel .tm-card__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 0.85rem 1rem 1rem;
}
.tm-card--carousel .tm-card__stock {
  font-size: 0.78rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
}
.tm-card--carousel .tm-card__title {
  font-size: 1rem;
  line-height: 1.3;
  margin: 0 0 0.35rem;
}
.tm-card--carousel .tm-card__desc {
  margin: 0 0 0.5rem;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.tm-card--carousel .tm-price {
  margin-top: auto;
  margin-bottom: 0.65rem;
  font-size: 1.15rem;
  font-weight: 700;
}
.tm-card--carousel .tm-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}
.tm-product-carousel__dots {
  display: flex;
  justify-content: center;
  gap: 0.35rem;
  margin-top: 0.35rem;
}
.tm-product-carousel__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  border: none;
  padding: 0;
  background: #c5cdd8;
  cursor: pointer;
}
.tm-product-carousel__dot--active {
  background: var(--accent);
  width: 18px;
  border-radius: 999px;
}

.tm-home-section { margin-bottom: 1.25rem; }
.tm-section-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}
.tm-section-head h1,
.tm-section-head h2 {
  margin: 0;
  font-size: 1.15rem;
}
.tm-section-head__link {
  font-size: 0.82rem;
  color: var(--accent);
  white-space: nowrap;
}
.tm-grid--home .tm-card { min-height: 100%; }
.tm-support-block { margin-top: 0.5rem; margin-bottom: 1rem; }
.tm-support-block h2 { margin-top: 0; font-size: 1.05rem; }
.tm-empty-state { text-align: center; padding: 2rem 1rem; }
.tm-empty-state h1,
.tm-empty-state h2 { margin-top: 0; }
.tm-empty-state__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-top: 1rem;
}
.tm-price--request { color: var(--muted); font-weight: 600; }
.tm-card__stock { font-size: 0.78rem; font-weight: 600; margin-bottom: 0.25rem; }
.tm-not-found { margin-bottom: 1.5rem; }

@media (min-width: 769px) {
  .tm-card--carousel {
    flex: 0 0 calc(33.333% - 0.5rem);
    min-height: 400px;
  }
  .tm-product-carousel__track {
    scroll-snap-type: none;
  }
}
@media (min-width: 1100px) {
  .tm-card--carousel {
    flex: 0 0 calc(25% - 0.56rem);
  }
}

.tm-category-chips {
  display: flex;
  gap: 0.45rem;
  overflow-x: auto;
  padding: 0.25rem 0 0.85rem;
  margin-bottom: 0.5rem;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.tm-category-chips::-webkit-scrollbar { display: none; }
.tm-category-chip {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text);
  font-size: 0.82rem;
  font-weight: 500;
  white-space: nowrap;
}
.tm-category-chip:hover { border-color: var(--accent); color: var(--accent); }
.tm-category-chip--active {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.tm-mobile-search {
  border-bottom: 1px solid rgba(228, 232, 238, 0.85);
  background: rgba(255, 255, 255, 0.55);
  padding: 0.5rem 0;
}
.tm-mobile-search__form {
  display: flex;
  gap: 0.5rem;
}
.tm-mobile-search__form input {
  flex: 1;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 0.55rem 0.9rem;
  font-size: 0.95rem;
  background: #fff;
}

.tm-footer {
  border-top: 1px solid var(--border);
  background: var(--surface);
  padding: 1.5rem 0 2rem;
  margin-top: 1.5rem;
}
.tm-footer__top {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 0.75rem 1.25rem;
}
.tm-footer__col {
  border: none;
  margin: 0;
  padding: 0;
}
.tm-footer__title {
  font-size: 0.88rem;
  font-weight: 700;
  margin: 0 0 0.5rem;
  cursor: pointer;
  list-style: none;
}
.tm-footer__title::-webkit-details-marker { display: none; }
.tm-footer__links {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.tm-footer__link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--text);
  font-size: 0.84rem;
  line-height: 1.3;
}
.tm-footer__link:hover { color: var(--accent); }
.tm-footer__icon {
  flex-shrink: 0;
  opacity: 0.75;
}
.tm-footer__bottom {
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}
.tm-footer__copy { margin: 0.35rem 0 0; font-size: 0.82rem; }

.tm-bottom-nav {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: var(--z-bottom-nav);
  background: rgba(255,255,255,0.96);
  border-top: 1px solid var(--border);
  padding: 0.35rem 0 calc(0.35rem + var(--safe-bottom));
  box-shadow: 0 -4px 20px rgba(20,30,50,0.06);
}
.tm-glass-nav {
  background: var(--glass-bg);
}
@supports ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  .tm-glass-nav {
    backdrop-filter: blur(12px) saturate(120%);
    -webkit-backdrop-filter: blur(12px) saturate(120%);
  }
}
.tm-bottom-nav__item {
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.15rem;
  padding: 0.25rem 0.15rem;
  color: var(--muted);
  font-size: 0.68rem;
  text-decoration: none;
}
.tm-bottom-nav__item img { opacity: 0.65; }
.tm-bottom-nav__item--active { color: var(--accent); font-weight: 600; }
.tm-bottom-nav__item--active img { opacity: 1; }

.tm-breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  align-items: center;
  font-size: 0.88rem;
  margin-bottom: 1rem;
  color: var(--muted);
}
.tm-breadcrumbs a { color: var(--accent); }
.tm-breadcrumbs__sep { opacity: 0.5; }

.tm-modal {
  position: fixed; inset: 0;
  background: rgba(10, 20, 40, 0.45);
  display: flex; align-items: center; justify-content: center;
  z-index: 200; padding: 1rem;
}
.tm-modal[hidden] { display: none; }
.tm-modal__box {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 1.5rem;
  max-width: 420px;
  width: 100%;
  box-shadow: var(--shadow);
}
.tm-city-list { display: grid; gap: 0.5rem; margin: 1rem 0; }
.tm-city-pick {
  text-align: left;
  border: 1px solid var(--border);
  background: #fff;
  border-radius: 8px;
  padding: 0.65rem 0.85rem;
  cursor: pointer;
  font-size: 0.95rem;
}
.tm-city-pick:hover { border-color: var(--accent); }

.tm-geo-prompt {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: calc(72px + env(safe-area-inset-bottom, 0px));
  z-index: 150;
  pointer-events: none;
}
.tm-geo-prompt[hidden] { display: none !important; }
.tm-geo-prompt__inner {
  pointer-events: auto;
  max-width: 420px;
  margin: 0 auto;
  background: var(--surface, #fff);
  border: 1px solid var(--border, #e5e7eb);
  border-radius: 12px;
  box-shadow: var(--shadow, 0 8px 24px rgba(0,0,0,.12));
  padding: 0.85rem 1rem 0.9rem;
  position: relative;
}
.tm-geo-prompt__text {
  margin: 0 1.5rem 0.25rem 0;
  font-size: 0.98rem;
  font-weight: 600;
  line-height: 1.35;
}
.tm-geo-prompt__hint {
  margin: 0 0 0.75rem;
  font-size: 0.82rem;
}
.tm-geo-prompt__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
}
.tm-geo-prompt__close {
  position: absolute;
  top: 6px;
  right: 8px;
  border: 0;
  background: transparent;
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
  color: #667;
  padding: 0.2rem 0.35rem;
}
.tm-geo-prompt__close:hover { color: #111; }
@media (min-width: 900px) {
  .tm-geo-prompt {
    left: auto;
    right: 24px;
    bottom: 24px;
    width: min(400px, calc(100vw - 48px));
  }
  .tm-geo-prompt__inner { margin: 0; max-width: none; }
}

.tm-page-title { margin: 0 0 1rem; }

.tm-success-box {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  max-width: 520px;
  margin: 0 auto;
  text-align: center;
  box-shadow: var(--shadow);
}
.tm-status-pill {
  display: inline-block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  background: #eef4ff;
  color: var(--accent);
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  margin-bottom: 0.75rem;
}

.tm-commerce-hero--compact { padding: 1rem 0 0.75rem; }
.tm-commerce-hero--compact h1 { font-size: 1.35rem; margin-bottom: 0.35rem; }
.tm-commerce-hero--compact .tm-lead { font-size: 0.92rem; margin-bottom: 0.75rem; }
.tm-show-mobile { display: none; }
.tm-city-chip-bar {
  display: none;
  border-bottom: 1px solid rgba(228, 232, 238, 0.85);
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.tm-city-chip-bar__inner { padding: 0.35rem 0; }
.tm-city-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.82rem;
  color: var(--muted);
  flex-wrap: wrap;
}
.tm-city-chip__name { color: var(--text); font-weight: 600; }
.tm-city-chip__btn {
  border: none;
  background: none;
  color: var(--accent);
  font: inherit;
  font-size: 0.82rem;
  padding: 0;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.tm-stock--in_stock { color: var(--success); }
.tm-stock--low_stock { color: #b8860b; }
.tm-stock--backorder { color: var(--muted); }
.tm-tag--cat { background: #eef4ff; color: var(--accent); }

@media (max-width: 768px) {
  body.tm-has-bottom-nav { padding-bottom: calc(var(--bottom-nav-h) + var(--safe-bottom)); }
  body.tm-has-bottom-nav.tm-has-sticky-buy {
    padding-bottom: calc(var(--bottom-nav-h) + var(--sticky-buy-h) + var(--safe-bottom) + 8px);
  }
  body.tm-page-checkout { padding-bottom: calc(80px + var(--safe-bottom)); }
  .tm-bottom-nav { display: flex; }
  .tm-sticky-buy { display: block; }
  .tm-main { padding-bottom: 0.5rem; }
  .tm-footer { margin-bottom: 0.5rem; }
  .tm-hide-mobile { display: none !important; }
  .tm-show-mobile { display: inline-flex; }
  .tm-header__city-desktop { display: none; }
  .tm-filters { flex-direction: column; align-items: stretch; }
  .tm-filters select, .tm-filters .tm-btn { width: 100%; }
  .tm-footer__col { border-bottom: 1px solid var(--border); padding-bottom: 0.5rem; }
  .tm-footer__col:not([open]) .tm-footer__links { display: none; }
  .tm-product-layout, .tm-checkout-grid { grid-template-columns: 1fr; }
  .tm-buybox { position: static; }
  .tm-header__shell {
    display: grid;
    grid-template-columns: auto 1fr auto;
    grid-template-areas: "logo search actions";
    align-items: center;
    gap: 0.45rem;
    padding: 0.5rem 0;
  }
  .tm-header__topline { display: contents; }
  .tm-header__logo { grid-area: logo; }
  .tm-header__search { grid-area: search; margin: 0; }
  .tm-header__actions { grid-area: actions; margin-left: 0; }
}
@media (max-width: 430px) {
  .tm-logo__img {
    height: 30px;
    max-width: 132px;
  }
}
@media (max-width: 380px) {
  .header-city-chip .city-change,
  .tm-header__city-compact .tm-header__city-change {
    display: none;
  }
  .header-city-chip,
  .tm-header__city-compact {
    max-width: 42vw;
  }
}
@media (min-width: 769px) {
  .tm-show-mobile { display: none !important; }
  .tm-header__shell {
    display: grid;
    grid-template-columns: auto auto minmax(220px, 1fr) auto auto;
    grid-template-areas: "logo catalog search city actions";
    align-items: center;
    gap: 0.75rem;
    padding: 0.6rem 0;
  }
  .tm-header__topline { display: contents; }
  .tm-header__logo,
  .tm-logo { grid-area: logo; }
  .tm-header__catalog {
    display: inline-flex;
    grid-area: catalog;
  }
  .tm-header__search {
    grid-area: search;
    max-width: none;
    margin: 0;
  }
  .header-city-chip,
  .tm-header__city-compact { grid-area: city; max-width: 180px; }
  .tm-header__actions {
    grid-area: actions;
    margin-left: 0;
  }
  .tm-footer__col { pointer-events: none; }
  .tm-footer__title { pointer-events: auto; cursor: default; }
  .tm-footer__col[open] .tm-footer__links,
  .tm-footer__col .tm-footer__links { display: flex; }
}
@media (min-width: 1100px) {
  .tm-card--carousel {
    flex: 0 0 calc(25% - 0.56rem);
    min-height: 390px;
  }
}

/* ===== SITE-1 Liquid Glass / storefront ===== */
.tm-glass-panel,
.tm-glass-modal .tm-modal__box {
  background: var(--glass-bg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
@supports ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  .tm-glass-panel,
  .tm-glass-modal .tm-modal__box {
    background: rgba(255, 255, 255, 0.78);
    backdrop-filter: blur(10px) saturate(120%);
    -webkit-backdrop-filter: blur(10px) saturate(120%);
    border-color: var(--glass-border);
  }
}

.tm-value-hero {
  background: linear-gradient(160deg, #0b1f4d 0%, #163a7a 48%, #1a5cff 120%);
  color: #fff;
  padding: 1.35rem 0 1.15rem;
  margin-bottom: 0.25rem;
}
.tm-value-hero__inner { display: grid; gap: 1rem; }
.tm-value-hero__title {
  margin: 0 0 0.45rem;
  font-size: clamp(1.25rem, 3.4vw, 1.85rem);
  line-height: 1.25;
  font-weight: 750;
  letter-spacing: -0.01em;
}
.tm-value-hero__subtitle {
  margin: 0 0 0.35rem;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
}
.tm-value-hero__note {
  margin: 0 0 0.9rem;
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.72);
}
.tm-value-hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}
.tm-value-hero__cta .tm-btn--ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.08);
}
.tm-value-hero__cta .tm-btn--ghost:hover {
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
}

.tm-trust-strip {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 0.55rem;
}
.tm-trust-strip__item {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem 0.7rem;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 0.84rem;
  font-weight: 600;
}
.tm-trust-strip__item img {
  filter: brightness(0) invert(1);
  opacity: 0.9;
  flex-shrink: 0;
}
.tm-trust-strip--inline {
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
}
.tm-trust-strip--inline .tm-trust-strip__item {
  background: var(--surface-2);
  border-color: var(--border);
  color: var(--text);
}
.tm-trust-strip--inline .tm-trust-strip__item img { filter: none; opacity: 0.7; }

.tm-grid--premium {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
}
.tm-card--premium {
  border-color: rgba(26, 92, 255, 0.18);
  box-shadow: 0 14px 32px rgba(11, 31, 77, 0.08);
  background: linear-gradient(180deg, #fff 0%, #f7f9fc 100%);
}
.tm-card__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem;
  margin: 0.35rem 0 0.15rem;
}
.tm-chip {
  display: inline-flex;
  align-items: center;
  padding: 0.18rem 0.45rem;
  border-radius: 6px;
  font-size: 0.7rem;
  font-weight: 650;
  letter-spacing: 0.01em;
  background: var(--bg-elevated);
  color: var(--steel);
  border: 1px solid var(--border);
}
.tm-chip--4k,
.tm-chip--os,
.tm-chip--value {
  background: var(--accent-soft);
  color: var(--accent);
  border-color: rgba(26, 92, 255, 0.22);
}
.tm-card__badge,
.tm-value-claim__badge {
  display: inline-flex;
  margin: 0.35rem 0;
  padding: 0.22rem 0.55rem;
  border-radius: var(--radius-pill);
  font-size: 0.74rem;
  font-weight: 700;
  background: var(--accent-soft);
  color: var(--accent);
}
.tm-card__cmp {
  margin: 0.15rem 0 0.35rem;
  font-size: 0.8rem;
  color: var(--muted);
}
.tm-card__cmp--live {
  color: var(--success);
  font-weight: 600;
}
.tm-card__meta { margin: 0 0 0.4rem; font-size: 0.78rem; }
.tm-btn--touch {
  min-height: 44px;
  padding-left: 0.9rem;
  padding-right: 0.9rem;
}
.tm-card__actions .tm-btn--touch { flex: 1 1 auto; }

.tm-value-claim { margin: 0.35rem 0 0.75rem; }
.tm-value-claim__note,
.tm-value-claim .tm-muted { margin: 0.35rem 0 0; font-size: 0.8rem; }

.tm-price-compare,
.tm-comparison-panel {
  margin: 0.75rem 0 1rem;
  padding: 0.85rem 0.95rem;
  border-radius: var(--radius-sm);
  background: var(--surface-2);
  border: 1px solid var(--border);
}
.tm-price-compare__title,
.tm-comparison-panel__title {
  margin: 0 0 0.35rem;
  font-size: 0.92rem;
  font-weight: 700;
}

.tm-sticky-buy {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: calc(var(--bottom-nav-h) + var(--safe-bottom));
  z-index: var(--z-sticky-buy);
  padding: 0.45rem 0.75rem;
  background: var(--glass-bg);
  border-top: 1px solid var(--border);
  box-shadow: 0 -6px 18px rgba(20, 30, 50, 0.08);
}
@supports ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  .tm-sticky-buy {
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
  }
}
.tm-sticky-buy__inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 0.45rem;
  align-items: center;
}
.tm-sticky-buy__price {
  font-weight: 750;
  font-size: 1.05rem;
  white-space: nowrap;
}

.tm-specs-collapsible details > summary {
  list-style: none;
  cursor: pointer;
}
.tm-specs-collapsible details > summary::-webkit-details-marker { display: none; }
.tm-specs-collapsible summary h2 {
  display: inline;
  margin: 0;
  font-size: 1.15rem;
}
.tm-specs-collapsible summary::after {
  content: ' ▾';
  color: var(--muted);
  font-size: 0.9rem;
}
.tm-specs-collapsible details:not([open]) summary::after { content: ' ▸'; }

.tm-promotions,
.tm-promotions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0.85rem;
  margin: 1.25rem 0;
}
.tm-promo-card {
  padding: 1rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--surface);
  box-shadow: var(--shadow);
}
.tm-promo-card h3 { margin: 0 0 0.35rem; font-size: 1rem; }
.tm-promo-card p { margin: 0; color: var(--muted); font-size: 0.88rem; }

.tm-support-hero {
  padding: 1.25rem 1.15rem;
  border-radius: var(--radius);
  margin-bottom: 1rem;
  border: 1px solid var(--border);
}
.tm-support-hero .tm-lead { margin: 0.35rem 0 0; }
.tm-support-context { margin: 0.75rem 0 0; }
.tm-support-topics__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0.75rem;
  margin-top: 0.75rem;
}
.tm-support-topic {
  padding: 0.85rem;
  border-radius: var(--radius-sm);
  background: var(--surface-2);
  border: 1px solid var(--border);
}
.tm-support-topic h3 { margin: 0 0 0.3rem; font-size: 0.95rem; }
.tm-support-topic p { margin: 0; }
.tm-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
}
.tm-textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.75rem 0.85rem;
  font: inherit;
  resize: vertical;
  background: #fff;
  color: var(--text);
}
.tm-textarea:focus {
  outline: 2px solid var(--accent-soft);
  border-color: var(--accent);
}

.tm-product-benefits h2 { margin-top: 0; }
.tm-4k-block,
.tm-weight-dims,
.tm-specs-4k,
.tm-weight-dims-block { margin-top: 1.25rem; }

.tm-btn--primary { background: var(--accent); color: #fff; }
.tm-btn--primary:hover { background: var(--accent-hover); color: #fff; }

.tm-badge.tm-value-promise-badge,
.tm-value-promise-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.22rem 0.55rem;
  border-radius: var(--radius-pill);
  font-size: 0.74rem;
  font-weight: 700;
  background: var(--accent-soft);
  color: var(--accent);
}

.tm-panel--glass,
.tm-price-comparison {
  background: var(--glass-bg);
  border: 1px solid var(--border);
}
@supports ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  .tm-panel--glass,
  .tm-price-comparison {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
  }
}
.tm-price-comparison__title { margin: 0 0 0.4rem; font-size: 0.95rem; }
.tm-price-comparison__ref,
.tm-price-comparison__save { margin: 0.25rem 0; font-size: 0.9rem; }
.tm-price-comparison__badge { margin: 0.35rem 0; }

.tm-specs-table summary {
  cursor: pointer;
  font-weight: 700;
  font-size: 1.05rem;
  list-style: none;
}
.tm-specs-table summary::-webkit-details-marker { display: none; }
.tm-specs-table__grid {
  width: 100%;
  border-collapse: collapse;
  margin-top: 0.75rem;
}
.tm-specs-table__grid th,
.tm-specs-table__grid td {
  text-align: left;
  padding: 0.5rem 0.75rem;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
}
.tm-specs-table__grid th { color: var(--muted); width: 40%; font-weight: 500; }

.tm-specs-4k__title { margin-top: 0; }
.tm-specs-4k__list { margin: 0.5rem 0 0; padding-left: 1.15rem; }

.tm-site1-promos__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0.85rem;
  margin-top: 0.75rem;
}
.tm-site1-promo-card {
  padding: 1rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--surface-2);
}
.tm-site1-promo-card h3 { margin: 0 0 0.35rem; font-size: 1rem; }
.tm-site1-promo-card p { margin: 0 0 0.65rem; }
.tm-support-home__topics {
  margin: 0.5rem 0 1rem;
  padding-left: 1.1rem;
}
.tm-support-home__topics li { margin: 0.35rem 0; }

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .tm-toast { transition: none; }
}

@media (min-width: 769px) {
  .tm-value-hero { padding: 1.75rem 0 1.4rem; }
  .tm-sticky-buy { display: none !important; }
  body.tm-has-sticky-buy { padding-bottom: 0; }
}

