/* ===================================================================
   AIRFRYERWIJZER.NL - PREMIUM REDESIGN 2026
   =================================================================== */

/* === HERO LIFESTYLE BACKGROUND === */
.hero-lifestyle {
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  position: relative;
}

.hero-lifestyle::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(15, 23, 42, 0.65) !important;
  z-index: 0;
}

/* === TOP 10 THUMBNAIL IN TABLE === */
.table-product-cell {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.table-thumb {
  width: 50px;
  height: 50px;
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0;
  background: #f1f5f9;
}
.shop-cell {
  white-space: nowrap;
}
.shop-link {
  display: inline-block;
  padding: 0.3rem 0.6rem;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  text-decoration: none;
  color: #fff;
  transition: opacity 0.2s;
}
.shop-link:hover {
  opacity: 0.85;
}
.shop-bol {
  background: #0000C8;
}
.shop-amazon {
  background: #FF9900;
  color: #111;
}

* {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    :root {
      --color-primary: #3b82f6;
      --color-primary-dark: #1e40af;
      --color-secondary: #10b981;
      --color-accent: #f59e0b;
      --color-warning: #ef4444;
      --color-dark: #0f172a;
      --color-dark-light: #1e293b;
      --color-gray-50: #f8fafc;
      --color-gray-100: #f1f5f9;
      --color-gray-200: #e2e8f0;
      --color-gray-300: #cbd5e1;
      --color-gray-400: #94a3b8;
      --color-gray-500: #64748b;
      --color-gray-600: #475569;
      --color-gray-700: #334155;
      --color-gray-800: #1e293b;
      --color-white: #ffffff;
      --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: 'DM Sans', sans-serif;
      color: var(--color-gray-700);
      background-color: var(--color-white);
      line-height: 1.6;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
    }

    h1, h2, h3, h4, h5, h6 {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-weight: 700;
      line-height: 1.2;
    }

    a {
      color: var(--color-primary);
      text-decoration: none;
      transition: var(--transition);
    }

    a:hover {
      color: var(--color-primary-dark);
    }

    /* Scroll Progress Bar */
    .scroll-progress {
      position: fixed;
      top: 0;
      left: 0;
      height: 3px;
      background: linear-gradient(90deg, var(--color-primary), var(--color-secondary), var(--color-accent));
      width: 0%;
      z-index: 9999;
      transition: width 0.1s ease;
    }

    /* Affiliate Disclaimer Bar */
    .affiliate-bar {
      background: linear-gradient(135deg, var(--color-dark) 0%, var(--color-dark-light) 100%);
      color: var(--color-gray-200);
      padding: 0.75rem 1rem;
      font-size: 0.875rem;
      text-align: center;
      border-bottom: 1px solid var(--color-gray-700);
    }

    .affiliate-bar a {
      color: var(--color-primary);
      font-weight: 600;
    }

    /* Header & Navigation */
    header {
      position: sticky;
      top: 0;
      background: rgba(15, 23, 42, 0.95);
      backdrop-filter: blur(8px);
      border-bottom: 1px solid rgba(255, 255, 255, 0.05);
      z-index: 1000;
      transition: var(--transition);
    }

    header.scrolled {
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    }

    .header-content {
      max-width: 1400px;
      margin: 0 auto;
      padding: 1rem 1.5rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .logo {
      font-size: 1.5rem;
      font-weight: 700;
      color: var(--color-white);
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }

    .logo-icon {
      width: 32px;
      height: 32px;
      background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-weight: 700;
      font-size: 0.875rem;
    }

    nav {
      display: flex;
      gap: 2rem;
    }

    nav a {
      color: var(--color-gray-300);
      font-weight: 500;
      font-size: 0.95rem;
      transition: var(--transition);
    }

    nav a:hover,
    nav a.active {
      color: var(--color-primary);
    }

    .mobile-nav-toggle {
      display: none;
      background: none;
      border: none;
      color: var(--color-white);
      font-size: 1.5rem;
      cursor: pointer;
      width: 40px;
      height: 40px;
      align-items: center;
      justify-content: center;
    }

    @media (max-width: 768px) {
      nav {
        display: none;
        position: fixed;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        background: var(--color-dark);
        gap: 0;
        padding: 1rem;
        border-top: 1px solid var(--color-gray-700);
      }

      nav.mobile-open {
        display: flex;
      }

      nav a {
        padding: 0.75rem 0;
        border-bottom: 1px solid var(--color-gray-700);
      }

      .mobile-nav-toggle {
        display: flex;
      }
    }

    /* Skip Navigation Link */
    .skip-nav {
      position: absolute;
      top: -40px;
      left: 0;
      background: var(--color-primary);
      color: white;
      padding: 8px;
      text-decoration: none;
      z-index: 100;
    }

    .skip-nav:focus {
      top: 0;
    }

    /* Main Content */
    main {
      overflow: hidden;
    }

    .container {
      max-width: 1400px;
      margin: 0 auto;
      padding: 0 1.5rem;
    }

    /* Hero Section */
    .hero {
      position: relative;
      min-height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
      background: var(--color-dark);
      padding: 4rem 1.5rem;
    }

    .hero-split {
      display: flex;
      align-items: center;
      justify-content: center;
      max-width: 900px;
      margin: 0 auto;
      padding: 6rem 2rem 4rem;
      min-height: 100vh;
    }

    .hero-split .hero-content {
      flex: 1;
      text-align: left;
    }

    .hero-split .hero-badges {
      justify-content: flex-start;
    }

    .hero-split .hero-cta {
      justify-content: flex-start;
    }

    .hero-product {
      position: relative;
      z-index: 1;
      flex: 0 0 340px;
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .hero-product img {
      width: 100%;
      max-width: 340px;
      height: auto;
      filter: drop-shadow(0 20px 60px rgba(59, 130, 246, 0.3));
      animation: heroFloat 4s ease-in-out infinite;
    }

    @keyframes heroFloat {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-12px); }
    }

    .hero-product-label {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      margin-top: 1.5rem;
      padding: 0.75rem 1.25rem;
      background: rgba(255, 255, 255, 0.08);
      backdrop-filter: blur(10px);
      border: 1px solid rgba(255, 255, 255, 0.15);
      border-radius: 50px;
    }

    .hero-product-badge {
      background: var(--color-primary);
      color: white;
      padding: 0.25rem 0.6rem;
      border-radius: 6px;
      font-size: 0.75rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.05em;
    }

    .hero-product-name {
      color: var(--color-white);
      font-weight: 600;
      font-size: 0.95rem;
    }

    .hero-product-score {
      color: var(--color-secondary);
      font-weight: 700;
      font-size: 0.95rem;
    }

    @media (max-width: 768px) {
      .hero-split {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
        padding: 5rem 1.5rem 3rem;
      }

      .hero-split .hero-content {
        text-align: center;
      }

      .hero-split .hero-badges {
        justify-content: center;
      }

      .hero-split .hero-cta {
        justify-content: center;
      }

      .hero-product {
        flex: none;
        max-width: 260px;
      }
    }

    .hero::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background:
        radial-gradient(ellipse at 20% 50%, rgba(59, 130, 246, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 50%, rgba(16, 185, 129, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 0%, rgba(245, 158, 11, 0.1) 0%, transparent 50%);
      z-index: 0;
    }

    .hero::after {
      content: '';
      position: absolute;
      inset: 0;
      background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
      z-index: 0;
    }

    .hero-lifestyle::after {
      display: none;
    }

    .hero-content {
      position: relative;
      z-index: 1;
      text-align: center;
      max-width: 900px;
    }

    .hero h1 {
      font-size: clamp(2.5rem, 8vw, 4.5rem);
      color: var(--color-white);
      margin-bottom: 1rem;
      line-height: 1.1;
    }

    .hero-subtitle {
      font-size: 1.25rem;
      color: var(--color-gray-300);
      margin-bottom: 2rem;
      line-height: 1.6;
    }

    .hero-badges {
      display: flex;
      flex-wrap: wrap;
      gap: 1rem;
      margin-bottom: 2.5rem;
      justify-content: center;
      align-items: center;
    }

    .badge {
      background: rgba(255, 255, 255, 0.1);
      backdrop-filter: blur(10px);
      border: 1px solid rgba(255, 255, 255, 0.2);
      padding: 0.75rem 1.25rem;
      border-radius: 50px;
      color: var(--color-white);
      font-size: 0.9rem;
      font-weight: 600;
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }

    .badge::before {
      content: '✓';
      color: var(--color-secondary);
      font-weight: 700;
      font-size: 1.1rem;
    }

    .hero-cta {
      display: flex;
      gap: 1.5rem;
      justify-content: center;
      flex-wrap: wrap;
    }

    .btn {
      padding: 1rem 2rem;
      border: none;
      border-radius: 12px;
      font-size: 1rem;
      font-weight: 600;
      cursor: pointer;
      transition: var(--transition);
      font-family: 'Plus Jakarta Sans', sans-serif;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      position: relative;
    }

    .btn-primary {
      background: linear-gradient(135deg, var(--color-primary), #2563eb);
      color: white;
      box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
    }

    .btn-primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 15px 40px rgba(59, 130, 246, 0.4);
    }

    .btn-secondary {
      background: rgba(255, 255, 255, 0.1);
      border: 2px solid rgba(255, 255, 255, 0.3);
      color: var(--color-white);
    }

    .btn-secondary:hover {
      background: rgba(255, 255, 255, 0.15);
      border-color: rgba(255, 255, 255, 0.5);
      transform: translateY(-2px);
    }

    .btn-shop {
      background: linear-gradient(135deg, var(--color-accent), #d97706);
      color: white;
      font-size: 1.1rem;
      padding: 1.25rem 2.5rem;
      box-shadow: 0 15px 40px rgba(245, 158, 11, 0.35);
      animation: pulse-glow 2s ease-in-out infinite;
    }

    .btn-shop:hover {
      transform: translateY(-3px);
      box-shadow: 0 20px 50px rgba(245, 158, 11, 0.5);
    }

    @keyframes pulse-glow {
      0%, 100% { box-shadow: 0 15px 40px rgba(245, 158, 11, 0.35); }
      50% { box-shadow: 0 15px 50px rgba(245, 158, 11, 0.5); }
    }

    /* Marquee Section */
    .marquee-section {
      background: linear-gradient(135deg, var(--color-dark-light) 0%, var(--color-dark) 100%);
      padding: 2rem 0;
      overflow: hidden;
      border-top: 1px solid rgba(255, 255, 255, 0.05);
      border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .marquee {
      display: flex;
      gap: 3rem;
      animation: scroll-left 25s linear infinite;
      width: fit-content;
    }

    .marquee:hover {
      animation-play-state: paused;
    }

    .marquee-item {
      font-size: 1.1rem;
      font-weight: 600;
      color: var(--color-white);
      white-space: nowrap;
      display: flex;
      align-items: center;
      gap: 1rem;
    }

    .marquee-item::before {
      content: '•';
      color: var(--color-primary);
      font-size: 1.5rem;
    }

    .marquee-item:first-child::before {
      display: none;
    }

    @keyframes scroll-left {
      0% { transform: translateX(0); }
      100% { transform: translateX(-50%); }
    }

    /* Top 3 Picks */
    .top-picks {
      padding: 5rem 0;
      background: var(--color-gray-50);
    }

    .section-title {
      font-size: clamp(2rem, 5vw, 3.5rem);
      text-align: center;
      margin-bottom: 1rem;
      color: var(--color-dark);
    }

    .section-subtitle {
      text-align: center;
      font-size: 1.1rem;
      color: var(--color-gray-500);
      margin-bottom: 4rem;
      max-width: 600px;
      margin-left: auto;
      margin-right: auto;
    }

    .picks-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
      gap: 2rem;
      margin-bottom: 3rem;
    }

    .product-card {
      background: white;
      border-radius: 16px;
      overflow: hidden;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
      transition: var(--transition);
      position: relative;
      transform-style: preserve-3d;
    }

    .product-card:hover {
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
      transform: translateY(-3px);
    }

    .product-image {
      width: 100%;
      height: 280px;
      background: linear-gradient(135deg, var(--color-gray-100), var(--color-gray-50));
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
      position: relative;
    }

    .product-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .product-badge {
      position: absolute;
      top: 1rem;
      right: 1rem;
      padding: 0.5rem 1rem;
      border-radius: 50px;
      color: white;
      font-size: 0.85rem;
      font-weight: 700;
      backdrop-filter: blur(10px);
      z-index: 10;
    }

    .badge-choice {
      background: linear-gradient(135deg, #3b82f6, #1e40af);
    }

    .badge-premium {
      background: linear-gradient(135deg, #fbbf24, #f59e0b);
    }

    .badge-value {
      background: linear-gradient(135deg, #10b981, #059669);
    }

    .product-content {
      padding: 1.5rem;
    }

    .product-header {
      margin-bottom: 1rem;
    }

    .product-name {
      font-size: 1.25rem;
      font-weight: 700;
      color: var(--color-dark);
      margin-bottom: 0.5rem;
    }

    .product-score {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      margin-bottom: 1rem;
    }

    .score {
      background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      font-size: 1.5rem;
      font-weight: 700;
    }

    .score-label {
      color: var(--color-gray-500);
      font-size: 0.9rem;
    }

    .product-price {
      font-size: 1.5rem;
      font-weight: 700;
      color: var(--color-accent);
      margin-bottom: 1rem;
    }

    .product-specs {
      background: var(--color-gray-50);
      padding: 1rem;
      border-radius: 10px;
      margin-bottom: 1.5rem;
      font-size: 0.9rem;
      color: var(--color-gray-600);
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0.75rem;
    }

    .spec {
      display: flex;
      flex-direction: column;
      gap: 0.25rem;
    }

    .spec-label {
      font-size: 0.8rem;
      color: var(--color-gray-400);
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }

    .spec-value {
      color: var(--color-dark);
      font-weight: 600;
    }

    .product-pros {
      margin-bottom: 1.5rem;
    }

    .pros-title {
      font-size: 0.85rem;
      font-weight: 700;
      text-transform: uppercase;
      color: var(--color-gray-400);
      margin-bottom: 0.5rem;
      letter-spacing: 0.5px;
    }

    .pros-list {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 0.5rem;
    }

    .pros-list li {
      font-size: 0.95rem;
      color: var(--color-gray-600);
      display: flex;
      align-items: flex-start;
      gap: 0.5rem;
    }

    .pros-list li::before {
      content: '→';
      color: var(--color-secondary);
      font-weight: 700;
      flex-shrink: 0;
      margin-top: 2px;
    }

    .product-cta {
      display: flex;
      gap: 0.75rem;
      flex-direction: column;
    }

    .product-cta a {
      padding: 0.85rem;
      border-radius: 10px;
      font-size: 0.95rem;
      font-weight: 600;
      text-align: center;
      transition: var(--transition);
      text-decoration: none;
    }

    .cta-review {
      background: var(--color-gray-100);
      color: var(--color-dark);
    }

    .cta-review:hover {
      background: var(--color-gray-200);
    }

    .cta-shop {
      background: linear-gradient(135deg, var(--color-accent), #d97706);
      color: white;
      font-weight: 700;
      font-size: 1rem;
      padding: 1rem;
      box-shadow: 0 8px 20px rgba(245, 158, 11, 0.3);
    }

    .cta-shop:hover {
      transform: translateY(-2px);
      box-shadow: 0 12px 30px rgba(245, 158, 11, 0.4);
    }

    .cta-amazon {
      background: linear-gradient(135deg, #FF9900, #e88600);
      box-shadow: 0 8px 20px rgba(255, 153, 0, 0.3);
    }

    .cta-amazon:hover {
      box-shadow: 0 12px 30px rgba(255, 153, 0, 0.4);
    }

    /* Comparison Table */
    .comparison-section {
      padding: 5rem 0;
      background: white;
    }

    .table-wrapper {
      overflow-x: auto;
      border-radius: 16px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    }

    table {
      width: 100%;
      border-collapse: collapse;
      background: white;
    }

    thead {
      background: linear-gradient(135deg, var(--color-dark), var(--color-dark-light));
      color: white;
    }

    th {
      padding: 1.25rem;
      text-align: left;
      font-weight: 600;
      border: none;
      cursor: pointer;
      user-select: none;
      transition: var(--transition);
      font-size: 0.95rem;
    }

    th:hover {
      background: var(--color-dark-light);
    }

    td {
      padding: 1.25rem;
      border-bottom: 1px solid var(--color-gray-200);
    }

    tbody tr {
      transition: var(--transition);
    }

    tbody tr:hover {
      background: var(--color-gray-50);
    }

    tbody tr:last-child td {
      border-bottom: none;
    }

    .rank {
      font-weight: 700;
      color: var(--color-primary);
      font-size: 1.25rem;
    }

    .product-link {
      color: var(--color-dark);
      font-weight: 600;
    }

    .product-link:hover {
      color: var(--color-primary);
    }

    .score-cell {
      background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(16, 185, 129, 0.1));
      color: var(--color-dark);
      font-weight: 700;
      border-radius: 8px;
      padding: 0.75rem 1rem !important;
    }

    .price-cell {
      color: var(--color-accent);
      font-weight: 700;
    }

    .action-link {
      color: var(--color-primary);
      font-weight: 600;
      display: flex;
      align-items: center;
      gap: 0.5rem;
      white-space: nowrap;
    }

    .action-link:hover {
      color: var(--color-primary-dark);
    }

    /* Category Explorer */
    .categories-section {
      padding: 5rem 0;
      background: var(--color-gray-50);
    }

    .categories-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 1.5rem;
    }

    .category-card {
      padding: 2rem;
      border-radius: 16px;
      color: white;
      text-decoration: none;
      transition: var(--transition);
      position: relative;
      overflow: hidden;
      min-height: 220px;
      display: flex;
      align-items: flex-end;
      cursor: pointer;
      font-weight: 600;
      font-size: 1.25rem;
    }

    /* Photo-based category cards */
    .category-card-photo {
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
    }

    .category-card-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(0,0,0,0.05) 0%, rgba(0,0,0,0.6) 70%, rgba(0,0,0,0.8) 100%);
      transition: background 0.4s ease;
      z-index: 1;
    }

    .category-card-photo:hover .category-card-overlay {
      background: linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.5) 60%, rgba(59,130,246,0.7) 100%);
    }

    .category-card-content {
      position: relative;
      z-index: 2;
      width: 100%;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .category-label {
      font-size: 1.25rem;
      font-weight: 700;
      text-shadow: 0 2px 8px rgba(0,0,0,0.4);
    }

    .category-arrow {
      font-size: 1.5rem;
      transition: transform 0.3s ease;
      opacity: 0.8;
    }

    .category-card-photo:hover .category-arrow {
      transform: translateX(6px);
      opacity: 1;
    }

    .category-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
    }

    .category-card-photo::after {
      content: '';
      position: absolute;
      inset: 0;
      border-radius: 16px;
      box-shadow: inset 0 0 0 1px rgba(255,255,255,0.1);
      z-index: 3;
      pointer-events: none;
    }

    /* Most Read Reviews */
    .reviews-section {
      padding: 5rem 0;
      background: white;
    }

    .reviews-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 2rem;
    }

    @media (min-width: 768px) {
      .reviews-grid {
        grid-template-columns: 1fr 1fr;
      }
    }

    @media (min-width: 1024px) {
      .reviews-grid {
        grid-template-columns: 1fr 1fr 1fr;
      }
    }

    .review-card {
      background: white;
      border-radius: 16px;
      overflow: hidden;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
      transition: var(--transition);
      display: flex;
      flex-direction: column;
      height: 100%;
      cursor: pointer;
    }

    .review-card:hover {
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
      transform: translateY(-4px);
    }

    .review-image {
      width: 100%;
      height: 250px;
      background: linear-gradient(135deg, var(--color-gray-100), var(--color-gray-50));
      overflow: hidden;
    }

    .review-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .review-card .review-image {
      height: 200px;
      flex: none;
    }

    .review-content {
      padding: 1.5rem;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
    }

    .review-title {
      font-size: 1.25rem;
      font-weight: 700;
      color: var(--color-dark);
      margin-bottom: 0.5rem;
    }

    .review-card:first-child .review-title {
      font-size: 1.25rem;
    }

    .review-meta {
      display: flex;
      align-items: center;
      gap: 1rem;
      margin-bottom: 1rem;
      font-size: 0.95rem;
    }

    .review-score {
      background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      font-weight: 700;
      font-size: 1.1rem;
    }

    .review-text {
      color: var(--color-gray-600);
      font-size: 0.95rem;
      margin-bottom: 1rem;
      flex-grow: 1;
    }

    .review-link {
      color: var(--color-primary);
      font-weight: 600;
      align-self: flex-start;
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }

    .review-link:hover {
      gap: 0.75rem;
    }

    /* Buying Guide Teaser */
    .guide-teaser {
      padding: 5rem 0;
      background: linear-gradient(135deg, var(--color-dark) 0%, var(--color-dark-light) 100%);
    }

    .guide-card {
      background: rgba(255, 255, 255, 0.05);
      backdrop-filter: blur(20px);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 20px;
      padding: 3rem;
      max-width: 800px;
      margin: 0 auto;
      color: white;
    }

    .guide-title {
      font-size: 2rem;
      margin-bottom: 2rem;
      text-align: center;
    }

    .guide-checklist {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1.5rem;
      margin-bottom: 2rem;
    }

    @media (max-width: 640px) {
      .guide-checklist {
        grid-template-columns: 1fr;
      }
    }

    .guide-item {
      display: flex;
      align-items: flex-start;
      gap: 0.75rem;
    }

    .guide-item::before {
      content: '✓';
      color: var(--color-secondary);
      font-weight: 700;
      font-size: 1.25rem;
      flex-shrink: 0;
    }

    .guide-item-text {
      font-size: 1rem;
      line-height: 1.5;
    }

    .guide-cta {
      display: flex;
      justify-content: center;
      margin-top: 2rem;
    }

    /* Comparison vs Alternatives */
    .alternatives-section {
      padding: 5rem 0;
      background: white;
    }

    .comparison-container {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 2rem;
      margin-bottom: 2rem;
    }

    .comparison-item {
      background: linear-gradient(135deg, var(--color-gray-50), white);
      border: 1px solid var(--color-gray-200);
      border-radius: 16px;
      padding: 2rem;
    }

    .comparison-item h3 {
      font-size: 1.25rem;
      margin-bottom: 1.5rem;
      color: var(--color-dark);
    }

    .comparison-item ul {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }

    .comparison-item li {
      font-size: 0.95rem;
      color: var(--color-gray-600);
      display: flex;
      align-items: flex-start;
      gap: 0.75rem;
    }

    .comparison-item li::before {
      content: '◆';
      flex-shrink: 0;
      margin-top: 4px;
      color: var(--color-primary);
      font-size: 0.6rem;
    }

    .alternatives-link {
      display: flex;
      justify-content: center;
    }

    .alternatives-link a {
      color: var(--color-primary);
      font-weight: 600;
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }

    /* FAQ Accordion */
    .faq-section {
      padding: 5rem 0;
      background: var(--color-gray-50);
    }

    .faq-container {
      max-width: 900px;
      margin: 0 auto;
    }

    .faq-item {
      background: white;
      border-radius: 12px;
      margin-bottom: 1rem;
      border: 1px solid var(--color-gray-200);
      overflow: hidden;
      transition: var(--transition);
    }

    .faq-item:hover {
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    }

    .faq-question {
      padding: 1.5rem;
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 1rem;
      background: white;
      border: none;
      width: 100%;
      font-size: 1rem;
      font-weight: 600;
      color: var(--color-dark);
      transition: var(--transition);
    }

    .faq-question:hover {
      background: var(--color-gray-50);
    }

    .faq-toggle {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 24px;
      height: 24px;
      background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
      border-radius: 50%;
      color: white;
      font-weight: 700;
      flex-shrink: 0;
      transition: var(--transition);
    }

    .faq-item.open .faq-toggle {
      transform: rotate(45deg);
    }

    .faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s ease;
      background: var(--color-gray-50);
    }

    .faq-item.open .faq-answer {
      max-height: 1000px;
    }

    .faq-text {
      padding: 1.5rem;
      color: var(--color-gray-600);
      line-height: 1.8;
    }

    /* Animated Counters */
    .counters-section {
      padding: 5rem 0;
      background: linear-gradient(135deg, var(--color-dark) 0%, var(--color-dark-light) 100%);
    }

    .counters-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 2rem;
    }

    .counter-card {
      background: rgba(255, 255, 255, 0.05);
      backdrop-filter: blur(20px);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 16px;
      padding: 2rem;
      text-align: center;
      color: white;
    }

    .counter-number {
      font-size: 3rem;
      font-weight: 700;
      margin-bottom: 0.5rem;
      background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .counter-label {
      font-size: 1rem;
      color: var(--color-gray-300);
      font-weight: 500;
    }

    /* Newsletter & About */
    .newsletter-section {
      padding: 5rem 0;
      background: white;
    }

    .newsletter-container {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 3rem;
      align-items: center;
    }

    @media (max-width: 768px) {
      .newsletter-container {
        grid-template-columns: 1fr;
      }
    }

    .newsletter-form {
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }

    .newsletter-form h3 {
      font-size: 1.75rem;
      margin-bottom: 1rem;
    }

    .newsletter-form p {
      color: var(--color-gray-600);
      margin-bottom: 1.5rem;
    }

    .form-group {
      display: flex;
      gap: 0.5rem;
    }

    .form-group input {
      flex: 1;
      padding: 1rem;
      border: 1px solid var(--color-gray-300);
      border-radius: 10px;
      font-size: 1rem;
      transition: var(--transition);
      font-family: 'DM Sans', sans-serif;
    }

    .form-group input:focus {
      outline: none;
      border-color: var(--color-primary);
      box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
    }

    .form-group button {
      padding: 1rem 2rem;
      background: linear-gradient(135deg, var(--color-primary), #2563eb);
      color: white;
      border: none;
      border-radius: 10px;
      font-weight: 600;
      cursor: pointer;
      transition: var(--transition);
    }

    .form-group button:hover {
      transform: translateY(-2px);
      box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
    }

    .about-teaser {
      background: var(--color-gray-50);
      padding: 2rem;
      border-radius: 16px;
    }

    .about-teaser h3 {
      font-size: 1.5rem;
      margin-bottom: 1rem;
      color: var(--color-dark);
    }

    .about-teaser p {
      color: var(--color-gray-600);
      margin-bottom: 1.5rem;
      line-height: 1.8;
    }

    .about-links {
      display: flex;
      gap: 1rem;
      flex-wrap: wrap;
    }

    .about-links a {
      padding: 0.75rem 1.5rem;
      background: white;
      border: 1px solid var(--color-gray-300);
      border-radius: 10px;
      color: var(--color-primary);
      font-weight: 600;
      transition: var(--transition);
    }

    .about-links a:hover {
      border-color: var(--color-primary);
      background: var(--color-gray-100);
    }

    /* Footer */
    footer {
      background: var(--color-dark);
      color: var(--color-gray-300);
      padding: 4rem 0 2rem;
      border-top: 1px solid rgba(255, 255, 255, 0.05);
    }

    .footer-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 2rem;
      margin-bottom: 3rem;
    }

    .footer-section h4 {
      color: white;
      margin-bottom: 1.5rem;
      font-size: 1rem;
    }

    .footer-section ul {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 0.75rem;
    }

    .footer-section a {
      color: var(--color-gray-400);
      transition: var(--transition);
      font-size: 0.95rem;
    }

    .footer-section a:hover {
      color: var(--color-primary);
    }

    .footer-bottom {
      border-top: 1px solid rgba(255, 255, 255, 0.05);
      padding-top: 2rem;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 2rem;
      align-items: center;
    }

    @media (max-width: 640px) {
      .footer-bottom {
        grid-template-columns: 1fr;
        text-align: center;
      }
    }

    .footer-legal {
      font-size: 0.85rem;
      color: var(--color-gray-500);
    }

    .footer-legal a {
      color: var(--color-gray-400);
    }

    .footer-links {
      display: flex;
      gap: 2rem;
      justify-content: flex-end;
      flex-wrap: wrap;
    }

    @media (max-width: 640px) {
      .footer-links {
        justify-content: center;
      }
    }

    /* Back to Top Button */
    .back-to-top {
      position: fixed;
      bottom: 2rem;
      right: 2rem;
      width: 50px;
      height: 50px;
      background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
      color: white;
      border: none;
      border-radius: 50%;
      cursor: pointer;
      opacity: 0;
      visibility: hidden;
      transition: var(--transition);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.25rem;
      z-index: 999;
      box-shadow: 0 8px 20px rgba(59, 130, 246, 0.3);
    }

    .back-to-top.show {
      opacity: 1;
      visibility: visible;
    }

    .back-to-top:hover {
      transform: translateY(-3px);
      box-shadow: 0 12px 30px rgba(59, 130, 246, 0.4);
    }

    /* Reveal Animations */
    [data-reveal] {
      opacity: 0;
      transform: translateY(30px);
    }

    [data-reveal].revealed {
      opacity: 1;
      transform: translateY(0);
      transition: opacity 0.6s ease, transform 0.6s ease;
    }

    /* Responsive */
    @media (max-width: 640px) {
      .hero {
        min-height: 80vh;
        padding: 3rem 1rem;
      }

      .hero h1 {
        font-size: 2rem;
      }

      .hero-badges {
        flex-direction: column;
        gap: 0.5rem;
      }

      .badge {
        width: 100%;
      }

      .hero-cta {
        flex-direction: column;
      }

      .btn {
        width: 100%;
      }

      .section-title {
        font-size: 1.75rem;
      }

      .picks-grid {
        grid-template-columns: 1fr;
      }

      .table-wrapper {
        font-size: 0.85rem;
      }

      th, td {
        padding: 0.75rem;
      }

      .categories-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .guide-checklist {
        grid-template-columns: 1fr;
      }

      .newsletter-container {
        grid-template-columns: 1fr;
      }

      .footer-grid {
        grid-template-columns: 1fr;
      }

    }

    /* ===================================================================
       SUBPAGE STYLES — REVIEWS, ROUNDUPS, VERSUS, GUIDES, INFO PAGES
       =================================================================== */

    /* HEADER VARIANTS - Support all three header structures */
    header.header > .navbar > .container > .logo,
    header.header > .header-wrapper > .logo,
    header > .header-content > a.logo {
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }

    /* Backward compatibility for old header structure */
    .header > .navbar {
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .header > .navbar > .container {
      display: flex;
      width: 100%;
      justify-content: space-between;
      align-items: center;
      max-width: 1400px;
      margin: 0 auto;
      padding: 0 1.5rem;
    }

    .header > .navbar > .container > .logo {
      font-size: 1.25rem;
      font-weight: 700;
      color: var(--color-white);
    }

    .header > .navbar > .container > .nav-links {
      display: flex;
      list-style: none;
      gap: 2rem;
      flex: 1;
      justify-content: flex-end;
    }

    .header > .navbar > .container > .nav-links li a {
      color: var(--color-gray-300);
      font-weight: 500;
      font-size: 0.95rem;
      transition: var(--transition);
    }

    .header > .navbar > .container > .nav-links li a:hover,
    .header > .navbar > .container > .nav-links li a.active {
      color: var(--color-primary);
    }

    /* Alternative header structure with .header-wrapper */
    .header-wrapper {
      display: flex;
      width: 100%;
      justify-content: space-between;
      align-items: center;
    }

    .header-wrapper > .logo {
      display: flex;
      flex-direction: column;
      gap: 0.25rem;
    }

    .header-wrapper > .logo h1 {
      font-size: 1.25rem;
      color: var(--color-white);
      margin: 0;
    }

    .header-wrapper > .logo .tagline {
      font-size: 0.75rem;
      color: var(--color-gray-400);
      margin: 0;
    }

    /* ===================================================================
       REVIEW PAGE STYLES
       =================================================================== */

    .hero-section {
      background: linear-gradient(135deg, var(--color-dark) 0%, var(--color-dark-light) 100%);
      padding: 4rem 1.5rem;
      color: var(--color-white);
      position: relative;
      overflow: hidden;
    }

    .hero-section::before {
      content: '';
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse at 20% 50%, rgba(59, 130, 246, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 50%, rgba(16, 185, 129, 0.15) 0%, transparent 50%);
      z-index: 0;
    }

    .hero-section .hero-content {
      position: relative;
      z-index: 1;
      text-align: center;
      max-width: 900px;
      margin: 0 auto;
    }

    .hero-section h1 {
      font-size: clamp(2rem, 5vw, 3.5rem);
      margin-bottom: 2rem;
      line-height: 1.2;
    }

    .score-badge {
      display: inline-flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      width: 140px;
      height: 140px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--color-accent), #d97706);
      box-shadow: 0 0 0 8px rgba(245, 158, 11, 0.2), 0 20px 40px rgba(245, 158, 11, 0.4);
      margin: 1.5rem auto;
      border: 3px solid rgba(255, 255, 255, 0.2);
    }

    .score-number {
      font-size: 3.5rem;
      font-weight: 700;
      color: white;
      line-height: 1;
    }

    .score-label {
      font-size: 0.85rem;
      color: rgba(255, 255, 255, 0.9);
      margin-top: 0.5rem;
      font-weight: 600;
    }

    .quick-answer {
      background: rgba(255, 255, 255, 0.1);
      backdrop-filter: blur(10px);
      border: 1px solid rgba(255, 255, 255, 0.2);
      border-radius: 16px;
      padding: 2rem;
      max-width: 800px;
      margin: 0 auto;
      color: var(--color-white);
      font-size: 1.05rem;
      line-height: 1.8;
    }

    .quick-answer strong {
      color: var(--color-accent);
      font-weight: 700;
    }

    .review-main {
      display: grid;
      grid-template-columns: 2fr 1fr;
      gap: 3rem;
      padding: 3rem 0;
    }

    .review-content {
      grid-column: 1;
    }

    .review-sidebar {
      grid-column: 2;
      position: sticky;
      top: 100px;
      height: fit-content;
    }

    @media (max-width: 1024px) {
      .review-main {
        grid-template-columns: 1fr;
      }

      .review-sidebar {
        grid-column: 1;
        position: relative;
        top: auto;
      }
    }

    .quick-facts {
      margin-bottom: 3rem;
    }

    .quick-facts h2 {
      font-size: 1.75rem;
      margin-bottom: 1.5rem;
      color: var(--color-dark);
    }

    .specs-table {
      width: 100%;
      border-collapse: collapse;
      background: white;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    }

    .specs-table tr {
      border-bottom: 1px solid var(--color-gray-200);
      transition: var(--transition);
    }

    .specs-table tr:hover {
      background: var(--color-gray-50);
    }

    .specs-table tr:nth-child(even) {
      background: var(--color-gray-50);
    }

    .specs-table td {
      padding: 1rem 1.5rem;
      vertical-align: middle;
    }

    .specs-table td:first-child {
      font-weight: 600;
      color: var(--color-dark);
      width: 40%;
    }

    .specs-table td:last-child {
      color: var(--color-gray-600);
    }

    .product-image {
      margin: 2rem 0;
      text-align: center;
    }

    .product-image figure {
      margin: 0;
    }

    .product-image img {
      max-width: 100%;
      height: auto;
      border-radius: 12px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    }

    .product-image figcaption {
      margin-top: 1rem;
      font-size: 0.9rem;
      color: var(--color-gray-500);
      font-style: italic;
    }

    .pros-cons {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 2rem;
      margin: 3rem 0;
    }

    .pros,
    .cons {
      border-radius: 12px;
      padding: 2rem;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    }

    .pros {
      background: linear-gradient(135deg, rgba(16, 185, 129, 0.05), rgba(16, 185, 129, 0.02));
      border: 1px solid rgba(16, 185, 129, 0.2);
    }

    .pros h3 {
      color: var(--color-secondary);
      font-size: 1.25rem;
      margin-bottom: 1.5rem;
    }

    .cons {
      background: linear-gradient(135deg, rgba(239, 68, 68, 0.05), rgba(239, 68, 68, 0.02));
      border: 1px solid rgba(239, 68, 68, 0.2);
    }

    .cons h3 {
      color: var(--color-warning);
      font-size: 1.25rem;
      margin-bottom: 1.5rem;
    }

    .pros ul,
    .cons ul {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }

    .pros li,
    .cons li {
      display: flex;
      gap: 0.75rem;
      align-items: flex-start;
      font-size: 0.95rem;
      line-height: 1.6;
      color: var(--color-gray-600);
    }

    .pros li::before {
      content: '✅';
      flex-shrink: 0;
      font-size: 1.1rem;
    }

    .cons li::before {
      content: '❌';
      flex-shrink: 0;
      font-size: 1.1rem;
    }

    @media (max-width: 768px) {
      .pros-cons {
        grid-template-columns: 1fr;
      }
    }

    .affiliate-buttons {
      display: flex;
      flex-direction: column;
      gap: 1rem;
      margin: 3rem 0;
    }

    .btn-bol,
    .btn-amazon {
      display: inline-block;
      padding: 1.25rem 2rem;
      border-radius: 12px;
      font-weight: 700;
      font-size: 1.05rem;
      text-align: center;
      text-decoration: none;
      transition: var(--transition);
      position: relative;
      overflow: hidden;
      box-shadow: 0 15px 40px rgba(245, 158, 11, 0.35);
      animation: pulse-glow 2s ease-in-out infinite;
    }

    .btn-bol {
      background: linear-gradient(135deg, #f59e0b, #d97706);
      color: white;
    }

    .btn-bol:hover {
      transform: translateY(-3px);
      box-shadow: 0 20px 50px rgba(245, 158, 11, 0.5);
    }

    .btn-amazon {
      background: linear-gradient(135deg, #ff9900, #e68900);
      color: white;
    }

    .btn-amazon:hover {
      transform: translateY(-3px);
      box-shadow: 0 20px 50px rgba(255, 153, 0, 0.5);
    }

    .review-article {
      margin: 3rem 0;
      line-height: 1.8;
    }

    .review-article h2 {
      font-size: 1.75rem;
      margin-top: 2.5rem;
      margin-bottom: 1.5rem;
      color: var(--color-dark);
      border-bottom: 3px solid var(--color-primary);
      padding-bottom: 0.75rem;
    }

    .review-article h3 {
      font-size: 1.25rem;
      margin-top: 2rem;
      margin-bottom: 1rem;
      color: var(--color-dark);
    }

    .review-article p {
      margin-bottom: 1rem;
      color: var(--color-gray-600);
    }

    .detailed-specs {
      margin: 3rem 0;
    }

    .detailed-specs h2 {
      font-size: 1.75rem;
      margin-bottom: 1.5rem;
      color: var(--color-dark);
    }

    .verdict-box {
      background: linear-gradient(135deg, rgba(59, 130, 246, 0.05), rgba(59, 130, 246, 0.02));
      border-left: 4px solid var(--color-primary);
      border-radius: 8px;
      padding: 2rem;
      margin: 2rem 0;
    }

    .verdict-box h3 {
      color: var(--color-primary);
      margin-bottom: 1rem;
    }

    .verdict-box ul {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 0.75rem;
    }

    .verdict-box li {
      display: flex;
      gap: 0.75rem;
      align-items: flex-start;
      color: var(--color-gray-600);
    }

    .verdict-box li::before {
      content: '→';
      color: var(--color-primary);
      font-weight: 700;
      flex-shrink: 0;
      margin-top: 2px;
    }

    .sidebar-score {
      background: linear-gradient(135deg, var(--color-accent), #d97706);
      border-radius: 16px;
      padding: 2rem;
      text-align: center;
      margin-bottom: 2rem;
      color: white;
      box-shadow: 0 10px 30px rgba(245, 158, 11, 0.3);
    }

    .sidebar-score .score-number {
      font-size: 3rem;
    }

    .price-box {
      background: var(--color-gray-50);
      border-radius: 12px;
      padding: 1.5rem;
      margin-bottom: 1.5rem;
      border: 1px solid var(--color-gray-200);
    }

    .price-box strong {
      display: block;
      font-size: 0.85rem;
      text-transform: uppercase;
      color: var(--color-gray-500);
      margin-bottom: 0.5rem;
      letter-spacing: 0.5px;
    }

    .price-box p {
      font-size: 1.5rem;
      font-weight: 700;
      color: var(--color-accent);
      margin: 0;
    }

    .quick-specs {
      background: var(--color-gray-50);
      border-radius: 12px;
      padding: 1.5rem;
      margin-bottom: 1.5rem;
      border: 1px solid var(--color-gray-200);
    }

    .quick-specs strong {
      display: block;
      font-size: 0.85rem;
      text-transform: uppercase;
      color: var(--color-gray-500);
      margin-bottom: 1rem;
      letter-spacing: 0.5px;
    }

    .quick-specs ul {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 0.75rem;
    }

    .quick-specs li {
      font-size: 0.95rem;
      color: var(--color-gray-600);
      display: flex;
      gap: 0.5rem;
    }

    .quick-specs li::before {
      content: '✓';
      color: var(--color-secondary);
      font-weight: 700;
      flex-shrink: 0;
    }

    .sidebar-buttons {
      display: flex;
      flex-direction: column;
      gap: 0.75rem;
    }

    .btn-bol-sidebar,
    .btn-amazon-sidebar {
      display: inline-block;
      padding: 1rem;
      border-radius: 10px;
      font-weight: 700;
      text-align: center;
      text-decoration: none;
      transition: var(--transition);
      font-size: 0.95rem;
    }

    .btn-bol-sidebar {
      background: linear-gradient(135deg, #f59e0b, #d97706);
      color: white;
      box-shadow: 0 8px 20px rgba(245, 158, 11, 0.3);
    }

    .btn-bol-sidebar:hover {
      transform: translateY(-2px);
      box-shadow: 0 12px 30px rgba(245, 158, 11, 0.4);
    }

    .btn-amazon-sidebar {
      background: linear-gradient(135deg, #ff9900, #e68900);
      color: white;
      box-shadow: 0 8px 20px rgba(255, 153, 0, 0.3);
    }

    .btn-amazon-sidebar:hover {
      transform: translateY(-2px);
      box-shadow: 0 12px 30px rgba(255, 153, 0, 0.4);
    }

    /* FAQ Accordion Styles */
    .faq {
      margin: 3rem 0;
    }

    .faq h2 {
      font-size: 1.75rem;
      margin-bottom: 1.5rem;
      color: var(--color-dark);
    }

    .faq-item {
      background: white;
      border: 1px solid var(--color-gray-200);
      border-radius: 10px;
      margin-bottom: 1rem;
      overflow: hidden;
      transition: var(--transition);
    }

    .faq-item:hover {
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    }

    .faq-question {
      padding: 1.25rem;
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      background: white;
      border: none;
      width: 100%;
      font-size: 1rem;
      font-weight: 600;
      color: var(--color-dark);
      transition: var(--transition);
    }

    .faq-question:hover {
      background: var(--color-gray-50);
    }

    .faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s ease;
      background: var(--color-gray-50);
    }

    .faq-item input[type="checkbox"]:checked + .faq-question + .faq-answer {
      max-height: 1000px;
    }

    .faq-answer p {
      padding: 1.25rem;
      color: var(--color-gray-600);
      line-height: 1.8;
    }

    .conclusion {
      background: linear-gradient(135deg, rgba(59, 130, 246, 0.05), rgba(16, 185, 129, 0.05));
      border-radius: 12px;
      padding: 2.5rem;
      margin: 3rem 0;
      border: 1px solid rgba(59, 130, 246, 0.1);
    }

    .conclusion h2 {
      font-size: 1.75rem;
      margin-bottom: 1.5rem;
      color: var(--color-dark);
    }

    .conclusion p {
      margin-bottom: 1rem;
      color: var(--color-gray-600);
      line-height: 1.8;
    }

    /* ===================================================================
       ROUNDUP PAGE STYLES
       =================================================================== */

    .roundup-hero {
      background: linear-gradient(135deg, var(--color-dark) 0%, var(--color-dark-light) 100%);
      padding: 4rem 1.5rem;
      color: white;
    }

    .roundup-hero .hero-title {
      font-size: clamp(2rem, 5vw, 3.5rem);
      margin-bottom: 1rem;
    }

    .roundup-intro {
      margin: 2rem 0 3rem;
      font-size: 1.05rem;
      line-height: 1.8;
      color: var(--color-gray-600);
    }

    .breadcrumb-section {
      padding: 1.5rem 0;
      background: var(--color-gray-50);
      border-bottom: 1px solid var(--color-gray-200);
    }

    .breadcrumb-section nav {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      font-size: 0.9rem;
    }

    .breadcrumb-section a {
      color: var(--color-primary);
      text-decoration: none;
      transition: var(--transition);
    }

    .breadcrumb-section a:hover {
      color: var(--color-primary-dark);
    }

    .breadcrumb-section ol {
      list-style: none;
      display: flex;
      gap: 0.5rem;
      flex-wrap: wrap;
      align-items: center;
    }

    .breadcrumb-section ol li::before {
      content: '/';
      margin: 0 0.5rem;
      color: var(--color-gray-400);
    }

    .breadcrumb-section ol li:first-child::before {
      content: '';
      margin: 0;
    }

    .product-entry {
      background: white;
      border-radius: 12px;
      padding: 2rem;
      margin-bottom: 2rem;
      display: grid;
      grid-template-columns: 120px 1fr;
      gap: 2rem;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
      transition: var(--transition);
      align-items: center;
    }

    .product-entry:hover {
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
      transform: translateY(-2px);
    }

    .product-rank {
      font-size: 3.5rem;
      font-weight: 700;
      background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      text-align: center;
    }

    @media (max-width: 768px) {
      .product-entry {
        grid-template-columns: 1fr;
        padding: 1.5rem;
      }

      .product-rank {
        text-align: left;
      }
    }

    .comparison-table {
      width: 100%;
      border-collapse: collapse;
      background: white;
      border-radius: 12px;
      overflow: hidden;
      margin: 2rem 0;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    }

    .comparison-table thead {
      background: linear-gradient(135deg, var(--color-dark), var(--color-dark-light));
      color: white;
    }

    .comparison-table th {
      padding: 1.25rem;
      text-align: left;
      font-weight: 600;
      cursor: pointer;
      user-select: none;
      font-size: 0.95rem;
      white-space: nowrap;
    }

    .comparison-table th:hover {
      background: var(--color-dark-light);
    }

    .comparison-table td {
      padding: 1.25rem;
      border-bottom: 1px solid var(--color-gray-200);
      color: var(--color-gray-600);
    }

    .comparison-table tbody tr {
      transition: var(--transition);
    }

    .comparison-table tbody tr:hover {
      background: var(--color-gray-50);
    }

    .comparison-table tbody tr:last-child td {
      border-bottom: none;
    }

    .table-note {
      font-size: 0.9rem;
      color: var(--color-gray-500);
      text-align: center;
      margin-top: 1.5rem;
      font-style: italic;
    }

    .advice-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 2rem;
      margin: 2rem 0;
    }

    .advice-card {
      background: white;
      border: 1px solid var(--color-gray-200);
      border-radius: 12px;
      padding: 2rem;
      text-align: center;
      transition: var(--transition);
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    }

    .advice-card:hover {
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
      transform: translateY(-4px);
    }

    .advice-card h3 {
      font-size: 1.1rem;
      margin-bottom: 1rem;
      color: var(--color-dark);
    }

    .advice-card p {
      font-size: 0.95rem;
      color: var(--color-gray-600);
      margin: 0;
    }

    .advice-card p:first-of-type {
      font-weight: 600;
      color: var(--color-primary);
      margin-bottom: 0.5rem;
    }

    /* ===================================================================
       VERSUS PAGE STYLES
       =================================================================== */

    .versus-hero {
      background: linear-gradient(135deg, var(--color-dark) 0%, var(--color-dark-light) 100%);
      padding: 3rem 1.5rem;
      color: white;
    }

    .article {
      max-width: 100%;
    }

    .article-header {
      margin: 2rem 0 3rem;
      text-align: center;
    }

    .article-header h1 {
      font-size: clamp(1.75rem, 4vw, 2.75rem);
      margin-bottom: 1rem;
      color: var(--color-dark);
    }

    .article-subtitle {
      font-size: 1.1rem;
      color: var(--color-gray-600);
      margin: 0;
    }

    .comparison-header {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 2rem;
      margin: 2rem 0;
      align-items: start;
    }

    @media (max-width: 768px) {
      .comparison-header {
        grid-template-columns: 1fr;
      }
    }

    .specs-comparison {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 2rem;
      margin: 2rem 0;
    }

    .specs-comparison > div {
      background: white;
      border-radius: 12px;
      padding: 2rem;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    }

    .specs-comparison h3 {
      font-size: 1.25rem;
      margin-bottom: 1.5rem;
      color: var(--color-dark);
      border-bottom: 2px solid var(--color-primary);
      padding-bottom: 0.75rem;
    }

    .specs-comparison ul {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }

    .specs-comparison li {
      display: flex;
      gap: 0.75rem;
      font-size: 0.95rem;
      color: var(--color-gray-600);
    }

    .specs-comparison li::before {
      content: '✓';
      color: var(--color-secondary);
      font-weight: 700;
      flex-shrink: 0;
    }

    @media (max-width: 768px) {
      .specs-comparison {
        grid-template-columns: 1fr;
      }
    }

    .winner-badge {
      display: inline-block;
      background: linear-gradient(135deg, var(--color-secondary), #059669);
      color: white;
      padding: 0.5rem 1rem;
      border-radius: 20px;
      font-size: 0.85rem;
      font-weight: 700;
      margin-bottom: 1rem;
    }

    .versus-verdict {
      background: linear-gradient(135deg, rgba(59, 130, 246, 0.05), rgba(16, 185, 129, 0.05));
      border-left: 4px solid var(--color-primary);
      border-radius: 8px;
      padding: 2rem;
      margin: 2rem 0;
    }

    .versus-verdict h3 {
      color: var(--color-primary);
      margin-bottom: 1rem;
    }

    .versus-verdict ul {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 0.75rem;
    }

    .versus-verdict li {
      display: flex;
      gap: 0.75rem;
      align-items: flex-start;
      color: var(--color-gray-600);
    }

    .versus-verdict li::before {
      content: '→';
      color: var(--color-primary);
      font-weight: 700;
      flex-shrink: 0;
      margin-top: 2px;
    }

    .model-card {
      background: white;
      border: 1px solid var(--color-gray-200);
      border-radius: 12px;
      padding: 2rem;
      margin-bottom: 1.5rem;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    }

    .model-card h3 {
      color: var(--color-primary);
      margin-bottom: 1rem;
      font-size: 1.15rem;
    }

    .model-card ul {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 0.75rem;
    }

    .model-card li {
      font-size: 0.95rem;
      color: var(--color-gray-600);
    }

    .comparison-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 2rem;
      margin: 2rem 0;
    }

    .decision-guide {
      background: var(--color-gray-50);
      border-radius: 12px;
      padding: 2.5rem;
      margin: 2rem 0;
      border: 1px solid var(--color-gray-200);
    }

    .decision-guide h2 {
      color: var(--color-dark);
      margin-bottom: 1.5rem;
      font-size: 1.5rem;
    }

    .decision-guide ul {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 1rem;
      margin-bottom: 2rem;
    }

    .decision-guide ul:last-of-type {
      margin-bottom: 0;
    }

    .decision-guide li {
      display: flex;
      gap: 0.75rem;
      align-items: flex-start;
      font-size: 0.95rem;
      color: var(--color-gray-600);
    }

    .decision-guide li::before {
      content: '✓';
      color: var(--color-secondary);
      font-weight: 700;
      flex-shrink: 0;
      margin-top: 2px;
    }

    /* Accordion for FAQ */
    .accordion {
      margin: 2rem 0;
    }

    details {
      background: white;
      border: 1px solid var(--color-gray-200);
      border-radius: 10px;
      margin-bottom: 1rem;
      overflow: hidden;
      transition: var(--transition);
    }

    details:hover {
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    }

    details summary {
      padding: 1.25rem;
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-weight: 600;
      color: var(--color-dark);
      user-select: none;
      transition: var(--transition);
    }

    details summary:hover {
      background: var(--color-gray-50);
    }

    details[open] summary {
      background: var(--color-gray-50);
    }

    details summary::marker {
      color: var(--color-primary);
    }

    details p {
      padding: 0 1.25rem 1.25rem;
      margin: 0;
      color: var(--color-gray-600);
      line-height: 1.8;
    }

    details ul {
      margin: 0;
      padding: 0 2.5rem 1.25rem 2.5rem;
      list-style: disc;
      color: var(--color-gray-600);
    }

    details li {
      margin-bottom: 0.5rem;
    }

    /* ===================================================================
       GUIDE PAGE STYLES
       =================================================================== */

    .guide-hero {
      background: linear-gradient(135deg, var(--color-dark) 0%, var(--color-dark-light) 100%);
      padding: 4rem 1.5rem;
      color: white;
      text-align: center;
    }

    .guide-hero .hero-title {
      font-size: clamp(2rem, 5vw, 3.5rem);
      margin-bottom: 1rem;
    }

    .guide-hero .hero-subtitle {
      font-size: 1.15rem;
      color: var(--color-gray-300);
    }

    .guide-content {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 3rem;
      align-items: start;
    }

    @media (max-width: 1024px) {
      .guide-content {
        grid-template-columns: 1fr;
      }
    }

    .guide-sidebar {
      position: sticky;
      top: 100px;
      height: fit-content;
    }

    .toc-section {
      background: var(--color-gray-50);
      border-radius: 12px;
      padding: 2rem;
      margin-bottom: 2rem;
      border: 1px solid var(--color-gray-200);
    }

    .toc-section h2 {
      font-size: 1.25rem;
      margin-bottom: 1.5rem;
      color: var(--color-dark);
    }

    .toc-list {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 0.75rem;
    }

    .toc-list li {
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }

    .toc-list a {
      color: var(--color-primary);
      text-decoration: none;
      font-weight: 500;
      transition: var(--transition);
    }

    .toc-list a:hover {
      color: var(--color-primary-dark);
      padding-left: 0.5rem;
    }

    .article-content {
      margin: 2rem 0;
    }

    .guide-step {
      background: white;
      border-left: 4px solid var(--color-primary);
      border-radius: 8px;
      padding: 1.75rem;
      margin: 1.5rem 0;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    }

    .guide-step h3 {
      color: var(--color-dark);
      margin-bottom: 0.75rem;
    }

    .guide-step p {
      color: var(--color-gray-600);
      margin-bottom: 0.5rem;
      line-height: 1.6;
    }

    .guide-step p:last-child {
      margin-bottom: 0;
    }

    .tip-box {
      background: linear-gradient(135deg, rgba(16, 185, 129, 0.05), rgba(16, 185, 129, 0.02));
      border-left: 4px solid var(--color-secondary);
      border-radius: 8px;
      padding: 1.5rem;
      margin: 1.5rem 0;
    }

    .tip-box strong {
      color: var(--color-secondary);
      display: block;
      margin-bottom: 0.5rem;
      font-size: 0.9rem;
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }

    .tip-box p {
      color: var(--color-gray-600);
      margin: 0;
      line-height: 1.6;
    }

    .warning-box {
      background: linear-gradient(135deg, rgba(239, 68, 68, 0.05), rgba(239, 68, 68, 0.02));
      border-left: 4px solid var(--color-warning);
      border-radius: 8px;
      padding: 1.5rem;
      margin: 1.5rem 0;
    }

    .warning-box strong {
      color: var(--color-warning);
      display: block;
      margin-bottom: 0.5rem;
      font-size: 0.9rem;
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }

    .warning-box p {
      color: var(--color-gray-600);
      margin: 0;
      line-height: 1.6;
    }

    .toc {
      background: var(--color-gray-50);
      border: 1px solid var(--color-gray-200);
      border-radius: 10px;
      padding: 1.5rem;
      margin: 2rem 0;
    }

    .toc h3 {
      font-size: 1.05rem;
      margin-bottom: 1rem;
      color: var(--color-dark);
    }

    .toc ul {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 0.5rem;
    }

    .toc a {
      color: var(--color-primary);
      text-decoration: none;
      font-weight: 500;
      transition: var(--transition);
      display: block;
      padding: 0.25rem 0;
    }

    .toc a:hover {
      padding-left: 0.5rem;
      color: var(--color-primary-dark);
    }

    .article-footer {
      background: var(--color-gray-50);
      border-radius: 8px;
      padding: 1.5rem;
      margin-top: 2rem;
      font-size: 0.9rem;
      color: var(--color-gray-600);
      border-left: 3px solid var(--color-primary);
    }

    .article-footer a {
      color: var(--color-primary);
      font-weight: 600;
    }

    /* ===================================================================
       COMMON ELEMENTS ACROSS ALL SUBPAGES
       =================================================================== */

    .cta-section {
      background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
      color: white;
      padding: 4rem 1.5rem;
      text-align: center;
      border-radius: 12px;
      margin: 3rem 0;
    }

    .cta-section h2 {
      font-size: 2rem;
      margin-bottom: 1rem;
    }

    .cta-section p {
      font-size: 1.05rem;
      margin-bottom: 2rem;
      color: rgba(255, 255, 255, 0.95);
    }

    .cta-buttons {
      display: flex;
      gap: 1.5rem;
      justify-content: center;
      flex-wrap: wrap;
    }

    .btn-lg {
      padding: 1.25rem 2.5rem;
      font-size: 1.05rem;
    }

    .btn-primary.btn-lg {
      background: white;
      color: var(--color-primary);
    }

    .btn-primary.btn-lg:hover {
      background: var(--color-gray-100);
      transform: translateY(-2px);
    }

    .btn-secondary.btn-lg {
      background: rgba(255, 255, 255, 0.2);
      border: 2px solid rgba(255, 255, 255, 0.4);
      color: white;
    }

    .btn-secondary.btn-lg:hover {
      background: rgba(255, 255, 255, 0.3);
      border-color: rgba(255, 255, 255, 0.6);
      transform: translateY(-2px);
    }

    .affiliate-banner {
      background: linear-gradient(135deg, var(--color-dark) 0%, var(--color-dark-light) 100%);
      color: var(--color-gray-200);
      padding: 1rem 1.5rem;
      font-size: 0.85rem;
      text-align: center;
      border-bottom: 1px solid var(--color-gray-700);
    }

    .affiliate-banner a {
      color: var(--color-primary);
      font-weight: 600;
    }

    .affiliate-disclaimer {
      background: linear-gradient(135deg, var(--color-dark) 0%, var(--color-dark-light) 100%);
      color: var(--color-gray-200);
      padding: 1rem 1.5rem;
      font-size: 0.85rem;
      border-bottom: 1px solid var(--color-gray-700);
    }

    .affiliate-disclaimer a {
      color: var(--color-primary);
      font-weight: 600;
    }

    .table-responsive {
      overflow-x: auto;
      border-radius: 12px;
    }

    @media (max-width: 768px) {
      .cta-buttons {
        flex-direction: column;
      }

      .btn-lg {
        width: 100%;
      }
    }

    /* Responsive improvements for subpage layouts */
    @media (max-width: 640px) {
      .hero-section,
      .versus-hero,
      .guide-hero,
      .roundup-hero {
        padding: 2.5rem 1rem;
      }

      .hero-section h1,
      .article-header h1 {
        font-size: 1.75rem;
      }

      .score-badge {
        width: 120px;
        height: 120px;
      }

      .score-number {
        font-size: 2.75rem;
      }

      .quick-answer {
        padding: 1.5rem;
        font-size: 1rem;
      }

      .pros-cons {
        gap: 1rem;
      }

      .affiliate-buttons {
        flex-direction: column;
      }

      .btn-bol,
      .btn-amazon {
        width: 100%;
        padding: 1rem 1.5rem;
      }

      .specs-comparison {
        gap: 1rem;
      }

      .specs-comparison > div {
        padding: 1.5rem;
      }

      .comparison-grid {
        gap: 1rem;
      }

      .toc-section,
      .decision-guide,
      .verdict-box {
        padding: 1.5rem;
      }

      .product-entry {
        padding: 1.5rem;
        gap: 1rem;
      }

      .sidebar-buttons {
        gap: 0.5rem;
      }
    }