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

    body {
      min-height: 100vh;
      background: linear-gradient(160deg, #FFF3D6 0%, #FFE4A8 25%, #F5C16C 50%, #D4922A 75%, #8B5E3C 100%);
      font-family: 'Source Sans 3', Georgia, serif;
      overflow-x: hidden;
      display: flex;
      flex-direction: column;
    }

    /* ---- HEADER ---- */
    .site-header {
      background: rgba(92, 58, 30, 0.85);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      border-bottom: 2px solid rgba(232,168,56,0.4);
      padding: 16px 32px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      position: sticky;
      top: 0;
      z-index: 100;
    }

    .site-header .logo {
      font-family: 'Playfair Display', serif;
      font-size: 22px;
      font-weight: 900;
      color: #FFE4A8;
      text-decoration: none;
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .site-header .logo-dot {
      width: 10px;
      height: 10px;
      background: #E8A838;
      border-radius: 50%;
      display: inline-block;
      animation: pulse 2s ease-in-out infinite;
    }

    .site-header nav {
      display: flex;
      gap: 24px;
      align-items: center;
    }

    .site-header nav a {
      color: rgba(255,228,168,0.7);
      text-decoration: none;
      font-size: 14px;
      font-weight: 400;
      letter-spacing: 0.03em;
      transition: color 0.3s;
    }

    .site-header nav a:hover {
      color: #FFE4A8;
    }

    /* ---- FOOTER ---- */
    .site-footer {
      background: rgba(58, 36, 16, 0.9);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      border-top: 2px solid rgba(232,168,56,0.25);
      padding: 48px 32px 32px;
      margin-top: auto;
    }

    .footer-inner {
      max-width: 700px;
      margin: 0 auto;
      text-align: center;
    }

    .footer-why {
      background: rgba(255,255,255,0.06);
      border: 1px solid rgba(232,168,56,0.2);
      border-radius: 16px;
      padding: 28px 32px;
      margin-bottom: 28px;
    }

    .footer-why h3 {
      font-family: 'Playfair Display', serif;
      font-size: 18px;
      color: #E8A838;
      margin-bottom: 12px;
      font-weight: 700;
    }

    .footer-why p {
      font-size: 14px;
      color: rgba(255,228,168,0.65);
      line-height: 1.7;
    }

    .footer-why .emoji-row {
      margin-top: 12px;
      font-size: 20px;
      letter-spacing: 8px;
    }

    .footer-bottom {
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 12px;
    }

    .footer-bottom .copy {
      font-size: 13px;
      color: rgba(255,228,168,0.35);
    }

    .footer-bottom .made-with {
      font-size: 13px;
      color: rgba(255,228,168,0.35);
    }

    @media (max-width: 500px) {
      .site-header { padding: 12px 16px; }
      .site-header .logo { font-size: 18px; }
      .site-header nav { gap: 16px; }
      .site-header nav a { font-size: 13px; }
      .footer-why { padding: 20px; }
      .footer-bottom { justify-content: center; text-align: center; }
    }

    @keyframes float {
      0%, 100% { transform: translateY(0px) rotate(0deg); }
      33% { transform: translateY(-30px) rotate(5deg); }
      66% { transform: translateY(15px) rotate(-3deg); }
    }

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

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

    @keyframes blink {
      0%, 100% { opacity: 1; }
      50% { opacity: 0; }
    }

    .particle {
      position: fixed;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(255,200,50,0.3), transparent);
      pointer-events: none;
    }

    .container {
      max-width: 700px;
      margin: 0 auto;
      padding: 60px 24px;
      position: relative;
      z-index: 1;
    }

    .header {
      text-align: center;
      margin-bottom: 60px;
      animation: fadeInUp 0.8s ease-out;
    }

    .header h1 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(36px, 8vw, 64px);
      font-weight: 900;
      color: #5C3A1E;
      line-height: 1.1;
      text-shadow: 2px 2px 0 rgba(255,200,100,0.5);
    }

    .header-line {
      width: 80px;
      height: 4px;
      background: linear-gradient(90deg, #E8A838, #8B5E3C);
      margin: 16px auto;
      border-radius: 2px;
    }

    .header p {
      font-size: 18px;
      color: #7A5232;
      font-weight: 300;
      letter-spacing: 0.02em;
    }

    .card {
      background: rgba(255,255,255,0.6);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      border-radius: 28px;
      padding: 48px 32px;
      box-shadow: 0 8px 32px rgba(139,94,60,0.12), inset 0 1px 0 rgba(255,255,255,0.8);
      border: 1px solid rgba(255,255,255,0.5);
      text-align: center;
      animation: fadeInUp 0.6s ease-out;
    }

    .card-title {
      font-family: 'Playfair Display', serif;
      font-size: 28px;
      color: #5C3A1E;
      margin-bottom: 40px;
      font-weight: 700;
    }

.payment-subtitle {
      font-family: 'Playfair Display', serif;
      font-size: 24px;
      color: #5C3A1E;
      margin-bottom: 12px;
      font-weight: 700;
    }

    .payment-desc {
      font-size: 16px;
      color: #7A5232;
      margin-bottom: 36px;
      line-height: 1.6;
    }


.paypal-btn {
      border: none;
      padding: 14px 36px;
      border-radius: 16px;
      font-size: 16px;
      font-family: 'Source Sans 3', sans-serif;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: linear-gradient(135deg, #FFC439, #FFB020);
      color: #003087;
      box-shadow: 0 8px 24px rgba(255,176,32,0.4);
      margin-top: 16px;
    }

    .paypal-btn:hover {
      transform: translateY(-4px);
      box-shadow: 0 12px 32px rgba(255,176,32,0.5);
    }

    .secure-text {
      font-size: 13px;
      color: #A07850;
      margin-top: 16px;
    }

    .back-btn, .reset-btn {
      background: transparent;
      border: 2px solid rgba(139,94,60,0.3);
      color: #8B5E3C;
      padding: 12px 32px;
      border-radius: 12px;
      font-size: 16px;
      font-family: 'Source Sans 3', sans-serif;
      cursor: pointer;
      transition: all 0.3s ease;
      margin-top: 24px;
    }

    .back-btn:hover, .reset-btn:hover {
      background: rgba(139,94,60,0.1);
      border-color: #8B5E3C;
    }

    /* Message step */
    .confirm-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(255,255,255,0.5);
      padding: 8px 20px;
      border-radius: 50px;
      margin-bottom: 24px;
      font-size: 14px;
      color: #7A5232;
    }

    .message-card {
      background: linear-gradient(135deg, rgba(255,255,255,0.75), rgba(255,245,220,0.8));
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      border-radius: 28px;
      padding: 48px 36px;
      box-shadow: 0 12px 48px rgba(139,94,60,0.15), inset 0 1px 0 rgba(255,255,255,0.9);
      border: 2px solid rgba(232,168,56,0.3);
      position: relative;
      overflow: hidden;
      min-height: 200px;
      text-align: center;
      animation: fadeInUp 0.6s ease-out;
    }

    .corner-tl {
      position: absolute; top: 16px; left: 16px;
      width: 40px; height: 40px;
      border-top: 3px solid #E8A838; border-left: 3px solid #E8A838;
      border-radius: 8px 0 0 0; opacity: 0.5;
    }

    .corner-br {
      position: absolute; bottom: 16px; right: 16px;
      width: 40px; height: 40px;
      border-bottom: 3px solid #E8A838; border-right: 3px solid #E8A838;
      border-radius: 0 0 8px 0; opacity: 0.5;
    }

    .message-label {
      font-size: 12px;
      text-transform: uppercase;
      letter-spacing: 0.15em;
      color: #B08040;
      margin-bottom: 20px;
      font-weight: 600;
    }

    .message-text {
      font-family: 'Playfair Display', serif;
      font-size: clamp(18px, 3vw, 22px);
      color: #4A2E14;
      line-height: 1.7;
      min-height: 100px;
    }

    .cursor {
      display: inline-block;
      width: 3px;
      height: 1em;
      background: #E8A838;
      margin-left: 2px;
      vertical-align: text-bottom;
      animation: blink 0.8s step-end infinite;
    }

    .footer {
      text-align: center;
      margin-top: 60px;
      font-size: 13px;
      color: rgba(92,58,30,0.4);
    }

    .hidden { display: none; }

    @media (max-width: 500px) {
.card { padding: 32px 20px; }
      .message-card { padding: 32px 20px; }
    }


/* ===== Custom Popup (no browser alerts) ===== */
.popup-overlay{
  position:fixed;
  inset:0;
  background: rgba(0,0,0,.45);
  display:none;
  align-items:center;
  justify-content:center;
  z-index:9999;
  padding: 16px;
}
.popup-overlay.show{ display:flex; }

.popup{
  width: min(520px, 100%);
  background: rgba(255, 243, 220, 0.98);
  border: 1px solid rgba(255,255,255,.35);
  box-shadow: 0 24px 80px rgba(0,0,0,.35);
  border-radius: 18px;
  padding: 16px;
  text-align: left;
}
.popup h3{
  margin: 0 0 8px;
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  color: #2f1e0d;
}
.popup p{
  margin:0;
  color: rgba(47, 30, 13, .78);
  font-family: 'Source Sans 3', sans-serif;
  line-height: 1.55;
  font-size: 15px;
}
.popup .row{
  display:flex;
  justify-content:flex-end;
  gap: 10px;
  margin-top: 14px;
}
.popup .btn{
  border:none;
  cursor:pointer;
  border-radius: 14px;
  padding: 10px 14px;
  font-family: 'Source Sans 3', sans-serif;
  font-weight: 700;
}
.popup .btn.secondary{
  background: rgba(255,255,255,.55);
  color:#2f1e0d;
}
.popup .btn.primary{
  background: linear-gradient(135deg, rgba(232,168,56,1), rgba(212,130,46,1));
  color:#2f1e0d;
}

.site-footer .made-with a{
  color: inherit;
  text-decoration: none;
  font-weight: 700;
}

.site-footer .made-with a:hover{
  text-decoration: underline; /* of laat dit weg als je echt nooit underline wil */
}

/* ===== Example Reviews ===== */
.reviews{
  max-width: 980px;
  margin: 22px auto 0;
  padding: 0 18px;
  margin-bottom: 34px; /* basis */
}

.reviews-head{
  text-align: center;
  margin-bottom: 12px;
}

.reviews-head h2{
  margin: 0;
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  letter-spacing: .2px;
}

.reviews-sub{
  margin: 6px 0 0;
  opacity: .75;
  font-family: 'Source Sans 3', sans-serif;
}

.reviews-grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 14px;
}

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

.review-card{
  background: rgba(255, 243, 220, 0.70);
  border: 1px solid rgba(47, 30, 13, 0.12);
  border-radius: 18px;
  padding: 14px 14px 12px;
  box-shadow: 0 14px 40px rgba(0,0,0,0.12);
}

.review-card p{
  margin: 10px 0 10px;
  font-family: 'Source Sans 3', sans-serif;
  color: rgba(47, 30, 13, .85);
  line-height: 1.5;
}

.stars{
  color: #E8A838; /* goud/geel */
  text-shadow: 0 1px 0 rgba(0,0,0,0.15);
}

.who{
  font-family: 'Source Sans 3', sans-serif;
  opacity: .7;
  font-size: 13px;
}

/* ═══════════════════════════════════════════════
   MOOD BUTTONS — Warm & Uitnodigend (Pill Style)
   Past op jouw bestaande HTML: .mood-buttons + .mood-btn + .mood-meh/.mood-oke/.mood-ruk
   ═══════════════════════════════════════════════ */


/* ── Mood variabelen ── */


/* ── Responsive ── */
@media (max-width: 480px){


}

/* ===== Payment pills (zelfde stijl als mood buttons) ===== */

/* Kleine badge bovenin */
/* Grote betaal knop */


/* Tekstkleur op de knop */

/* ===== Mood + Payment Pills (single source of truth) ===== */

.mood-buttons{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  justify-content:center;
  padding: 16px 0;
}

.mood-btn{
  display:flex;
  align-items:center;
  gap:10px;
  min-width:130px;
  padding:14px 22px;
  border-radius:9999px;
  border:2px solid var(--mood-border);
  background:#fff;
  cursor:pointer;
  transition: all .25s ease;
  box-shadow: 0 2px 8px rgba(0,0,0,.04);
  outline:none;
  -webkit-tap-highlight-color: transparent;
}

.mood-btn .emoji{ font-size:28px; line-height:1; }
.mood-btn span:last-child{ font-weight:800; color:#64748B; }

.mood-btn:hover{
  border-color: var(--mood-accent);
  background: var(--mood-bg-hover);
  transform: scale(1.02);
}
.mood-btn:active{ transform: scale(0.98); }

.mood-btn.selected{
  border-color: var(--mood-accent);
  background: var(--mood-bg);
  box-shadow: 0 6px 22px var(--mood-shadow);
  transform: scale(1.04);
}
.mood-btn.selected span:last-child{ color: var(--mood-text); }

/* Payment badge (bovenaan payment card) */
.selected-badge{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:10px 18px;
  border-radius:9999px;
  border:2px solid var(--mood-border);
  background: var(--mood-bg);
  box-shadow: 0 6px 22px var(--mood-shadow);
  font-size:14px;
  font-weight:800;
}
.selected-badge .emoji{ font-size:22px; }

/* Grote PayPal knop */
.big-mood-btn{
  display:inline-flex !important;
  align-items:center !important;
  justify-content:center !important;
  gap:10px !important;

  padding:16px 34px !important;
  min-width:220px !important;
  font-size:18px !important;
  font-weight:900 !important;

  border-radius:9999px !important;
  border:2px solid var(--mood-border) !important;
  background: var(--mood-bg) !important;
  box-shadow: 0 8px 26px var(--mood-shadow) !important;

  cursor:pointer !important;
  transition: all .25s ease !important;
}

.big-mood-btn:hover{
  border-color: var(--mood-accent) !important;
  background: var(--mood-bg-hover) !important;
  transform: scale(1.02);
}
.big-mood-btn:active{ transform: scale(0.98); }

.big-mood-btn:disabled{
  opacity:.55 !important;
  cursor:not-allowed !important;
  transform:none !important;
}

/* Mood variabelen (werken voor buttons én payment elements) */
.mood-meh{
  --mood-accent:#FBBF24;
  --mood-bg:#FEF3C7;
  --mood-bg-hover: rgba(254,243,199,.55);
  --mood-text:#92400E;
  --mood-border:#FDE68A;
  --mood-shadow: rgba(251,191,36,.18);
}
.mood-oke{
  --mood-accent:#34D399;
  --mood-bg:#D1FAE5;
  --mood-bg-hover: rgba(209,250,229,.55);
  --mood-text:#065F46;
  --mood-border:#A7F3D0;
  --mood-shadow: rgba(52,211,153,.18);
}
.mood-ruk{
  --mood-accent:#F87171;
  --mood-bg:#FEE2E2;
  --mood-bg-hover: rgba(254,226,226,.55);
  --mood-text:#991B1B;
  --mood-border:#FECACA;
  --mood-shadow: rgba(248,113,113,.18);
}

@media (max-width:480px){
  .mood-btn{ min-width:110px; padding:12px 16px; gap:8px; }
  .mood-btn .emoji{ font-size:24px; }
}
