/* ============================================
   What's in My Rave Bag — Stylesheet
   Clean & modern with subtle rave accents
   ============================================ */

/* --- Custom Properties --- */
:root {
  --bg-primary: #0e0e12;
  --bg-secondary: #16161d;
  --bg-card: #1c1c26;
  --bg-card-hover: #222230;
  --text-primary: #f0f0f5;
  --text-secondary: #a0a0b5;
  --text-muted: #6a6a80;
  --accent-purple: #a855f7;
  --accent-cyan: #22d3ee;
  --accent-pink: #ec4899;
  --accent-gradient: linear-gradient(135deg, var(--accent-purple), var(--accent-cyan));
  --glow-purple: 0 0 20px rgba(168, 85, 247, 0.3);
  --glow-cyan: 0 0 20px rgba(34, 211, 238, 0.3);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-pill: 50px;
  --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --transition: 0.2s ease;
}

/* --- Reset & Base --- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-family);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

/* --- Hero Section --- */
.hero {
  text-align: center;
  padding: 3rem 1.5rem 2rem;
  background: var(--bg-secondary);
  border-bottom: 1px solid rgba(168, 85, 247, 0.15);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}
.hero[style*="background-image"] {
  padding: 5rem 1.5rem 5rem;
}
.hero[style*="background-image"]::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.35) 50%, rgba(0,0,0,0.6) 100%);
  z-index: 0;
}
.hero[style*="background-image"] .hero-inner {
  position: relative;
  z-index: 1;
}
.hero[style*="background-image"] h1 {
  background: none;
  -webkit-background-clip: unset;
  -webkit-text-fill-color: #fff;
  background-clip: unset;
  text-shadow: 0 2px 15px rgba(0,0,0,0.5);
}
.hero[style*="background-image"] .tagline {
  color: rgba(255,255,255,0.9);
  text-shadow: 0 1px 8px rgba(0,0,0,0.4);
}

.hero-inner {
  max-width: 600px;
  margin: 0 auto;
}

.hero-emoji {
  font-size: 3rem;
  display: block;
  margin-bottom: 0.75rem;
}

.hero h1 {
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
}

.tagline {
  color: var(--text-secondary);
  font-size: 1rem;
  font-weight: 400;
  margin-bottom: 1.25rem;
}

/* --- Social Links --- */
.social-links {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.4rem 0.85rem;
  background: rgba(168, 85, 247, 0.1);
  border: 1px solid rgba(168, 85, 247, 0.2);
  border-radius: var(--radius-pill);
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 500;
  transition: all var(--transition);
}

.social-link:hover {
  background: rgba(168, 85, 247, 0.2);
  color: var(--text-primary);
  border-color: var(--accent-purple);
}

/* --- Category Filters --- */
.filters {
  display: flex;
  gap: 0.5rem;
  padding: 1.25rem 1.5rem;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  max-width: 900px;
  margin: 0 auto;
}

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

.filter-btn {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.5rem 1rem;
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-pill);
  color: var(--text-secondary);
  font-family: var(--font-family);
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}

.filter-btn:hover {
  background: var(--bg-card-hover);
  color: var(--text-primary);
}

.filter-btn.active {
  background: var(--accent-gradient);
  color: #fff;
  border-color: transparent;
  box-shadow: var(--glow-purple);
}

/* --- Product Count --- */
.product-count {
  text-align: center;
  padding: 0 1.5rem 0.75rem;
  color: var(--text-muted);
  font-size: 0.85rem;
  font-weight: 500;
}

/* --- Product Grid --- */
.product-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  padding: 0.5rem 1.5rem 3rem;
  max-width: 900px;
  margin: 0 auto;
}

/* --- Product Card --- */
.product-card {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-md);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.product-card:hover {
  background: var(--bg-card-hover);
  border-color: rgba(168, 85, 247, 0.25);
  box-shadow: var(--glow-purple);
  transform: translateY(-2px);
}

/* Card image area */
.product-card-visual {
  width: 100%;
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  flex-shrink: 0;
}

.product-image {
  width: 100%;
  height: 180px;
  object-fit: contain;
  background: #fff;
  display: block;
}

.product-image-placeholder {
  width: 100%;
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-secondary);
}

.product-emoji {
  font-size: 3.5rem;
  line-height: 1;
}

/* Card body */
.product-card-body {
  padding: 1rem 1.25rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  flex: 1;
}

.product-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.3;
}

.product-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}

.product-category-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--accent-cyan);
  opacity: 0.8;
}

.product-price {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent-purple);
  flex-shrink: 0;
}

.product-description {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.product-why {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-style: italic;
  padding-left: 0.75rem;
  border-left: 2px solid rgba(168, 85, 247, 0.3);
}

.product-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.6rem 1.25rem;
  background: var(--accent-gradient);
  border: none;
  border-radius: var(--radius-pill);
  color: #fff;
  font-family: var(--font-family);
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all var(--transition);
  align-self: flex-start;
  margin-top: auto;
}

.product-cta:hover {
  box-shadow: var(--glow-purple), var(--glow-cyan);
  transform: scale(1.03);
}

/* --- Top Pick Badge --- */
.product-card-visual {
  position: relative;
}

.product-badge {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  padding: 0.25rem 0.65rem;
  background: var(--accent-gradient);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  border-radius: var(--radius-pill);
  z-index: 1;
  letter-spacing: 0.02em;
}

/* --- Product Guide Link --- */
.product-guide-link {
  display: inline-block;
  font-size: 0.78rem;
  color: var(--text-muted);
  text-decoration: none;
  transition: color var(--transition);
}

.product-guide-link:hover {
  color: var(--accent-cyan);
}

/* --- Affiliate Disclosure --- */
.affiliate-disclosure {
  text-align: center;
  font-size: 0.75rem;
  font-style: italic;
  color: var(--text-muted);
  padding: 0.75rem 1.5rem;
  max-width: 900px;
  margin: 0 auto;
  background: rgba(168, 85, 247, 0.05);
  border-radius: var(--radius-sm);
}

/* --- Footer --- */
.footer {
  text-align: center;
  padding: 2.5rem 1.5rem;
  background: var(--bg-secondary);
  border-top: 1px solid rgba(168, 85, 247, 0.15);
}

.footer-cta {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.footer .social-links {
  margin-bottom: 1.5rem;
}

.footer-note {
  font-size: 0.75rem;
  color: var(--text-muted);
  max-width: 500px;
  margin: 0 auto 0.75rem;
  line-height: 1.5;
}

.footer-copy {
  font-size: 0.7rem;
  color: var(--text-muted);
  opacity: 0.6;
}

/* --- Mobile: Callout CTAs full-width --- */
@media (max-width: 539px) {
  .product-callout .product-cta {
    width: 100%;
    text-align: center;
    font-size: 0.9rem;
    padding: 0.75rem 1.25rem;
  }
}

/* --- Responsive: Tablet (2-col) --- */
@media (min-width: 540px) {
  .hero h1 {
    font-size: 2.5rem;
  }

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

/* --- Responsive: Desktop (3-col) --- */
@media (min-width: 860px) {
  .hero {
    padding: 4rem 2rem 2.5rem;
  }
  .hero[style*="background-image"] {
    padding: 6rem 2rem 6rem;
  }

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

  .product-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    padding: 0.5rem 2rem 4rem;
  }

  .filters {
    justify-content: center;
    flex-wrap: wrap;
    padding: 1.5rem 2rem;
  }
}

/* --- Animation for card entrance --- */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.product-card {
  animation: fadeInUp 0.3s ease forwards;
}

.product-card:nth-child(1)  { animation-delay: 0.02s; }
.product-card:nth-child(2)  { animation-delay: 0.04s; }
.product-card:nth-child(3)  { animation-delay: 0.06s; }
.product-card:nth-child(4)  { animation-delay: 0.08s; }
.product-card:nth-child(5)  { animation-delay: 0.10s; }
.product-card:nth-child(6)  { animation-delay: 0.12s; }
.product-card:nth-child(7)  { animation-delay: 0.14s; }
.product-card:nth-child(8)  { animation-delay: 0.16s; }
.product-card:nth-child(9)  { animation-delay: 0.18s; }
.product-card:nth-child(10) { animation-delay: 0.20s; }

/* ============================================
   Site Navigation
   ============================================ */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(14, 14, 18, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(168, 85, 247, 0.15);
  padding: 0.65rem 1.5rem;
}

.site-nav-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-nav-brand {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  text-decoration: none;
  letter-spacing: -0.01em;
}

.site-nav-links {
  display: flex;
  gap: 0.25rem;
}

.site-nav-link {
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-secondary);
  text-decoration: none;
  transition: all var(--transition);
}

.site-nav-link:hover {
  color: var(--text-primary);
  background: rgba(168, 85, 247, 0.1);
}

.site-nav-link.active {
  color: #fff;
  background: var(--accent-gradient);
}

/* ============================================
   Reading Progress Bar
   ============================================ */
.reading-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: var(--accent-gradient);
  z-index: 200;
  transition: width 0.1s linear;
}

/* ============================================
   Blog Listing Page
   ============================================ */
.blog-hero {
  text-align: center;
  padding: 2.5rem 1.5rem 1.5rem;
  background: var(--bg-secondary);
  border-bottom: 1px solid rgba(168, 85, 247, 0.15);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}
.blog-hero[style*="background-image"] {
  padding: 4.5rem 1.5rem 4.5rem;
}
.blog-hero[style*="background-image"]::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.35) 50%, rgba(0,0,0,0.6) 100%);
  z-index: 0;
}
.blog-hero[style*="background-image"] > * {
  position: relative;
  z-index: 1;
}
.blog-hero[style*="background-image"] h1 {
  background: none;
  -webkit-background-clip: unset;
  -webkit-text-fill-color: #fff;
  background-clip: unset;
  text-shadow: 0 2px 15px rgba(0,0,0,0.5);
}
.blog-hero[style*="background-image"] p {
  color: rgba(255,255,255,0.9);
  text-shadow: 0 1px 8px rgba(0,0,0,0.4);
}

.blog-hero h1 {
  font-size: 2rem;
  font-weight: 800;
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
}

.blog-hero p {
  color: var(--text-secondary);
  font-size: 1rem;
  max-width: 550px;
  margin: 0 auto;
}

.blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  padding: 2rem 1.5rem 3rem;
  max-width: 900px;
  margin: 0 auto;
}

.blog-card {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  text-decoration: none;
  color: inherit;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.blog-card:hover {
  background: var(--bg-card-hover);
  border-color: rgba(168, 85, 247, 0.25);
  box-shadow: var(--glow-purple);
  transform: translateY(-2px);
}

.blog-card-emoji {
  font-size: 2rem;
}

.blog-card-icon {
  width: 2rem;
  height: 2rem;
  flex-shrink: 0;
}

.blog-card h2 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.3;
}

.blog-card p {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.blog-card-meta {
  display: flex;
  gap: 1rem;
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* Featured Blog Card */
.blog-card-featured {
  grid-column: 1 / -1;
  border-color: rgba(168, 85, 247, 0.3);
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.08), rgba(34, 211, 238, 0.05));
  padding: 2rem;
}

.blog-card-featured h2 {
  font-size: 1.35rem;
}

.blog-card-featured p {
  font-size: 0.95rem;
}

/* ============================================
   Article Layout
   ============================================ */
.article-header {
  text-align: center;
  padding: 2.5rem 1.5rem 1.5rem;
  background: var(--bg-secondary);
  border-bottom: 1px solid rgba(168, 85, 247, 0.15);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}
.article-header[style*="background-image"] {
  padding: 4.5rem 1.5rem 4.5rem;
}
.article-header[style*="background-image"]::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.35) 50%, rgba(0,0,0,0.6) 100%);
  z-index: 0;
}
.article-header[style*="background-image"] > * {
  position: relative;
  z-index: 1;
}
.article-header[style*="background-image"] h1 {
  color: #fff;
  text-shadow: 0 2px 15px rgba(0,0,0,0.5);
}
.article-header[style*="background-image"] .article-meta {
  color: rgba(255,255,255,0.85);
  text-shadow: 0 1px 8px rgba(0,0,0,0.4);
}

.article-header h1 {
  font-size: 1.85rem;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.2;
  max-width: 700px;
  margin: 0 auto 0.75rem;
}

.article-header .article-meta {
  color: var(--text-muted);
  font-size: 0.8rem;
  font-weight: 500;
}

/* Breadcrumbs */
.breadcrumbs {
  padding: 0.75rem 1.5rem;
  max-width: 760px;
  margin: 0 auto;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.breadcrumbs a {
  color: var(--text-secondary);
  text-decoration: none;
}

.breadcrumbs a:hover {
  color: var(--accent-purple);
}

.breadcrumbs span {
  margin: 0 0.35rem;
}

/* Table of Contents */
.toc {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  margin-bottom: 2rem;
}

.toc-title {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

.toc ol {
  list-style: none;
  counter-reset: toc-counter;
  padding: 0;
}

.toc li {
  counter-increment: toc-counter;
  margin-bottom: 0.4rem;
}

.toc li::before {
  content: counter(toc-counter) ". ";
  color: var(--accent-purple);
  font-weight: 600;
  font-size: 0.85rem;
}

.toc a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color var(--transition);
}

.toc a:hover {
  color: var(--accent-cyan);
}

/* Article Content */
.article-content {
  max-width: 760px;
  margin: 0 auto;
  padding: 2rem 1.5rem 3rem;
  line-height: 1.75;
}

.article-content h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 2.5rem 0 1rem;
  padding-top: 1rem;
}

.article-content h3 {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-primary);
  margin: 1.75rem 0 0.75rem;
}

.article-content p {
  color: var(--text-secondary);
  margin-bottom: 1.25rem;
}

.article-content ul,
.article-content ol {
  color: var(--text-secondary);
  margin-bottom: 1.25rem;
  padding-left: 1.5rem;
}

.article-content li {
  margin-bottom: 0.5rem;
}

.article-content strong {
  color: var(--text-primary);
  font-weight: 600;
}

.article-content a {
  color: var(--accent-cyan);
  text-decoration: underline;
  text-decoration-color: rgba(34, 211, 238, 0.3);
  text-underline-offset: 2px;
  transition: text-decoration-color var(--transition);
}

.article-content a:hover {
  text-decoration-color: var(--accent-cyan);
}

/* Article Tables */
.article-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  font-size: 0.95rem;
}

.article-content th,
.article-content td {
  padding: 0.75rem 1rem;
  text-align: left;
  border-bottom: 1px solid rgba(168, 85, 247, 0.15);
}

.article-content thead th {
  background: rgba(168, 85, 247, 0.1);
  color: var(--accent-purple);
  font-weight: 600;
  white-space: nowrap;
}

.article-content tbody tr:hover {
  background: rgba(168, 85, 247, 0.05);
}

/* Product Callout Cards */
.product-callout {
  background: var(--bg-card);
  border: 1px solid rgba(168, 85, 247, 0.2);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  margin: 1.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.product-callout-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.product-callout-emoji {
  font-size: 1.75rem;
  flex-shrink: 0;
}

.product-callout-img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  background: #fff;
  border-radius: var(--radius-sm);
  flex-shrink: 0;
}

.product-callout-info {
  flex: 1;
}

.product-callout-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
}

.product-callout-price {
  font-size: 0.85rem;
  color: var(--accent-purple);
  font-weight: 600;
}

.product-callout p {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 0;
}

.product-callout .product-cta {
  align-self: flex-start;
  margin-top: 0.5rem;
  font-size: 0.8rem;
  padding: 0.5rem 1rem;
}

/* Article Share Buttons */
.article-actions {
  display: flex;
  gap: 0.5rem;
  margin: 2rem 0;
  flex-wrap: wrap;
}

.article-actions button,
.article-actions a {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.5rem 1rem;
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-pill);
  color: var(--text-secondary);
  font-family: var(--font-family);
  font-size: 0.8rem;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  transition: all var(--transition);
}

.article-actions button:hover,
.article-actions a:hover {
  background: var(--bg-card-hover);
  color: var(--text-primary);
  border-color: rgba(168, 85, 247, 0.25);
}

/* Related Articles */
.related-articles {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(168, 85, 247, 0.15);
}

.related-articles h2 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.related-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}

.related-card {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-md);
  padding: 1rem;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  transition: all var(--transition);
}

.related-card:hover {
  background: var(--bg-card-hover);
  border-color: rgba(168, 85, 247, 0.25);
}

.related-card-emoji {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.related-card-icon {
  width: 1.5rem;
  height: 1.5rem;
  flex-shrink: 0;
  stroke: var(--accent-purple);
  transition: stroke var(--transition);
}

.related-card:hover .related-card-icon {
  stroke: var(--accent-cyan);
}

.related-card-title {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-primary);
}

/* CTA Banner */
.cta-banner {
  background: var(--bg-card);
  border: 1px solid rgba(168, 85, 247, 0.3);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  text-align: center;
  margin-top: 2rem;
}

.cta-banner h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.cta-banner p {
  font-size: 0.875rem;
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

.cta-banner .product-cta {
  display: inline-flex;
}

/* FAQ Section */
.faq-item {
  margin-bottom: 1.5rem;
}

.faq-item h3 {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.faq-item p {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

/* ============================================
   Blog Responsive Adjustments
   ============================================ */
@media (min-width: 540px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .related-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .article-header h1 {
    font-size: 2.25rem;
  }
  .blog-hero h1 {
    font-size: 2.5rem;
  }
}

@media (min-width: 860px) {
  .blog-grid {
    gap: 1.5rem;
    padding: 2.5rem 2rem 4rem;
  }
  .article-header {
    padding: 3rem 2rem 2rem;
  }
  .article-header[style*="background-image"] {
    padding: 5.5rem 2rem 5.5rem;
  }
  .article-header h1 {
    font-size: 2.5rem;
  }
  .article-content {
    padding: 2.5rem 2rem 4rem;
  }
  .related-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .product-callout {
    flex-direction: row;
    align-items: center;
    gap: 1rem;
  }
  .product-callout .product-cta {
    align-self: center;
    margin-top: 0;
    flex-shrink: 0;
  }
}
