/* Extracted inline style block 1 */
/* Base styles */
    .product-card:hover { transform: translateY(-4px); box-shadow: 0 12px 24px rgba(0,0,0,0.3); }
    .btn-primary { background: linear-gradient(135deg, #6366f1, #8b5cf6); }
    .btn-primary:hover { filter: brightness(1.1); }
    .line-clamp-2 { display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
    .line-clamp-3 { display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }

    /* ========== WAOUW EFFECTS ========== */

    /* Smooth scroll */
    html { scroll-behavior: smooth; }

    /* Animated gradient background */
    .gradient-bg {
      background: linear-gradient(-45deg, #0f172a, #1e1b4b, #172554, #0c4a6e, #134e4a);
      background-size: 400% 400%;
      animation: gradientShift 15s ease infinite;
    }
    @keyframes gradientShift {
      0% { background-position: 0% 50%; }
      50% { background-position: 100% 50%; }
      100% { background-position: 0% 50%; }
    }

    /* Aurora effect */
    .aurora-bg {
      position: relative;
      overflow: hidden;
    }
    .aurora-bg::before {
      content: '';
      position: absolute;
      top: -50%;
      left: -50%;
      width: 200%;
      height: 200%;
      background: radial-gradient(ellipse at 20% 50%, rgba(99, 102, 241, 0.15) 0%, transparent 50%),
                  radial-gradient(ellipse at 80% 50%, rgba(236, 72, 153, 0.1) 0%, transparent 50%),
                  radial-gradient(ellipse at 50% 80%, rgba(34, 211, 238, 0.1) 0%, transparent 50%);
      animation: aurora 20s ease-in-out infinite;
      pointer-events: none;
    }
    @keyframes aurora {
      0%, 100% { transform: translate(0, 0) rotate(0deg); }
      25% { transform: translate(2%, 2%) rotate(1deg); }
      50% { transform: translate(-1%, 1%) rotate(-1deg); }
      75% { transform: translate(1%, -2%) rotate(0.5deg); }
    }

    /* Glassmorphism cards */
    .glass-card {
      background: rgba(31, 41, 55, 0.6);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      border: 1px solid rgba(255, 255, 255, 0.1);
      transition: all 0.3s ease;
    }
    .glass-card:hover {
      background: rgba(31, 41, 55, 0.8);
      border-color: rgba(99, 102, 241, 0.5);
      transform: translateY(-4px);
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 30px rgba(99, 102, 241, 0.1);
    }

    /* 3D Tilt effect */
    .tilt-card {
      transform-style: preserve-3d;
      transition: transform 0.3s ease;
    }
    .tilt-card:hover {
      transform: perspective(1000px) rotateX(2deg) rotateY(-2deg) translateY(-8px);
    }

    /* Glow effect for lifetime deals */
    .glow-green {
      box-shadow: 0 0 20px rgba(34, 197, 94, 0.3), 0 0 40px rgba(34, 197, 94, 0.1);
      animation: glowPulse 2s ease-in-out infinite;
    }
    @keyframes glowPulse {
      0%, 100% { box-shadow: 0 0 20px rgba(34, 197, 94, 0.3), 0 0 40px rgba(34, 197, 94, 0.1); }
      50% { box-shadow: 0 0 30px rgba(34, 197, 94, 0.5), 0 0 60px rgba(34, 197, 94, 0.2); }
    }

    /* Gradient border */
    .gradient-border {
      position: relative;
      background: linear-gradient(135deg, rgba(99, 102, 241, 0.2), rgba(236, 72, 153, 0.2));
      padding: 1px;
      border-radius: 1rem;
    }
    .gradient-border::before {
      content: '';
      position: absolute;
      inset: 0;
      border-radius: 1rem;
      padding: 1px;
      background: linear-gradient(135deg, #6366f1, #8b5cf6);
      -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
      -webkit-mask-composite: xor;
      mask-composite: exclude;
      opacity: 0;
      transition: opacity 0.3s ease;
    }
    .gradient-border:hover::before {
      opacity: 1;
    }

    /* Floating animation */
    .float {
      animation: float 6s ease-in-out infinite;
    }
    @keyframes float {
      0%, 100% { transform: translateY(0px); }
      50% { transform: translateY(-10px); }
    }

    /* Fade in animation */
    .fade-in {
      opacity: 0;
      transform: translateY(20px);
      animation: fadeInUp 0.6s ease forwards;
    }
    .fade-in-delay-1 { animation-delay: 0.1s; }
    .fade-in-delay-2 { animation-delay: 0.2s; }
    .fade-in-delay-3 { animation-delay: 0.3s; }
    @keyframes fadeInUp {
      to { opacity: 1; transform: translateY(0); }
    }

    /* Shimmer effect for loading */
    .shimmer {
      background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
      background-size: 200% 100%;
      animation: shimmer 1.5s infinite;
    }
    @keyframes shimmer {
      0% { background-position: -200% 0; }
      100% { background-position: 200% 0; }
    }

    /* Button ripple */
    .btn-ripple {
      position: relative;
      overflow: hidden;
    }
    .btn-ripple::after {
      content: '';
      position: absolute;
      top: 50%;
      left: 50%;
      width: 0;
      height: 0;
      background: rgba(255,255,255,0.3);
      border-radius: 50%;
      transform: translate(-50%, -50%);
      transition: width 0.6s ease, height 0.6s ease;
    }
    .btn-ripple:active::after {
      width: 300px;
      height: 300px;
    }

    /* Animated counter */
    .counter {
      display: inline-block;
      font-variant-numeric: tabular-nums;
    }

    /* Grid pattern overlay */
    .grid-pattern {
      background-image:
        linear-gradient(rgba(99, 102, 241, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(99, 102, 241, 0.03) 1px, transparent 1px);
      background-size: 50px 50px;
    }

    /* Animated particles (CSS only) */
    .particles {
      position: absolute;
      inset: 0;
      overflow: hidden;
      pointer-events: none;
    }
    .particles span {
      position: absolute;
      width: 4px;
      height: 4px;
      background: rgba(99, 102, 241, 0.6);
      border-radius: 50%;
      animation: particleFloat 10s linear infinite;
    }
    .particles span:nth-child(1) { left: 10%; animation-delay: 0s; }
    .particles span:nth-child(2) { left: 30%; animation-delay: 2s; }
    .particles span:nth-child(3) { left: 50%; animation-delay: 4s; }
    .particles span:nth-child(4) { left: 70%; animation-delay: 1s; }
    .particles span:nth-child(5) { left: 90%; animation-delay: 3s; }
    @keyframes particleFloat {
      0% { transform: translateY(100vh) scale(0); opacity: 0; }
      10% { opacity: 1; }
      90% { opacity: 1; }
      100% { transform: translateY(-100vh) scale(1); opacity: 0; }
    }

    /* Logo carousel */
    .logo-carousel {
      display: flex;
      animation: scrollLogos 30s linear infinite;
    }
    @keyframes scrollLogos {
      0% { transform: translateX(0); }
      100% { transform: translateX(-50%); }
    }

    /* Hover scale */
    .hover-scale {
      transition: transform 0.3s ease;
    }
    .hover-scale:hover {
      transform: scale(1.05);
    }

    /* Text gradient */
    .text-gradient {
      background: linear-gradient(135deg, #6366f1, #8b5cf6);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    /* Blob background */
    .blob {
      position: absolute;
      border-radius: 50%;
      filter: blur(60px);
      opacity: 0.5;
      animation: blobMove 20s ease-in-out infinite;
    }
    .blob-1 {
      width: 400px; height: 400px;
      background: rgba(99, 102, 241, 0.3);
      top: -100px; left: -100px;
    }
    .blob-2 {
      width: 300px; height: 300px;
      background: rgba(236, 72, 153, 0.2);
      bottom: -50px; right: -50px;
      animation-delay: -5s;
    }
    @keyframes blobMove {
      0%, 100% { transform: translate(0, 0) scale(1); }
      25% { transform: translate(30px, -30px) scale(1.1); }
      50% { transform: translate(-20px, 20px) scale(0.9); }
      75% { transform: translate(10px, 10px) scale(1.05); }
    }

/* Extracted inline style block 2 */
@keyframes pulse-glow {
        0%, 100% { box-shadow: 0 0 20px rgba(34, 197, 94, 0.4), 0 25px 50px -12px rgba(0, 0, 0, 0.5); }
        50% { box-shadow: 0 0 40px rgba(34, 197, 94, 0.6), 0 25px 50px -12px rgba(0, 0, 0, 0.5); }
      }
      @keyframes pulse-glow-blue {
        0%, 100% { box-shadow: 0 0 20px rgba(59, 130, 246, 0.4), 0 25px 50px -12px rgba(0, 0, 0, 0.5); }
        50% { box-shadow: 0 0 40px rgba(59, 130, 246, 0.6), 0 25px 50px -12px rgba(0, 0, 0, 0.5); }
      }
      .sticky-cta-btn {
        animation: pulse-glow 2s ease-in-out infinite;
      }
      .sticky-cta-btn:hover {
        animation: none;
      }
      @keyframes pulse-subtle {
        0%, 100% { opacity: 1; }
        50% { opacity: 0.9; }
      }
.animate-pulse-subtle {
        animation: pulse-subtle 2s ease-in-out infinite;
      }

/* ========== Final editorial readability pass ========== */
.sr-premium-page.sr-product-page,
.sr-premium-page.sr-compare-page {
  background:
    linear-gradient(rgba(245, 197, 66, 0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245, 197, 66, 0.024) 1px, transparent 1px),
    linear-gradient(180deg, #0d1420 0%, #0a1019 42%, #080d14 100%) !important;
  background-size: 48px 48px, 48px 48px, auto;
}

.sr-premium-page.sr-product-page main > article {
  max-width: 1160px;
}

.sr-premium-page.sr-compare-page main > article {
  max-width: 1080px;
}

.sr-premium-page .product-enrichment-section,
.sr-premium-page .compare-enrichment-section {
  position: relative;
  overflow: hidden;
  padding: 2.35rem 2.5rem !important;
  margin: 0 0 2.75rem !important;
  border: 1px solid rgba(245, 197, 66, 0.18) !important;
  border-left: 4px solid rgba(245, 197, 66, 0.74) !important;
  border-radius: 8px !important;
  background:
    linear-gradient(180deg, rgba(17, 24, 39, 0.96), rgba(11, 18, 28, 0.91)) !important;
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.32), inset 0 1px 0 rgba(255, 255, 255, 0.035) !important;
}

body.sr-premium-page .product-enrichment-section,
body.sr-premium-page .compare-enrichment-section {
  border-left-color: rgba(245, 197, 66, 0.74) !important;
  border-left-width: 4px !important;
}

.sr-premium-page .product-enrichment-section::before,
.sr-premium-page .compare-enrichment-section::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: linear-gradient(90deg, rgba(245, 197, 66, 0.48), transparent 74%);
  pointer-events: none;
}

.sr-premium-page .product-enrichment-section > h2,
.sr-premium-page .compare-enrichment-section > h2,
.sr-premium-page .product-enrichment-section .prose > h3,
.sr-premium-page .compare-enrichment-section .prose > h3 {
  max-width: 760px;
  color: #ffffff !important;
  letter-spacing: 0;
}

.sr-premium-page .product-enrichment-section > h2,
.sr-premium-page .compare-enrichment-section > h2 {
  margin-bottom: 1.15rem !important;
  padding-bottom: 0.95rem;
  border-bottom: 1px solid rgba(148, 163, 184, 0.16);
  font-size: 1.75rem !important;
  line-height: 1.18 !important;
}

.sr-premium-page .product-enrichment-section .prose,
.sr-premium-page .compare-enrichment-section .prose {
  max-width: 760px;
  color: #d7e0ed !important;
  font-size: 1rem;
}

.sr-premium-page .product-enrichment-section .prose > p,
.sr-premium-page .compare-enrichment-section .prose > p {
  max-width: 72ch;
  margin-top: 0 !important;
  margin-bottom: 1rem !important;
  color: #d7e0ed !important;
  line-height: 1.78 !important;
}

.sr-premium-page .product-enrichment-section .prose > p:first-of-type,
.sr-premium-page .compare-enrichment-section .prose > p:first-of-type {
  margin: 0 0 1.25rem !important;
  padding: 1rem 1.1rem;
  border: 1px solid rgba(245, 197, 66, 0.16);
  border-radius: 8px;
  background: rgba(245, 197, 66, 0.055);
  color: #f4f7fb !important;
  font-size: 1.03rem;
  line-height: 1.72 !important;
}

.sr-premium-page .product-enrichment-section .prose > h3,
.sr-premium-page .compare-enrichment-section .prose > h3 {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin: 2rem 0 0.7rem !important;
  font-size: 1.15rem !important;
  line-height: 1.3 !important;
}

.sr-premium-page .product-enrichment-section .prose > h3::before,
.sr-premium-page .compare-enrichment-section .prose > h3::before {
  content: "";
  flex: 0 0 auto;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 999px;
  background: #f5c542;
  box-shadow: 0 0 0 4px rgba(245, 197, 66, 0.12);
}

.sr-premium-page .product-enrichment-section .prose ul,
.sr-premium-page .compare-enrichment-section .prose ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  margin: 1.15rem 0 1.35rem !important;
  padding: 0 !important;
  list-style: none !important;
}

.sr-premium-page .product-enrichment-section .prose li,
.sr-premium-page .compare-enrichment-section .prose li {
  position: relative;
  margin: 0 !important;
  padding: 0.9rem 1rem 0.9rem 2.15rem;
  border: 1px solid rgba(148, 163, 184, 0.15);
  border-radius: 8px;
  background: rgba(15, 23, 42, 0.7);
  color: #dce5f2 !important;
  line-height: 1.55 !important;
}

.sr-premium-page .product-enrichment-section .prose li::before,
.sr-premium-page .compare-enrichment-section .prose li::before {
  content: "";
  position: absolute;
  left: 0.9rem;
  top: 1.18rem;
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 999px;
  background: #22c55e;
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.12);
}

.sr-premium-page .auto-enrichment-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 1rem 1.25rem;
  max-width: 760px;
  margin: 1.6rem 0 0 !important;
  padding: 1.1rem 1.15rem !important;
  border: 1px solid rgba(245, 197, 66, 0.26) !important;
  border-radius: 8px !important;
  background:
    linear-gradient(135deg, rgba(245, 197, 66, 0.11), rgba(15, 23, 42, 0.9)) !important;
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.24) !important;
}

.sr-premium-page .auto-enrichment-cta p {
  margin: 0 !important;
}

.sr-premium-page .auto-enrichment-cta p:first-child {
  grid-column: 1;
  grid-row: 1;
  color: #ffffff !important;
}

.sr-premium-page .auto-enrichment-cta p:nth-child(2) {
  grid-column: 1;
  grid-row: 2;
  color: #cbd5e1 !important;
}

.sr-premium-page .auto-enrichment-cta a,
.sr-premium-page .sticky-cta-btn,
.sr-premium-page a[class*="from-blue"],
.sr-premium-page a.bg-gradient-to-r,
.sr-premium-page .btn-primary,
.sr-premium-page a.bg-primary,
.sr-premium-page button.bg-primary {
  background: linear-gradient(135deg, #f5c542, #f59e0b) !important;
  color: #111827 !important;
  border: 1px solid rgba(255, 255, 255, 0.28) !important;
  box-shadow: 0 14px 30px rgba(245, 158, 11, 0.25) !important;
}

.sr-premium-page .auto-enrichment-cta a {
  grid-column: 2;
  grid-row: 1 / span 2;
  min-width: 11rem;
  padding: 0.8rem 1rem !important;
  font-weight: 800;
  color: #111827 !important;
  text-align: center;
}

.sr-premium-page aside .sticky > div {
  background: rgba(24, 31, 40, 0.96) !important;
  border-color: rgba(245, 197, 66, 0.2) !important;
}

.sr-premium-page aside .sticky a[class*="from-blue"],
.sr-premium-page aside .sticky a.bg-gradient-to-r {
  background: linear-gradient(135deg, #f5c542, #f59e0b) !important;
  color: #111827 !important;
}

.sr-premium-page > a[href$="/wishlist/"].fixed {
  display: none !important;
}

@media (max-width: 900px) {
  .sr-premium-page .product-enrichment-section,
  .sr-premium-page .compare-enrichment-section {
    padding: 1.35rem !important;
    margin-bottom: 1.75rem !important;
  }

  .sr-premium-page .product-enrichment-section > h2,
  .sr-premium-page .compare-enrichment-section > h2 {
    font-size: 1.45rem !important;
  }

  .sr-premium-page .product-enrichment-section .prose ul,
  .sr-premium-page .compare-enrichment-section .prose ul,
  .sr-premium-page .auto-enrichment-cta {
    grid-template-columns: 1fr;
  }

  .sr-premium-page .auto-enrichment-cta a {
    width: 100%;
  }
}

/* ========== Premium product and comparison pages ========== */
:root {
  --sr-premium-bg: #0a0f1f;
  --sr-premium-bg-soft: #111827;
  --sr-premium-panel: rgba(15, 23, 42, 0.82);
  --sr-premium-panel-strong: rgba(17, 24, 39, 0.94);
  --sr-premium-line: rgba(250, 204, 21, 0.18);
  --sr-premium-line-strong: rgba(250, 204, 21, 0.34);
  --sr-premium-ink: #f8fafc;
  --sr-premium-muted: #b6c0d0;
  --sr-premium-subtle: #7e8aa1;
  --sr-premium-gold: #facc15;
  --sr-premium-gold-strong: #f59e0b;
  --sr-premium-green: #22c55e;
  --sr-premium-blue: #38bdf8;
  --sr-premium-shadow: 0 22px 60px rgba(0, 0, 0, 0.28);
}

.btn-primary,
.sr-premium-page .bg-primary,
.sr-premium-page a.bg-primary,
.sr-premium-page button.bg-primary {
  background: linear-gradient(135deg, var(--sr-premium-gold), var(--sr-premium-gold-strong)) !important;
  color: #111827 !important;
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: 0 12px 26px rgba(245, 158, 11, 0.22);
}

.btn-primary:hover,
.sr-premium-page .bg-primary:hover,
.sr-premium-page a.bg-primary:hover,
.sr-premium-page button.bg-primary:hover {
  filter: none;
  transform: translateY(-1px);
  box-shadow: 0 16px 34px rgba(245, 158, 11, 0.28);
}

.sr-premium-page {
  background:
    linear-gradient(rgba(250, 204, 21, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(250, 204, 21, 0.03) 1px, transparent 1px),
    linear-gradient(180deg, #111827 0%, #0b1120 44%, #0a0f1f 100%) !important;
  background-size: 44px 44px, 44px 44px, auto;
  color: var(--sr-premium-ink);
}

.sr-premium-page header {
  background: rgba(10, 15, 31, 0.9) !important;
  border-color: rgba(250, 204, 21, 0.16) !important;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.24);
}

.sr-premium-page header nav {
  min-height: 72px;
}

.sr-premium-page header a,
.sr-premium-page header button {
  letter-spacing: 0;
}

.sr-premium-page header .hover\:text-primary:hover,
.sr-premium-page .hover\:text-primary:hover,
.sr-premium-page .text-primary {
  color: var(--sr-premium-gold) !important;
}

.sr-premium-page header .hover\:bg-gray-700:hover,
.sr-premium-page header button:hover,
.sr-premium-page header a:hover {
  background-color: rgba(250, 204, 21, 0.08) !important;
}

.sr-premium-page header .group:hover > div,
.sr-premium-page header .bg-gray-800 {
  background-color: rgba(15, 23, 42, 0.98) !important;
  border-color: rgba(250, 204, 21, 0.16) !important;
}

.sr-premium-page > .bg-gray-800.border-b,
.sr-premium-page main + footer,
.sr-premium-page footer {
  background: rgba(10, 15, 31, 0.9) !important;
  border-color: rgba(250, 204, 21, 0.14) !important;
}

.sr-premium-page > .bg-gray-800.border-b {
  box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.03);
}

.sr-premium-page main {
  position: relative;
}

.sr-premium-page main > article {
  position: relative;
}

.sr-product-page main > article {
  max-width: 1220px;
  padding-top: 3.5rem;
}

.sr-compare-page main > article {
  max-width: 1120px;
  padding-top: 3.5rem;
}

.sr-product-page article > .lg\:grid,
.sr-product-page article > div.lg\:grid {
  gap: 2rem;
  align-items: start;
}

.sr-product-page article > .lg\:grid > .min-w-0 > .mb-8:first-child,
.sr-compare-page article > .text-center.mb-12 {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--sr-premium-line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(250, 204, 21, 0.13), transparent 34%),
    linear-gradient(180deg, rgba(15, 23, 42, 0.96), rgba(15, 23, 42, 0.72));
  box-shadow: var(--sr-premium-shadow);
}

.sr-product-page article > .lg\:grid > .min-w-0 > .mb-8:first-child {
  padding: 2rem;
  margin-bottom: 2rem;
}

.sr-compare-page article > .text-center.mb-12 {
  padding: 2.5rem 2rem;
}

.sr-product-page h1,
.sr-compare-page h1 {
  color: #ffffff;
  line-height: 1.05;
  letter-spacing: 0;
}

.sr-product-page h1 {
  font-size: 2.75rem;
}

.sr-compare-page h1 {
  font-size: 3rem;
}

.sr-product-page h1 + p,
.sr-compare-page .text-center.mb-12 p {
  color: var(--sr-premium-muted) !important;
  max-width: 760px;
}

.sr-compare-page .text-center.mb-12 p {
  margin-left: auto;
  margin-right: auto;
}

.sr-product-page article img,
.sr-compare-page article img {
  border-radius: 8px;
}

.sr-product-page article .bg-gray-700.flex.items-center.justify-center,
.sr-compare-page article .bg-gray-700.flex.items-center.justify-center {
  background:
    linear-gradient(135deg, rgba(250, 204, 21, 0.18), rgba(56, 189, 248, 0.08)),
    #111827 !important;
  border-bottom: 1px solid rgba(250, 204, 21, 0.14);
  color: rgba(255, 255, 255, 0.88);
}

.sr-premium-page .bg-gray-800,
.sr-premium-page .bg-gray-800\/50,
.sr-premium-page details.bg-gray-800,
.sr-premium-page .not-prose .bg-gray-800 {
  background-color: var(--sr-premium-panel) !important;
}

.sr-premium-page .bg-gray-700,
.sr-premium-page .bg-gray-700\/50 {
  background-color: rgba(30, 41, 59, 0.72) !important;
}

.sr-premium-page .border-gray-700,
.sr-premium-page .divide-gray-700 > :not([hidden]) ~ :not([hidden]) {
  border-color: rgba(148, 163, 184, 0.18) !important;
}

.sr-premium-page .rounded-xl,
.sr-premium-page .rounded-lg,
.sr-premium-page details,
.sr-premium-page table,
.sr-premium-page .overflow-hidden {
  border-radius: 8px !important;
}

.sr-product-page nav.mb-12,
.sr-product-page aside .sticky > div,
.sr-product-page .product-enrichment-intro,
.sr-product-page .product-enrichment-section,
.sr-compare-page article > .grid.md\:grid-cols-2 > div,
.sr-compare-page article section > .bg-gray-800,
.sr-compare-page .compare-enrichment-intro,
.sr-compare-page .compare-enrichment-section,
.sr-compare-page details,
.sr-compare-page .not-prose > div.rounded-lg,
.sr-premium-page .auto-enrichment-cta {
  border: 1px solid var(--sr-premium-line) !important;
  background:
    linear-gradient(180deg, rgba(17, 24, 39, 0.96), rgba(15, 23, 42, 0.78)) !important;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.22);
}

.sr-product-page .product-enrichment-intro,
.sr-compare-page .compare-enrichment-intro {
  padding: 2rem !important;
  margin-top: 1rem;
  border-color: var(--sr-premium-line-strong) !important;
  background:
    linear-gradient(135deg, rgba(250, 204, 21, 0.16), rgba(34, 197, 94, 0.06) 38%, rgba(15, 23, 42, 0.88)) !important;
}

.sr-product-page .product-enrichment-intro h2,
.sr-compare-page .compare-enrichment-intro h2 {
  font-size: 2rem;
  line-height: 1.15;
}

.sr-product-page .product-enrichment-intro p:first-child,
.sr-compare-page .compare-enrichment-intro p:first-child {
  letter-spacing: 0;
  color: var(--sr-premium-gold) !important;
  font-weight: 800;
}

.sr-product-page .product-enrichment-section,
.sr-compare-page .compare-enrichment-section {
  padding: 2rem;
  margin-bottom: 2rem !important;
}

.sr-product-page section[id]:not(.product-enrichment-section),
.sr-compare-page section:not(.compare-enrichment-section) {
  scroll-margin-top: 7rem;
}

.sr-product-page section[id] h2,
.sr-compare-page section h2 {
  color: #ffffff;
  letter-spacing: 0;
}

.sr-product-page .prose,
.sr-compare-page .prose {
  color: #dbe5f4 !important;
  max-width: none;
}

.sr-product-page .prose p,
.sr-compare-page .prose p,
.sr-product-page .prose li,
.sr-compare-page .prose li {
  color: #dbe5f4 !important;
  line-height: 1.78;
}

.sr-product-page .prose h3,
.sr-compare-page .prose h3 {
  color: #ffffff !important;
  font-size: 1.24rem;
  line-height: 1.3;
  margin-top: 2rem;
}

.sr-product-page .prose ul,
.sr-compare-page .prose ul {
  padding-left: 1.15rem;
}

.sr-product-page .prose a,
.sr-compare-page .prose a,
.sr-product-page .text-primary,
.sr-compare-page .text-primary {
  color: var(--sr-premium-gold) !important;
}

.sr-product-page nav.mb-12 {
  padding: 1.25rem !important;
}

.sr-product-page nav.mb-12 ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.55rem 0.75rem;
}

.sr-product-page nav.mb-12 li a {
  display: block;
  min-height: 2.35rem;
  padding: 0.55rem 0.7rem;
  border: 1px solid rgba(148, 163, 184, 0.12);
  border-radius: 8px;
  background: rgba(15, 23, 42, 0.62);
  color: #dbe5f4 !important;
}

.sr-product-page nav.mb-12 li a:hover {
  border-color: rgba(250, 204, 21, 0.36);
  background: rgba(250, 204, 21, 0.08);
  color: var(--sr-premium-gold) !important;
}

.sr-premium-page table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  overflow: hidden;
}

.sr-premium-page thead,
.sr-premium-page thead.bg-gray-700,
.sr-premium-page thead.bg-gray-800 {
  background: rgba(10, 15, 31, 0.96) !important;
}

.sr-premium-page th {
  color: #ffffff;
  font-weight: 800;
}

.sr-premium-page td,
.sr-premium-page th {
  border-bottom: 1px solid rgba(148, 163, 184, 0.14);
  vertical-align: top;
}

.sr-premium-page tbody tr:hover,
.sr-premium-page tr.hover\:bg-gray-700\/50:hover,
.sr-premium-page tr.hover\:bg-gray-800\/70:hover {
  background: rgba(250, 204, 21, 0.06) !important;
}

.sr-compare-page article > .grid.md\:grid-cols-2 > div {
  position: relative;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.sr-compare-page article > .grid.md\:grid-cols-2 > div:hover {
  transform: translateY(-3px);
  border-color: rgba(250, 204, 21, 0.36) !important;
  box-shadow: 0 24px 58px rgba(0, 0, 0, 0.3);
}

.sr-compare-page article > .grid.md\:grid-cols-2 > div::before {
  content: "";
  position: absolute;
  inset: 0;
  border-top: 3px solid var(--sr-premium-gold);
  border-radius: 8px;
  pointer-events: none;
}

.sr-compare-page h1 span:nth-child(2) {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 3rem;
  min-height: 3rem;
  border-radius: 999px;
  background: rgba(250, 204, 21, 0.12);
  border: 1px solid rgba(250, 204, 21, 0.26);
  color: var(--sr-premium-gold) !important;
}

.sr-product-page a[class*="from-blue"],
.sr-product-page .sticky-cta-btn,
.sr-product-page a.bg-gradient-to-r,
.sr-compare-page a.bg-gradient-to-r,
.sr-premium-page .from-blue-600,
.sr-premium-page .to-blue-500 {
  background: linear-gradient(135deg, var(--sr-premium-gold), var(--sr-premium-gold-strong)) !important;
  color: #111827 !important;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 14px 28px rgba(245, 158, 11, 0.24) !important;
}

.sr-product-page a[class*="from-blue"]:hover,
.sr-product-page .sticky-cta-btn:hover,
.sr-product-page a.bg-gradient-to-r:hover,
.sr-compare-page a.bg-gradient-to-r:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 36px rgba(245, 158, 11, 0.32) !important;
}

.sr-product-page aside .sticky {
  top: 6rem;
}

.sr-product-page aside .sticky > div {
  backdrop-filter: blur(16px);
}

.sr-product-page aside .sticky > div:first-child {
  border-color: var(--sr-premium-line-strong) !important;
}

.sr-product-page aside .sticky h3,
.sr-product-page aside .sticky .font-semibold,
.sr-product-page aside .sticky .font-bold {
  color: #ffffff;
}

.sr-product-page aside .sticky .text-gray-400,
.sr-product-page aside .sticky .text-gray-500,
.sr-compare-page .text-gray-400,
.sr-product-page .text-gray-400 {
  color: var(--sr-premium-muted) !important;
}

.sr-product-page .fixed.bottom-0 {
  background: rgba(10, 15, 31, 0.94) !important;
  border-color: rgba(250, 204, 21, 0.22) !important;
}

.sr-premium-page > a[href$="/wishlist/"].fixed {
  display: none !important;
}

.sr-premium-page details summary {
  list-style: none;
}

.sr-premium-page details summary::-webkit-details-marker {
  display: none;
}

.sr-premium-page details summary {
  position: relative;
  padding-right: 3rem;
}

.sr-premium-page details summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 1.25rem;
  transform: translateY(-50%);
  color: var(--sr-premium-gold);
  font-weight: 800;
}

.sr-premium-page details[open] summary::after {
  content: "-";
}

.sr-premium-page footer a:hover {
  color: var(--sr-premium-gold) !important;
}

@media (max-width: 1024px) {
  .sr-product-page article .min-w-0 > .lg\:hidden.mb-8 {
    display: none !important;
  }

  .sr-product-page article > .lg\:grid > .min-w-0 > .mb-8:first-child,
  .sr-compare-page article > .text-center.mb-12,
  .sr-product-page .product-enrichment-section,
  .sr-compare-page .compare-enrichment-section {
    padding: 1.5rem;
  }

  .sr-product-page h1,
  .sr-compare-page h1 {
    font-size: 2.35rem;
  }
}

@media (max-width: 768px) {
  .sr-product-page main > article,
  .sr-compare-page main > article {
    padding-top: 2rem;
    padding-bottom: 5.75rem;
  }

  .sr-product-page article > .lg\:grid > .min-w-0 > .mb-8:first-child,
  .sr-compare-page article > .text-center.mb-12,
  .sr-product-page .product-enrichment-intro,
  .sr-compare-page .compare-enrichment-intro,
  .sr-product-page .product-enrichment-section,
  .sr-compare-page .compare-enrichment-section {
    padding: 1.15rem !important;
  }

  .sr-product-page h1,
  .sr-compare-page h1 {
    font-size: 2rem;
    line-height: 1.12;
  }

  .sr-product-page .product-enrichment-intro h2,
  .sr-compare-page .compare-enrichment-intro h2,
  .sr-product-page section[id] h2,
  .sr-compare-page section h2 {
    font-size: 1.45rem;
    line-height: 1.22;
  }

  .sr-product-page nav.mb-12 ul {
    grid-template-columns: 1fr;
  }

  .sr-premium-page table {
    min-width: 680px;
  }

  .sr-premium-page .overflow-x-auto,
  .sr-premium-page section > .bg-gray-800.overflow-hidden,
  .sr-premium-page div.overflow-hidden:has(table) {
    overflow-x: auto !important;
  }

  .sr-product-page .fixed.bottom-0 .max-w-4xl {
    gap: 0.75rem;
  }

  .sr-product-page .sticky-cta-btn {
    min-width: 9.5rem;
    white-space: normal !important;
    line-height: 1.2;
  }
}

/* ========== Startup Amber Refresh ========== */
:root {
  --sr-ink: #f8fafc;
  --sr-muted: #a1a1aa;
  --sr-bg: #090d12;
  --sr-surface: rgba(18, 24, 31, 0.86);
  --sr-surface-strong: rgba(24, 31, 40, 0.96);
  --sr-border: rgba(245, 197, 66, 0.18);
  --sr-border-strong: rgba(245, 197, 66, 0.34);
  --sr-primary: #f5c542;
  --sr-primary-strong: #f59e0b;
  --sr-accent: #20c997;
  --sr-accent-blue: #38bdf8;
}

body {
  background:
    linear-gradient(180deg, rgba(245, 197, 66, 0.06) 0, transparent 340px),
    linear-gradient(135deg, #090d12 0%, #111827 52%, #0e1518 100%);
}

body.sr-search-open {
  overflow: hidden;
}

header {
  background: rgba(9, 13, 18, 0.9) !important;
  border-color: rgba(245, 197, 66, 0.18) !important;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.28);
}

header nav a {
  letter-spacing: 0;
}

header nav a:hover,
header .hover\:text-primary:hover {
  color: var(--sr-primary) !important;
}

#mobileMenu,
.group:hover .group-hover\:visible {
  border-color: rgba(245, 197, 66, 0.2) !important;
}

.bg-gray-800,
.bg-gray-800\/90,
.bg-gray-700 {
  border-color: rgba(245, 197, 66, 0.16);
}

.border-gray-700,
.border-gray-700\/50,
.border-gray-600 {
  border-color: rgba(245, 197, 66, 0.15) !important;
}

.btn-primary {
  background: linear-gradient(135deg, var(--sr-primary), var(--sr-primary-strong)) !important;
  color: #111827 !important;
  font-weight: 800;
  box-shadow: 0 14px 30px rgba(245, 158, 11, 0.22);
}

.btn-primary:hover {
  filter: none;
  transform: translateY(-1px);
  box-shadow: 0 18px 36px rgba(245, 158, 11, 0.3);
}

.text-gradient {
  background: linear-gradient(135deg, #fde68a, #f59e0b 55%, #20c997);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gradient-bg {
  background:
    linear-gradient(135deg, rgba(245, 197, 66, 0.18), transparent 32%),
    linear-gradient(160deg, #0a0f15 0%, #111827 52%, #102018 100%) !important;
  background-size: auto !important;
  animation: none !important;
}

.aurora-bg::before,
.blob,
.particles {
  display: none !important;
}

.grid-pattern {
  background-image:
    linear-gradient(rgba(245, 197, 66, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245, 197, 66, 0.055) 1px, transparent 1px);
  background-size: 56px 56px;
}

.glass-card {
  background: rgba(17, 24, 39, 0.72);
  border-color: rgba(245, 197, 66, 0.14);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.22);
}

.glass-card:hover {
  background: rgba(17, 24, 39, 0.9);
  border-color: rgba(245, 197, 66, 0.4);
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.32), 0 0 0 1px rgba(245, 197, 66, 0.08);
}

.gradient-border {
  background: linear-gradient(135deg, rgba(245, 197, 66, 0.24), rgba(32, 201, 151, 0.18));
  border-radius: 0.5rem;
}

.gradient-border::before {
  border-radius: 0.5rem;
  background: linear-gradient(135deg, var(--sr-primary), var(--sr-accent));
}

.product-card {
  border-radius: 0.5rem;
  border-color: rgba(245, 197, 66, 0.14);
}

.product-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(245, 197, 66, 0.16);
}

.rounded-2xl,
.rounded-xl {
  border-radius: 0.5rem !important;
}

.rounded-full {
  border-radius: 9999px !important;
}

.hover\:bg-gray-700:hover,
.hover\:bg-gray-700\/50:hover {
  background-color: rgba(245, 197, 66, 0.1) !important;
}

.bg-primary {
  background-color: var(--sr-primary) !important;
}

.text-primary {
  color: var(--sr-primary) !important;
}

.from-primary,
.from-primary\/20 {
  --tw-gradient-from: rgba(245, 197, 66, 0.45) var(--tw-gradient-from-position) !important;
  --tw-gradient-to: rgba(245, 197, 66, 0) var(--tw-gradient-to-position) !important;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to) !important;
}

.to-primary,
.to-primary\/5 {
  --tw-gradient-to: rgba(245, 197, 66, 0.08) var(--tw-gradient-to-position) !important;
}

.sticky-cta-btn {
  animation: none !important;
  box-shadow: 0 18px 36px rgba(245, 158, 11, 0.24) !important;
}

.sr-search-trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  min-height: 2.5rem;
  border: 1px solid rgba(245, 197, 66, 0.18);
  background: rgba(245, 197, 66, 0.08);
  color: var(--sr-ink);
  transition: border-color 160ms ease, background 160ms ease, transform 160ms ease;
}

.sr-search-trigger:hover {
  border-color: rgba(245, 197, 66, 0.42);
  background: rgba(245, 197, 66, 0.14) !important;
  transform: translateY(-1px);
}

.sr-search-trigger kbd {
  display: none;
  color: #111827;
  background: var(--sr-primary);
  border-radius: 999px;
  padding: 0.08rem 0.4rem;
  font-size: 0.65rem;
  font-weight: 800;
  line-height: 1.2;
}

@media (min-width: 1024px) {
  .sr-search-trigger kbd {
    display: inline-flex;
  }
}

.sr-visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.sr-search-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(3, 7, 18, 0.76);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 5rem 1rem 1rem;
  transition: opacity 160ms ease;
}

.sr-search-panel {
  width: min(760px, 100%);
  margin: 0 auto;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(245, 197, 66, 0.08), transparent 34%),
    rgba(12, 18, 26, 0.98);
  border: 1px solid rgba(245, 197, 66, 0.26);
  border-radius: 0.75rem;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.48), 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.sr-search-topbar {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 1rem 1rem 0.85rem;
  border-bottom: 1px solid rgba(245, 197, 66, 0.16);
}

.sr-search-icon,
.sr-result-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.5rem;
  background: linear-gradient(135deg, rgba(245, 197, 66, 0.24), rgba(32, 201, 151, 0.16));
  color: var(--sr-primary);
  border: 1px solid rgba(245, 197, 66, 0.2);
  font-weight: 900;
}

.sr-search-field {
  flex: 1;
  min-width: 0;
}

.sr-search-field input {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--sr-ink);
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 650;
  letter-spacing: 0;
}

.sr-search-field input::placeholder {
  color: rgba(226, 232, 240, 0.45);
}

.sr-search-field input::-webkit-search-cancel-button {
  -webkit-appearance: none;
  appearance: none;
}

.sr-search-close {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 0.5rem;
  color: var(--sr-muted);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-weight: 800;
  transition: color 160ms ease, border-color 160ms ease, background 160ms ease;
}

.sr-search-close:hover {
  color: var(--sr-ink);
  background: rgba(245, 197, 66, 0.1);
  border-color: rgba(245, 197, 66, 0.28);
}

.sr-search-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.7rem 1rem;
  color: rgba(226, 232, 240, 0.58);
  font-size: 0.85rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.sr-search-meta kbd {
  flex: 0 0 auto;
  border-radius: 999px;
  padding: 0.1rem 0.5rem;
  color: #111827;
  background: var(--sr-primary);
  font-size: 0.7rem;
  font-weight: 900;
}

.sr-search-results {
  max-height: min(62vh, 620px);
  overflow: auto;
  padding: 0.35rem;
}

.sr-search-result {
  display: grid;
  grid-template-columns: 2.5rem minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.85rem;
  padding: 0.85rem;
  border-radius: 0.5rem;
  color: var(--sr-ink);
  border: 1px solid transparent;
  transition: background 140ms ease, border-color 140ms ease;
}

.sr-search-result:hover,
.sr-search-result[aria-selected="true"] {
  background: rgba(245, 197, 66, 0.09);
  border-color: rgba(245, 197, 66, 0.22);
}

.sr-result-body {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.sr-result-title {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-weight: 800;
  letter-spacing: 0;
}

.sr-result-desc {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: rgba(226, 232, 240, 0.58);
  font-size: 0.88rem;
}

.sr-result-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.25rem;
  color: rgba(226, 232, 240, 0.55);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0;
}

.sr-result-meta span:first-child {
  color: #111827;
  background: var(--sr-primary);
  border-radius: 999px;
  padding: 0.12rem 0.45rem;
  font-weight: 900;
}

.sr-search-empty {
  padding: 2rem 1.25rem;
  text-align: center;
  color: rgba(226, 232, 240, 0.64);
}

.sr-search-empty strong {
  display: block;
  color: var(--sr-ink);
  margin-bottom: 0.75rem;
}

.sr-search-suggestions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
}

.sr-search-suggestions button {
  border-radius: 999px;
  border: 1px solid rgba(245, 197, 66, 0.22);
  background: rgba(245, 197, 66, 0.08);
  color: var(--sr-ink);
  padding: 0.35rem 0.7rem;
  font-size: 0.85rem;
  transition: border-color 160ms ease, background 160ms ease;
}

.sr-search-suggestions button:hover {
  border-color: rgba(245, 197, 66, 0.45);
  background: rgba(245, 197, 66, 0.14);
}

@media (max-width: 640px) {
  .sr-search-modal {
    padding: 4rem 0.75rem 0.75rem;
  }

  .sr-search-topbar {
    gap: 0.65rem;
    padding: 0.8rem;
  }

  .sr-search-icon,
  .sr-result-icon {
    width: 2.1rem;
    height: 2.1rem;
  }

  .sr-search-result {
    grid-template-columns: 2.1rem minmax(0, 1fr);
  }

  .sr-result-meta {
    grid-column: 2;
    align-items: flex-start;
    flex-direction: row;
  }
}

/* Extracted inline style block 3 */
@keyframes pulse-glow {
        0%, 100% { box-shadow: 0 0 20px rgba(34, 197, 94, 0.4), 0 25px 50px -12px rgba(0, 0, 0, 0.5); }
        50% { box-shadow: 0 0 40px rgba(34, 197, 94, 0.6), 0 25px 50px -12px rgba(0, 0, 0, 0.5); }
      }
      @keyframes pulse-glow-blue {
        0%, 100% { box-shadow: 0 0 20px rgba(59, 130, 246, 0.4), 0 25px 50px -12px rgba(0, 0, 0, 0.5); }
        50% { box-shadow: 0 0 40px rgba(59, 130, 246, 0.6), 0 25px 50px -12px rgba(0, 0, 0, 0.5); }
      }
      .sticky-cta-btn {
        animation: pulse-glow-blue 2s ease-in-out infinite;
      }
      .sticky-cta-btn:hover {
        animation: none;
      }
      @keyframes pulse-subtle {
        0%, 100% { opacity: 1; }
        50% { opacity: 0.9; }
      }
      .animate-pulse-subtle {
        animation: pulse-subtle 2s ease-in-out infinite;
      }

/* ========== Last-mile readability overrides ========== */
body.sr-premium-page.sr-product-page,
body.sr-premium-page.sr-compare-page {
  background:
    linear-gradient(rgba(245, 197, 66, 0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245, 197, 66, 0.024) 1px, transparent 1px),
    linear-gradient(180deg, #0d1420 0%, #0a1019 42%, #080d14 100%) !important;
  background-size: 48px 48px, 48px 48px, auto !important;
}

body.sr-premium-page .product-enrichment-section,
body.sr-premium-page .compare-enrichment-section {
  position: relative !important;
  overflow: hidden !important;
  padding: 2.35rem 2.5rem !important;
  margin: 0 0 2.75rem !important;
  border: 1px solid rgba(245, 197, 66, 0.18) !important;
  border-left: 4px solid rgba(245, 197, 66, 0.74) !important;
  border-radius: 8px !important;
  background:
    linear-gradient(180deg, rgba(17, 24, 39, 0.96), rgba(11, 18, 28, 0.91)) !important;
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.32), inset 0 1px 0 rgba(255, 255, 255, 0.035) !important;
}

body.sr-premium-page .product-enrichment-section > h2,
body.sr-premium-page .compare-enrichment-section > h2 {
  max-width: 760px !important;
  margin-bottom: 1.15rem !important;
  padding-bottom: 0.95rem !important;
  border-bottom: 1px solid rgba(148, 163, 184, 0.16) !important;
  color: #ffffff !important;
  font-size: 1.75rem !important;
  line-height: 1.18 !important;
  letter-spacing: 0 !important;
}

body.sr-premium-page .product-enrichment-section .prose,
body.sr-premium-page .compare-enrichment-section .prose {
  max-width: 760px !important;
  color: #d7e0ed !important;
  font-size: 1.02rem !important;
}

body.sr-premium-page .product-enrichment-section .prose > p,
body.sr-premium-page .compare-enrichment-section .prose > p {
  max-width: 72ch !important;
  margin-top: 0 !important;
  margin-bottom: 1rem !important;
  color: #d7e0ed !important;
  line-height: 1.82 !important;
}

body.sr-premium-page .product-enrichment-section .prose > p:first-of-type,
body.sr-premium-page .compare-enrichment-section .prose > p:first-of-type {
  margin: 0 0 1.25rem !important;
  padding: 1rem 1.1rem !important;
  border: 1px solid rgba(245, 197, 66, 0.16) !important;
  border-radius: 8px !important;
  background: rgba(245, 197, 66, 0.055) !important;
  color: #f4f7fb !important;
  font-size: 1.05rem !important;
  line-height: 1.76 !important;
}

body.sr-premium-page .product-enrichment-section .prose > h3,
body.sr-premium-page .compare-enrichment-section .prose > h3 {
  display: flex !important;
  align-items: center !important;
  gap: 0.55rem !important;
  max-width: 760px !important;
  margin: 2rem 0 0.7rem !important;
  color: #ffffff !important;
  font-size: 1.15rem !important;
  line-height: 1.3 !important;
  letter-spacing: 0 !important;
}

body.sr-premium-page .product-enrichment-section .prose > h3::before,
body.sr-premium-page .compare-enrichment-section .prose > h3::before {
  content: "" !important;
  flex: 0 0 auto !important;
  width: 0.55rem !important;
  height: 0.55rem !important;
  border-radius: 999px !important;
  background: #f5c542 !important;
  box-shadow: 0 0 0 4px rgba(245, 197, 66, 0.12) !important;
}

body.sr-premium-page .product-enrichment-section .prose ul,
body.sr-premium-page .compare-enrichment-section .prose ul {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 0.75rem !important;
  margin: 1.15rem 0 1.35rem !important;
  padding: 0 !important;
  list-style: none !important;
}

body.sr-premium-page .product-enrichment-section .prose li,
body.sr-premium-page .compare-enrichment-section .prose li {
  position: relative !important;
  margin: 0 !important;
  padding: 0.9rem 1rem 0.9rem 2.15rem !important;
  border: 1px solid rgba(148, 163, 184, 0.15) !important;
  border-radius: 8px !important;
  background: rgba(15, 23, 42, 0.7) !important;
  color: #dce5f2 !important;
  line-height: 1.58 !important;
}

body.sr-premium-page .product-enrichment-section .prose li::before,
body.sr-premium-page .compare-enrichment-section .prose li::before {
  content: "" !important;
  position: absolute !important;
  left: 0.9rem !important;
  top: 1.18rem !important;
  width: 0.42rem !important;
  height: 0.42rem !important;
  border-radius: 999px !important;
  background: #22c55e !important;
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.12) !important;
}

body.sr-premium-page .auto-enrichment-cta {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) auto !important;
  align-items: center !important;
  gap: 1rem 1.25rem !important;
  max-width: 760px !important;
  margin: 1.6rem 0 0 !important;
  padding: 1.1rem 1.15rem !important;
  border: 1px solid rgba(245, 197, 66, 0.26) !important;
  border-radius: 8px !important;
  background:
    linear-gradient(135deg, rgba(245, 197, 66, 0.11), rgba(15, 23, 42, 0.9)) !important;
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.24) !important;
}

body.sr-premium-page .auto-enrichment-cta p {
  margin: 0 !important;
}

body.sr-premium-page .auto-enrichment-cta p:first-child {
  grid-column: 1 !important;
  grid-row: 1 !important;
  color: #ffffff !important;
}

body.sr-premium-page .auto-enrichment-cta p:nth-child(2) {
  grid-column: 1 !important;
  grid-row: 2 !important;
  color: #cbd5e1 !important;
}

body.sr-premium-page .auto-enrichment-cta a,
body.sr-premium-page .auto-enrichment-cta a.bg-primary,
body.sr-premium-page .sticky-cta-btn,
body.sr-premium-page a[class*="from-blue"],
body.sr-premium-page a.bg-gradient-to-r,
body.sr-premium-page .btn-primary,
body.sr-premium-page a.bg-primary,
body.sr-premium-page button.bg-primary {
  background: linear-gradient(135deg, #f5c542, #f59e0b) !important;
  color: #111827 !important;
  border: 1px solid rgba(255, 255, 255, 0.28) !important;
  box-shadow: 0 14px 30px rgba(245, 158, 11, 0.25) !important;
}

body.sr-premium-page .auto-enrichment-cta a {
  grid-column: 2 !important;
  grid-row: 1 / span 2 !important;
  min-width: 11rem !important;
  padding: 0.8rem 1rem !important;
  font-weight: 800 !important;
  text-align: center !important;
}

body.sr-premium-page aside .sticky > div {
  background: rgba(24, 31, 40, 0.96) !important;
  border-color: rgba(245, 197, 66, 0.2) !important;
}

body.sr-premium-page aside .sticky a[class*="from-blue"],
body.sr-premium-page aside .sticky a.bg-gradient-to-r {
  background: linear-gradient(135deg, #f5c542, #f59e0b) !important;
  color: #111827 !important;
}

body.sr-premium-page > a[href$="/wishlist/"].fixed {
  display: none !important;
}

@media (max-width: 900px) {
  body.sr-premium-page .product-enrichment-section,
  body.sr-premium-page .compare-enrichment-section {
    padding: 1.35rem !important;
    margin-bottom: 1.75rem !important;
  }

  body.sr-premium-page .product-enrichment-section > h2,
  body.sr-premium-page .compare-enrichment-section > h2 {
    font-size: 1.45rem !important;
  }

  body.sr-premium-page .product-enrichment-section .prose ul,
  body.sr-premium-page .compare-enrichment-section .prose ul,
  body.sr-premium-page .auto-enrichment-cta {
    grid-template-columns: 1fr !important;
  }

  body.sr-premium-page .auto-enrichment-cta a {
    grid-column: 1 !important;
    grid-row: auto !important;
    width: 100% !important;
  }
}
