/* ═══════════════════════════════════════════════════════════════
   2026 PRODUCT CARDS — Glassmorphism × Neumorphism × 3D
   TSSCCTV.com — ZenCart Bootstrap 5.3
   ═══════════════════════════════════════════════════════════════ */

/* ── 2026 Design Tokens ───────────────── */
:root {
  --bs-font-sans-serif: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --glass-bg: rgba(255,255,255,0.72);
  --glass-border: rgba(255,255,255,0.45);
  --glass-shadow: 0 8px 32px rgba(0,0,0,0.06), 0 2px 8px rgba(0,0,0,0.04);
  --glass-shadow-hover: 0 24px 48px rgba(0,0,0,0.12), 0 6px 16px rgba(0,0,0,0.06);
  --neumorph-light: rgba(255,255,255,0.9);
  --neumorph-dark: rgba(0,0,0,0.04);
  --gradient-1: #13607c;
  --gradient-2: #0ea5e9;
  --gradient-3: #06b6d4;
  --accent-glow: 0 0 20px rgba(19,96,124,0.3), 0 0 40px rgba(14,165,233,0.15);
  --radius-xl: 20px;
  --radius-lg: 16px;
  --radius-md: 12px;
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out-back: cubic-bezier(0.34, 1.56, 0.64, 1);
  --spring: cubic-bezier(0.22, 0.89, 0.38, 1.27);
}

/* ── Modern Bootstrap Typography ──────── */
body {
  font-family: var(--bs-font-sans-serif);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4, h5, h6,
.pageHeading,
.centerBoxHeading,
.centerBoxWrapper .card-header {
  font-family: var(--bs-font-sans-serif);
  letter-spacing: -0.02em;
}

h2.centerBoxHeading,
.centerBoxWrapper .card-header {
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ── CenterBox Container — Glass Base ─── */
.centerBoxWrapper {
  background: rgba(255,255,255,0.55);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border: 1px solid rgba(255,255,255,0.5);
  border-radius: var(--radius-xl);
  box-shadow: var(--glass-shadow), inset 0 1px 0 rgba(255,255,255,0.6);
  margin-bottom: 44px;
  overflow: visible;
  position: relative;
}

.centerBoxWrapper::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: var(--radius-xl);
  padding: 1px;
  background: linear-gradient(135deg, rgba(19,96,124,0.15), transparent 40%, transparent 60%, rgba(14,165,233,0.12));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.centerBoxWrapper .card-header {
  background: transparent;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #0f172a;
  padding: 20px 28px;
  position: relative;
}

.centerBoxWrapper .card-header::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 28px;
  width: 48px;
  height: 3px;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--gradient-1), var(--gradient-2));
}

/* ── Card Grid ─────────────────────────── */
.card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding: 28px;
  align-items: stretch;
}

/* ═══════════════════════════════════════════════════════════
   2026 PRODUCT CARD — Glass + Neumorph + 3D
   ═══════════════════════════════════════════════════════════ */

.centerBoxContents.card,
.centerBoxContentsListing.card,
.centerBoxContentsNew,
.centerBoxContentsSpecials,
.centerBoxContentsFeatured {
  /* Glass base */
  background: var(--glass-bg) !important;
  backdrop-filter: blur(12px) saturate(160%) !important;
  -webkit-backdrop-filter: blur(12px) saturate(160%) !important;
  /* Neumorphic depth */
  border: 1px solid var(--glass-border) !important;
  border-radius: var(--radius-lg) !important;
  box-shadow:
    /* premium depth */
    0 1px 2px rgba(0,0,0,0.04),
    0 4px 8px rgba(0,0,0,0.04),
    0 8px 24px rgba(0,0,0,0.06),
    /* glass edge */
    inset 0 1px 0 rgba(255,255,255,0.9),
    inset 0 -1px 0 rgba(0,0,0,0.02) !important;
  /* Layout — override ZenCart inline width */
  width: 100% !important;
  padding: 0 !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  overflow: hidden !important;
  position: relative !important;
  /* 3D setup */
  perspective: 800px;
  transform-style: preserve-3d;

/* ── Tier 1: Hide bare "Price Unavailable" text ── */
.centerBoxContents.card,
.centerBoxContentsListing.card,
.centerBoxContentsNew,
.centerBoxContentsSpecials,
.centerBoxContentsFeatured {
  font-size: 0 !important;
}

.centerBoxContents.card a,
.centerBoxContentsListing.card a,
.centerBoxContentsNew a,
.centerBoxContentsSpecials a,
.centerBoxContentsFeatured a {
  font-size: 0.85rem !important;
}

.centerBoxContents.card::after,
.centerBoxContentsListing.card::after,
.centerBoxContentsNew::after,
.centerBoxContentsSpecials::after,
.centerBoxContentsFeatured::after {
  font-size: 0.82rem !important;
}
  /* Transitions */
  transition:
    transform 0.5s var(--ease-out-expo),
    box-shadow 0.5s var(--ease-out-expo),
    border-color 0.4s ease !important;
  cursor: pointer !important;
  /* Scroll reveal */
  animation: cardReveal 0.7s var(--ease-out-expo) both;
  animation-timeline: view();
  animation-range: entry 0% entry 100%;
}

/* ── Gradient border glow on hover ────── */
.centerBoxContents.card::before,
.centerBoxContentsListing.card::before,
.centerBoxContentsNew::before,
.centerBoxContentsSpecials::before,
.centerBoxContentsFeatured::before {
  content: '' !important;
  position: absolute !important;
  inset: -2px !important;
  border-radius: calc(var(--radius-lg) + 2px) !important;
  background: linear-gradient(135deg, var(--gradient-1), var(--gradient-2), var(--gradient-3), var(--gradient-2), var(--gradient-1)) !important;
  background-size: 400% 400% !important;
  z-index: -1 !important;
  opacity: 0 !important;
  transition: opacity 0.4s ease !important;
  animation: gradientShift 4s ease infinite !important;
  animation-play-state: paused !important;
}

.centerBoxContents.card:hover::before,
.centerBoxContentsListing.card:hover::before,
.centerBoxContentsNew:hover::before,
.centerBoxContentsSpecials:hover::before,
.centerBoxContentsFeatured:hover::before {
  opacity: 1 !important;
  animation-play-state: running !important;
}

/* ── 3D tilt on hover ─────────────────── */
.centerBoxContents.card:hover,
.centerBoxContentsListing.card:hover,
.centerBoxContentsNew:hover,
.centerBoxContentsSpecials:hover,
.centerBoxContentsFeatured:hover {
  transform:
    perspective(800px)
    rotateX(3deg)
    rotateY(-3deg)
    translateY(-8px)
    scale(1.02) !important;
  box-shadow:
    0 2px 4px rgba(0,0,0,0.04),
    0 8px 16px rgba(0,0,0,0.06),
    0 16px 40px rgba(0,0,0,0.10),
    0 0 0 1px rgba(19,96,124,0.15),
    inset 0 1px 0 rgba(255,255,255,0.9),
    var(--accent-glow) !important;
  border-color: rgba(19,96,124,0.25) !important;
  z-index: 10 !important;
}

/* ── Image Container — Floating ───────── */
.centerBoxContents.card > a:first-child,
.centerBoxContentsListing.card > a:first-child,
.centerBoxContentsNew > a:first-child,
.centerBoxContentsSpecials > a:first-child,
.centerBoxContentsFeatured > a:first-child {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 100% !important;
  height: 230px !important;
  overflow: hidden !important;
  background: rgba(248,250,252,0.6) !important;
  padding: 24px 28px 20px !important;
  border-bottom: 1px solid #e8ecf0 !important;
  position: relative !important;
}

/* Subtle inner vignette */
.centerBoxContents.card > a:first-child::after,
.centerBoxContentsNew > a:first-child::after,
.centerBoxContentsSpecials > a:first-child::after,
.centerBoxContentsFeatured > a:first-child::after {
  content: '' !important;
  position: absolute !important;
  inset: 0 !important;
  background: radial-gradient(ellipse at center, transparent 60%, rgba(0,0,0,0.03) 100%) !important;
  pointer-events: none !important;
}

/* ── Product Image — Fluid zoom ───────── */
.centerBoxContents.card img,
.centerBoxContentsListing.card img,
.centerBoxContentsNew img,
.centerBoxContentsSpecials img,
.centerBoxContentsFeatured img {
  max-width: 100% !important;
  max-height: 175px !important;
  width: auto !important;
  height: auto !important;
  object-fit: contain !important;
  transition: transform 0.6s var(--ease-out-expo) !important;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.08)) !important;
}

.centerBoxContents.card:hover img,
.centerBoxContentsListing.card:hover img,
.centerBoxContentsNew:hover img,
.centerBoxContentsSpecials:hover img,
.centerBoxContentsFeatured:hover img {
  transform: scale(1.1) !important;
  filter: drop-shadow(0 8px 16px rgba(0,0,0,0.15)) !important;
}

/* ── Product Title ─────────────────────── */
.centerBoxContents.card a:not(:first-child),
.centerBoxContentsListing.card a:not(:first-child),
.centerBoxContentsNew a:not(:first-child),
.centerBoxContentsSpecials a:not(:first-child),
.centerBoxContentsFeatured a:not(:first-child) {
  display: block !important;
  color: #1e293b !important;
  font-family: var(--bs-font-sans-serif) !important;
  font-size: 0.85rem !important;
  font-weight: 600 !important;
  line-height: 1.45 !important;
  text-decoration: none !important;
  margin-top: 8px !important;
  padding: 14px 20px 14px !important;
  word-break: break-word !important;
  transition: color 0.25s ease, letter-spacing 0.3s ease !important;
  letter-spacing: -0.01em !important;
}

.centerBoxContents.card a:not(:first-child):hover,
.centerBoxContentsListing.card a:not(:first-child):hover,
.centerBoxContentsNew a:not(:first-child):hover,
.centerBoxContentsSpecials a:not(:first-child):hover,
.centerBoxContentsFeatured a:not(:first-child):hover {
  color: var(--gradient-1) !important;
  letter-spacing: 0 !important;
}

/* ── Price area ────────────────────────── */
.centerBoxContents.card br,
.centerBoxContentsListing.card br,
.centerBoxContentsNew br,
.centerBoxContentsSpecials br,
.centerBoxContentsFeatured br {
  display: none !important;
}

/* ── CTA Button — Asymmetrical ────────── */
.centerBoxContents.card::after,
.centerBoxContentsListing.card::after,
.centerBoxContentsNew::after,
.centerBoxContentsSpecials::after,
.centerBoxContentsFeatured::after {
  content: none !important; display: none !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-family: var(--bs-font-sans-serif) !important;
  font-size: 0.82rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.03em !important;
  color: #fff !important;
  margin: 8px 18px 16px 18px !important;
  text-transform: uppercase !important;
  letter-spacing: 0.04em !important;
  padding: 11px 28px !important;
  align-self: stretch !important;
  background: linear-gradient(135deg, var(--gradient-1), var(--gradient-2)) !important;
  border: none !important;
  border-radius: 50px !important;
  box-shadow: 0 8px 25px rgba(19,96,124,0.40) !important;
  transform: translateY(-2px) scale(1.03) !important;
  transition: all 0.4s var(--spring) !important;
  box-shadow: 0 4px 14px rgba(19,96,124,0.3) !important;
  cursor: pointer !important;
  position: relative !important;
  overflow: hidden !important;
}

/* Shine sweep on CTA */
.centerBoxContents.card::after::before,
.centerBoxContentsNew::after::before {
  display: none;
}

.centerBoxContents.card:hover::after,
.centerBoxContentsListing.card:hover::after,
.centerBoxContentsNew:hover::after,
.centerBoxContentsSpecials:hover::after,
.centerBoxContentsFeatured:hover::after {
  box-shadow: 0 8px 25px rgba(19,96,124,0.40) !important;
  transform: translateY(-2px) scale(1.03) !important;
}

/* ── Floating Quick-Action Badges ──────── */

/* Sale tag — offset top-left */
.centerBoxContentsSpecials {
  position: relative !important;
}

.centerBoxContentsSpecials::before {
  content: 'SALE' !important;
  position: absolute !important;
  top: 14px !important;
  left: -4px !important;
  z-index: 5 !important;
  background: linear-gradient(135deg, #ef4444, #dc2626) !important;
  color: #fff !important;
  font-family: var(--bs-font-sans-serif) !important;
  font-size: 0.65rem !important;
  font-weight: 800 !important;
  letter-spacing: 0.08em !important;
  padding: 5px 14px 5px 18px !important;
  border-radius: 0 8px 8px 0 !important;
  box-shadow: 0 2px 8px rgba(239,68,68,0.3) !important;
  animation: none !important;
  opacity: 1 !important;
  background-size: auto !important;
  inset: auto !important;
}

/* New tag */
.centerBoxContentsNew {
  position: relative !important;
}

.centerBoxContentsNew::before {
  content: 'NEW' !important;
  position: absolute !important;
  top: 14px !important;
  left: -4px !important;
  z-index: 5 !important;
  background: linear-gradient(135deg, #10b981, #059669) !important;
  color: #fff !important;
  font-family: var(--bs-font-sans-serif) !important;
  font-size: 0.65rem !important;
  font-weight: 800 !important;
  letter-spacing: 0.08em !important;
  padding: 5px 14px 5px 18px !important;
  border-radius: 0 8px 8px 0 !important;
  box-shadow: 0 2px 8px rgba(16,185,129,0.3) !important;
  animation: none !important;
  opacity: 1 !important;
  background-size: auto !important;
  inset: auto !important;
}

/* ═══════════════════════════════════════════════════════════
   ANIMATIONS
   ═══════════════════════════════════════════════════════════ */

/* Gradient border shift */
@keyframes gradientShift {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Scroll-triggered card reveal (uses animation-timeline) */
@keyframes cardReveal {
  from {
    opacity: 0;
    transform: translateY(40px) scale(0.92);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Fallback for browsers without animation-timeline support */
@supports not (animation-timeline: view()) {
  .centerBoxContents.card,
  .centerBoxContentsListing.card,
  .centerBoxContentsNew,
  .centerBoxContentsSpecials,
  .centerBoxContentsFeatured {
    animation: cardRevealFallback 0.6s var(--ease-out-expo) both;
    animation-timeline: auto;
    animation-range: auto;
  }

  .centerBoxContents.card:nth-child(1)  { animation-delay: 0.05s; }
  .centerBoxContents.card:nth-child(2)  { animation-delay: 0.10s; }
  .centerBoxContents.card:nth-child(3)  { animation-delay: 0.15s; }
  .centerBoxContents.card:nth-child(4)  { animation-delay: 0.20s; }
  .centerBoxContents.card:nth-child(5)  { animation-delay: 0.25s; }
  .centerBoxContents.card:nth-child(6)  { animation-delay: 0.30s; }
  .centerBoxContents.card:nth-child(7)  { animation-delay: 0.35s; }
  .centerBoxContents.card:nth-child(8)  { animation-delay: 0.40s; }
  .centerBoxContents.card:nth-child(9)  { animation-delay: 0.45s; }
  .centerBoxContents.card:nth-child(10) { animation-delay: 0.50s; }
}

@keyframes cardRevealFallback {
  from {
    opacity: 0;
    transform: translateY(30px) scale(0.94);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}


/* ═══ PROPOSAL C: Rating + Price + Stock ═══ */

/* Price row — styles any price text in cards */
.centerBoxContents.card .productSpecialPrice,
.centerBoxContentsNew .productSpecialPrice,
.centerBoxContentsSpecials .productSpecialPrice {
  color: #e02b27 !important;
  font-weight: 700 !important;
  font-size: 1rem !important;
}

/* Hide bare "Price Unavailable" — replace with cleaner text */
.centerBoxContentsNew,
.centerBoxContentsSpecials {
  font-size: 0 !important;
}

.centerBoxContentsNew a,
.centerBoxContentsSpecials a,
.centerBoxContentsNew::after,
.centerBoxContentsSpecials::after,
.centerBoxContentsNew::before,
.centerBoxContentsSpecials::before {
  font-size: initial !important;
}

.centerBoxContentsNew a:not(:first-child),
.centerBoxContentsSpecials a:not(:first-child) {
  font-size: 0.85rem !important;
}

/* Star ratings — visual placeholder */
.product-card .stars-row,
.centerBoxContentsNew .stars-row,
.centerBoxContentsSpecials .stars-row {
  display: flex;
  align-items: center;
  gap: 2px;
  padding: 0 20px;
  margin-bottom: 2px;
  font-size: 11px;
  color: #d1d5db;
}

.stars-row .star-filled { color: #f59e0b; }
.stars-row .review-count { font-size: 10px; color: #94a3b8; margin-left: 4px; }

/* Stock indicator */
.stock-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 0 20px;
  margin-bottom: 4px;
  font-size: 11px;
  font-weight: 600;
}
.stock-badge::before {
  content: '';
  width: 7px; height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
}
.stock-in { color: #059669; }
.stock-in::before { background: #10b981; }
.stock-low { color: #d97706; }
.stock-low::before { background: #f59e0b; }
.stock-out { color: #dc2626; }
.stock-out::before { background: #ef4444; }

/* Price display in card */
.card-price-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  padding: 2px 20px;
}
.card-price-current {
  font-size: 1.05rem;
  font-weight: 700;
  color: #13607c;
}
.card-price-old {
  font-size: 0.78rem;
  color: #94a3b8;
  text-decoration: line-through;
}
.card-price-save {
  font-size: 10px;
  color: #059669;
  font-weight: 600;
  background: #d1fae5;
  padding: 2px 6px;
  border-radius: 4px;
}

/* CTA enhancement — icon inside button */
.product-card .card-cta::before,
.centerBoxContentsNew::after {
  font-family: "Font Awesome 6 Free", "Inter", system-ui, sans-serif;
  font-weight: 900;
}

/* Animate star fill on hover */
.product-card:hover .stars-row .star-filled {
  animation: starPop 0.3s ease;
}
@keyframes starPop {
  0% { transform: scale(1); }
  50% { transform: scale(1.3); }
  100% { transform: scale(1); }
}

/* Hide the old bare text by setting color to transparent on card,
   then restore on structured elements */
.centerBoxContents.card,
.centerBoxContentsListing.card {
  color: transparent !important;
}
.centerBoxContents.card a,
.centerBoxContentsListing.card a,
.centerBoxContents.card::after,
.centerBoxContentsListing.card::after,
.centerBoxContents.card::before,
.centerBoxContentsListing.card::before {
  color: initial;
}
.centerBoxContents.card a:not(:first-child),
.centerBoxContentsListing.card a:not(:first-child) {
  color: #1e293b !important;
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════ */

@media (max-width: 1199px) {
  .card-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding: 24px;
  }
  .centerBoxContents.card > a:first-child {
    height: 200px !important;
    padding: 20px 22px 16px !important;
  }
}

@media (max-width: 991px) {
  .card-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    padding: 20px;
  }
  .centerBoxContents.card > a:first-child {
    height: 190px !important;
    padding: 16px 18px 12px !important;
  }
  .centerBoxContents.card a[title] {
    font-size: 0.82rem !important;
    padding: 10px 14px 10px !important;
    
  }
}

@media (max-width: 575px) {
  .card-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    padding: 14px;
  }
  .centerBoxContents.card > a:first-child {
    height: 150px !important;
    padding: 12px 14px 10px !important;
  }
  .centerBoxContents.card a[title] {
    font-size: 0.78rem !important;
    padding: 8px 12px 8px !important;
    min-height: 2.8rem !important;
    
  }
  .centerBoxContents.card:hover {
    transform: perspective(800px) rotateX(2deg) rotateY(-2deg) translateY(-4px) scale(1.01) !important;
  }
}

/* ── Accessibility: Reduced Motion ─────── */
@media (prefers-reduced-motion: reduce) {
  .centerBoxContents.card,
  .centerBoxContentsListing.card,
  .centerBoxContentsNew,
  .centerBoxContentsSpecials,
  .centerBoxContentsFeatured {
    animation: none !important;
    transition: none !important;
    transform: none !important;
  }

  .centerBoxContents.card::before,
  .centerBoxContents.card::after {
    animation: none !important;
    transition: none !important;
  }

  .centerBoxContents.card:hover {
    transform: none !important;
  }

  .centerBoxContents.card img {
    transition: none !important;
  }
}

/* ── Print: strip effects ─────────────── */
@media print {
  .centerBoxContents.card {
    background: #fff !important;
    backdrop-filter: none !important;
    box-shadow: 0 0 0 1px #ddd !important;
    animation: none !important;
  }
}

/* ═══ REAL CTA BUTTON (replaces ::after pseudo) ═══ */
/* Hide old ::after pseudo on enhanced cards */
.has-real-cta::after { display: none !important; content: none !important; }

/* Add to Cart button */
.card-cart-btn {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 10px !important;
  margin: auto 20px 18px !important;
  padding: 12px 24px !important;
  background: #13607c !important;
  color: #fff !important;
  border: 2px solid #13607c !important;
  border-radius: 8px !important;
  font-size: 0.8rem !important;
  font-weight: 600 !important;
  text-transform: none !important;
  letter-spacing: 0.01em !important;
  text-decoration: none !important;
  box-shadow: 0 1px 2px rgba(0,0,0,0.08) !important;
  transition: all 0.2s ease !important;
  cursor: pointer !important;
  font-family: 'Inter', system-ui, -apple-system, sans-serif !important;
  width: calc(100% - 40px) !important;
  position: relative !important;
  overflow: hidden !important;
}
.card-cart-btn::before {
  content: '' !important;
  position: absolute !important;
  inset: 0 !important;
  background: linear-gradient(180deg, rgba(255,255,255,0.1) 0%, transparent 50%) !important;
  pointer-events: none !important;
}
.card-cart-btn:hover {
  background: #0d5269 !important;
  border-color: #0d5269 !important;
  box-shadow: 0 4px 12px rgba(19,96,124,0.25) !important;
  transform: translateY(-1px) !important;
  color: #fff !important;
  text-decoration: none !important;
}
.card-cart-btn:active {
  transform: translateY(0) !important;
  box-shadow: 0 1px 2px rgba(0,0,0,0.08) !important;
}
.card-cart-btn i {
  font-size: 0.85rem;
  transition: transform 0.2s ease;
  color: rgba(255,255,255,0.9);
}
.card-cart-btn:hover i {
  transform: translateX(2px);
}

/* Hide ::after pseudo on cards that have a real button */
.has-real-cta::after {
  display: none !important;
}

/* Card meta wrapper */
.card-meta {
  padding: 0 0 2px;
}


/* Amazon-style BEST SELLER badge */
.best-seller-badge {
  position: absolute !important;
  top: 12px !important;
  left: -2px !important;
  z-index: 5 !important;
  background: #ffa41c !important;
  color: #0f1111 !important;
  font-family: 'Inter', system-ui, sans-serif !important;
  font-size: 0.58rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.02em !important;
  padding: 3px 9px !important;
  border-radius: 2px !important;
  box-shadow: none !important;
}

/* Injected SKU row */
.card-sku-injected {
  display: block !important;
  padding: 0 20px !important;
  font-size: 0.7rem !important;
  color: #64748b !important;
  font-weight: 500 !important;
  margin-top: 4px !important;
  margin-bottom: 2px !important;
  line-height: 1.4 !important;
}
