.material-symbols-outlined.tm-fill {
  font-variation-settings: 'FILL' 1,'wght' 600,'GRAD' 0,'opsz' 24;
}

:root {
  --tm-accent: #7f13ec;
  --tm-accent-2: #9b4dff;
  --tm-ink: #140d1b;
  --tm-muted: #6b6472;
  --tm-soft: #f7f6f9;
  --tm-line: rgba(20, 13, 27, .08);
  --tm-card: rgba(255, 255, 255, .92);
  --tm-header-bg: #ffffff;
  --tm-header-text: #140d1b;
  --tm-logo-height: 68px;
  --tm-shadow: 0 18px 42px -30px rgba(20, 13, 27, .42);
  --tm-shadow-strong: 0 24px 58px -34px rgba(20, 13, 27, .5);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
}

body {
  width: 100%;
  max-width: 100%;
  min-height: 100dvh;
  margin: 0;
  overflow-x: clip;
  background-color: var(--tm-soft);
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 width=%27640%27 height=%27220%27 viewBox=%270 0 640 220%27%3E%3Cpath d=%27M-40 110 C40 25 120 195 200 110 S360 25 440 110 S600 195 680 110%27 fill=%27none%27 stroke=%27%237f13ec%27 stroke-opacity=%27.075%27 stroke-width=%272%27/%3E%3Cpath d=%27M-40 150 C40 65 120 235 200 150 S360 65 440 150 S600 235 680 150%27 fill=%27none%27 stroke=%27%239b4dff%27 stroke-opacity=%27.045%27 stroke-width=%271.5%27/%3E%3C/svg%3E"),
    radial-gradient(circle at 15% 20%, rgba(127, 19, 236, .055), transparent 28%),
    radial-gradient(circle at 85% 70%, rgba(155, 77, 255, .045), transparent 30%);
  background-size: 640px 220px, 100% 100%, 100% 100%;
  animation: tmAmbientWaves 28s linear infinite;
  color: var(--tm-ink);
}

body.tm-home-page {
  padding-bottom: 0;
}

img,
svg,
video,
canvas {
  max-width: 100%;
}

input,
select,
textarea,
button {
  min-width: 0;
  max-width: 100%;
}

body.tm-modal-open {
  overflow: hidden;
}

a {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.no-scrollbar::-webkit-scrollbar {
  display: none;
}

.no-scrollbar {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.tm-page-shell {
  min-height: 100dvh;
  padding-bottom: 6.5rem;
}

.tm-nav-item {
  min-width: 58px;
  border-radius: 18px;
  padding: .45rem .35rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .18rem;
  text-decoration: none;
  transition: color .18s ease, background .18s ease, transform .18s ease;
}

.tm-nav-item.is-active {
  background: color-mix(in srgb, var(--tm-accent) 9%, white);
  color: var(--tm-accent);
}

.tm-nav-item:active {
  transform: scale(.98);
}

.tm-nav-icon {
  width: 1.6rem;
  height: 1.6rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.tm-nav-label {
  font-size: .62rem;
  font-weight: 900;
  text-transform: uppercase;
}

.tm-store-header {
  background: color-mix(in srgb, var(--tm-header-bg) 90%, transparent);
  color: var(--tm-header-text);
  box-shadow: 0 16px 34px -34px rgba(20, 13, 27, .55);
}

.tm-header-inner {
  width: min(1220px, calc(100% - 28px));
  min-width: 0;
  margin: 0 auto;
}

#siteHeader {
  transition: box-shadow .25s ease, background-color .25s ease;
}

#siteHeader .tm-header-inner {
  display: grid;
  grid-template-columns: minmax(132px, 160px) auto minmax(260px, 1fr) auto;
  align-items: center;
  gap: clamp(.75rem, 1.5vw, 1.25rem);
  padding: .55rem 0;
}

.tm-header-brand {
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  text-decoration: none;
}

#siteHeader .tm-header-brand img[data-logo] {
  width: auto;
  height: clamp(92px, calc(var(--tm-logo-height) + 28px), 116px);
  max-width: 160px;
  max-height: none;
  transition: height .25s ease, max-width .25s ease;
}

#siteHeader .tm-header-search {
  width: 100%;
  min-width: 0;
  transition: min-height .25s ease, border-radius .25s ease, padding .25s ease;
}

#siteHeader .tm-header-cart {
  justify-self: end;
}

.tm-store-header img[data-logo] {
  display: block;
  width: auto;
  height: var(--tm-logo-height);
  max-height: 92px;
  max-width: min(286px, 54vw);
  object-fit: contain;
}

.tm-icon-btn {
  width: 2.75rem;
  height: 2.75rem;
  border: 1px solid rgba(20, 13, 27, .06);
  border-radius: 9999px;
  background: rgba(255, 255, 255, .86);
  color: var(--tm-ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  text-decoration: none;
  box-shadow: 0 12px 28px -24px rgba(20, 13, 27, .72);
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease, color .2s ease;
}

.tm-icon-btn:hover {
  border-color: color-mix(in srgb, var(--tm-accent) 34%, transparent);
  color: var(--tm-accent);
  box-shadow: var(--tm-shadow);
  transform: translateY(-1px);
}

.tm-home-pill {
  min-height: 2.75rem;
  border: 1px solid rgba(127, 19, 236, .14);
  border-radius: 999px;
  background: color-mix(in srgb, var(--tm-accent) 8%, white);
  color: var(--tm-accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .35rem;
  padding: 0 .9rem;
  font-size: .78rem;
  font-weight: 950;
  text-decoration: none;
  box-shadow: 0 12px 28px -24px color-mix(in srgb, var(--tm-accent) 60%, black);
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.tm-home-pill:hover {
  background: var(--tm-accent);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 18px 34px -24px color-mix(in srgb, var(--tm-accent) 80%, black);
}

.tm-search-shell {
  width: min(1220px, calc(100% - 28px));
  min-width: 0;
  margin: 0 auto;
  padding-bottom: .9rem;
}

#siteHeader .tm-search-shell {
  max-height: 4rem;
  transition: max-height .25s ease, opacity .2s ease, padding .25s ease;
}

#siteHeader .tm-search-tools {
  margin-top: 0;
}

.tm-search-box {
  min-height: 3.35rem;
  border: 1px solid rgba(127, 19, 236, .12);
  border-radius: 22px;
  background: rgba(255, 255, 255, .9);
  box-shadow: 0 18px 42px -34px rgba(20, 13, 27, .55);
  display: flex;
  align-items: center;
  gap: .65rem;
  padding: .35rem .55rem .35rem 1rem;
}

.tm-search-box:focus-within {
  border-color: color-mix(in srgb, var(--tm-accent) 38%, transparent);
  box-shadow: 0 18px 42px -30px rgba(127, 19, 236, .38);
}

.tm-search-box input {
  min-width: 0;
}

.tm-search-tools {
  display: flex;
  align-items: center;
  gap: .5rem;
  margin-top: .55rem;
  overflow-x: auto;
  padding-bottom: .1rem;
  scrollbar-width: none;
}

.tm-search-tools::-webkit-scrollbar { display: none; }

.tm-search-select,
.tm-clear-filters {
  min-width: max-content;
  min-height: 2.3rem;
  border: 1px solid rgba(127, 19, 236, .12);
  border-radius: 999px;
  background: rgba(255, 255, 255, .82);
  color: var(--tm-ink);
  font-size: .72rem;
  font-weight: 800;
}

.tm-search-select {
  padding: 0 2rem 0 .85rem;
  cursor: pointer;
}

.tm-search-select:focus {
  border-color: var(--tm-accent);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--tm-accent) 12%, transparent);
  outline: none;
}

.tm-clear-filters {
  border-color: color-mix(in srgb, var(--tm-accent) 28%, transparent);
  padding: 0 .9rem;
  background: color-mix(in srgb, var(--tm-accent) 9%, white);
  color: var(--tm-accent);
  cursor: pointer;
}

.tm-discovery-hidden { display: none !important; }

#catalogSection.tm-search-active { padding-top: 1rem; }

.tm-search-count {
  display: inline-flex;
  align-items: center;
  min-height: 2rem;
  white-space: nowrap;
  border-radius: 999px;
  padding: 0 .7rem;
  color: var(--tm-muted);
  background: rgba(247, 246, 249, .95);
  font-size: .72rem;
  font-weight: 800;
}

.tm-clear-btn {
  border: 0;
  border-radius: 999px;
  background: color-mix(in srgb, var(--tm-accent) 10%, white);
  color: var(--tm-accent);
  font-size: .72rem;
  font-weight: 900;
  padding: .55rem .78rem;
}

.tm-hero {
  width: min(1380px, calc(100% - 32px));
  height: clamp(280px, 30vw, 420px);
  min-height: 0;
  aspect-ratio: auto;
  margin: 1rem auto 0;
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(127, 19, 236, .1);
  border-radius: 30px;
  background: #111827;
  isolation: isolate;
  box-shadow: 0 26px 70px -42px rgba(20, 13, 27, .72);
}

.tm-hero-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 54%;
  transform: scale(1.01);
  transition: opacity .45s ease, transform 1.6s ease;
  z-index: -2;
}

.tm-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(7, 5, 10, .32), transparent 38%);
  pointer-events: none;
  z-index: 0;
}

.tm-hero-cta {
  position: absolute;
  left: max(14px, calc((100% - 1220px) / 2));
  bottom: clamp(.75rem, 2.2vw, 1.5rem);
  z-index: 2;
  min-height: 2.85rem;
  border: 1px solid rgba(255,255,255,.66);
  border-radius: 999px;
  background: color-mix(in srgb, var(--tm-accent) 88%, black);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .45rem;
  padding: .72rem 1.05rem;
  font-size: .82rem;
  font-weight: 950;
  text-decoration: none;
  box-shadow: 0 18px 38px -18px rgba(0,0,0,.72);
  transition: transform .2s ease, background .2s ease;
}

.tm-hero-cta:hover {
  background: var(--tm-accent);
  transform: translateY(-2px);
}

.tm-primary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .45rem;
  min-height: 3rem;
  border-radius: 16px;
  background: var(--tm-accent);
  color: #fff;
  padding: .85rem 1.1rem;
  font-size: .88rem;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 18px 34px -22px color-mix(in srgb, var(--tm-accent) 80%, black);
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.tm-primary-btn:hover {
  background: color-mix(in srgb, var(--tm-accent) 88%, black);
  transform: translateY(-1px);
  box-shadow: 0 22px 42px -22px color-mix(in srgb, var(--tm-accent) 88%, black);
}

.tm-secondary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .45rem;
  min-height: 3rem;
  border: 1px solid rgba(127, 19, 236, .16);
  border-radius: 16px;
  background: color-mix(in srgb, var(--tm-accent) 8%, white);
  color: var(--tm-accent);
  padding: .85rem 1.1rem;
  font-size: .88rem;
  font-weight: 950;
  text-decoration: none;
  transition: transform .2s ease, background .2s ease, color .2s ease;
}

.tm-secondary-btn:hover {
  background: color-mix(in srgb, var(--tm-accent) 13%, white);
  transform: translateY(-1px);
}

.tm-secondary-btn:disabled {
  opacity: .45;
  cursor: not-allowed;
}

.tm-section {
  width: min(1220px, calc(100% - 28px));
  min-width: 0;
  margin: 0 auto;
}

.tm-section-block {
  padding-top: clamp(1.7rem, 4vw, 3rem);
  content-visibility: auto;
  contain-intrinsic-size: auto 620px;
}

.tm-section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.tm-eyebrow {
  color: var(--tm-accent);
  font-size: .72rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}

.tm-section-title {
  margin: .15rem 0 0;
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  font-weight: 950;
  line-height: 1.05;
}

.tm-section-copy {
  color: var(--tm-muted);
  font-size: .9rem;
  margin-top: .35rem;
}

.tm-carousel-controls {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: .5rem;
  flex: 0 0 auto;
}

.tm-carousel-control,
.tm-carousel-toggle {
  min-height: 2.65rem;
  border: 1px solid rgba(127, 19, 236, .14);
  background: rgba(255,255,255,.9);
  color: var(--tm-ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .35rem;
  font-size: .73rem;
  font-weight: 950;
  box-shadow: 0 14px 30px -24px rgba(20,13,27,.72);
  transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
}

.tm-carousel-control {
  border-radius: 999px;
  padding: 0 .85rem;
}

.tm-carousel-toggle {
  width: 2.65rem;
  border-radius: 999px;
}

.tm-carousel-control:hover,
.tm-carousel-toggle:hover,
.tm-carousel-toggle[aria-pressed="true"] {
  border-color: color-mix(in srgb, var(--tm-accent) 40%, transparent);
  background: var(--tm-accent);
  color: #fff;
  transform: translateY(-2px);
}

.tm-carousel-hint {
  margin: .7rem 0 0;
  color: var(--tm-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .35rem;
  font-size: .72rem;
  font-weight: 750;
}

.tm-carousel-hint .material-symbols-outlined {
  color: var(--tm-accent);
  font-size: 1.05rem;
}

.tm-scroll-controls {
  display: none;
  align-items: center;
  gap: .5rem;
}

.tm-scroll-btn {
  width: 2.45rem;
  height: 2.45rem;
  border: 1px solid var(--tm-line);
  border-radius: 999px;
  background: #fff;
  color: var(--tm-ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 28px -24px rgba(20, 13, 27, .72);
  transition: transform .2s ease, border-color .2s ease, color .2s ease;
}

.tm-scroll-btn:hover {
  border-color: color-mix(in srgb, var(--tm-accent) 34%, transparent);
  color: var(--tm-accent);
  transform: translateY(-1px);
}

.tm-rail {
  scroll-behavior: smooth;
  scroll-snap-type: x proximity;
}

.tm-rail > * {
  scroll-snap-align: start;
}

.tm-category-card {
  min-width: 154px;
  width: 154px;
  aspect-ratio: 4 / 5;
  border: 1px solid rgba(20, 13, 27, .08);
  border-radius: 22px;
  overflow: hidden;
  background: #fff;
  position: relative;
  flex: 0 0 auto;
  display: block;
  text-decoration: none;
  box-shadow: var(--tm-shadow);
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}

.tm-category-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .38s ease;
}

.tm-category-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(12, 8, 18, .7), rgba(12, 8, 18, .08) 62%, transparent);
}

.tm-category-card span {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  padding: 1rem;
  color: #fff;
  font-weight: 950;
  font-size: .82rem;
  line-height: 1.15;
  text-transform: uppercase;
}

.tm-category-card:hover {
  border-color: color-mix(in srgb, var(--tm-accent) 28%, transparent);
  transform: translateY(-3px);
  box-shadow: var(--tm-shadow-strong);
}

.tm-category-card:hover img {
  transform: scale(1.06);
}

.tm-branch-chip {
  border: 1px solid rgba(127, 19, 236, .14);
  border-radius: 999px;
  padding: .68rem .95rem;
  background: rgba(255, 255, 255, .94);
  color: var(--tm-ink);
  font-size: .78rem;
  font-weight: 900;
  white-space: nowrap;
  box-shadow: 0 10px 28px -24px rgba(20, 13, 27, .75);
  transition: transform .18s ease, border-color .18s ease, color .18s ease, background .18s ease;
}

.tm-branch-chip:hover {
  border-color: color-mix(in srgb, var(--tm-accent) 34%, transparent);
  color: var(--tm-accent);
}

.tm-branch-chip.active {
  background: var(--tm-accent);
  border-color: var(--tm-accent);
  color: #fff;
  box-shadow: 0 16px 32px -24px color-mix(in srgb, var(--tm-accent) 80%, black);
}

.tm-branch-band {
  margin-top: 1.3rem;
  padding: clamp(1rem, 2vw, 1.35rem);
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(255, 255, 255, .98), rgba(250, 247, 255, .94));
  border: 1px solid rgba(127, 19, 236, .1);
  box-shadow: var(--tm-shadow);
}

.tm-offer-band {
  border: 1px solid rgba(127, 19, 236, .12);
  border-radius: 28px;
  background:
    radial-gradient(circle at 12% 0%, rgba(127, 19, 236, .12), transparent 28%),
    linear-gradient(135deg, #fff, #faf7ff);
  padding: clamp(1rem, 2.4vw, 1.5rem);
  box-shadow: var(--tm-shadow);
}

.tm-filter-bar {
  display: flex;
  gap: .55rem;
  overflow-x: auto;
  padding-bottom: .25rem;
  scrollbar-width: none;
}

.tm-filter-bar::-webkit-scrollbar {
  display: none;
}

.tm-filter-chip {
  min-height: 2.45rem;
  border: 1px solid rgba(20, 13, 27, .08);
  border-radius: 999px;
  background: #fff;
  color: var(--tm-ink);
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding: 0 .9rem;
  white-space: nowrap;
  font-size: .78rem;
  font-weight: 950;
  box-shadow: 0 10px 28px -24px rgba(20, 13, 27, .72);
  transition: background .18s ease, color .18s ease, border-color .18s ease, transform .18s ease;
}

.tm-filter-chip span {
  color: var(--tm-muted);
  font-size: .68rem;
}

.tm-filter-chip:hover,
.tm-filter-chip.active {
  border-color: var(--tm-accent);
  background: var(--tm-accent);
  color: #fff;
  transform: translateY(-1px);
}

.tm-filter-chip:hover span,
.tm-filter-chip.active span {
  color: rgba(255, 255, 255, .76);
}

.tm-product-card {
  min-width: 0;
  height: 100%;
  border: 1px solid rgba(20, 13, 27, .08);
  border-radius: 22px;
  overflow: hidden;
  background: #fff;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  box-shadow: 0 14px 34px -30px rgba(20, 13, 27, .6);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.tm-product-card-compact {
  width: 205px;
  min-width: 205px;
  max-width: 205px;
}

.tm-product-card a {
  text-decoration: none;
}

.tm-product-card:hover {
  transform: translateY(-4px);
  border-color: color-mix(in srgb, var(--tm-accent) 28%, transparent);
  box-shadow: var(--tm-shadow-strong);
}

.tm-product-card-new {
  position: relative;
}

.tm-product-card-new::before {
  content: "";
  position: absolute;
  z-index: 12;
  inset: 0;
  border-radius: inherit;
  background:
    linear-gradient(90deg, rgba(0, 217, 255, .22), transparent 24% 74%, rgba(240, 0, 255, .24)),
    repeating-linear-gradient(0deg, transparent 0 4px, rgba(255, 255, 255, .16) 5px 6px);
  box-shadow:
    inset 3px 0 0 rgba(0, 217, 255, .8),
    inset -3px 0 0 rgba(240, 0, 255, .78),
    0 0 24px -12px rgba(127, 19, 236, .9);
  opacity: 0;
  pointer-events: none;
}

.tm-product-card-new.is-glitching::before {
  animation: tmNewCardSignal .46s steps(1, end) 1;
}

.tm-product-card-new.is-glitching .tm-product-media {
  animation: tmNewCardMediaGlitch .46s steps(1, end) 1;
}

.tm-product-card-new.is-glitching .tm-product-body {
  animation: tmNewCardBodyGlitch .46s steps(1, end) 1;
}

@keyframes tmNewCardSignal {
  0%, 100% {
    opacity: 0;
    clip-path: inset(0 0 100% 0);
    transform: translate(0);
  }
  12% {
    opacity: .9;
    clip-path: inset(8% 0 70% 0);
    transform: translate(-3px, 0);
  }
  30% {
    opacity: .7;
    clip-path: inset(34% 0 45% 0);
    transform: translate(3px, 0);
  }
  52% {
    opacity: .82;
    clip-path: inset(61% 0 17% 0);
    transform: translate(-2px, 0);
  }
  74% {
    opacity: .34;
    clip-path: inset(0);
    transform: translate(1px, 0);
  }
  88% { opacity: 0; }
}

@keyframes tmNewCardMediaGlitch {
  0%, 100% {
    transform: translate(0);
    filter: none;
  }
  12% {
    transform: translate(-3px, 1px) skewX(-.6deg);
    filter: saturate(1.35) contrast(1.08);
  }
  30% {
    transform: translate(3px, -1px) skewX(.8deg);
    filter: hue-rotate(8deg) saturate(1.2);
  }
  52% {
    transform: translate(-2px, 0);
    filter: hue-rotate(-8deg) contrast(1.12);
  }
  74% {
    transform: translate(1px, 0);
    filter: saturate(1.08);
  }
}

@keyframes tmNewCardBodyGlitch {
  0%, 100% {
    transform: translate(0);
    text-shadow: none;
  }
  12% {
    transform: translate(2px, 0);
    text-shadow: -2px 0 rgba(0, 217, 255, .45);
  }
  30% {
    transform: translate(-3px, 1px);
    text-shadow: 2px 0 rgba(240, 0, 255, .38);
  }
  52% {
    transform: translate(2px, -1px);
    text-shadow: -1px 0 rgba(0, 217, 255, .4), 1px 0 rgba(240, 0, 255, .34);
  }
  74% {
    transform: translate(-1px, 0);
    text-shadow: none;
  }
}

.tm-product-media {
  position: relative;
  aspect-ratio: 1 / 1;
  background: linear-gradient(180deg, #fff, #f7f6f9);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.tm-product-media-link {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tm-product-media img,
.tm-product-media-link img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 1rem;
  transition: transform .32s ease;
}

.tm-product-card:hover .tm-product-media-link > img {
  transform: scale(1.045);
}

.tm-product-image-float {
  animation: tmProductFloat 5.5s ease-in-out infinite;
}

.tm-product-zoom {
  cursor: zoom-in;
}

.tm-zoom-lens {
  position: absolute;
  width: 150px;
  height: 150px;
  border: 1px solid rgba(127, 19, 236, .18);
  border-radius: 999px;
  background-color: #fff;
  background-repeat: no-repeat;
  background-size: 230%;
  box-shadow: 0 18px 44px -24px rgba(20, 13, 27, .55);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -50%) scale(.94);
  transition: opacity .15s ease, transform .15s ease;
  z-index: 5;
}

.tm-zoom-lens.is-visible {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.thumb {
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.thumb:hover {
  transform: translateY(-2px);
  box-shadow: var(--tm-shadow);
}

@keyframes tmProductFloat {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-5px) scale(1.01); }
}

.tm-image-preview {
  position: absolute;
  right: .55rem;
  top: .55rem;
  z-index: 2;
  display: grid;
  gap: .35rem;
  opacity: 0;
  transform: translateX(8px);
  transition: opacity .22s ease, transform .22s ease;
  pointer-events: none;
}

.tm-image-preview button {
  width: 2.25rem;
  height: 2.25rem;
  border: 1px solid rgba(20, 13, 27, .08);
  border-radius: 12px;
  background: rgba(255, 255, 255, .92);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: 0 10px 20px -16px rgba(20, 13, 27, .72);
  cursor: pointer;
}

.tm-image-preview img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: .2rem;
}

.tm-product-hover-action {
  border: 0;
  position: absolute;
  left: .7rem;
  right: .7rem;
  bottom: .7rem;
  z-index: 3;
  min-height: 2.4rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, .92);
  color: var(--tm-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .35rem;
  font-size: .74rem;
  font-weight: 950;
  opacity: 0;
  transform: translateY(8px);
  box-shadow: 0 12px 28px -20px rgba(20, 13, 27, .7);
  backdrop-filter: blur(12px);
  transition: opacity .22s ease, transform .22s ease;
  cursor: pointer;
}

.tm-product-card:hover .tm-image-preview,
.tm-product-card:hover .tm-product-hover-action {
  opacity: 1;
  transform: translate(0);
}

.tm-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .25rem;
  border-radius: 999px;
  padding: .34rem .55rem;
  font-size: .66rem;
  font-weight: 950;
  line-height: 1;
  white-space: nowrap;
}

.tm-product-badge-stack {
  position: absolute;
  z-index: 4;
  top: .5rem;
  left: .5rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .35rem;
  max-width: calc(100% - 1rem);
  pointer-events: none;
}

.tm-badge-new {
  position: relative;
  isolation: isolate;
  overflow: visible;
  border: 1px solid rgba(255, 255, 255, .3);
  background:
    linear-gradient(115deg, rgba(255, 255, 255, .16), transparent 42%),
    linear-gradient(135deg, #16071f 0%, #7200a8 52%, #a20bc5 100%);
  color: #fff;
  letter-spacing: .12em;
  text-transform: uppercase;
  text-shadow: 0 0 10px rgba(255, 255, 255, .35);
  box-shadow:
    0 8px 18px -10px rgba(114, 0, 168, .95),
    0 0 0 1px rgba(162, 11, 197, .12);
}

.tm-badge-new::before,
.tm-badge-new::after {
  content: attr(data-text);
  position: absolute;
  z-index: 1;
  inset: -1px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: inherit;
  padding: inherit;
  font: inherit;
  letter-spacing: inherit;
  color: #fff;
  opacity: 0;
  pointer-events: none;
}

.tm-badge-new::before {
  background: #f000ff;
  text-shadow: -1px 0 #fff;
}

.tm-badge-new::after {
  background: #00d9ff;
  color: #13091a;
  text-shadow: 1px 0 #fff;
}

.tm-product-card-new.is-glitching .tm-badge-new {
  animation: tmNewGlitchShell .46s steps(1, end) 1;
}

.tm-product-card-new.is-glitching .tm-badge-new::before {
  animation: tmNewGlitchTop .46s steps(1, end) 1;
}

.tm-product-card-new.is-glitching .tm-badge-new::after {
  animation: tmNewGlitchBottom .46s steps(1, end) 1;
}

@keyframes tmNewGlitchShell {
  0%, 100% { transform: translate(0, 0) skewX(0); }
  18% { transform: translate(-1px, 0) skewX(-5deg); }
  38% { transform: translate(2px, -1px) skewX(3deg); }
  58% { transform: translate(-2px, 1px) skewX(-2deg); }
  78% { transform: translate(1px, 0) skewX(0); }
}

@keyframes tmNewGlitchTop {
  0%, 100% {
    opacity: 0;
    transform: translate(0);
    clip-path: inset(0 0 100% 0);
  }
  16% {
    opacity: .88;
    transform: translate(-3px, -1px);
    clip-path: inset(5% 0 58% 0);
  }
  38% {
    opacity: .72;
    transform: translate(3px, 0);
    clip-path: inset(24% 0 42% 0);
  }
  62% {
    opacity: .82;
    transform: translate(-2px, 1px);
    clip-path: inset(0 0 72% 0);
  }
  84% { opacity: 0; }
}

@keyframes tmNewGlitchBottom {
  0%, 100% {
    opacity: 0;
    transform: translate(0);
    clip-path: inset(100% 0 0 0);
  }
  18% {
    opacity: .78;
    transform: translate(3px, 1px);
    clip-path: inset(58% 0 6% 0);
  }
  44% {
    opacity: .7;
    transform: translate(-3px, 0);
    clip-path: inset(44% 0 28% 0);
  }
  70% {
    opacity: .82;
    transform: translate(2px, -1px);
    clip-path: inset(72% 0 0 0);
  }
  88% { opacity: 0; }
}

.tm-badge-offer {
  background: #ef233c;
  color: #fff;
}

.tm-badge-branch {
  max-width: calc(100% - 1rem);
  background: rgba(255, 255, 255, .92);
  color: var(--tm-ink);
  box-shadow: 0 10px 22px -18px rgba(20, 13, 27, .8);
}

.tm-badge-stock {
  background: #ecfdf3;
  color: #147a3e;
}

.tm-badge-stock.is-out {
  background: #fff1f2;
  color: #be123c;
}

.tm-product-body {
  padding: .95rem;
  display: flex;
  flex: 1;
  flex-direction: column;
}

.tm-product-title {
  min-height: 2.55rem;
  color: var(--tm-ink);
  font-size: .88rem;
  font-weight: 950;
  line-height: 1.25;
}

.tm-product-meta {
  min-height: 1.15rem;
  margin-top: .35rem;
  color: var(--tm-muted);
  font-size: .72rem;
}

.tm-product-price {
  color: var(--tm-accent);
  font-size: 1.04rem;
  font-weight: 950;
}

.tm-product-cta {
  margin-top: .8rem;
  min-height: 2.55rem;
  border-radius: 14px;
  background: color-mix(in srgb, var(--tm-accent) 9%, white);
  color: var(--tm-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .35rem;
  font-size: .78rem;
  font-weight: 950;
  position: relative;
  overflow: hidden;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}

.tm-product-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 0%, rgba(255,255,255,.75) 45%, transparent 70%);
  transform: translateX(-120%);
  transition: transform .5s ease;
}

.tm-product-card:hover .tm-product-cta {
  background: var(--tm-accent);
  color: #fff;
  transform: translateY(-1px);
}

.tm-product-card:hover .tm-product-cta::after {
  transform: translateX(120%);
}

.tm-empty-state {
  grid-column: 1 / -1;
  border: 1px solid rgba(127, 19, 236, .12);
  border-radius: 24px;
  background: #fff;
  padding: 2rem;
  text-align: center;
  box-shadow: var(--tm-shadow);
}

.tm-load-more-wrap {
  min-height: 4rem;
  padding-top: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tm-showcase-stage {
  --showcase-hue: 276;
  --showcase-hue-alt: 318;
  --showcase-image: none;
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(285px, 330px);
  gap: 1rem;
  padding: .9rem;
  overflow: hidden;
  border: 1px solid hsla(var(--showcase-hue), 72%, 55%, .2);
  border-radius: 32px;
  background:
    radial-gradient(circle at 15% 12%, hsla(var(--showcase-hue), 88%, 65%, .24), transparent 34%),
    radial-gradient(circle at 82% 86%, hsla(var(--showcase-hue-alt), 86%, 58%, .18), transparent 36%),
    linear-gradient(130deg, rgba(255,255,255,.96), rgba(247,242,255,.88));
  box-shadow: 0 34px 80px -52px hsla(var(--showcase-hue), 80%, 28%, .8);
  transition: border-color .6s ease, box-shadow .6s ease;
}

.tm-showcase-stage::before {
  content: "";
  position: absolute;
  z-index: -2;
  inset: -25%;
  background-image: var(--showcase-image);
  background-position: 25% 50%;
  background-size: 56%;
  background-repeat: no-repeat;
  filter: blur(52px) saturate(1.4);
  opacity: .14;
  transform: scale(1.08);
  transition: background-image .4s ease, opacity .4s ease;
}

.tm-showcase-stage::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(105deg, rgba(255,255,255,.2), transparent 42%),
    repeating-linear-gradient(118deg, transparent 0 34px, rgba(255,255,255,.24) 35px, transparent 36px 70px);
  mask-image: linear-gradient(to right, #000, transparent 66%);
}

.tm-showcase-glow {
  position: absolute;
  z-index: -1;
  width: 260px;
  height: 260px;
  left: 35%;
  top: 42%;
  border-radius: 999px;
  background: hsla(var(--showcase-hue), 90%, 60%, .24);
  filter: blur(48px);
  transform: translate(-50%, -50%);
  animation: tmShowcaseGlow 5s ease-in-out infinite alternate;
  pointer-events: none;
}

.tm-random-viewport {
  position: relative;
  z-index: 1;
  width: 100%;
  min-width: 0;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,.72);
  background: rgba(255,255,255,.5);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.9);
}

.tm-random-track {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 1rem;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 2.2rem 3.25rem 2.35rem;
  scroll-padding-inline: calc(50% - 110px);
  scrollbar-width: none;
  scroll-snap-type: x mandatory;
}

.tm-random-track::-webkit-scrollbar {
  display: none;
}

.tm-showcase-card {
  width: 220px;
  min-width: 220px;
  max-width: 220px;
  flex: 0 0 220px;
  animation: none;
  scroll-snap-align: center;
  opacity: .58;
  filter: saturate(.62) brightness(.94) blur(.25px);
  transform: perspective(900px) scale(.88);
  transform-origin: center;
  will-change: transform;
  transition:
    transform .55s cubic-bezier(.2,.8,.2,1),
    opacity .4s ease,
    filter .4s ease,
    border-color .4s ease,
    box-shadow .4s ease;
}

.tm-showcase-card.is-spotlight {
  z-index: 4;
  opacity: 1;
  filter: saturate(1.08);
  transform:
    perspective(900px)
    translateY(-7px)
    rotateX(var(--tilt-x, 0deg))
    rotateY(var(--tilt-y, 0deg))
    scale(1.12);
  border-color: color-mix(in srgb, var(--tm-accent) 46%, transparent);
  box-shadow:
    0 28px 58px -30px color-mix(in srgb, var(--tm-accent) 70%, black),
    0 0 0 4px color-mix(in srgb, var(--tm-accent) 8%, transparent);
}

.tm-showcase-card.is-spotlight .tm-product-media img {
  transform: scale(1.07);
}

.tm-showcase-card.is-spotlight .tm-product-cta {
  background: var(--tm-accent);
  color: #fff;
}

.tm-showcase-card.is-spotlight .tm-badge-offer {
  animation: tmOfferPulse 1.8s ease-in-out infinite;
}

.tm-showcase-card:not(.is-spotlight):hover {
  opacity: .92;
  filter: saturate(.95);
  transform: translateY(-3px) scale(.97);
}

.tm-showcase-feature {
  position: relative;
  z-index: 2;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(1.25rem, 2.4vw, 2rem);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 24px;
  color: #fff;
  background:
    radial-gradient(circle at 100% 0, hsla(var(--showcase-hue-alt), 88%, 62%, .34), transparent 38%),
    linear-gradient(145deg, rgba(28,12,43,.94), rgba(12,7,20,.96));
  box-shadow: 0 24px 50px -30px rgba(19,7,31,.95);
}

.tm-showcase-feature::after {
  content: "";
  position: absolute;
  width: 170px;
  height: 170px;
  right: -70px;
  bottom: -80px;
  border: 1px solid hsla(var(--showcase-hue), 92%, 72%, .35);
  border-radius: 46% 54% 65% 35%;
  animation: tmShowcaseOrb 8s linear infinite;
  pointer-events: none;
}

.tm-showcase-feature.is-refreshing > * {
  animation: tmShowcaseReveal .48s cubic-bezier(.2,.8,.2,1) both;
}

.tm-showcase-feature.is-refreshing > *:nth-child(2) { animation-delay: .035s; }
.tm-showcase-feature.is-refreshing > *:nth-child(3) { animation-delay: .07s; }
.tm-showcase-feature.is-refreshing > *:nth-child(4) { animation-delay: .105s; }
.tm-showcase-feature.is-refreshing > *:nth-child(5) { animation-delay: .14s; }
.tm-showcase-feature.is-refreshing > *:nth-child(6) { animation-delay: .175s; }

.tm-showcase-feature-top,
.tm-showcase-price-row,
.tm-showcase-actions {
  display: flex;
  align-items: center;
}

.tm-showcase-feature-top {
  justify-content: space-between;
  gap: .75rem;
  margin-bottom: 1rem;
}

.tm-showcase-kicker {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  color: rgba(255,255,255,.72);
  font-size: .68rem;
  font-weight: 900;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.tm-showcase-kicker .material-symbols-outlined {
  color: hsl(var(--showcase-hue) 92% 74%);
  font-size: 1rem;
}

.tm-showcase-offer {
  padding: .35rem .55rem;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(120deg, #ff275d, #b112ec);
  font-size: .67rem;
  font-weight: 900;
  text-transform: uppercase;
  box-shadow: 0 8px 22px -12px #ff275d;
}

.tm-showcase-title {
  max-width: 15ch;
  font-size: clamp(1.35rem, 2.1vw, 2rem);
  font-weight: 950;
  line-height: 1.02;
  letter-spacing: -.045em;
  text-wrap: balance;
}

.tm-showcase-meta {
  min-height: 2.5em;
  margin-top: .75rem;
  color: rgba(255,255,255,.62);
  font-size: .78rem;
  font-weight: 650;
  line-height: 1.45;
}

.tm-showcase-price-row {
  gap: .75rem;
  margin-top: 1.15rem;
}

.tm-showcase-price {
  color: #fff;
  font-size: clamp(1.55rem, 2.4vw, 2.25rem);
  font-weight: 950;
  letter-spacing: -.04em;
}

.tm-showcase-price.is-offer {
  color: transparent;
  background: linear-gradient(100deg, #fff 8%, hsl(var(--showcase-hue) 96% 78%) 35%, #fff 50%, #ff7ee7 68%, #fff 92%);
  background-size: 240% 100%;
  background-clip: text;
  -webkit-background-clip: text;
  animation: tmPriceShine 2.6s linear infinite;
}

.tm-showcase-regular {
  color: rgba(255,255,255,.42);
  font-size: .8rem;
  font-weight: 800;
  text-decoration: line-through;
}

.tm-showcase-availability {
  display: flex;
  align-items: center;
  gap: .45rem;
  margin-top: .45rem;
  color: #a7f3d0;
  font-size: .72rem;
  font-weight: 800;
}

.tm-showcase-status-dot {
  width: .48rem;
  height: .48rem;
  flex: 0 0 auto;
  border-radius: 999px;
  background: #34d399;
  box-shadow: 0 0 0 4px rgba(52,211,153,.12);
}

.tm-showcase-availability.is-out {
  color: #fde68a;
}

.tm-showcase-availability.is-out .tm-showcase-status-dot {
  background: #fbbf24;
  box-shadow: 0 0 0 4px rgba(251,191,36,.12);
}

.tm-showcase-actions {
  flex-wrap: wrap;
  gap: .55rem;
  margin-top: 1.2rem;
}

.tm-showcase-quick,
.tm-showcase-link {
  min-height: 2.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .4rem;
  border-radius: 13px;
  padding: 0 .9rem;
  font-size: .74rem;
  font-weight: 900;
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}

.tm-showcase-quick {
  color: #fff;
  border: 1px solid rgba(255,255,255,.2);
  background: rgba(255,255,255,.08);
}

.tm-showcase-link {
  color: #1e0b2b;
  background: #fff;
  box-shadow: 0 14px 25px -18px #fff;
}

.tm-showcase-quick:hover,
.tm-showcase-link:hover {
  transform: translateY(-2px);
}

.tm-showcase-quick:hover {
  background: rgba(255,255,255,.15);
}

.tm-showcase-quick .material-symbols-outlined,
.tm-showcase-link .material-symbols-outlined {
  font-size: 1.05rem;
}

.tm-showcase-dots {
  min-height: 1.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: .38rem;
  margin-top: .65rem;
}

.tm-showcase-dots button {
  width: .48rem;
  height: .48rem;
  border-radius: 999px;
  background: rgba(127,19,236,.2);
  transition: width .3s ease, background .3s ease, transform .3s ease;
}

.tm-showcase-dots button:hover {
  transform: scale(1.25);
  background: rgba(127,19,236,.48);
}

.tm-showcase-dots button.is-active {
  width: 1.65rem;
  background: var(--tm-accent);
  box-shadow: 0 4px 12px -5px var(--tm-accent);
}

.tm-random-loading {
  width: 100%;
  min-width: 100%;
  min-height: 250px;
  border: 0;
  border-radius: 20px;
  background: linear-gradient(110deg,rgba(241,236,248,.82),#fff,rgba(241,236,248,.82));
  display: grid;
  place-items: center;
  color: var(--tm-muted);
  font-size: .84rem;
  font-weight: 800;
}

.tm-trust-strip {
  padding-top: clamp(1.1rem, 2.5vw, 1.8rem);
}

.tm-skeleton {
  display: block;
  background: linear-gradient(90deg, #ece8f2 0%, #f7f6f9 45%, #ece8f2 90%);
  background-size: 220% 100%;
  animation: tmSkeleton 1.15s ease-in-out infinite;
}

.tm-skeleton-card {
  pointer-events: none;
}

.tm-skeleton-img {
  width: 70%;
  height: 70%;
  border-radius: 24px;
}

@keyframes tmSkeleton {
  from { background-position: 120% 0; }
  to { background-position: -120% 0; }
}

.tm-brand-card,
.tm-trust-card,
.tm-feature-card {
  border: 1px solid var(--tm-line);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 14px 34px -30px rgba(20, 13, 27, .6);
}

.tm-brand-card {
  min-width: 134px;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: .35rem;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.tm-brand-card:hover {
  transform: translateY(-2px);
  border-color: color-mix(in srgb, var(--tm-accent) 24%, transparent);
  box-shadow: var(--tm-shadow);
}

.tm-brand-logo {
  width: 2.45rem;
  height: 2.45rem;
  border-radius: 16px;
  background: #f7f6f9;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.tm-brand-logo img {
  width: 1.55rem;
  height: 1.55rem;
  object-fit: contain;
}

.tm-brand-logo.is-empty::before {
  content: "memory";
  color: var(--tm-accent);
  font-family: "Material Symbols Outlined";
  font-size: 1.35rem;
}

.tm-trust-card {
  padding: 1rem;
  display: flex;
  gap: .8rem;
}

.tm-trust-icon {
  width: 2.55rem;
  height: 2.55rem;
  border-radius: 16px;
  background: color-mix(in srgb, var(--tm-accent) 10%, white);
  color: var(--tm-accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.tm-feature-card {
  padding: 1.1rem;
}

.tm-quick-view.hidden {
  display: none;
}

.tm-quick-view {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 1rem;
}

.tm-quick-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(20, 13, 27, .38);
  backdrop-filter: blur(10px);
}

.tm-quick-dialog {
  position: relative;
  z-index: 1;
  width: min(920px, 100%);
  max-height: min(760px, calc(100dvh - 2rem));
  border: 1px solid rgba(255, 255, 255, .75);
  border-radius: 28px;
  background: #fff;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, .92fr);
  overflow: hidden;
  box-shadow: 0 28px 80px -30px rgba(20, 13, 27, .55);
  animation: tmQuickIn .22s ease both;
}

.tm-quick-close {
  position: absolute;
  top: .85rem;
  right: .85rem;
  z-index: 3;
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid rgba(20, 13, 27, .08);
  border-radius: 999px;
  background: rgba(255, 255, 255, .9);
  color: var(--tm-ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.tm-quick-media {
  min-height: 420px;
  background: linear-gradient(180deg, #fff, #f7f6f9);
  display: grid;
  place-items: center;
  padding: 2rem;
  position: relative;
}

.tm-quick-media > img {
  width: 100%;
  height: 100%;
  max-height: 480px;
  object-fit: contain;
}

.tm-quick-thumbs {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  right: 1rem;
  display: flex;
  gap: .5rem;
  overflow-x: auto;
}

.tm-quick-thumbs button {
  width: 3.25rem;
  height: 3.25rem;
  border: 1px solid rgba(20, 13, 27, .08);
  border-radius: 14px;
  background: rgba(255, 255, 255, .9);
  padding: .25rem;
}

.tm-quick-thumbs button.active {
  border-color: var(--tm-accent);
}

.tm-quick-thumbs img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.tm-quick-body {
  padding: clamp(1.25rem, 3vw, 2rem);
  align-self: center;
}

@keyframes tmQuickIn {
  from { opacity: 0; transform: translateY(10px) scale(.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.tm-fade-in {
  animation: tmFadeUp .45s ease both;
}

.tm-related-section {
  padding-top: clamp(1.8rem, 4vw, 3rem);
}

.tm-related-rail {
  display: flex;
  gap: 1rem;
  min-width: 0;
  overflow-x: auto;
  overflow-y: hidden;
  padding: .25rem .2rem 1rem;
  scrollbar-width: none;
}

.tm-related-rail::-webkit-scrollbar {
  display: none;
}

.tm-related-card {
  width: 230px;
  min-width: 230px;
  max-width: 230px;
  flex: 0 0 230px;
  height: auto;
  scroll-snap-align: start;
}

.tm-related-card .tm-product-body {
  min-width: 0;
}

.tm-related-card .tm-product-title {
  overflow-wrap: anywhere;
}

.tm-related-card .tm-product-price {
  white-space: nowrap;
}

.tm-related-card .tm-product-cta {
  margin-top: auto;
}

.tm-click-pulse {
  position: fixed;
  z-index: 9999;
  width: 18px;
  height: 18px;
  border: 2px solid color-mix(in srgb, var(--tm-accent) 78%, white);
  border-radius: 999px;
  pointer-events: none;
  transform: translate(-50%, -50%) scale(.2);
  box-shadow: 0 0 0 0 color-mix(in srgb, var(--tm-accent) 24%, transparent);
  animation: tmClickPulse .55s ease-out forwards;
}

.tm-page-guide {
  display: none;
  position: fixed;
  z-index: 70;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  flex-direction: column;
  gap: .55rem;
  padding: .55rem;
  border: 1px solid rgba(127,19,236,.12);
  border-radius: 999px;
  background: rgba(255,255,255,.84);
  box-shadow: 0 22px 44px -28px rgba(20,13,27,.7);
  backdrop-filter: blur(16px);
}

.tm-page-guide button {
  position: relative;
  width: 2.75rem;
  height: 2.75rem;
  border: 0;
  border-radius: 999px;
  background: color-mix(in srgb, var(--tm-accent) 8%, white);
  color: var(--tm-accent);
  display: grid;
  place-items: center;
  transition: transform .2s ease, background .2s ease, color .2s ease, opacity .2s ease;
}

.tm-page-guide button:hover {
  background: var(--tm-accent);
  color: #fff;
  transform: scale(1.06);
}

.tm-page-guide button:disabled {
  cursor: default;
  opacity: .32;
}

.tm-page-guide-label {
  position: absolute;
  right: calc(100% + .7rem);
  top: 50%;
  transform: translate(8px, -50%);
  border-radius: 999px;
  background: var(--tm-ink);
  color: #fff;
  padding: .4rem .65rem;
  font-size: .68rem;
  font-weight: 900;
  opacity: 0;
  pointer-events: none;
  transition: opacity .18s ease, transform .18s ease;
}

.tm-page-guide button:hover .tm-page-guide-label,
.tm-page-guide button:focus-visible .tm-page-guide-label {
  opacity: 1;
  transform: translate(0, -50%);
}

.tm-site-footer {
  position: relative;
  isolation: isolate;
  margin-top: clamp(2rem, 4vw, 3.5rem);
  overflow: hidden;
  border-top: 2px solid color-mix(in srgb, var(--tm-accent) 62%, white);
  border-radius: 34px 34px 0 0;
  background:
    radial-gradient(circle at 88% 12%, rgba(127, 19, 236, .3), transparent 28%),
    linear-gradient(135deg, #08030d 0%, #100619 48%, #20092f 100%);
  color: #fff;
  box-shadow: 0 -22px 60px -45px rgba(76, 15, 114, .95);
}

.tm-footer-orb {
  position: absolute;
  z-index: -1;
  width: 360px;
  height: 360px;
  border-radius: 999px;
  filter: blur(12px);
  opacity: .16;
  pointer-events: none;
}

.tm-footer-orb-one {
  top: -230px;
  right: 8%;
  background: #d8b4fe;
}

.tm-footer-orb-two {
  bottom: -280px;
  left: 3%;
  background: #ec4899;
}

.tm-footer-inner {
  width: min(1220px, calc(100% - 28px));
  margin: 0 auto;
  padding: clamp(2rem, 3.5vw, 2.8rem) 0 1rem;
}

.tm-footer-grid {
  display: grid;
  grid-template-columns: 1.25fr .72fr 1fr .88fr;
  align-items: start;
  gap: clamp(1.4rem, 3vw, 3.2rem);
}

.tm-footer-brand-column {
  min-width: 0;
}

.tm-footer-logo-wrap {
  width: 86px;
  height: 86px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .3);
  border-radius: 22px;
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 24px 52px -28px rgba(0, 0, 0, .7);
  text-decoration: none;
}

.tm-footer-logo-wrap img {
  width: 76px;
  height: 76px;
  object-fit: contain;
}

.tm-footer-tagline {
  max-width: 31ch;
  margin: .7rem 0 .8rem;
  color: rgba(255, 255, 255, .68);
  font-size: .76rem;
  font-weight: 650;
  line-height: 1.45;
}

.tm-footer-contact-row {
  width: fit-content;
  max-width: 100%;
  display: flex;
  align-items: flex-start;
  gap: .42rem;
  margin: .42rem 0 0;
  color: rgba(255, 255, 255, .86);
  font-size: .72rem;
  font-weight: 750;
  line-height: 1.4;
  text-decoration: none;
}

.tm-footer-contact-row .material-symbols-outlined {
  flex: 0 0 auto;
  color: #c084fc;
  font-size: 1rem;
}

.tm-footer-contact-row[href]:hover,
.tm-footer-column a:hover,
.tm-footer-handle:hover {
  color: #d8b4fe;
}

.tm-footer-column h2 {
  margin: .2rem 0 .9rem;
  color: #fff;
  font-size: .76rem;
  font-weight: 950;
  letter-spacing: .055em;
  text-transform: uppercase;
}

.tm-footer-column > a {
  width: fit-content;
  display: block;
  margin-top: .58rem;
  color: rgba(255, 255, 255, .72);
  font-size: .74rem;
  font-weight: 700;
  text-decoration: none;
  transition: color .18s ease, transform .18s ease;
}

.tm-footer-column > a:hover {
  transform: translateX(2px);
}

.tm-footer-assurance {
  display: grid;
  gap: .58rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.tm-footer-assurance li {
  display: flex;
  align-items: flex-start;
  gap: .4rem;
  color: rgba(255, 255, 255, .72);
  font-size: .72rem;
  font-weight: 700;
  line-height: 1.35;
}

.tm-footer-assurance .material-symbols-outlined {
  color: #c084fc;
  font-size: .98rem;
}

.tm-footer-connect > p {
  margin: 0;
  color: rgba(255, 255, 255, .65);
  font-size: .72rem;
  font-weight: 650;
  line-height: 1.45;
}

.tm-footer-social-buttons {
  display: flex;
  align-items: center;
  gap: .55rem;
  margin-top: .85rem;
}

.tm-footer-social-button {
  width: 2.65rem;
  height: 2.65rem;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .3);
  border-radius: 999px;
  color: #fff;
  background: rgba(255, 255, 255, .06);
  text-decoration: none;
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}

.tm-footer-social-button:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, .72);
}

.tm-footer-social-button.is-instagram:hover {
  background: linear-gradient(135deg, #f9ce34, #ee2a7b 48%, #6228d7);
}

.tm-footer-social-button.is-whatsapp:hover {
  background: #25d366;
}

.tm-footer-social-button svg,
.tm-whatsapp-float-icon svg {
  width: 1.35rem;
  height: 1.35rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.tm-footer-social-button .tm-icon-dot {
  fill: currentColor;
  stroke: none;
}

.tm-footer-social-button .tm-icon-phone,
.tm-whatsapp-float-icon .tm-icon-phone {
  fill: currentColor;
  stroke: none;
}

.tm-footer-handle {
  margin-top: .65rem !important;
  color: #d8b4fe !important;
  font-weight: 850 !important;
}

.tm-footer-bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.65rem;
  padding: .9rem 210px 0;
  border-top: 1px solid rgba(255, 255, 255, .12);
  color: rgba(255, 255, 255, .6);
  font-size: .7rem;
  font-weight: 750;
  text-align: center;
}

.tm-footer-bottom p + p::before {
  content: "•";
  margin-right: 1rem;
  color: #c084fc;
}

.tm-whatsapp-float {
  position: fixed;
  z-index: 65;
  right: 1.15rem;
  bottom: 1.15rem;
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  min-height: 3.6rem;
  border: 3px solid rgba(255, 255, 255, .95);
  border-radius: 999px;
  padding: .28rem .3rem .28rem .9rem;
  background: #25d366;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 18px 42px -18px rgba(9, 94, 45, .75);
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.tm-whatsapp-float:hover {
  background: #20bd5a;
  transform: translateY(-3px);
  box-shadow: 0 24px 48px -18px rgba(9, 94, 45, .85);
}

.tm-whatsapp-float:focus-visible {
  outline: 3px solid color-mix(in srgb, #25d366 45%, white);
  outline-offset: 3px;
}

.tm-whatsapp-float-label {
  font-size: .76rem;
  font-weight: 950;
  white-space: nowrap;
}

.tm-whatsapp-float-icon {
  width: 2.8rem;
  height: 2.8rem;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, .16);
}

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

@keyframes tmAmbientWaves {
  from { background-position: 0 0, 0 0, 0 0; }
  to { background-position: 640px 0, 0 0, 0 0; }
}

@keyframes tmClickPulse {
  0% {
    opacity: .9;
    transform: translate(-50%, -50%) scale(.2);
    box-shadow: 0 0 0 0 color-mix(in srgb, var(--tm-accent) 24%, transparent);
  }
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(3.5);
    box-shadow: 0 0 0 14px transparent;
  }
}

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

@keyframes tmPriceShine {
  from { background-position: 120% 0; }
  to { background-position: -120% 0; }
}

@keyframes tmShowcaseGlow {
  from { opacity: .55; transform: translate(-50%, -50%) scale(.88); }
  to { opacity: 1; transform: translate(-50%, -50%) scale(1.12); }
}

@keyframes tmShowcaseOrb {
  to { transform: rotate(360deg); }
}

@keyframes tmOfferPulse {
  50% {
    transform: translateY(-2px);
    box-shadow: 0 9px 20px -9px rgba(239, 68, 68, .72);
  }
}

@media (min-width: 768px) {
  #tmBottomNav {
    display: none !important;
  }

  .tm-scroll-controls {
    display: inline-flex;
  }

  .tm-category-card {
    width: 190px;
    min-width: 190px;
  }

  .tm-product-body {
    padding: 1.05rem;
  }
}

@media (min-width: 1024px) {
  .tm-page-guide.is-useful {
    display: flex;
  }
}

@media (max-width: 900px) {
  .tm-showcase-stage {
    grid-template-columns: minmax(0, 1fr);
  }

  .tm-showcase-feature {
    min-height: 230px;
  }

  .tm-showcase-title {
    max-width: 28ch;
  }

  .tm-footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.7rem 2rem;
  }
}

@media (max-width: 1100px) and (min-width: 768px) {
  .tm-footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  body.tm-home-page {
    padding-bottom: 6.5rem;
  }

  #siteHeader .tm-header-inner {
    width: calc(100% - 20px);
    grid-template-columns: auto auto minmax(0, 1fr) auto;
    grid-template-areas:
      "brand home . cart"
      "search search search search";
    gap: .4rem .5rem;
    padding: .35rem 0;
  }

  #siteHeader .tm-header-brand {
    grid-area: brand;
  }

  #siteHeader .tm-home-pill {
    grid-area: home;
  }

  #siteHeader .tm-header-search {
    grid-area: search;
    min-height: 2.85rem;
  }

  #siteHeader .tm-header-cart {
    grid-area: cart;
  }

  #siteHeader .tm-header-brand img[data-logo] {
    height: 76px;
    max-width: 88px;
  }

  #siteHeader .tm-search-shell {
    width: auto;
    max-width: none;
    max-height: 3.2rem;
    margin: 0 10px;
    padding-bottom: .45rem;
    opacity: 1;
  }

  #siteHeader.is-compact {
    background: color-mix(in srgb, var(--tm-header-bg) 96%, transparent);
    box-shadow: 0 14px 32px -22px rgba(20, 13, 27, .55);
  }

  #siteHeader.is-compact .tm-header-inner {
    grid-template-columns: 66px minmax(0, 1fr);
    grid-template-areas: "brand search";
    gap: .35rem;
    padding: .18rem 0;
  }

  #siteHeader.is-compact .tm-home-pill,
  #siteHeader.is-compact .tm-header-cart {
    display: none;
  }

  #siteHeader.is-compact .tm-header-brand img[data-logo] {
    height: 58px;
    max-width: 66px;
  }

  #siteHeader.is-compact .tm-header-search {
    min-height: 2.55rem;
    border-radius: 16px;
    padding: .25rem .45rem .25rem .7rem;
  }

  #siteHeader.is-compact .tm-header-search > .material-symbols-outlined {
    font-size: 1.25rem;
  }

  #siteHeader.is-compact .tm-search-shell {
    max-height: 0;
    padding-bottom: 0;
    opacity: 0;
    overflow: hidden;
    pointer-events: none;
  }

  .tm-site-footer {
    margin-top: 2rem;
    border-radius: 28px 28px 0 0;
  }

  .tm-footer-inner {
    width: calc(100% - 28px);
    padding: 1.7rem 0 .85rem;
  }

  .tm-footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
  }

  .tm-footer-brand-column,
  .tm-footer-connect {
    grid-column: 1 / -1;
  }

  .tm-footer-brand-column {
    display: grid;
    grid-template-columns: 68px minmax(0, 1fr);
    align-items: start;
    gap: .28rem .8rem;
  }

  .tm-footer-logo-wrap {
    width: 68px;
    height: 68px;
    grid-row: 1 / 4;
    border-radius: 18px;
  }

  .tm-footer-logo-wrap img {
    width: 60px;
    height: 60px;
  }

  .tm-footer-tagline {
    max-width: 38ch;
    margin: 0 0 .15rem;
    font-size: .7rem;
  }

  .tm-footer-contact-row {
    margin-top: .15rem;
    font-size: .68rem;
  }

  .tm-footer-column h2 {
    margin-bottom: .65rem;
  }

  .tm-footer-column > a {
    margin-top: .43rem;
  }

  .tm-footer-assurance {
    gap: .42rem;
  }

  .tm-footer-connect {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: .45rem 1rem;
  }

  .tm-footer-connect h2,
  .tm-footer-connect .tm-footer-handle {
    grid-column: 1 / -1;
  }

  .tm-footer-social-buttons {
    margin-top: 0;
  }

  .tm-footer-bottom {
    flex-direction: column;
    gap: .25rem;
    margin-top: 1rem;
    padding-top: .7rem;
    padding-right: 4.2rem;
    padding-left: 0;
    text-align: left;
  }

  .tm-footer-bottom p + p::before {
    display: none;
  }

  .tm-whatsapp-float {
    right: .75rem;
    bottom: calc(5.7rem + env(safe-area-inset-bottom));
    min-width: 3.55rem;
    min-height: 3.55rem;
    justify-content: center;
    padding: .28rem;
  }

  .tm-whatsapp-float-label {
    display: none;
  }

  .tm-whatsapp-float-icon {
    width: 2.75rem;
    height: 2.75rem;
  }
}

@media (max-width: 640px) {
  .tm-store-header img[data-logo] {
    max-height: 68px;
    max-width: 55vw;
  }

  .tm-icon-btn {
    width: 2.55rem;
    height: 2.55rem;
  }

  .tm-home-pill {
    min-width: 2.55rem;
    min-height: 2.55rem;
    padding: 0;
  }

  .tm-home-pill span:last-child {
    display: none;
  }

  .tm-search-shell {
    width: auto;
    max-width: none;
    margin-left: 10px;
    margin-right: 10px;
  }

  .tm-search-box {
    border-radius: 18px;
    padding-left: .85rem;
  }

  .tm-search-count {
    display: none;
  }

  .tm-hero {
    width: auto;
    height: clamp(190px, 55vw, 245px);
    min-height: 0;
    margin: .65rem 10px 0;
    aspect-ratio: auto;
    border-radius: 20px;
  }

  .tm-hero-cta {
    left: 10px;
    bottom: 10px;
    min-height: 2.45rem;
    padding: .58rem .85rem;
    font-size: .74rem;
  }

  .tm-category-card {
    width: 142px;
    min-width: 142px;
    border-radius: 18px;
  }

  .tm-section {
    width: auto;
    max-width: none;
    margin-left: 10px;
    margin-right: 10px;
  }

  .tm-section-head {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .tm-carousel-controls {
    width: 100%;
    justify-content: flex-end;
  }

  .tm-carousel-control {
    width: 2.65rem;
    padding: 0;
  }

  .tm-carousel-control > span:not(.material-symbols-outlined) {
    display: none;
  }

  .tm-product-body {
    padding: .75rem;
  }

  .tm-product-card-compact {
    width: 174px;
    min-width: 174px;
    max-width: 174px;
  }

  .tm-product-title {
    font-size: .8rem;
  }

  .tm-product-cta {
    min-height: 2.35rem;
  }

  .tm-image-preview,
  .tm-product-hover-action {
    display: none;
  }

  .tm-filter-chip {
    min-height: 2.35rem;
    padding: 0 .8rem;
  }

  .tm-quick-view {
    padding: .6rem;
    align-items: end;
  }

  .tm-quick-dialog {
    max-height: calc(100dvh - 1rem);
    grid-template-columns: 1fr;
    border-radius: 24px;
    overflow-y: auto;
  }

  .tm-quick-media {
    min-height: 270px;
    padding: 1rem;
  }

  .tm-quick-media > img {
    max-height: 300px;
  }

  .tm-quick-body {
    padding: 1rem;
  }

  .tm-zoom-lens {
    display: none;
  }

  .tm-random-viewport {
    border-radius: 19px;
  }

  .tm-showcase-stage {
    gap: .55rem;
    padding: .55rem;
    border-radius: 25px;
  }

  .tm-showcase-stage::before {
    background-position: 50% 12%;
    background-size: 92%;
    opacity: .11;
  }

  .tm-showcase-glow {
    left: 50%;
    top: 24%;
  }

  .tm-showcase-feature {
    min-height: 0;
    padding: 1rem;
    border-radius: 19px;
  }

  .tm-showcase-feature-top {
    margin-bottom: .7rem;
  }

  .tm-showcase-title {
    max-width: none;
    font-size: 1.3rem;
  }

  .tm-showcase-meta {
    min-height: 0;
    margin-top: .5rem;
  }

  .tm-showcase-price-row {
    margin-top: .8rem;
  }

  .tm-showcase-price {
    font-size: 1.55rem;
  }

  .tm-showcase-actions {
    margin-top: .85rem;
  }

  .tm-showcase-quick,
  .tm-showcase-link {
    flex: 1 1 8rem;
  }

  .tm-random-track {
    gap: .7rem;
    padding: 1.4rem 1.55rem 1.8rem;
    scroll-padding-inline: calc(50% - 87px);
  }

  .tm-showcase-card {
    flex-basis: 174px;
    opacity: .58;
    transform: perspective(900px) scale(.9);
  }

  .tm-showcase-card.is-spotlight {
    transform:
      perspective(900px)
      translateY(-3px)
      rotateX(var(--tilt-x, 0deg))
      rotateY(var(--tilt-y, 0deg))
      scale(1.055);
  }

  .tm-related-card {
    width: 174px;
    min-width: 174px;
    max-width: 174px;
    flex-basis: 174px;
  }

  .tm-related-rail {
    gap: .7rem;
  }

  .tm-carousel-hint {
    justify-content: flex-start;
    padding-left: .2rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }

  .tm-product-image-float {
    animation: none !important;
  }

  body {
    animation: none !important;
  }

  .tm-random-track {
    animation: none !important;
  }
}
