/*
Theme Name:   Psilo Drops
Theme URI:    https://psilo-drops.com
Description:  Psilo Drops child theme — gebouwd op Blocksy. Retro-funky licht design:
              off-white achtergrond, lime accenten, diep blauw.
              Koppen in Hello Oppa (zelf-gehost), UI in Fredoka One, body in Nunito.
              WooCommerce-stijlen worden conditioneel geladen via aparte CSS-assets.
Author:       Dylan Grefte
Author URI:   https://psilo-drops.com
Template:     blocksy
Version:      5.1.1
License:      Private
Text Domain:  psilo-drops
*/

/* ══════════════════════════════════
   0. CUSTOM DISPLAY-FONT — Hello Oppa (zelf-gehost)
   Geleverd door de designer. Alleen gebruikt op grote
   koppen (zie §16). font-display:swap toont tekst direct
   met Fredoka One als fallback tot Hello Oppa geladen is.
   ══════════════════════════════════ */
@font-face {
  font-family: 'Hello Oppa';
  src: url('fonts/HelloOppa.woff2') format('woff2'),
       url('fonts/HelloOppa.woff')  format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* ═══════════════════════════════════════════════
   1. MERK-TOKENS (CSS Custom Properties)
   ═══════════════════════════════════════════════ */
:root {
  --off-white: #F8F4EE;
  --warm:      #F2EAD8;
  --border:    #E0D4C0;
  --lime:      #C8F025;
  --lime-d:    #9DC400;
  --blue:      #2020CC;
  --purple:    #7B2D9E;
  --magenta:   #C7348A;
  --amber:     #F5A623;
  --ink:       #111122;
  --ink-mid:   #444460;
  --muted:     #9090A8;
  --white:     #FFFFFF;
  --deep-navy: #0D0D4A;

  /* Blocksy palette override */
  --theme-palette-color-1: #2020CC;
  --theme-palette-color-2: #C8F025;
  --theme-palette-color-3: #7B2D9E;
  --theme-palette-color-4: #C7348A;
  --theme-palette-color-5: #F5A623;
  --theme-palette-color-6: #111122;
  --theme-palette-color-7: #F8F4EE;
  --theme-palette-color-8: #9090A8;

  /* Blocksy content background */
  --ct-content-background: var(--off-white);
  --theme-text-color: var(--ink);
  --theme-link-hover-color: var(--blue);
}

/* ═══════════════════════════════════════════════
   2. BASIS
   ═══════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  background: var(--off-white);
  color: var(--ink);
  font-family: 'Nunito', sans-serif;
  overflow-x: hidden;
}

a { color: var(--blue); transition: color 0.2s; }
a:hover { color: var(--purple); }

/* ═══════════════════════════════════════════════
   3. TOPBAR — scrollende aankondigingsregel
   ═══════════════════════════════════════════════ */
.pd-topbar {
  /* Liquid-patroon van de designer (Label-100), naadloze strook in /images */
  background: var(--deep-navy) url('images/pd-topbar-pattern.webp') left center / auto 100% repeat-x;
  padding: 7px 0;
  overflow: hidden;
}
.pd-topbar-track {
  display: flex;
  animation: marquee 28s linear infinite;
  white-space: nowrap;
}
.pd-topbar-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 9px;
  padding: 4px 16px;
  background: rgba(13, 13, 74, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50px;
  font-family: 'Fredoka One', cursive;
  font-size: 13px;
  color: #fff;
  letter-spacing: 0.04em;
  white-space: nowrap;
}
.pd-topbar-sep { display: none; }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ═══════════════════════════════════════════════
   4. NAVIGATIE
   ═══════════════════════════════════════════════ */

/* Gradient accentstripe boven de nav */
.site-header::before,
.ct-header::before,
header.site-header::before {
  content: '';
  display: block;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--lime)    0%,
    var(--blue)    38%,
    var(--purple)  68%,
    var(--magenta) 100%
  );
}

.site-header,
.ct-header,
header.site-header {
  background: var(--white);
  border-bottom: 2px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 200;
  transition: box-shadow 0.3s, background 0.3s;
}

body.is-scrolled .site-header,
body.is-scrolled .ct-header,
body.is-scrolled header.site-header {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 4px 24px rgba(17, 17, 34, 0.08);
}

.ct-header .ct-container,
.site-header .ct-container,
nav.main-navigation {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  height: 70px;
}

/* ── Logo ── */
.site-title,
.ct-header .site-logo .ct-image-container,
.nav-logo {
  font-family: 'Fredoka One', cursive;
  font-size: 24px;
  color: var(--ink);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
}
.site-title a,
.ct-header .site-logo a {
  font-family: 'Fredoka One', cursive;
  font-size: 24px;
  color: var(--ink);
  text-decoration: none;
}
.site-title a:hover { color: var(--blue); text-decoration: none; }
.site-title .logo-psilo { color: var(--blue); }
.site-title .logo-drops { color: var(--ink); }

/* ── Nav-links ── */
.ct-menu,
.main-navigation ul,
.nav-menu {
  display: flex;
  gap: 2px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.ct-menu > li > a,
.main-navigation ul > li > a,
.nav-menu > li > a {
  display: inline-block;
  position: relative;
  padding: 7px 16px;
  border-radius: 50px;
  font-family: 'Fredoka One', cursive;
  font-size: 15px;
  color: var(--ink-mid);
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}

.ct-menu > li > a:hover,
.main-navigation ul > li > a:hover,
.nav-menu > li > a:hover {
  background: var(--warm);
  color: var(--blue);
  text-decoration: none;
}

.ct-menu > li.current-menu-item > a,
.ct-menu > li.current_page_item > a,
.main-navigation ul > li.current-menu-item > a,
.nav-menu > li.current-menu-item > a {
  background: var(--lime);
  color: var(--ink);
}

/* Druppel-indicator onder actief item */
.ct-menu > li.current-menu-item > a::after,
.ct-menu > li.current_page_item > a::after,
.main-navigation ul > li.current-menu-item > a::after {
  content: '';
  position: absolute;
  bottom: -18px;
  left: 50%;
  transform: translateX(-50%);
  width: 7px;
  height: 10px;
  background: var(--blue);
  border-radius: 50% 50% 50% 50% / 38% 38% 62% 62%;
  opacity: 0.7;
}

/* ── Psilo-logo afbeelding ── */
.psilo-logo img,
.psilo-logo .site-logo-container img {
  width: 44px !important;
  height: 44px !important;
  border-radius: 10px !important;
  object-fit: cover;
  display: block;
  flex-shrink: 0;
}
/* Zorg voor verticale uitlijning logo + tekst */
.psilo-logo.site-branding {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* ── Cart-icoon ── */
.ct-header .ct-cart-item,
.nav-cart,
a.cart-contents {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px 6px 10px;
  border-radius: 50px;
  background: transparent;
  border: none;
  text-decoration: none;
  color: var(--ink);
  font-family: 'Fredoka One', cursive;
  font-size: 15px;
  transition: background 0.2s, color 0.2s;
}
.ct-header .ct-cart-item:hover,
.nav-cart:hover,
a.cart-contents:hover {
  background: var(--warm);
  color: var(--blue);
  text-decoration: none;
}
/* Bedrag naast icoon */
.ct-header .ct-cart-item .ct-amount,
.ct-header .ct-cart-item .ct-label {
  font-family: 'Fredoka One', cursive;
  font-size: 15px;
  color: inherit;
}
/* Cart SVG icoon kleur */
.ct-header .ct-cart-item .ct-icon-container svg {
  fill: var(--ink);
  width: 18px;
  height: 18px;
}

/* ── Mini-cart dropdown ── */
/* Overschrijf Blocksy Customizer inline kleuren */
[data-header] [data-id="cart"] .ct-cart-content {
  --mini-cart-background-color: var(--white) !important;
  --theme-text-color: var(--ink) !important;
}
.ct-cart-content {
  background: var(--white) !important;
  border-radius: 20px !important;
  border: 2px solid var(--border) !important;
  box-shadow: 0 8px 32px rgba(17, 17, 34, 0.10) !important;
}
/* Tekst en productitels */
.ct-cart-content .product-title,
.ct-cart-content .woocommerce-mini-cart li {
  color: var(--ink) !important;
  font-family: 'Nunito', sans-serif;
}
.ct-cart-content .product-title a {
  color: var(--ink) !important;
  font-family: 'Fredoka One', cursive;
  font-size: 0.95rem;
  text-decoration: none;
}
.ct-cart-content .product-title a:hover {
  color: var(--blue) !important;
}
/* Variatie-tekst (bijv. "5 Mililiter") */
.ct-cart-content .woocommerce-mini-cart li .variation {
  color: var(--muted) !important;
  font-size: 0.8rem;
}
/* Subtotaal */
.ct-cart-content .woocommerce-mini-cart__total {
  color: var(--ink) !important;
  font-family: 'Fredoka One', cursive;
  font-size: 1rem;
  border-top: 1.5px solid var(--border) !important;
}
.ct-cart-content .woocommerce-mini-cart__total .amount {
  color: var(--blue) !important;
  font-family: 'Fredoka One', cursive;
}
/* Verwijder-knop */
.ct-cart-content .woocommerce-mini-cart .remove {
  color: var(--muted) !important;
  background: transparent !important;
}
.ct-cart-content .woocommerce-mini-cart .remove:hover {
  color: var(--magenta) !important;
}
/* "Bekijk winkelwagen" — secondaire knop */
.ct-cart-content .woocommerce-mini-cart__buttons a.button.wc-forward:not(.checkout) {
  background: var(--warm) !important;
  color: var(--ink) !important;
  border: 2px solid var(--border) !important;
  border-radius: 50px !important;
  font-family: 'Fredoka One', cursive !important;
  font-size: 0.88rem !important;
  text-align: center;
  transition: border-color 0.2s, background 0.2s !important;
  box-shadow: none !important;
}
.ct-cart-content .woocommerce-mini-cart__buttons a.button.wc-forward:not(.checkout):hover {
  border-color: var(--blue) !important;
  background: var(--off-white) !important;
  color: var(--blue) !important;
}
/* "Afrekenen" — primaire knop */
.ct-cart-content .woocommerce-mini-cart__buttons a.button.checkout {
  background: var(--blue) !important;
  color: white !important;
  border: none !important;
  border-radius: 50px !important;
  font-family: 'Fredoka One', cursive !important;
  font-size: 0.88rem !important;
  text-align: center;
  transition: background 0.2s, transform 0.15s !important;
  box-shadow: 0 4px 16px rgba(32, 32, 204, 0.22) !important;
}
.ct-cart-content .woocommerce-mini-cart__buttons a.button.checkout:hover {
  background: var(--ink) !important;
  transform: translateY(-1px) !important;
  color: white !important;
}
/* Cart-badge teller */
.ct-dynamic-count-cart {
  background: var(--lime) !important;
  color: var(--ink) !important;
  font-family: 'Fredoka One', cursive;
}

/* ── CTA-knop in nav ── */
.nav-cta,
.ct-header .ct-header-button a,
.btn-nav-cta {
  background: var(--blue);
  color: white !important;
  padding: 10px 22px;
  border-radius: 50px;
  font-family: 'Fredoka One', cursive;
  font-size: 15px;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 16px rgba(32, 32, 204, 0.25);
}
.nav-cta:hover,
.btn-nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(32, 32, 204, 0.35);
  color: white !important;
  text-decoration: none;
}

/* ── Mobiel hamburger ── */
.ct-toggle-dropdown-trigger,
.menu-toggle {
  background: var(--warm);
  border: 1.5px solid var(--border);
  border-radius: 10px;
  color: var(--ink);
  padding: 8px 10px;
  cursor: pointer;
  transition: border-color 0.2s;
}
.ct-toggle-dropdown-trigger:hover,
.menu-toggle:hover { border-color: var(--blue); }

/* ── OFF-CANVAS MENU (mobiel) ─────────────────────
   Verhuisd uit Customizer → Extra CSS (v5.1.1) en
   opgeschoond: @import verwijderd (thema laadt de
   fonts al), kleuren via merk-tokens, safe-area
   onderaan voor iPhone, tap-vriendelijke links.
   Na upload: Customizer → Extra CSS leegmaken.
   ────────────────────────────────────────────────── */

/* Overlay (achtergrond-dimmer) */
#offcanvas-overlay {
  background: rgba(13, 13, 74, 0.75) !important;
  backdrop-filter: blur(4px) !important;
}

/* Paneel */
#offcanvas,
.ct-drawer {
  background: var(--blue) !important;
  --ct-content-background: var(--blue) !important;
  border-right: 3px solid var(--lime) !important;
  box-shadow: 6px 0 40px rgba(0, 0, 0, 0.4) !important;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

/* Decoratieve blobs */
#offcanvas::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 260px; height: 260px;
  background: radial-gradient(circle, rgba(123, 45, 158, 0.35) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}
#offcanvas::after {
  content: '';
  position: absolute;
  bottom: -60px; left: -40px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(199, 52, 138, 0.25) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}
#offcanvas .offcanvas-container,
#offcanvas .ct-offcanvas-content,
#offcanvas .ct-panel-content {
  position: relative;
  z-index: 1;
}
/* Safe area onderaan (iPhone met home-balk) */
#offcanvas .ct-panel-content {
  padding-bottom: max(24px, env(safe-area-inset-bottom)) !important;
}

/* Sluitknop (×) */
#offcanvas .ct-toggle-close,
.ct-drawer .ct-toggle-close {
  color: var(--lime) !important;
  background: transparent !important;
  border: 2px solid rgba(200, 240, 37, 0.4) !important;
  border-radius: 50% !important;
  width: 42px !important;
  height: 42px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  transition: all 0.2s ease !important;
}
#offcanvas .ct-toggle-close:hover,
.ct-drawer .ct-toggle-close:hover {
  background: var(--lime) !important;
  color: var(--blue) !important;
  border-color: var(--lime) !important;
}
#offcanvas .ct-toggle-close svg path,
#offcanvas .ct-toggle-close svg line,
#offcanvas .ct-toggle-close svg rect {
  stroke: currentColor !important;
}

/* Navigatie-links */
#offcanvas nav a,
#offcanvas .ct-menu a,
#offcanvas ul.menu a,
.ct-drawer .ct-menu a {
  font-family: 'Fredoka One', cursive !important;
  font-size: 1.6rem !important;
  color: #ffffff !important;
  text-decoration: none !important;
  letter-spacing: 0.02em !important;
  padding: 0.6rem 0 !important;
  display: block !important;
  transition: color 0.2s ease, transform 0.2s ease !important;
  position: relative;
}
#offcanvas nav a::after,
#offcanvas .ct-menu a::after,
#offcanvas ul.menu a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--lime);
  transition: width 0.25s ease;
}
#offcanvas nav a:hover,
#offcanvas .ct-menu a:hover,
#offcanvas ul.menu a:hover {
  color: var(--lime) !important;
  transform: translateX(6px) !important;
}
#offcanvas nav a:hover::after,
#offcanvas .ct-menu a:hover::after,
#offcanvas ul.menu a:hover::after {
  width: 100%;
}
#offcanvas nav .current-menu-item > a,
#offcanvas ul.menu .current-menu-item > a,
#offcanvas .ct-menu .current-menu-item > a {
  color: var(--lime) !important;
}

/* Submenu */
#offcanvas .sub-menu {
  background: rgba(0, 0, 0, 0.2) !important;
  border-left: 3px solid rgba(200, 240, 37, 0.5) !important;
  margin-left: 12px !important;
  padding-left: 12px !important;
  border-radius: 0 0 8px 8px !important;
}
#offcanvas .sub-menu a {
  font-family: 'Nunito', sans-serif !important;
  font-size: 1.05rem !important;
  font-weight: 700 !important;
  color: rgba(255, 255, 255, 0.85) !important;
}
#offcanvas .sub-menu a:hover { color: var(--lime) !important; }
#offcanvas .ct-sub-menu-toggle,
#offcanvas .dropdown-toggle { color: var(--lime) !important; }
#offcanvas .ct-sub-menu-toggle svg path,
#offcanvas .ct-sub-menu-toggle svg polyline { stroke: var(--lime) !important; }

/* Scheidingslijnen */
#offcanvas .menu-item { border-bottom: 1px solid rgba(200, 240, 37, 0.12) !important; }
#offcanvas .menu-item:last-child { border-bottom: none !important; }

/* Zoekbalk */
#offcanvas .ct-search-form input,
#offcanvas input[type="search"],
#offcanvas input[type="text"] {
  background: rgba(255, 255, 255, 0.1) !important;
  border: 2px solid rgba(200, 240, 37, 0.5) !important;
  border-radius: 50px !important;
  color: #ffffff !important;
  font-family: 'Nunito', sans-serif !important;
  padding: 10px 18px !important;
}
#offcanvas .ct-search-form input::placeholder,
#offcanvas input[type="search"]::placeholder { color: rgba(255, 255, 255, 0.5) !important; }
#offcanvas .ct-search-form input:focus,
#offcanvas input[type="search"]:focus {
  border-color: var(--lime) !important;
  outline: none !important;
  background: rgba(255, 255, 255, 0.15) !important;
}
#offcanvas .ct-search-form button,
#offcanvas .ct-search-form svg { color: var(--lime) !important; }
#offcanvas .ct-search-form svg path { stroke: var(--lime) !important; }

/* Social icons */
#offcanvas .ct-social-icons a,
#offcanvas .social-links a {
  color: rgba(255, 255, 255, 0.7) !important;
  transition: color 0.2s ease !important;
}
#offcanvas .ct-social-icons a:hover,
#offcanvas .social-links a:hover { color: var(--lime) !important; }

/* Tekst en widget-titels */
#offcanvas p,
#offcanvas .widget-title {
  color: rgba(255, 255, 255, 0.8) !important;
  font-family: 'Nunito', sans-serif !important;
}
#offcanvas .widget-title {
  font-family: 'Fredoka One', cursive !important;
  color: var(--lime) !important;
  font-size: 1.1rem !important;
  letter-spacing: 0.05em !important;
  text-transform: uppercase !important;
}

/* Hamburger-trigger in de header */
.ct-toggle-offcanvas-trigger,
[data-toggle="offcanvas"],
.ct-menu-toggle { color: var(--blue) !important; }
.ct-toggle-offcanvas-trigger:hover,
[data-toggle="offcanvas"]:hover,
.ct-menu-toggle:hover { color: var(--lime) !important; }

/* ═══════════════════════════════════════════════
   5. HERO
   ═══════════════════════════════════════════════ */
.hero {
  min-height: 90vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
}

.hero-left {
  padding: 80px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--off-white);
  position: relative;
  z-index: 2;
}
.hero-left::before {
  content: '';
  position: absolute;
  top: -100px; left: -100px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200, 240, 37, 0.30) 0%, transparent 70%);
  pointer-events: none;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 22px;
}
.eyebrow-bar {
  width: 24px; height: 2px;
  background: var(--lime);
  border-radius: 2px;
}

.hero h1,
.hero .page-title {
  font-family: 'Fredoka One', cursive;
  font-size: clamp(46px, 5.5vw, 82px);
  line-height: 1.0;
  color: var(--ink);
  margin-bottom: 8px;
}
.hero h1 .h1-line2 {
  display: block;
  background: var(--lime);
  border-radius: 12px;
  padding: 0 12px;
  margin: 4px 0;
  color: var(--ink);
}
.hero h1 .h1-line3 {
  display: block;
  color: var(--blue);
}

.hero-sub {
  font-size: 17px;
  line-height: 1.75;
  color: var(--ink-mid);
  max-width: 400px;
  margin: 22px 0 32px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.btn-hero-primary {
  background: var(--ink);
  color: white;
  padding: 14px 34px;
  border-radius: 50px;
  font-family: 'Fredoka One', cursive;
  font-size: 18px;
  text-decoration: none;
  transition: all 0.2s;
  box-shadow: 0 6px 20px rgba(17, 17, 34, 0.20);
}
.btn-hero-primary:hover {
  background: var(--blue);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(32, 32, 204, 0.30);
  color: white;
  text-decoration: none;
}

.btn-hero-outline {
  background: transparent;
  color: var(--ink);
  padding: 13px 28px;
  border-radius: 50px;
  border: 2px solid var(--border);
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  gap: 6px;
}
.btn-hero-outline:hover {
  border-color: var(--blue);
  color: var(--blue);
  text-decoration: none;
}

.hero-stats {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  padding-top: 24px;
  border-top: 1.5px solid var(--border);
}
.stat { display: flex; flex-direction: column; gap: 2px; }
.stat-num {
  font-family: 'Fredoka One', cursive;
  font-size: 26px;
  color: var(--ink);
  line-height: 1;
}
.stat-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero-right {
  background: var(--warm);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  border-left: 2px solid var(--border);
}
.hero-right::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 500px; height: 500px;
  border-radius: 50%;
  border: 60px solid rgba(200, 240, 37, 0.20);
  pointer-events: none;
}
.hero-right::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 340px; height: 340px;
  border-radius: 50%;
  border: 40px solid rgba(32, 32, 204, 0.10);
  pointer-events: none;
}

.hero-product-wrap {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.hero-product-img {
  width: 220px; height: 320px;
  background: white;
  border-radius: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.14);
  font-size: 100px;
  border: 2px solid var(--border);
  position: relative;
}
.hero-product-img .prod-label {
  position: absolute;
  bottom: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--lime);
  color: var(--ink);
  font-family: 'Fredoka One', cursive;
  font-size: 15px;
  padding: 6px 20px;
  border-radius: 50px;
  white-space: nowrap;
  box-shadow: 0 4px 14px rgba(160, 192, 0, 0.35);
}

.float-tag {
  position: absolute;
  z-index: 3;
  background: white;
  border: 1.5px solid var(--border);
  border-radius: 14px;
  padding: 10px 14px;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  gap: 8px;
}
.ft-top  { top: 14%;    left: 4%;  animation: floatA 4s ease-in-out infinite alternate; }
.ft-mid  { bottom: 26%; right: 3%; animation: floatB 5s ease-in-out infinite alternate; }
.ft-icon  { font-size: 20px; }
.ft-label { font-size: 11px; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: 0.1em; }
.ft-val   { font-family: 'Fredoka One', cursive; font-size: 17px; color: var(--ink); line-height: 1; }

@keyframes floatA { 0% { transform: translateY(0); }  100% { transform: translateY(-8px); } }
@keyframes floatB { 0% { transform: translateY(0); }  100% { transform: translateY(8px);  } }

/* ═══════════════════════════════════════════════
   6. TRUST STRIP
   ═══════════════════════════════════════════════ */
.trust-strip {
  background: white;
  border-top: 2px solid var(--border);
  border-bottom: 2px solid var(--border);
  padding: 20px 64px;
  display: flex;
  gap: 0;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
}
.trust-strip-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
}
.trust-strip-icon {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: var(--warm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

/* ═══════════════════════════════════════════════
   7. PRODUCTEN (homepage sectie)
   ═══════════════════════════════════════════════ */
.products-section { padding: 80px 64px; }

.section-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--blue);
  display: block;
  margin-bottom: 12px;
}
.section-title {
  font-family: 'Fredoka One', cursive;
  font-size: clamp(30px, 3.5vw, 50px);
  color: var(--ink);
  line-height: 1.1;
  margin-bottom: 8px;
}
.section-sub {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 48px;
}

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

.product-card {
  background: white;
  border: 2px solid var(--border);
  border-radius: 24px;
  overflow: hidden;
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
  position: relative;
}
.product-card:hover {
  border-color: var(--blue);
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(32, 32, 204, 0.12);
}
.product-card:hover .btn-card-add {
  background: var(--blue);
  color: white;
}

.product-img {
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  font-size: 72px;
}
.pc1 .product-img { background: linear-gradient(145deg, #f5edd8, #e8d9be); }
.pc2 .product-img { background: linear-gradient(145deg, #d4f0d0, #b8e4b0); }
.pc3 .product-img { background: linear-gradient(145deg, #fce4f8, #f0c8ee); }

.card-flag {
  position: absolute;
  top: 12px; left: 12px;
  font-family: 'Fredoka One', cursive;
  font-size: 12px;
  padding: 4px 14px;
  border-radius: 50px;
}
.flag-popular { background: var(--blue);    color: white; }
.flag-new     { background: var(--lime);    color: var(--ink); }
.flag-deal    { background: var(--magenta); color: white; }

.product-body { padding: 20px 22px 22px; }
.product-cat {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
  display: block;
}
.product-name {
  font-family: 'Fredoka One', cursive;
  font-size: 21px;
  color: var(--ink);
  margin-bottom: 6px;
}
.product-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 18px;
}
.product-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.product-price {
  font-family: 'Fredoka One', cursive;
  font-size: 22px;
  color: var(--ink);
}
.product-price-old {
  font-size: 13px;
  color: var(--muted);
  text-decoration: line-through;
  margin-right: 4px;
}
.btn-card-add {
  background: var(--warm);
  color: var(--ink);
  border: 1.5px solid var(--border);
  padding: 9px 18px;
  border-radius: 50px;
  font-family: 'Fredoka One', cursive;
  font-size: 14px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s;
}

/* ═══════════════════════════════════════════════
   8. HOE WERKT HET
   ═══════════════════════════════════════════════ */
.how-section {
  padding: 80px 64px;
  background: var(--ink);
  position: relative;
  overflow: hidden;
}
.how-section::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200, 240, 37, 0.08) 0%, transparent 70%);
  pointer-events: none;
}
.how-section .section-eyebrow { color: var(--lime); }
.how-section .section-title   { color: white; }
.how-section .section-sub     { color: rgba(255, 255, 255, 0.45); }

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.step-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 28px 24px;
  position: relative;
}
.step-num {
  font-family: 'Fredoka One', cursive;
  font-size: 48px;
  line-height: 1;
  color: rgba(200, 240, 37, 0.15);
  margin-bottom: 16px;
  display: block;
}
.step-icon { font-size: 28px; margin-bottom: 12px; display: block; }
.step-card h3 {
  font-family: 'Fredoka One', cursive;
  font-size: 18px;
  color: white;
  margin-bottom: 8px;
}
.step-card p { font-size: 13px; color: rgba(255, 255, 255, 0.5); line-height: 1.65; }
.step-line {
  position: absolute;
  top: 40px; right: -10px;
  width: 20px; height: 2px;
  background: rgba(200, 240, 37, 0.3);
}
.step-card:last-child .step-line { display: none; }

/* ═══════════════════════════════════════════════
   9. OVER ONS
   ═══════════════════════════════════════════════ */
.about-section {
  padding: 80px 64px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  background: var(--warm);
  border-top: 2px solid var(--border);
  border-bottom: 2px solid var(--border);
}
.about-section .section-eyebrow { color: var(--blue); }
.about-section p { font-size: 16px; color: var(--ink-mid); line-height: 1.8; margin-bottom: 16px; }

.about-cards { display: flex; flex-direction: column; gap: 12px; }
.about-card {
  background: white;
  border: 1.5px solid var(--border);
  border-radius: 16px;
  padding: 18px 20px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  transition: border-color 0.2s;
}
.about-card:hover { border-color: var(--blue); }
.about-card-icon {
  width: 40px; height: 40px;
  border-radius: 12px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}
.aci-lime  { background: rgba(200, 240, 37, 0.25); }
.aci-blue  { background: rgba(32,  32, 204, 0.10); }
.aci-amber { background: rgba(245, 166, 35, 0.18); }
.aci-green { background: rgba(100, 180, 80, 0.18); }
.about-card h4 {
  font-family: 'Fredoka One', cursive;
  font-size: 16px;
  color: var(--ink);
  margin-bottom: 3px;
}
.about-card p { font-size: 13px; color: var(--muted); line-height: 1.5; margin: 0; }

/* ═══════════════════════════════════════════════
   10. REVIEWS
   ═══════════════════════════════════════════════ */
.reviews-section { padding: 80px 64px; background: var(--off-white); }
.reviews-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 20px;
}
.score-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  background: white;
  border: 1.5px solid var(--border);
  border-radius: 16px;
  padding: 14px 20px;
}
.score-num {
  font-family: 'Fredoka One', cursive;
  font-size: 36px;
  color: var(--ink);
  line-height: 1;
}
.score-stars  { color: var(--amber); font-size: 16px; letter-spacing: 2px; }
.score-label  { font-size: 12px; color: var(--muted); font-weight: 700; }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.review-card {
  background: white;
  border: 1.5px solid var(--border);
  border-radius: 20px;
  padding: 22px;
  transition: border-color 0.2s;
}
.review-card:hover { border-color: var(--blue); }
.r-stars  { color: var(--amber); font-size: 14px; letter-spacing: 1px; margin-bottom: 12px; }
.r-text   { font-size: 14px; color: var(--ink-mid); line-height: 1.7; margin-bottom: 16px; }
.r-author { display: flex; align-items: center; gap: 10px; }
.r-avatar {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--blue);
  color: white;
  font-family: 'Fredoka One', cursive;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.r-name { font-weight: 700; font-size: 14px; color: var(--ink); }
.r-date { font-size: 11px; color: var(--muted); }

/* ═══════════════════════════════════════════════
   11. NEWSLETTER / CTA-SECTIE
   ═══════════════════════════════════════════════ */
.cta-section {
  padding: 80px 64px;
  background: var(--blue);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: -200px; left: 50%;
  transform: translateX(-50%);
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.06) 0%, transparent 70%);
  pointer-events: none;
}
.cta-section h2 {
  font-family: 'Fredoka One', cursive;
  font-size: clamp(32px, 4vw, 54px);
  color: white;
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
}
.cta-section h2 span { color: var(--lime); }
.cta-section p {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.65);
  max-width: 480px;
  margin: 0 auto 36px;
  line-height: 1.7;
  position: relative;
  z-index: 1;
}
.cta-form {
  display: flex;
  gap: 10px;
  max-width: 500px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.cta-form input {
  flex: 1;
  padding: 14px 22px;
  border-radius: 50px;
  border: none;
  outline: none;
  font-family: 'Nunito', sans-serif;
  font-size: 15px;
  color: white;
  background: rgba(255, 255, 255, 0.15);
}
.cta-form input::placeholder { color: rgba(255, 255, 255, 0.5); }
.cta-form input:focus { background: rgba(255, 255, 255, 0.22); }
.cta-form button {
  background: var(--lime);
  color: var(--ink);
  border: none;
  cursor: pointer;
  padding: 14px 28px;
  border-radius: 50px;
  font-family: 'Fredoka One', cursive;
  font-size: 16px;
  transition: all 0.2s;
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}
.cta-form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

/* ═══════════════════════════════════════════════
   12. FOOTER
   ═══════════════════════════════════════════════ */
footer,
.site-footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.5);
  padding: 60px 64px 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-logo-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
.footer-logo-icon {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}
.footer-logo-name {
  font-family: 'Fredoka One', cursive;
  font-size: 22px;
  color: var(--lime);
}
.footer-tagline {
  font-size: 13px;
  line-height: 1.7;
  max-width: 240px;
  color: rgba(255, 255, 255, 0.35);
}
.footer-col h4 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.28);
  margin-bottom: 16px;
}
.footer-col a {
  display: block;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.50);
  text-decoration: none;
  margin-bottom: 10px;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--lime); }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.22);
  flex-wrap: wrap;
  gap: 10px;
}
.footer-bottom a {
  color: rgba(255, 255, 255, 0.32);
  text-decoration: none;
}
.footer-bottom a:hover { color: var(--lime); }
.disclaimer {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 12px;
  padding: 14px 18px;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.25);
  line-height: 1.6;
  margin-bottom: 24px;
}

/* ═══════════════════════════════════════════════
   13. BLOCKSY SPECIFIEKE OVERRIDES
   ═══════════════════════════════════════════════ */

.ct-page-content-block,
article.post,
article.page,
.entry-content {
  background: var(--off-white);
}

.ct-breadcrumbs {
  font-size: 13px;
  color: var(--muted);
  font-family: 'Nunito', sans-serif;
}
.ct-breadcrumbs a { color: var(--blue); }

.ct-sidebar .widget-title {
  font-family: 'Fredoka One', cursive;
  color: var(--ink);
}

article.entry-card {
  background: white;
  border: 2px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  transition: border-color 0.25s, transform 0.25s;
}
article.entry-card:hover {
  border-color: var(--blue);
  transform: translateY(-4px);
}
article.entry-card .entry-title a {
  font-family: 'Fredoka One', cursive;
  font-size: 20px;
  color: var(--ink);
}
article.entry-card .entry-title a:hover { color: var(--blue); }

.ct-pagination a,
.page-numbers a {
  font-family: 'Fredoka One', cursive;
  border-radius: 50%;
  color: var(--ink-mid);
}
.ct-pagination .current,
.page-numbers .current {
  background: var(--blue) !important;
  color: white !important;
  border-radius: 50%;
}

/* ═══════════════════════════════════════════════
   14. SCROLL-BEHAVIOR HELPER
   ═══════════════════════════════════════════════ */
/* Zie §4 (NAV) voor de .is-scrolled stijlen */

/* ═══════════════════════════════════════════════
   15. RESPONSIVE
   ═══════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .ct-header .ct-container,
  .site-header .ct-container,
  nav.main-navigation { padding: 0 24px; }
  .products-grid,
  .steps-grid,
  .reviews-grid,
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  /* Site-titel kleiner op mobiel */
  .site-title a,
  .ct-header .site-logo a,
  .site-title {
    font-size: 20px !important;
  }

  /* Off-canvas menu logo ook kleiner */
  #offcanvas .site-title a,
  .ct-drawer .site-title a {
    font-size: 20px !important;
  }

  /* Logo kleiner op mobiel */
  .psilo-logo img,
  .psilo-logo .site-logo-container img {
    width: 36px !important;
    height: 36px !important;
    border-radius: 8px !important;
  }

  .ct-menu,
  .main-navigation ul,
  .nav-menu { display: none; }
  .hero { grid-template-columns: 1fr; }
  .hero-left  { padding: 48px 24px; }
  .hero-right { min-height: 380px; border-left: none; border-top: 2px solid var(--border); }
  .trust-strip { padding: 16px 24px; }
  .products-section,
  .reviews-section,
  .cta-section,
  footer,
  .site-footer  { padding: 60px 24px; }
  .products-grid,
  .steps-grid,
  .reviews-grid,
  .footer-grid  { grid-template-columns: 1fr; }
  .about-section { grid-template-columns: 1fr; padding: 60px 24px; gap: 40px; }
  .how-section  { padding: 60px 24px; }
  .cta-form     { flex-direction: column; }
  .reviews-header { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 38px; }
  .hero-stats { gap: 14px; }
  .trust-strip { flex-direction: column; align-items: flex-start; }
  .cta-section { padding: 48px 20px; }
}

/* ═══════════════════════════════════════════════
   SITE SLOGAN — onder .site-title
   Zelfde bubbelig Fredoka One-stijl als het logo
   ═══════════════════════════════════════════════ */

/* WordPress standaard: .site-description */
.site-description,
.ct-site-branding .site-description,
.site-title ~ .site-description {
  font-family: 'Fredoka One', cursive;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: var(--lime);           /* #C8F025 — zelfde groen als het logo */
  line-height: 1.2;
  margin: 2px 0 0 0;
  display: block;
  text-transform: none;
  opacity: 1;
}

/* Blocksy-specifieke varianten */
.ct-header .site-description,
.ct-header [class*="site-description"],
.header-branding .site-description {
  font-family: 'Fredoka One', cursive;
  font-size: 15px;
  color: var(--lime);
  margin-top: 2px;
}

/* Zorgt dat branding als kolom wordt weergegeven (titel boven, slogan eronder) */
.site-title,
.ct-header .site-logo,
.ct-header .site-branding {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}

/* Mobile: iets kleiner */
@media (max-width: 768px) {
  .site-description,
  .ct-header .site-description {
    font-size: 13px;
  }
}


/* ══════════════════════════════════
   16. KOPPEN-FONT — Hello Oppa (alleen grote koppen)
   Toegevoegd in v5.0.0.
   ALLEEN grote koppen wisselen van font. Menu, knoppen,
   prijzen, cijfers, logo en sitenaam blijven Fredoka One
   (schoner + leesbaarder). 'Fredoka One' staat als fallback.
   ══════════════════════════════════ */
.hero h1,
.hero .page-title,
.section-title,
.cta-section h2,
.step-card h3,
.product-name,
.about-card h4,
article.entry-card .entry-title a,
.ct-sidebar .widget-title {
  font-family: 'Hello Oppa', 'Fredoka One', cursive !important;
}


/* ═══════════════════════════════════════════════
   16b. LIVE HOMEPAGE-KOPPEN (Blocksy/Gutenberg-markup)
   De live homepage gebruikt eigen klassen i.p.v. de
   prototype-klassen hierboven. Geverifieerd in de DOM:
   hero = .pd-hero h1, sectietitels = .pd-sec-title,
   productnamen = .pd-card-name. .pd-hp scope't de hele
   homepage zodat ook koploze h2/h3 meegaan.
   ═══════════════════════════════════════════════ */
.pd-hp h1,
.pd-hp h2,
.pd-hp h3,
.pd-hero h1,
.pd-sec-title,
.pd-card-name {
  font-family: 'Hello Oppa', 'Fredoka One', cursive !important;
}


/* ═══════════════════════════════════════════════
   17. TYPE-SCHAAL HOMEPAGE-KOPPEN (leesbaarheid)
   Hello Oppa oogt compacter dan Fredoka One, dus de
   kleinere koppen waren te klein (h3 stond op 16-21px).
   Hier fluid type met clamp(): groter op desktop én
   netjes meeschalend op mobiel. Geverifieerd in de DOM.
   ═══════════════════════════════════════════════ */
.pd-hero h1 {
  font-size: clamp(2.4rem, 7vw, 4.75rem) !important;
  line-height: 1.06 !important;
}
.pd-hp h2 {
  font-size: clamp(2rem, 4.5vw, 3.4rem) !important;
  line-height: 1.14 !important;
}
.pd-hp h3 {
  font-size: clamp(1.35rem, 2.5vw, 1.6rem) !important;
  line-height: 1.25 !important;
}
.pd-hp .pd-card-name {
  font-size: clamp(1.35rem, 2.4vw, 1.6rem) !important;
  line-height: 1.2 !important;
}


/* ═══════════════════════════════════════════════
   16c. SITENAAM IN HELLO OPPA (v5.0.4)
   Op verzoek: de site-titel (logo-tekst, .site-title
   in .site-branding) in hetzelfde display-font als de
   koppen. Maat-compensatie op desktop omdat Hello Oppa
   compacter oogt; mobiel blijft 17px via de bestaande
   media query + inline rule.
   ═══════════════════════════════════════════════ */
.site-title,
.site-title a {
  font-family: 'Hello Oppa', 'Fredoka One', cursive !important;
}

@media (min-width: 769px) {
  .site-branding .site-title a,
  .ct-header .site-title a {
    font-size: 30px !important;
  }
}
