/* ═══════════════════════════════════════════════════════
   TTDX Home — Mobile-first, optimised, premium
   ═══════════════════════════════════════════════════════ */

:root {
  --blue:       #0066FF;
  --blue-h:     #0052CC;
  --blue-soft:  #EAF0FF;
  --blue-muted: #C2D4FF;
  --pink:       #FF2D55;
  --bg:         #EEF2FF;
  --surface:    #ffffff;
  --text:       #1d1d1f;
  --text-2:     #6e6e73;
  --text-3:     #86868b;
  --border:     rgba(0,102,255,0.10);
  --border-s:   rgba(0,102,255,0.18);
  --success:    #34c759;
  --r-sm:       12px;
  --r-md:       16px;
  --r-lg:       20px;
  --r-pill:     999px;
  --sh-sm:      0 1px 3px rgba(0,102,255,0.06),0 4px 14px rgba(0,102,255,0.08);
  --sh-md:      0 4px 22px rgba(0,102,255,0.15);
  --font:       -apple-system,BlinkMacSystemFont,'SF Pro Text','Inter',sans-serif;
  --font-d:     -apple-system,BlinkMacSystemFont,'SF Pro Display','Inter',sans-serif;
  --ease:       cubic-bezier(0.25,0.1,0.25,1);
  --ease-o:     cubic-bezier(0.16,1,0.3,1);
  --gutter:     16px;
}

/* ── Reset / base ───────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-size: 15px;
  line-height: 1.47;
  -webkit-font-smoothing: antialiased;
  margin: 0;
}

/* ── Cards ──────────────────────────────────────────────── */
.premium-card,
.tactile-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  box-shadow: var(--sh-sm);
  transition: transform 0.3s var(--ease-o), box-shadow 0.3s var(--ease-o);
}

/* ── Buttons ────────────────────────────────────────────── */
.home-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 13px 24px;
  border-radius: var(--r-pill);
  background: var(--blue);
  color: #fff;
  font-family: var(--font);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.01em;
  text-decoration: none;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(0,102,255,0.38);
  transition: background 0.18s var(--ease), transform 0.18s var(--ease), box-shadow 0.18s var(--ease);
  white-space: nowrap;
  width: 100%;
  -webkit-tap-highlight-color: transparent;
}

.home-btn-primary:active { transform: scale(0.97); background: var(--blue-h); }

.home-btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 24px;
  border-radius: var(--r-pill);
  background: rgba(255,255,255,0.13);
  border: 1px solid rgba(255,255,255,0.30);
  color: #fff;
  font-family: var(--font);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.01em;
  text-decoration: none;
  width: 100%;
  -webkit-tap-highlight-color: transparent;
  transition: background 0.18s var(--ease);
}

.home-btn-ghost:active { background: rgba(255,255,255,0.22); }

/* ── Layout shell ───────────────────────────────────────── */
.home-main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px var(--gutter) 64px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

/* ═══ HERO ══════════════════════════════════════════════ */
.home-hero {
  position: relative;
  min-height: 320px;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0,102,255,0.18);
}

.home-hero-media {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #020C1E 0%, #0A2252 40%, #1E0B38 100%);
  background-size: cover;
  background-position: center;
}

.home-hero-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 90% 15%, rgba(255,45,85,0.30) 0%, transparent 50%),
    radial-gradient(ellipse at 10% 85%, rgba(0,102,255,0.36) 0%, transparent 55%);
  pointer-events: none;
}

.home-hero[style*="--hero-bg"] .home-hero-media {
  background-image: var(--hero-bg);
  background-size: cover;
  background-position: center;
}

.home-hero[style*="--hero-bg"] .home-hero-media::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(2,12,30,0.90) 0%, rgba(2,12,30,0.55) 50%, rgba(2,12,30,0.12) 100%);
  z-index: 1;
}

.home-hero-overlay {
  position: relative;
  z-index: 2;
  min-height: 320px;
  display: flex;
  align-items: flex-end;
  padding: 28px 22px;
}

/* Hide spotlight on mobile */
.home-hero-spotlight { display: none; }

.home-hero-content {
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}

.home-hero-badge {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 5px 12px;
  border-radius: var(--r-pill);
  background: rgba(255,255,255,0.11);
  border: 1px solid rgba(255,255,255,0.20);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.88);
}

.home-hero h1 {
  font-family: var(--font-d);
  font-size: clamp(26px,7vw,42px);
  font-weight: 700;
  line-height: 1.06;
  letter-spacing: -0.025em;
  margin: 0;
}

.home-hero h1 em {
  font-style: normal;
  background: linear-gradient(90deg,#5DB8FF 0%,#FF6B95 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.home-hero-sub {
  font-size: 14px;
  line-height: 1.5;
  color: rgba(255,255,255,0.76);
  margin: 0;
  font-weight: 400;
}

.home-hero-stats {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 8px;
}

.home-stat-card {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 10px 12px;
  border-radius: var(--r-sm);
  background: rgba(255,255,255,0.09);
  border: 1px solid rgba(255,255,255,0.12);
}

.home-stat-num {
  font-family: var(--font-d);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1;
}

.home-stat-lbl {
  font-size: 9px;
  color: rgba(255,255,255,0.50);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 500;
}

.home-hero-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 2px;
}

/* ═══ TRUST ═════════════════════════════════════════════ */
.home-trust {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 10px;
}

.home-trust-card {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
}

.home-trust-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 15px;
}

.home-trust-icon--blue { background: var(--blue-muted); color: var(--blue); }
.home-trust-icon--pink { background: #FFE0E8; color: #E0184A; }

.home-trust-card h4 {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--text);
  margin: 0 0 3px;
}

.home-trust-card p {
  font-size: 12px;
  color: var(--text-2);
  margin: 0;
  line-height: 1.4;
}

/* ═══ SECTIONS ══════════════════════════════════════════ */
.home-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.home-section-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}

.home-section-heading {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.home-section-title {
  font-family: var(--font-d);
  font-size: clamp(20px,5vw,28px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--text);
  margin: 0;
}

.home-section-title span {
  background: linear-gradient(90deg,#0066FF 0%,#FF2D55 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.home-view-all {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  font-weight: 500;
  color: var(--blue);
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
}

.home-view-all i { font-size: 11px; opacity: 0.7; }

.home-featured-pill {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: var(--r-pill);
  background: #FFE8EE;
  color: #D4143A;
  font-size: 11px;
  font-weight: 600;
  border: 1px solid rgba(255,45,85,0.18);
}

/* ═══ BENTO ═════════════════════════════════════════════ */
.home-bento {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  grid-template-rows: repeat(2,minmax(120px,1fr));
  gap: 10px;
  min-height: 260px;
}

.home-bento-item {
  position: relative;
  display: block;
  border-radius: var(--r-md);
  overflow: hidden;
  text-decoration: none;
  color: #fff;
  border: none;
  box-shadow: var(--sh-sm);
  -webkit-tap-highlight-color: transparent;
  transition: transform 0.28s var(--ease-o);
}

.home-bento-item.bento-large { grid-column: span 2; grid-row: span 2; }
.home-bento-item.bento-wide  { grid-column: span 2; }

.home-bento-item:active { transform: scale(0.98); }

.home-bento-icon {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(36px,8vw,60px);
  opacity: 0.20;
}

.home-bento-caption {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 16px;
  background: linear-gradient(to top, rgba(0,0,0,0.54) 0%, transparent 65%);
}

.home-bento-caption h3 {
  font-family: var(--font-d);
  font-size: clamp(13px,3.5vw,17px);
  font-weight: 600;
  letter-spacing: -0.02em;
  margin: 0 0 3px;
}

.home-bento-caption p {
  font-size: 11px;
  opacity: 0.75;
  margin: 0;
}

.home-bento-item:nth-child(4n+1) { background: linear-gradient(145deg,#020B1E,#0066FF); }
.home-bento-item:nth-child(4n+2) { background: linear-gradient(145deg,#280B1A,#FF2D55); }
.home-bento-item:nth-child(4n+3) { background: linear-gradient(145deg,#0E1040,#5856D6); }
.home-bento-item:nth-child(4n+4) { background: linear-gradient(145deg,#031520,#00AEEF); }

.home-cat-more { margin-top: 4px; }

/* ═══ CATEGORY SLIDER ═══════════════════════════════════ */
.cat-slider-container {
  margin: 0 calc(var(--gutter) * -1);
  -webkit-mask-image: linear-gradient(to right, transparent, black 20px, black calc(100% - 20px), transparent);
  mask-image: linear-gradient(to right, transparent, black 20px, black calc(100% - 20px), transparent);
}

.cat-grid {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 4px 20px 12px;
  scroll-snap-type: x proximity;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.cat-grid::-webkit-scrollbar { display: none; }

.cat-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  min-width: 88px;
  padding: 14px 10px 12px;
  border-radius: var(--r-md);
  text-decoration: none;
  scroll-snap-align: start;
  -webkit-tap-highlight-color: transparent;
  transition: transform 0.25s var(--ease-o);
}

.cat-card:active { transform: scale(0.95); }

.cat-card .icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  border-radius: 13px;
  background: var(--blue-soft);
  transition: transform 0.25s var(--ease-o);
}

.cat-card .name {
  font-size: 11px;
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.01em;
  white-space: nowrap;
  max-width: 80px;
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: center;
}

.cat-card .count {
  font-size: 10px;
  font-weight: 500;
  color: var(--text-2);
}

.cat-grid .cat-card:nth-child(4n+1) .icon { background: var(--blue-muted); color: var(--blue); }
.cat-grid .cat-card:nth-child(4n+2) .icon { background: #FFD6E0; color: #C91239; }
.cat-grid .cat-card:nth-child(4n+3) .icon { background: #E2E0FF; color: #4B48C4; }
.cat-grid .cat-card:nth-child(4n+4) .icon { background: #D4F0FC; color: #006FA8; }

/* ═══ PRODUCTS GRID ═════════════════════════════════════ */
.products-grid {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 10px;
}

.product-card {
  overflow: hidden;
  text-decoration: none;
  color: var(--text);
  display: flex;
  flex-direction: column;
  -webkit-tap-highlight-color: transparent;
}

.card-image-wrap {
  position: relative;
  aspect-ratio: 1/1;
  overflow: hidden;
  background: var(--bg);
  margin: 8px 8px 0;
  border-radius: var(--r-sm);
}

.card-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s var(--ease-o);
}

.card-badge-row {
  position: absolute;
  top: 8px;
  left: 8px;
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 3px 8px;
  border-radius: var(--r-pill);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.badge-gold      { background: rgba(0,102,255,0.88); color: #fff; box-shadow: 0 2px 7px rgba(0,102,255,0.38); }
.badge-used      { background: rgba(29,29,31,0.70); color: rgba(255,255,255,0.95); }
.badge-new-item  { background: rgba(52,199,89,0.92); color: #fff; }

.card-body {
  padding: 10px 10px 12px;
  display: flex;
  flex-direction: column;
  gap: 3px;
  flex: 1;
}

.card-title-text {
  font-size: 13px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: -0.01em;
  color: var(--text);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.card-price {
  font-family: var(--font-d);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-top: 5px;
}

.card-negotiable {
  font-size: 11px;
  color: var(--success);
  font-weight: 500;
}

.card-meta {
  display: flex;
  align-items: center;
  gap: 5px;
  flex-wrap: wrap;
  font-size: 11px;
  color: var(--text-3);
  margin-top: 4px;
  line-height: 1.35;
}

.card-meta-dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--text-3);
  opacity: 0.45;
}

/* ═══ PROMO ══════════════════════════════════════════════ */
.home-promo {
  position: relative;
  overflow: hidden;
  border-radius: var(--r-lg);
  padding: 32px 22px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  background:
    linear-gradient(135deg,rgba(0,102,255,0.06) 0%,rgba(255,45,85,0.06) 100%),
    var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--sh-sm);
}

.home-promo::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(255,45,85,0.16) 0%, transparent 70%);
  pointer-events: none;
}

.home-promo::after {
  content: '';
  position: absolute;
  bottom: -50px;
  left: -50px;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(0,102,255,0.13) 0%, transparent 70%);
  pointer-events: none;
}

.home-promo > * { position: relative; z-index: 1; }

.home-promo-copy h2 {
  font-family: var(--font-d);
  font-size: clamp(20px,5vw,28px);
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--text);
  margin: 0 0 8px;
}

.home-promo-copy p {
  font-size: 15px;
  line-height: 1.47;
  color: var(--text-2);
  margin: 0;
}

.home-promo-steps { display: none; }

/* ── Empty state ──────────────────────────────────────── */
.empty-state {
  grid-column: 1/-1;
  text-align: center;
  padding: 48px 20px;
  border-radius: var(--r-lg);
}

.empty-state-icon {
  font-size: 28px;
  margin-bottom: 14px;
  color: var(--text-3);
}

.empty-state h3 {
  font-family: var(--font-d);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
  margin: 0 0 6px;
}

.empty-state p {
  color: var(--text-2);
  font-size: 14px;
  margin: 0 0 20px;
}

/* ═══ TABLET+ ══════════════════════════════════════════ */
@media (min-width: 600px) {
  :root { --gutter: 20px; }

  .home-main { padding-top: 22px; gap: 44px; }
  .home-hero-overlay { align-items: center; padding: 40px clamp(24px,4vw,56px); min-height: 380px; }
  .home-hero-actions { flex-direction: row; flex-wrap: wrap; }
  .home-btn-primary, .home-btn-ghost { width: auto; font-size: 14px; padding: 12px 26px; }

  .home-trust { grid-template-columns: repeat(4,1fr); }

  .cat-slider-container { margin: 0; -webkit-mask-image: none; mask-image: none; }
  .cat-grid { padding: 4px 0 12px; flex-wrap: wrap; overflow: visible; }

  .products-grid { grid-template-columns: repeat(3,1fr); gap: 14px; }

  .home-bento {
    grid-template-columns: repeat(4,1fr);
    grid-template-rows: repeat(2,1fr);
    min-height: 340px;
    gap: 12px;
  }

  .home-hero-spotlight {
    display: block;
    width: 220px;
    flex-shrink: 0;
    border-radius: var(--r-md);
    overflow: hidden;
    text-decoration: none;
    color: #fff;
    border: 1px solid rgba(255,255,255,0.15);
    background: rgba(255,255,255,0.07);
    transition: transform 0.3s var(--ease-o), box-shadow 0.3s var(--ease-o);
  }

  .home-hero-spotlight:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(255,45,85,0.24);
  }

  .home-hero-spotlight img { width: 100%; height: 120px; object-fit: cover; display: block; }
  .home-hero-spotlight-body { padding: 14px; display: flex; flex-direction: column; gap: 5px; }
  .home-spotlight-badge { font-size: 10px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; color: #FF8AAE; }
  .home-spotlight-title { font-size: 13px; font-weight: 600; line-height: 1.35; letter-spacing: -0.01em; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
  .home-spotlight-price { font-family: var(--font-d); font-size: 17px; font-weight: 700; letter-spacing: -0.02em; color: #5DB8FF; }

  .home-hero-overlay { justify-content: space-between; gap: 28px; }

  .home-promo-steps { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; justify-content: center; }
  .home-promo-step { display: flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 500; color: var(--text-2); }
  .step-num { width: 26px; height: 26px; border-radius: 50%; background: var(--blue-muted); color: var(--blue); display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 11px; flex-shrink: 0; }
  .home-promo-step:nth-child(2) .step-num { background: #FFD6E0; color: #C91239; }
}

@media (min-width: 980px) {
  .home-main { padding-top: 28px; gap: 56px; }
  .home-hero, .home-hero-overlay { min-height: 480px; }
  .home-hero-overlay { padding: 48px clamp(32px,5vw,64px); }
  .home-stat-num { font-size: 22px; }
  .products-grid { grid-template-columns: repeat(4,1fr); gap: 16px; }
  .home-promo { flex-direction: row; align-items: center; text-align: left; padding: 48px 52px; }
  .home-promo-copy { flex: 1; }
  .home-promo .home-btn-primary { width: auto; flex-shrink: 0; }
  .premium-card:hover, .tactile-card:hover { transform: translateY(-2px); box-shadow: var(--sh-md); }
  .product-card:hover .card-image-wrap img { transform: scale(1.04); }
  .cat-card:hover .icon { transform: scale(1.06); }
  .home-bento-item:hover { transform: scale(1.015); box-shadow: var(--sh-md); }
}

/* ── Smallest screens / compact hero ────────────────── */
@media (max-width: 360px) {
  :root { --gutter: 12px; }
  .home-hero h1 { font-size: 24px; }
  .products-grid { gap: 8px; }
  .card-price { font-size: 15px; }
  .cat-card { min-width: 80px; }
  .home-stat-num { font-size: 15px; }
}

/* ── Mobile hero compact (under 600px) ──────────────── */
@media (max-width: 599px) {
  .home-hero { min-height: 240px; }
  .home-hero-overlay { min-height: 240px; padding: 16px 14px; }
  .home-hero-content { gap: 8px; }
  .home-hero-badge { font-size: 8px; padding: 3px 8px; }
  .home-hero h1 { font-size: clamp(18px,5.5vw,26px); }
  .home-hero-sub { font-size: 11px; }
  .home-hero-stats { gap: 5px; }
  .home-stat-card { padding: 6px 8px; gap: 1px; }
  .home-stat-num { font-size: 13px; }
  .home-stat-lbl { font-size: 7px; letter-spacing: 0.04em; }
  .home-hero-actions { gap: 6px; padding-top: 0; }
  .home-hero-actions .home-btn-primary,
  .home-hero-actions .home-btn-ghost { font-size: 11px; padding: 8px 14px; }
  .home-trust { gap: 6px; }
  .home-trust-card { padding: 10px; gap: 8px; }
  .home-trust-icon { width: 28px; height: 28px; font-size: 12px; border-radius: 7px; }
  .home-trust-card h4 { font-size: 11px; }
  .home-trust-card p { font-size: 10px; }
  .home-bento { grid-template-columns: repeat(4,1fr); grid-template-rows: auto; min-height: auto; gap: 6px; }
  .home-bento-item.bento-large,
  .home-bento-item.bento-wide { grid-column: span 1; grid-row: span 1; }
  .home-bento-item { min-height: 80px; aspect-ratio: auto; }
  .home-bento-caption { padding: 10px; }
  .home-bento-caption h3 { font-size: 11px; }
  .home-bento-caption p { font-size: 9px; opacity: 0.7; display: block; }
  .home-bento-icon { font-size: 20px; opacity: 0.18; }
  .home-section-title { font-size: 18px; }
  .home-view-all { font-size: 11px; }
  /* Compact categories on mobile */
  .cat-card { min-width: 68px; padding: 8px 6px; gap: 4px; }
  .cat-card .icon { width: 36px; height: 36px; font-size: 16px; border-radius: 9px; }
  .cat-card .name { font-size: 9px; max-width: 64px; }
  .cat-card .count { font-size: 8px; }
  .cat-grid { gap: 5px; padding: 2px 16px 8px; }
}

/* ── Motion reduction ───────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  .premium-card, .tactile-card, .product-card,
  .cat-card, .home-bento-item, .home-hero-spotlight,
  .home-btn-primary, .home-btn-ghost { transition: none; }
  .product-card:hover .card-image-wrap img { transform: none; }
}