/* ============================================
   TIJDSCHRIFTEN-PROEFABONNEMENTEN.NL
   E-commerce deal platform — Greetz/VV style
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&display=swap');

:root {
  --pink: #E8457C;
  --pink-hover: #D13568;
  --pink-light: #FEF0F4;
  --blue: #2563EB;
  --blue-light: #EFF6FF;
  --green: #16A34A;
  --green-light: #F0FDF4;
  --orange: #EA580C;
  --orange-light: #FFF7ED;
  --navy: #1F1F3D;
  --text: #374151;
  --text-light: #6B7280;
  --border: #E5E7EB;
  --bg-alt: #F9FAFB;
  --white: #FFFFFF;
  --shadow-card: 0 1px 3px rgba(0,0,0,.06), 0 4px 12px rgba(0,0,0,.04);
  --shadow-card-hover: 0 4px 16px rgba(0,0,0,.1);
  --font: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { -webkit-font-smoothing: antialiased; scroll-behavior: smooth; }

body {
  font-family: var(--font);
  font-size: 15px;
  line-height: 1.6;
  color: var(--text);
  background: var(--white);
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ============================================
   HEADER
   ============================================ */
.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-top {
  display: flex;
  align-items: center;
  height: 70px;
  gap: 20px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.logo img {
  width: 40px;
  height: 40px;
  border-radius: 10px;
}

.logo-name {
  font-weight: 700;
  font-size: 13px;
  color: var(--navy);
  line-height: 1.15;
  display: flex;
  flex-direction: column;
}

.logo-name span {
  color: var(--pink);
  font-size: 11px;
  font-weight: 600;
}

/* Search bar */
.search-bar {
  flex: 1;
  max-width: 480px;
  position: relative;
}

.search-bar input {
  width: 100%;
  height: 44px;
  border: 2px solid var(--border);
  border-radius: 24px;
  padding: 0 48px 0 20px;
  font-family: var(--font);
  font-size: 14px;
  color: var(--navy);
  outline: none;
  transition: border-color .2s;
}

.search-bar input::placeholder { color: var(--text-light); }
.search-bar input:focus { border-color: var(--pink); }

.search-bar button {
  position: absolute;
  right: 4px;
  top: 4px;
  width: 36px;
  height: 36px;
  background: var(--pink);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s;
}

.search-bar button:hover { background: var(--pink-hover); }

.search-bar svg {
  width: 16px;
  height: 16px;
  color: #fff;
  stroke: currentColor;
}

/* Header nav */
.header-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
}

.header-nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  padding: 8px 14px;
  border-radius: 8px;
  transition: all .15s;
}

.header-nav a:hover {
  background: var(--bg-alt);
  color: var(--navy);
}

.btn-pink {
  background: var(--pink) !important;
  color: #fff !important;
  font-weight: 600 !important;
  border-radius: 24px !important;
  padding: 8px 20px !important;
}

.btn-pink:hover {
  background: var(--pink-hover) !important;
}

/* Mobile toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}

.menu-toggle span {
  width: 22px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all .2s;
}

/* ---- Category bar ---- */
.cat-bar {
  border-bottom: 1px solid var(--border);
  background: var(--white);
}

.cat-bar-inner {
  display: flex;
  gap: 0;
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.cat-bar-inner::-webkit-scrollbar { display: none; }

.cat-link {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 12px 16px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: all .15s;
}

.cat-link:hover,
.cat-link.active {
  color: var(--pink);
  border-bottom-color: var(--pink);
}

.cat-link .ico { font-size: 15px; }

/* ============================================
   HERO BANNER — Full-width image style
   ============================================ */
.hero {
  position: relative;
  background: linear-gradient(135deg, #FF6B9D 0%, #C850C0 40%, #6C63FF 100%);
  overflow: hidden;
}

.hero-inner {
  display: flex;
  align-items: center;
  min-height: 280px;
  gap: 40px;
  padding: 40px 0;
  position: relative;
  z-index: 1;
}

.hero-content {
  flex: 1;
  color: #fff;
}

.hero-content h1 {
  font-size: 32px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 12px;
  color: #fff;
}

.hero-content p {
  font-size: 16px;
  opacity: .9;
  margin-bottom: 20px;
  max-width: 440px;
  line-height: 1.6;
}

.hero-btns {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.btn-hero {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: 24px;
  transition: all .2s;
}

.btn-hero-white {
  background: #fff;
  color: var(--navy);
}

.btn-hero-white:hover { background: #f0f0f0; transform: translateY(-1px); }

.btn-hero-outline {
  background: rgba(255,255,255,.15);
  color: #fff;
  border: 2px solid rgba(255,255,255,.4);
}

.btn-hero-outline:hover { background: rgba(255,255,255,.25); border-color: #fff; }

/* Hero magazine images */
.hero-magazines {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.hero-mag {
  width: 130px;
  height: 174px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,.25);
  transition: transform .3s;
}

.hero-mag:nth-child(2) { transform: translateY(-12px); }

.hero-mag:hover { transform: translateY(-6px); }
.hero-mag:nth-child(2):hover { transform: translateY(-18px); }

.hero-mag img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Decorative circles */
.hero::before {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  background: rgba(255,255,255,.06);
  border-radius: 50%;
  top: -100px;
  right: -80px;
}

.hero::after {
  content: '';
  position: absolute;
  width: 250px;
  height: 250px;
  background: rgba(255,255,255,.05);
  border-radius: 50%;
  bottom: -60px;
  left: 10%;
}

/* ============================================
   USP BAR
   ============================================ */
.usp-bar {
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
}

.usp-list {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

.usp-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
}

.usp-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  flex-shrink: 0;
}

.usp-icon.green { background: var(--green-light); color: var(--green); }
.usp-icon.blue { background: var(--blue-light); color: var(--blue); }
.usp-icon.orange { background: var(--orange-light); color: var(--orange); }

/* ============================================
   SECTION HEADERS
   ============================================ */
.section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.section-head h2 {
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
}

.section-head a {
  font-size: 14px;
  font-weight: 600;
  color: var(--pink);
  display: flex;
  align-items: center;
  gap: 4px;
}

.section-head a:hover { text-decoration: underline; }

.section-pad {
  padding: 32px 0;
}

.section-grey {
  background: var(--bg-alt);
}

/* ============================================
   DEAL CARDS — Greetz-style product cards
   ============================================ */
.deal-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.deal-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: box-shadow .2s, transform .2s;
  display: flex;
  flex-direction: column;
}

.deal-card:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-3px);
}

.deal-card-img {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--bg-alt);
}

.deal-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .3s;
}

.deal-card:hover .deal-card-img img { transform: scale(1.04); }

/* Badges */
.deal-badges {
  position: absolute;
  top: 10px;
  left: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}

.badge {
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 6px;
  line-height: 1;
}

.badge-sale { background: var(--pink); color: #fff; }
.badge-gift { background: var(--orange); color: #fff; }
.badge-auto { background: var(--green); color: #fff; }

/* Card body */
.deal-card-body {
  padding: 14px 16px 18px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.deal-cat {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: var(--pink);
  margin-bottom: 4px;
}

.deal-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
  line-height: 1.35;
}

.deal-desc {
  font-size: 13px;
  color: var(--text-light);
  margin-bottom: 14px;
  flex: 1;
}

.deal-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.deal-pricing strong {
  font-size: 20px;
  font-weight: 800;
  color: var(--navy);
}

.deal-pricing del {
  font-size: 13px;
  color: var(--text-light);
  margin-left: 6px;
}

.deal-btn {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: var(--pink);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 20px;
  transition: background .15s;
}

.deal-btn:hover { background: var(--pink-hover); }

/* ============================================
   CATEGORY CARDS — Rounded image tiles
   ============================================ */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.cat-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 16/10;
  display: flex;
  align-items: flex-end;
  box-shadow: var(--shadow-card);
  transition: transform .2s, box-shadow .2s;
}

.cat-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-card-hover);
}

.cat-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s;
}

.cat-card:hover img { transform: scale(1.06); }

.cat-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.65) 0%, rgba(0,0,0,.05) 60%);
}

.cat-card-text {
  position: relative;
  z-index: 1;
  padding: 16px 18px;
  color: #fff;
}

.cat-card-text h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 2px;
  color: #fff;
}

.cat-card-text span {
  font-size: 12px;
  opacity: .85;
}

/* ============================================
   PROMO BANNER — Full-width colored strip
   ============================================ */
.promo-banner {
  background: linear-gradient(135deg, #059669, #10B981);
  padding: 24px 0;
}

.promo-inner {
  display: flex;
  align-items: center;
  gap: 20px;
}

.promo-emoji {
  font-size: 36px;
  flex-shrink: 0;
}

.promo-text {
  flex: 1;
  color: #fff;
}

.promo-text strong {
  font-size: 18px;
  font-weight: 700;
  display: block;
  margin-bottom: 2px;
}

.promo-text p {
  font-size: 14px;
  opacity: .9;
}

.btn-promo {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #fff;
  color: #059669;
  font-size: 14px;
  font-weight: 700;
  padding: 10px 24px;
  border-radius: 24px;
  flex-shrink: 0;
  transition: background .15s;
}

.btn-promo:hover { background: #f0fdf4; }

/* ============================================
   POPULAR ROW — Compact horizontal cards
   ============================================ */
.popular-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.pop-card {
  background: var(--white);
  border-radius: 12px;
  box-shadow: var(--shadow-card);
  padding: 14px;
  display: flex;
  gap: 14px;
  align-items: center;
  transition: box-shadow .2s, transform .15s;
}

.pop-card:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-2px);
}

.pop-card-img {
  width: 64px;
  height: 84px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--bg-alt);
}

.pop-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pop-card-info { flex: 1; min-width: 0; }

.pop-card-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 2px;
}

.pop-card-meta {
  font-size: 12px;
  color: var(--text-light);
  margin-bottom: 6px;
}

.pop-card-price {
  font-size: 16px;
  font-weight: 800;
  color: var(--pink);
}

.pop-card-price del {
  font-size: 12px;
  font-weight: 400;
  color: var(--text-light);
  margin-left: 4px;
}

/* ============================================
   HOW IT WORKS — Horizontal numbered steps
   ============================================ */
.steps-section {
  padding: 32px 0;
  background: var(--white);
  border-top: 1px solid var(--border);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}

.step-num {
  width: 40px;
  height: 40px;
  background: var(--pink-light);
  color: var(--pink);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 800;
  margin: 0 auto 10px;
}

.step-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}

.step-desc {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.5;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,.6);
  padding: 48px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.footer-brand p {
  font-size: 13px;
  line-height: 1.7;
  margin-top: 12px;
}

.footer-logo {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
}

.footer-logo span {
  color: var(--pink);
  display: block;
  font-size: 12px;
  font-weight: 600;
}

.footer-col h4 {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: rgba(255,255,255,.35);
  margin-bottom: 16px;
}

.footer-col ul { display: flex; flex-direction: column; gap: 8px; }

.footer-col a {
  font-size: 14px;
  color: rgba(255,255,255,.6);
  transition: color .15s;
}

.footer-col a:hover { color: #fff; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding: 18px 0;
  font-size: 12px;
  color: rgba(255,255,255,.3);
}

/* ============================================
   MOBILE MENU
   ============================================ */
html.nav-open .menu-toggle span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
html.nav-open .menu-toggle span:nth-child(2) { opacity: 0; }
html.nav-open .menu-toggle span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .deal-grid,
  .cat-grid,
  .popular-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .hero-magazines { display: none; }
}

@media (max-width: 768px) {
  .menu-toggle { display: flex; }

  .header-nav {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--white);
    flex-direction: column;
    padding: 16px 20px;
    gap: 2px;
    z-index: 200;
    overflow-y: auto;
    border-top: 1px solid var(--border);
  }

  html.nav-open .header-nav { display: flex; }
  html.nav-open body { overflow: hidden; }
  html.nav-open .cat-bar { display: none; }

  .header-nav a {
    font-size: 16px;
    padding: 14px 16px;
    border-radius: 10px;
  }

  .header-nav .btn-pink {
    text-align: center;
    justify-content: center;
    margin-top: 8px;
  }

  .search-bar { display: none; }

  .hero-inner { min-height: 220px; padding: 28px 0; }
  .hero-content h1 { font-size: 24px; }
  .hero-content p { font-size: 14px; }
  .hero-btns { flex-direction: column; }
  .btn-hero { text-align: center; justify-content: center; }

  .deal-grid,
  .popular-grid { grid-template-columns: 1fr; max-width: 400px; margin-left: auto; margin-right: auto; }
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: 1fr 1fr; }

  .promo-inner { flex-direction: column; text-align: center; }
  .promo-text strong { font-size: 16px; }

  .section-head { flex-wrap: wrap; gap: 8px; }
  .section-head h2 { font-size: 19px; }

  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .footer-bottom { flex-direction: column; gap: 4px; text-align: center; }

  .usp-list { gap: 16px; justify-content: flex-start; overflow-x: auto; flex-wrap: nowrap; -webkit-overflow-scrolling: touch; }
  .usp-item { white-space: nowrap; }

  .logo-name { font-size: 12px; }
  .logo-name span { font-size: 10px; }
}

/* ============================================
   HERO VARIANTS
   ============================================ */
.hero-green {
  background: linear-gradient(135deg, #059669 0%, #10B981 50%, #34D399 100%);
}

.hero-gift {
  background: linear-gradient(135deg, #EC4899 0%, #A855F7 50%, #6366F1 100%);
}

.hero-quiz {
  background: linear-gradient(135deg, #F59E0B 0%, #EF4444 50%, #EC4899 100%);
}

.hero-quiz-icon {
  width: 140px;
  height: 140px;
  background: rgba(255,255,255,.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 64px;
  box-shadow: 0 8px 32px rgba(0,0,0,.15);
}

.hero-gift-icon {
  width: 140px;
  height: 140px;
  background: rgba(255,255,255,.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 64px;
  box-shadow: 0 8px 32px rgba(0,0,0,.15);
  animation: heroFloat 3s ease-in-out infinite;
  position: relative;
}

.hero-gift-icon::before {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 2px dashed rgba(255,255,255,.3);
  animation: heroSpin 12s linear infinite reverse;
}

.hero-visual {
  flex-shrink: 0;
}

.hero-check-icon {
  width: 140px;
  height: 140px;
  background: rgba(255,255,255,.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 64px;
  color: #fff;
  box-shadow: 0 8px 32px rgba(0,0,0,.15);
  animation: heroFloat 3s ease-in-out infinite;
  position: relative;
}

.hero-check-icon::before {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 2px dashed rgba(255,255,255,.3);
  animation: heroSpin 12s linear infinite;
}

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

@keyframes heroSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* ============================================
   GIFT CATEGORY CARDS
   ============================================ */
.gift-cats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.gift-cat-card {
  background: var(--white);
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow-card);
  transition: all .2s;
  border: 2px solid transparent;
}

.gift-cat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
  border-color: var(--pink);
}

.gift-cat-emoji {
  font-size: 48px;
  margin-bottom: 16px;
}

.gift-cat-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}

.gift-cat-card p {
  font-size: 14px;
  color: var(--text-light);
}

/* ============================================
   SECTION COUNT
   ============================================ */
.section-count {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-light);
  background: var(--bg-alt);
  padding: 6px 14px;
  border-radius: 20px;
}

/* ============================================
   TIP SECTION
   ============================================ */
.tip-section {
  padding: 32px 0;
}

.tip-card {
  background: linear-gradient(135deg, #FEF3C7 0%, #FDE68A 100%);
  border-radius: 16px;
  padding: 28px 32px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.tip-icon {
  font-size: 36px;
  flex-shrink: 0;
}

.tip-content h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.tip-content p {
  font-size: 15px;
  color: var(--text);
  line-height: 1.6;
  margin-bottom: 12px;
}

.tip-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--orange);
}

.tip-link:hover {
  text-decoration: underline;
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 800px;
}

.faq-item {
  background: var(--white);
  border-radius: 12px;
  padding: 20px 24px;
  box-shadow: var(--shadow-card);
}

.faq-q {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.faq-a {
  font-size: 14px;
  color: var(--text);
  line-height: 1.7;
}

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
  background: linear-gradient(135deg, #FF6B9D 0%, #C850C0 40%, #6C63FF 100%);
  padding: 48px 0;
}

.cta-inner {
  text-align: center;
  color: #fff;
}

.cta-inner h2 {
  font-size: 26px;
  font-weight: 800;
  margin-bottom: 8px;
  color: #fff;
}

.cta-inner p {
  font-size: 16px;
  opacity: .9;
  margin-bottom: 20px;
}

.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #fff;
  color: var(--navy);
  font-size: 15px;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: 28px;
  transition: all .2s;
}

.btn-cta:hover {
  background: #f0f0f0;
  transform: translateY(-2px);
}

/* ============================================
   QUIZ
   ============================================ */
.quiz-container {
  max-width: 700px;
  margin: 0 auto;
}

.quiz-progress {
  height: 6px;
  background: var(--border);
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 12px;
}

.quiz-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--pink), var(--orange));
  border-radius: 3px;
  width: 33.33%;
  transition: width .4s ease;
}

.quiz-step-indicator {
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-light);
  margin-bottom: 32px;
}

.quiz-question {
  display: none;
}

.quiz-question.active {
  display: block;
  animation: fadeIn .4s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.quiz-question h2 {
  font-size: 26px;
  font-weight: 800;
  color: var(--navy);
  text-align: center;
  margin-bottom: 8px;
}

.quiz-subtitle {
  text-align: center;
  color: var(--text-light);
  margin-bottom: 28px;
}

.quiz-options {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.quiz-option {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: 14px;
  padding: 18px 22px;
  text-align: left;
  transition: all .2s;
  cursor: pointer;
}

.quiz-option:hover {
  border-color: var(--pink);
  background: var(--pink-light);
}

.quiz-option.selected {
  border-color: var(--pink);
  background: var(--pink-light);
  box-shadow: 0 0 0 3px rgba(232, 69, 124, .15);
}

.quiz-option-icon {
  font-size: 32px;
  flex-shrink: 0;
}

.quiz-option-text {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  display: block;
}

.quiz-option-desc {
  font-size: 13px;
  color: var(--text-light);
  display: block;
  margin-top: 2px;
}

/* Quiz Results */
.quiz-results-header {
  text-align: center;
  margin-bottom: 32px;
}

.quiz-results-icon {
  font-size: 48px;
  display: block;
  margin-bottom: 16px;
}

.quiz-results-header h2 {
  font-size: 26px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 8px;
}

.quiz-results-header p {
  color: var(--text-light);
}

.quiz-results .deal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.quiz-restart {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--white);
  color: var(--text);
  font-size: 14px;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: 24px;
  border: 2px solid var(--border);
  transition: all .2s;
  cursor: pointer;
}

.btn-outline:hover {
  border-color: var(--pink);
  color: var(--pink);
}

.btn-pink-large {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--pink);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 24px;
  transition: all .2s;
}

.btn-pink-large:hover {
  background: var(--pink-hover);
}

/* ============================================
   HEADER NAV ACTIVE STATE
   ============================================ */
.header-nav a.active {
  background: var(--pink-light);
  color: var(--pink);
}

@media (max-width: 1024px) {
  .hero-visual { display: none; }
  .tip-card { flex-direction: column; gap: 12px; }
  .gift-cats { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  .gift-cats { grid-template-columns: 1fr; max-width: 320px; margin-left: auto; margin-right: auto; }
  .quiz-question h2 { font-size: 22px; }
  .quiz-option { padding: 14px 16px; gap: 12px; }
  .quiz-option-icon { font-size: 26px; }
  .quiz-results-header h2 { font-size: 22px; }
  .quiz-restart { flex-direction: column; align-items: center; }
  .quiz-results .deal-grid { grid-template-columns: 1fr; max-width: 400px; margin-left: auto; margin-right: auto; }
}

@media (max-width: 768px) {
  .tip-card { padding: 20px; }
  .faq-item { padding: 16px 20px; }
  .cta-inner h2 { font-size: 22px; }
}

@media (max-width: 480px) {
  .cat-grid { grid-template-columns: 1fr; max-width: 320px; margin-left: auto; margin-right: auto; }
  .steps-grid { grid-template-columns: 1fr; }
  .hero-content h1 { font-size: 20px; }
  .hero-inner { min-height: 180px; padding: 20px 0; }
  .cta-inner h2 { font-size: 20px; }
  .cta-inner p { font-size: 14px; }
  .promo-text strong { font-size: 15px; }
  .promo-text p { font-size: 13px; }
  .deal-grid,
  .popular-grid { max-width: 100%; }
  .blog-card-title { font-size: 16px; }
  .contact-form-wrap { padding: 16px; }
  .container { padding: 0 16px; }
  .section-pad { padding: 24px 0; }
}

/* ============================================
   FAQ ACCORDION - Interactive
   ============================================ */
.faq-item {
  cursor: pointer;
  transition: all .2s;
}

.faq-item:hover {
  box-shadow: var(--shadow-card-hover);
}

.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.faq-q::after {
  content: '+';
  font-size: 20px;
  font-weight: 600;
  color: var(--pink);
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  background: var(--pink-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .25s;
}

.faq-item.open .faq-q::after {
  content: '−';
  transform: rotate(180deg);
  background: var(--pink);
  color: #fff;
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease, padding .3s ease;
  padding-top: 0;
}

.faq-item.open .faq-a {
  max-height: 200px;
  padding-top: 12px;
}

/* ============================================
   GIFT CATEGORY CARDS - Enhanced
   ============================================ */
.gift-cat-card {
  position: relative;
  overflow: hidden;
}

.gift-cat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--pink), var(--orange));
  transform: scaleX(0);
  transition: transform .3s ease;
}

.gift-cat-card:hover::before {
  transform: scaleX(1);
}

.gift-cat-emoji {
  transition: transform .3s ease;
}

.gift-cat-card:hover .gift-cat-emoji {
  transform: scale(1.15) rotate(-5deg);
}

/* Gift card color variants */
.gift-cat-card[href="#voor-hem"]:hover {
  border-color: var(--blue);
}
.gift-cat-card[href="#voor-hem"]::before {
  background: linear-gradient(90deg, #3B82F6, #60A5FA);
}

.gift-cat-card[href="#voor-haar"]:hover {
  border-color: var(--pink);
}
.gift-cat-card[href="#voor-haar"]::before {
  background: linear-gradient(90deg, var(--pink), #F472B6);
}

.gift-cat-card[href="#voor-kids"]:hover {
  border-color: var(--orange);
}
.gift-cat-card[href="#voor-kids"]::before {
  background: linear-gradient(90deg, var(--orange), #FB923C);
}

/* ============================================
   REASON CARDS - For "Waarom cadeau" section
   ============================================ */
.reason-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.reason-card {
  background: var(--white);
  border-radius: 16px;
  padding: 28px 20px;
  text-align: center;
  box-shadow: var(--shadow-card);
  transition: all .25s;
  border: 2px solid transparent;
}

.reason-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
  border-color: var(--pink-light);
}

.reason-icon {
  font-size: 40px;
  margin-bottom: 16px;
  display: block;
}

.reason-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}

.reason-desc {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.5;
}

@media (max-width: 1024px) {
  .reason-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .reason-grid { grid-template-columns: 1fr; max-width: 320px; margin: 0 auto; }
}

/* ============================================
   CTA BANNER - Green variant
   ============================================ */
.cta-banner-green {
  background: linear-gradient(135deg, #059669 0%, #10B981 40%, #34D399 100%);
}

.cta-banner-green .btn-cta {
  color: #059669;
}

.cta-banner-green .btn-cta:hover {
  background: #ECFDF5;
}

/* ============================================
   TIP CARD - Enhanced interactivity
   ============================================ */
.tip-card {
  transition: all .25s;
  cursor: default;
}

.tip-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(251, 191, 36, .25);
}

.tip-icon {
  animation: tipBounce 2s ease-in-out infinite;
}

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

.tip-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.tip-link::after {
  content: '→';
  transition: transform .2s;
}

.tip-link:hover::after {
  transform: translateX(4px);
}

/* ============================================
   SECTION ACCENTS - Him/Her/Kids differentiation
   ============================================ */
.section-him .section-head h2::before,
.section-her .section-head h2::before,
.section-kids .section-head h2::before {
  content: '';
  display: inline-block;
  width: 4px;
  height: 24px;
  border-radius: 2px;
  margin-right: 12px;
  vertical-align: middle;
}

.section-him .section-head h2::before {
  background: linear-gradient(180deg, #3B82F6, #60A5FA);
}

.section-her .section-head h2::before {
  background: linear-gradient(180deg, var(--pink), #F472B6);
}

.section-kids .section-head h2::before {
  background: linear-gradient(180deg, var(--orange), #FB923C);
}

.section-him .deal-cat { color: var(--blue); }
.section-her .deal-cat { color: var(--pink); }
.section-kids .deal-cat { color: var(--orange); }

/* Section subtle background tints */
.section-him.section-grey { background: linear-gradient(180deg, #EFF6FF, var(--bg-alt)); }
.section-kids.section-grey { background: linear-gradient(180deg, #FFF7ED, var(--bg-alt)); }

/* ============================================
   HOMEPAGE ENHANCEMENTS
   ============================================ */

/* Hero magazines floating animation */
.hero-mag {
  animation: magFloat 4s ease-in-out infinite;
}

.hero-mag:nth-child(1) { animation-delay: 0s; }
.hero-mag:nth-child(2) { animation-delay: .5s; }
.hero-mag:nth-child(3) { animation-delay: 1s; }

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

.hero-mag:nth-child(2) {
  animation-name: magFloat2;
}

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

/* Promo banner emoji pulse */
.promo-emoji {
  animation: promoPulse 2s ease-in-out infinite;
  display: inline-block;
}

@keyframes promoPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

/* Steps section interactive hover */
.steps-grid > div {
  padding: 20px 16px;
  border-radius: 12px;
  transition: all .25s;
  cursor: default;
}

.steps-grid > div:hover {
  background: var(--pink-light);
  transform: translateY(-4px);
}

.steps-grid > div:hover .step-num {
  background: var(--pink);
  color: #fff;
  transform: scale(1.1);
}

.step-num {
  transition: all .25s;
}

/* Pop-cards image zoom */
.pop-card-img img {
  transition: transform .3s ease;
}

.pop-card:hover .pop-card-img img {
  transform: scale(1.08);
}

/* Category cards shine effect */
.cat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.2), transparent);
  z-index: 2;
  transition: left .5s ease;
}

.cat-card:hover::before {
  left: 100%;
}

/* ============================================
   KEUZEHULP ENHANCEMENTS
   ============================================ */

/* Hero quiz icon animation */
.hero-quiz-icon {
  animation: heroFloat 3s ease-in-out infinite;
  position: relative;
}

.hero-quiz-icon::before {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 2px dashed rgba(255,255,255,.3);
  animation: heroSpin 12s linear infinite;
}

/* Quiz results celebration animation */
.quiz-results-icon {
  animation: celebrateBounce 1s ease-out;
}

@keyframes celebrateBounce {
  0% { transform: scale(0); opacity: 0; }
  50% { transform: scale(1.3); }
  70% { transform: scale(0.9); }
  100% { transform: scale(1); opacity: 1; }
}

/* Quiz results header entrance */
.quiz-results-header {
  animation: fadeSlideUp .6s ease-out;
}

@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Quiz option selected state enhancement */
.quiz-option.selected .quiz-option-icon {
  animation: selectPop .3s ease;
}

@keyframes selectPop {
  0% { transform: scale(1); }
  50% { transform: scale(1.2); }
  100% { transform: scale(1); }
}

/* Progress bar glow effect */
.quiz-progress-bar {
  box-shadow: 0 0 8px rgba(232, 69, 124, .4);
}

/* Deal cards staggered entrance in results */
.quiz-results .deal-card {
  animation: cardEntrance .5s ease-out backwards;
}

.quiz-results .deal-card:nth-child(1) { animation-delay: .1s; }
.quiz-results .deal-card:nth-child(2) { animation-delay: .2s; }
.quiz-results .deal-card:nth-child(3) { animation-delay: .3s; }

@keyframes cardEntrance {
  from { opacity: 0; transform: translateY(24px) scale(.95); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

/* ============================================
   OVER ONS PAGE
   ============================================ */

/* Hero about variant */
.hero-about {
  background: linear-gradient(135deg, #1E40AF 0%, #3B82F6 50%, #60A5FA 100%);
}

.hero-about-icon {
  width: 140px;
  height: 140px;
  background: rgba(255,255,255,.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 64px;
  box-shadow: 0 8px 32px rgba(0,0,0,.15);
  animation: heroFloat 3s ease-in-out infinite;
  position: relative;
}

.hero-about-icon::before {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 2px dashed rgba(255,255,255,.3);
  animation: heroSpin 12s linear infinite;
}

/* About text block */
.about-text-block {
  max-width: 800px;
  font-size: 16px;
  line-height: 1.8;
  color: var(--text);
}

.about-text-block p {
  margin-bottom: 16px;
}

.about-text-block p:last-child {
  margin-bottom: 0;
}

/* Promise list (without accordion icons) */
.promise-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 800px;
}

.promise-item {
  background: var(--white);
  border-radius: 12px;
  padding: 20px 24px;
  box-shadow: var(--shadow-card);
}

.promise-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.promise-text {
  font-size: 14px;
  color: var(--text);
  line-height: 1.7;
}

/* ============================================
   CONTACT PAGE
   ============================================ */

/* Hero contact variant */
.hero-contact {
  background: linear-gradient(135deg, #059669 0%, #10B981 50%, #34D399 100%);
}

.hero-contact-icon {
  width: 140px;
  height: 140px;
  background: rgba(255,255,255,.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 64px;
  box-shadow: 0 8px 32px rgba(0,0,0,.15);
  animation: heroFloat 3s ease-in-out infinite;
  position: relative;
}

.hero-contact-icon::before {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 2px dashed rgba(255,255,255,.3);
  animation: heroSpin 12s linear infinite;
}

/* Contact grid */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: start;
}

.contact-info h2 {
  font-size: 28px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 12px;
}

.contact-info > p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: 28px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-detail {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.contact-detail-icon {
  font-size: 24px;
  flex-shrink: 0;
}

.contact-detail strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 2px;
}

.contact-detail span {
  font-size: 14px;
  color: var(--text-light);
}

/* Contact form */
.contact-form-wrap {
  background: var(--white);
  border-radius: 16px;
  padding: 32px;
  box-shadow: var(--shadow-card);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
}

.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font);
  font-size: 15px;
  color: var(--navy);
  padding: 12px 16px;
  border: 2px solid var(--border);
  border-radius: 10px;
  background: var(--white);
  transition: border-color .2s;
  outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-light);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--pink);
}

.form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236B7280' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.btn-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: var(--pink);
  color: #fff;
  font-family: var(--font);
  font-size: 15px;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 28px;
  border: none;
  cursor: pointer;
  transition: all .2s;
  align-self: flex-start;
}

.btn-submit:hover {
  background: var(--pink-hover);
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .contact-info h2 {
    font-size: 24px;
  }
  .contact-form-wrap {
    padding: 24px;
  }
}

/* ============================================
   BLOG OVERVIEW
   ============================================ */
.hero-blog {
  background: linear-gradient(135deg, #7C3AED 0%, #A855F7 50%, #C084FC 100%);
}

.hero-blog-icon {
  width: 140px;
  height: 140px;
  background: rgba(255,255,255,.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 64px;
  box-shadow: 0 8px 32px rgba(0,0,0,.15);
  animation: heroFloat 3s ease-in-out infinite;
  position: relative;
}

.hero-blog-icon::before {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 2px dashed rgba(255,255,255,.3);
  animation: heroSpin 12s linear infinite;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.blog-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: box-shadow .2s, transform .2s;
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-3px);
}

.blog-card-img {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--bg-alt);
}

.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .3s;
}

.blog-card:hover .blog-card-img img {
  transform: scale(1.04);
}

.blog-card-body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-card-cat {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: var(--pink);
  margin-bottom: 8px;
}

.blog-card-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
  line-height: 1.35;
}

.blog-card-excerpt {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 16px;
  flex: 1;
}

.blog-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  color: var(--text-light);
}

.blog-card-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--pink);
  transition: color .15s;
}

.blog-card-link:hover {
  color: var(--pink-hover);
  text-decoration: underline;
}

/* ============================================
   BLOG ARTICLE
   ============================================ */
.breadcrumb {
  padding: 16px 0;
  font-size: 13px;
  color: var(--text-light);
}

.breadcrumb a {
  color: var(--pink);
  font-weight: 500;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

.breadcrumb span {
  margin: 0 6px;
}

.article-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 48px;
  align-items: start;
}

.article-header {
  margin-bottom: 32px;
}

.article-cat {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: #fff;
  background: var(--pink);
  padding: 4px 12px;
  border-radius: 6px;
  margin-bottom: 16px;
}

.article-header h1 {
  font-size: 32px;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.25;
  margin-bottom: 12px;
}

.article-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 13px;
  color: var(--text-light);
}

.article-hero-img {
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 32px;
  aspect-ratio: 16/9;
  background: var(--bg-alt);
}

.article-hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-body {
  max-width: 100%;
  font-size: 16px;
  line-height: 1.8;
  color: var(--text);
}

.article-body h2 {
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  margin: 32px 0 12px;
}

.article-body h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin: 24px 0 8px;
}

.article-body p {
  margin-bottom: 16px;
}

.article-body ul,
.article-body ol {
  margin-bottom: 16px;
  padding-left: 24px;
  list-style: disc;
}

.article-body ol {
  list-style: decimal;
}

.article-body li {
  margin-bottom: 8px;
}

.article-body blockquote {
  border-left: 4px solid var(--pink);
  background: var(--pink-light);
  padding: 16px 20px;
  border-radius: 0 12px 12px 0;
  margin: 24px 0;
  font-style: italic;
}

.article-body strong {
  color: var(--navy);
}

/* Sidebar */
.article-sidebar {
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.sidebar-card {
  background: var(--white);
  border-radius: 12px;
  padding: 24px;
  box-shadow: var(--shadow-card);
}

.sidebar-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 16px;
}

.sidebar-deal {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}

.sidebar-deal:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.sidebar-deal:first-child {
  padding-top: 0;
}

.sidebar-deal-img {
  width: 56px;
  height: 56px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--bg-alt);
}

.sidebar-deal-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sidebar-deal-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 2px;
}

.sidebar-deal-price {
  font-size: 14px;
  font-weight: 800;
  color: var(--pink);
}

.sidebar-deal-price del {
  font-size: 11px;
  font-weight: 400;
  color: var(--text-light);
  margin-left: 4px;
}

.sidebar-newsletter {
  background: linear-gradient(135deg, #7C3AED, #A855F7);
  color: #fff;
  border-radius: 12px;
  padding: 24px;
}

.sidebar-newsletter h3 {
  color: #fff;
  margin-bottom: 8px;
}

.sidebar-newsletter p {
  font-size: 13px;
  opacity: .9;
  margin-bottom: 16px;
}

.sidebar-newsletter input {
  width: 100%;
  font-family: var(--font);
  font-size: 14px;
  padding: 10px 14px;
  border: 2px solid rgba(255,255,255,.3);
  border-radius: 10px;
  background: rgba(255,255,255,.15);
  color: #fff;
  outline: none;
  margin-bottom: 10px;
}

.sidebar-newsletter input::placeholder {
  color: rgba(255,255,255,.6);
}

.sidebar-newsletter input:focus {
  border-color: #fff;
}

.sidebar-newsletter button {
  width: 100%;
  background: #fff;
  color: #7C3AED;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 700;
  padding: 10px 20px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: all .2s;
}

.sidebar-newsletter button:hover {
  background: #f3f0ff;
}

/* Blog responsive */
@media (max-width: 1024px) {
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .article-layout { grid-template-columns: 1fr; }
  .article-sidebar { position: static; }
}

@media (max-width: 768px) {
  .blog-grid { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
  .article-header h1 { font-size: 24px; }
  .article-body { font-size: 15px; }
}
