/* ============================================================
   SINTERKLAASDECORATIE.NL — BEM px-* Component Classes
   Gedeelde stijlen voor alle BB modules en reusable components.
   ============================================================ */


/* ==========================================================================
   px-btn — Knop component
   ========================================================================== */

.px-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.875rem 1.75rem;
  border: 1px solid var(--ink);
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s;
}

.px-btn:hover {
  background: var(--ink);
  color: var(--paper);
}

.px-btn--primary {
  background: var(--ink);
  color: var(--paper);
}

.px-btn--primary:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--ink);
}

.px-btn--secondary {
  background: transparent;
  color: var(--ink);
}

.px-btn--secondary:hover {
  background: var(--ink);
  color: var(--paper);
}

.px-btn--small {
  font-size: var(--text-d05);
  padding: var(--space-d05) var(--space-d1);
}

.px-btn--large {
  font-size: var(--text-d075);
  padding: var(--space-d1) var(--space-d2);
}

@media (max-width: 640px) {
  .px-btn { padding: 0.75rem 1.5rem; font-size: 10px; }
}


/* ==========================================================================
   px-section-header — Sectie kopje (script + titel + lijn)
   ========================================================================== */

.px-section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.px-section-header__script {
  font-family: var(--font-script);
  font-size: 2rem;
  color: var(--gold);
  display: block;
  line-height: 1;
  margin-bottom: 0.25rem;
}

.px-section-header__title {
  font-family: var(--font-body);
  font-size: clamp(1.5rem, 1.2rem + 1vw, 2rem);
  font-weight: 400;
  font-style: italic;
  color: var(--ink);
  margin: 0 0 0.75rem;
  letter-spacing: 0.01em;
}

.px-section-header__rule {
  display: inline-block;
  width: 60px;
  height: 1px;
  background: var(--gold);
  vertical-align: middle;
  margin: 0 0.75rem;
}

.px-section-header__sub {
  font-size: 13px;
  color: var(--text-muted);
  max-width: 520px;
  margin: 0 auto;
  letter-spacing: 0.02em;
}

@media (max-width: 640px) {
  .px-section-header { margin-bottom: 2rem; }
  .px-section-header__script { font-size: 1.5rem; }
  .px-section-header__title { font-size: 1.25rem; }
  .px-section-header__rule { width: 40px; margin: 0 0.5rem; }
  .px-section-header__sub { font-size: 12px; }
}


/* ==========================================================================
   px-card — Product kaart (shop grid, gerelateerd, cross-sells)
   ========================================================================== */

.px-card {
  display: block;
  text-decoration: none;
  color: inherit;
  background: var(--white);
  border: 1px solid var(--line-soft);
  overflow: hidden;
  transition: transform var(--duration-normal) var(--ease-smooth),
              box-shadow var(--duration-normal) var(--ease-smooth);
}

.px-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-elevated);
  color: inherit;
}

.px-card__image {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--cream);
}

.px-card__image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--duration-slow) var(--ease-smooth);
}

.px-card:hover .px-card__image img {
  transform: scale(1.05);
}

.px-card__badge {
  position: absolute;
  top: var(--space-d05);
  left: var(--space-d05);
  font-family: var(--font-display);
  font-size: var(--text-d05);
  font-weight: var(--weight-semibold);
  text-transform: uppercase;
  letter-spacing: var(--ls-wide);
  padding: var(--space-d025) var(--space-d05);
  background: var(--ink);
  color: var(--gold-light);
  z-index: 2;
}

.px-card__info {
  padding: var(--space-d075);
}

.px-card__category {
  font-family: var(--font-display);
  font-size: var(--text-d05);
  font-weight: var(--weight-medium);
  text-transform: uppercase;
  letter-spacing: var(--ls-wider);
  color: var(--gold);
  display: block;
  margin-bottom: var(--space-d025);
}

.px-card__title {
  font-family: var(--font-display);
  font-size: var(--text-d05);
  font-weight: var(--weight-medium);
  color: var(--text);
  margin: 0 0 var(--space-d025);
  line-height: var(--lh-normal);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 2.5em;
}

.px-card__price {
  font-family: var(--font-display);
  font-weight: var(--weight-bold);
  font-size: var(--text-d075);
  color: var(--ink);
}

.px-card__price-old {
  font-size: var(--text-d05);
  font-weight: var(--weight-regular);
  color: var(--text-muted);
  text-decoration: line-through;
  margin-right: var(--space-d025);
}


/* ==========================================================================
   px-accordion — FAQ / inklapbare secties
   ========================================================================== */

.px-accordion__item {
  border-bottom: 1px solid var(--line);
}

.px-accordion__item:first-child {
  border-top: 1px solid var(--line);
}

.px-accordion__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-d075);
  padding: var(--space-d1) 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: var(--text-d075);
  font-weight: var(--weight-semibold);
  color: var(--ink);
  text-align: left;
  transition: color var(--duration-fast);
}

.px-accordion__trigger:hover {
  color: var(--gold);
}

.px-accordion__trigger svg {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  transition: transform var(--duration-normal);
  color: var(--gold);
}

.px-accordion__item.is-open .px-accordion__trigger svg {
  transform: rotate(180deg);
}

.px-accordion__panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}

.px-accordion__item.is-open .px-accordion__panel {
  max-height: 500px;
  padding-bottom: var(--space-d1);
}

.px-accordion__panel p {
  color: var(--text);
  margin: 0;
  line-height: var(--lh-relaxed);
  font-family: var(--font-body);
}


/* ==========================================================================
   px-usps — Trust badges / USP blok
   ========================================================================== */

.px-usps {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-d05);
  padding: var(--space-d1);
  background: var(--cream);
  border: 1px solid var(--line);
}

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

.px-usps__item {
  display: flex;
  gap: var(--space-d05);
  align-items: flex-start;
}

.px-usps__icon {
  width: 20px; height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
}

.px-usps__icon svg {
  width: 20px;
  height: 20px;
}

.px-usps__item strong {
  font-family: var(--font-display);
  font-size: var(--text-d05);
  font-weight: var(--weight-semibold);
  display: block;
  color: var(--ink);
}

.px-usps__sub {
  font-family: var(--font-display);
  font-size: var(--text-d05);
  color: var(--text-muted);
  display: block;
  font-weight: var(--weight-regular);
}


/* ==========================================================================
   px-tabs — Tab navigatie
   ========================================================================== */

.px-tabs__nav {
  display: flex;
  gap: 0;
  border-bottom: 1px solid var(--line);
  margin-bottom: var(--space-d2);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.px-tabs__nav::-webkit-scrollbar { display: none; }

.px-tabs__tab {
  font-family: var(--font-display);
  font-size: var(--text-d075);
  font-weight: var(--weight-medium);
  color: var(--text-muted);
  background: none;
  border: none;
  padding: var(--space-d075) var(--space-d1);
  cursor: pointer;
  position: relative;
  white-space: nowrap;
  transition: color var(--duration-fast);
}

.px-tabs__tab::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0;
  width: 100%; height: 2px;
  background: transparent;
  transition: background var(--duration-normal);
}

.px-tabs__tab:hover { color: var(--ink); }

.px-tabs__tab.is-active {
  color: var(--ink);
  font-weight: var(--weight-semibold);
}

.px-tabs__tab.is-active::after {
  background: var(--gold);
}

.px-tabs__panel {
  display: none;
}

.px-tabs__panel.is-active {
  display: block;
  animation: pxTabFadeIn 0.3s ease;
}

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


/* ==========================================================================
   px-grid — Responsive grid systeem
   ========================================================================== */

.px-grid {
  display: grid;
  gap: var(--space-d1);
}

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

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


/* ==========================================================================
   px-header — Gecombineerde header
   ========================================================================== */

.px-header__topbar {
  background: var(--ink);
  color: var(--cream);
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
  padding: 0.5rem 0;
}
.px-header__topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-d075);
  flex-wrap: wrap;
}
.px-header__topbar a { color: var(--gold-light); text-decoration: none; }
.px-header__topbar a:hover { color: var(--white); }

.px-header__brand {
  background: var(--paper);
  padding: 3.5rem 1rem 2.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.px-header__brand-inner {
  position: relative;
  z-index: 1;
}
.px-header__confetti {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.px-header__confetti span {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.85;
}
.px-header__confetti span:nth-child(1)  { top: 12%; left:  8%; width: 8px;  height: 8px;  background: var(--gold-light); }
.px-header__confetti span:nth-child(2)  { top: 25%; left: 14%; width: 14px; height: 14px; }
.px-header__confetti span:nth-child(3)  { top: 58%; left:  6%; width: 6px;  height: 6px;  background: var(--gold-light); }
.px-header__confetti span:nth-child(4)  { top: 78%; left: 12%; width: 10px; height: 10px; }
.px-header__confetti span:nth-child(5)  { top: 15%; left: 22%; width: 5px;  height: 5px;  background: var(--gold-soft); }
.px-header__confetti span:nth-child(6)  { top: 45%; left: 18%; width: 12px; height: 12px; }
.px-header__confetti span:nth-child(7)  { top: 70%; left: 24%; width: 7px;  height: 7px;  background: var(--gold-light); }
.px-header__confetti span:nth-child(8)  { top: 10%; right: 10%; width: 12px; height: 12px; }
.px-header__confetti span:nth-child(9)  { top: 30%; right:  6%; width: 8px;  height: 8px;  background: var(--gold-soft); }
.px-header__confetti span:nth-child(10) { top: 55%; right: 14%; width: 14px; height: 14px; }
.px-header__confetti span:nth-child(11) { top: 20%; right: 22%; width: 6px;  height: 6px;  background: var(--gold-light); }
.px-header__confetti span:nth-child(12) { top: 65%; right: 20%; width: 9px;  height: 9px; }
.px-header__confetti span:nth-child(13) { top: 80%; right:  8%; width: 11px; height: 11px; background: var(--gold-soft); }
.px-header__confetti span:nth-child(14) { top: 35%; right: 32%; width: 5px;  height: 5px; }
.px-header__confetti span:nth-child(15) { top: 75%; left:  32%; width: 7px;  height: 7px;  background: var(--gold-light); }
.px-header__confetti span:nth-child(16) { top: 12%; left: 42%; width: 6px;  height: 6px; }
.px-header__logo {
  font-family: var(--font-script);
  font-size: clamp(3rem, 2rem + 5vw, 5.5rem);
  color: var(--ink);
  line-height: 1;
  font-weight: 400;
  letter-spacing: 0.01em;
  display: inline-block;
  text-decoration: none;
}
.px-header__logo:hover { color: var(--ink); }
.px-header__tagline {
  font-family: var(--font-display);
  font-size: clamp(0.7rem, 0.65rem + 0.2vw, 0.8125rem);
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--charcoal);
  margin-top: 0.75rem;
  font-weight: 400;
}

.px-header__util {
  background: var(--cream);
  border-bottom: 1px solid var(--line);
  padding: 0.5rem 0;
}
.px-header__util-inner {
  display: flex;
  justify-content: flex-end;
  gap: 1.25rem;
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.px-header__util-inner a {
  color: var(--text-muted);
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  text-decoration: none;
}
.px-header__util-inner a:hover { color: var(--ink); }
.px-header__icon {
  width: 14px; height: 14px;
  stroke: currentColor; fill: none; stroke-width: 1.5;
}
.px-header__cart-count {
  background: var(--ink);
  color: var(--paper);
  padding: 0 5px;
  font-size: 10px;
  border-radius: 8px;
  margin-left: var(--space-d001);
}

.px-header__nav {
  background: var(--cream);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.px-header__nav-list {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 0;
  list-style: none;
  padding: 0; margin: 0;
}
.px-header__nav-list li + li::before {
  content: '\00B7';
  color: var(--gold);
  margin: 0 0.75rem;
  opacity: 0.5;
}
.px-header__nav-list a {
  display: inline-block;
  padding: 0.875rem 0.25rem;
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--charcoal);
  font-weight: 500;
  text-decoration: none;
}
.px-header__nav-list a:hover { color: var(--gold); }

/* Hamburger button — hidden on desktop */
.px-header__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  width: 32px;
  height: 32px;
  padding: 4px;
  border: none;
  background: none;
  cursor: pointer;
}
.px-header__burger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--charcoal);
  border-radius: 1px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.px-header__burger.is-open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}
.px-header__burger.is-open span:nth-child(2) {
  opacity: 0;
}
.px-header__burger.is-open span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

@media (max-width: 900px) {
  .px-header__nav-list a { font-size: 11px; letter-spacing: 0.08em; }
  .px-header__nav-list li + li::before { margin: 0 0.4rem; }
}
@media (max-width: 768px) {
  /* Brand: compacter maar leesbaar */
  .px-header__brand { padding: 2rem 1rem 1.5rem; }
  .px-header__logo { font-size: clamp(2.2rem, 1.5rem + 4vw, 3rem); }
  .px-header__tagline { margin-top: 0.5rem; font-size: 0.65rem; letter-spacing: 0.25em; }

  /* Topbar compact + gecentreerd */
  .px-header__topbar { font-size: 10px; letter-spacing: 0.05em; }
  .px-header__topbar-inner { justify-content: center; gap: 0.5rem; }

  /* Confetti verbergen op mobiel */
  .px-header__confetti { display: none; }

  /* Util bar: fixed via JS wanneer voorbij gescrolled */
  .px-header__util {
    transition: box-shadow 0.25s ease;
  }
  .px-header__util.is-stuck {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    box-shadow: 0 1px 8px rgba(0, 0, 0, 0.1);
  }
  .px-header__burger { display: flex; }
  .px-header__util-inner {
    justify-content: flex-start;
    gap: 1rem;
  }
  .px-header__util-label { display: none; }
  .px-header__icon { width: 18px; height: 18px; }

  /* Nav: verborgen, openklapbaar */
  .px-header__nav {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.3s ease;
    overflow: hidden;
  }
  .px-header__nav.is-open {
    grid-template-rows: 1fr;
  }
  /* Nav als fixed dropdown wanneer util bar sticky is */
  .px-header__nav.is-stuck-ctx {
    position: fixed;
    left: 0;
    right: 0;
    z-index: 99;
  }
  .px-header__nav.is-stuck-ctx.is-open {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  }
  .px-header__nav-list {
    overflow: hidden;
    flex-direction: column;
    align-items: stretch;
  }
  .px-header__nav-list li + li::before { display: none; }
  .px-header__nav-list li { border-top: 1px solid var(--line); }
  .px-header__nav-list li:first-child { border-top: none; }
  .px-header__nav-list a {
    display: block;
    padding: 0.75rem 1rem;
    font-size: 12px;
    text-align: left;
  }
}


/* ==========================================================================
   px-footer — Gecombineerde footer
   ========================================================================== */

.px-footer {
  background: var(--ink);
  color: var(--cream);
  padding: 3.5rem 0 1.5rem;
}
.px-footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}
.px-footer__logo {
  font-family: var(--font-script);
  font-size: 2.25rem;
  color: var(--paper);
  line-height: 1;
  display: block;
  margin-bottom: 0.5rem;
  text-decoration: none;
}
.px-footer__logo:hover { color: var(--paper); }
.px-footer__tagline {
  font-family: var(--font-display);
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1rem;
}
.px-footer__desc {
  font-family: var(--font-display);
  font-size: 13px;
  color: rgba(253, 252, 247, 0.65);
  max-width: 300px;
  line-height: 1.6;
}
.px-footer__socials {
  display: flex; gap: 0.75rem; margin-top: 1.25rem;
}
.px-footer__socials a {
  width: 34px; height: 34px;
  border: 1px solid rgba(253, 252, 247, 0.25);
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--cream);
  text-decoration: none;
}
.px-footer__socials svg {
  width: 16px; height: 16px;
}
.px-footer__socials a:hover { border-color: var(--gold); color: var(--gold); }

.px-footer__col h4 {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin: 0 0 1rem;
}
.px-footer__col ul { list-style: none; padding: 0; margin: 0; }
.px-footer__col li { margin-bottom: 0.5rem; }
.px-footer__col a {
  color: rgba(253, 252, 247, 0.75);
  font-size: 13px;
  text-decoration: none;
}
.px-footer__col a:hover { color: var(--gold-light); }

/* Newsletter in footer — override GF Orbital theme for dark bg */
.px-footer__newsletter-text {
  font-size: 13px;
  color: rgba(253, 252, 247, 0.65);
  line-height: 1.6;
  margin: 0 0 1rem;
}
.px-footer__newsletter .gform_wrapper {
  --gf-color-in-ctrl: transparent;
  --gf-color-in-ctrl-contrast: var(--cream);
  --gf-color-in-ctrl-contrast-rgb: 253, 252, 247;
  --gf-color-in-ctrl-darker: transparent;
  --gf-color-in-ctrl-light: rgba(253, 252, 247, 0.15);
  --gf-color-in-ctrl-dark: rgba(253, 252, 247, 0.5);
  --gf-color-out-ctrl-dark: rgba(253, 252, 247, 0.5);
  --gf-color-out-ctrl-light: rgba(253, 252, 247, 0.1);
  --gf-ctrl-border-color: rgba(253, 252, 247, 0.25);
  --gf-color-primary: var(--gold);
  --gf-color-primary-rgb: 196, 164, 105;
  --gf-color-primary-contrast: var(--ink);
  --gf-ctrl-label-color-primary: var(--cream);
  --gf-ctrl-label-color-secondary: rgba(253, 252, 247, 0.65);
  margin: 0 !important;
}
.px-footer__newsletter .gform_fields {
  gap: 0.5rem !important;
}
.px-footer__newsletter .gfield {
  margin: 0 !important;
  padding: 0 !important;
}
.px-footer__newsletter .gform_body input[type="email"],
.px-footer__newsletter .gform_body input[type="text"] {
  width: 100% !important;
  padding: 0.75rem 0.875rem !important;
  font-family: var(--font-body) !important;
  font-size: 13px !important;
  border: 1px solid rgba(253, 252, 247, 0.25) !important;
  border-radius: 0 !important;
  background: transparent !important;
  color: var(--cream) !important;
}
.px-footer__newsletter .gform_body input::placeholder {
  color: rgba(253, 252, 247, 0.4) !important;
}
.px-footer__newsletter .gform_body input:focus {
  outline: none !important;
  border-color: var(--gold) !important;
  box-shadow: none !important;
}
.px-footer__newsletter .gform_footer,
.px-footer__newsletter .gform_page_footer {
  margin: 0 !important;
  padding: 0.5rem 0 0 !important;
}
.px-footer__newsletter .gform_button,
.px-footer__newsletter input[type="submit"] {
  width: 100% !important;
  padding: 0.75rem !important;
  font-family: var(--font-display) !important;
  font-size: 11px !important;
  font-weight: 600 !important;
  letter-spacing: 0.18em !important;
  text-transform: uppercase !important;
  background: var(--gold) !important;
  color: var(--ink) !important;
  border: 1px solid var(--gold) !important;
  border-radius: 0 !important;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.px-footer__newsletter .gform_button:hover,
.px-footer__newsletter input[type="submit"]:hover {
  background: var(--gold-light) !important;
  border-color: var(--gold-light) !important;
}
.px-footer__newsletter .gform_confirmation_message {
  font-size: 13px;
  color: var(--gold-light);
}
.px-footer__newsletter .gfield_label,
.px-footer__newsletter .gform_title,
.px-footer__newsletter .gform_description {
  display: none !important;
}
.px-footer__newsletter .gfield_validation_message,
.px-footer__newsletter .validation_message {
  font-size: 12px !important;
  color: #e57373 !important;
  margin-top: 0.25rem;
}

.px-footer__bottom {
  border-top: 1px solid rgba(253, 252, 247, 0.1);
  padding-top: 1.5rem;
  text-align: center;
  font-size: 11px;
  letter-spacing: 0.1em;
  color: rgba(253, 252, 247, 0.5);
  text-transform: uppercase;
}

@media (max-width: 900px) {
  .px-footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .px-footer { padding: 2.5rem 0 1.25rem; }
  .px-footer__grid { grid-template-columns: 1fr; gap: 2rem; }
  .px-footer__brand { text-align: center; }
  .px-footer__logo { font-size: 1.75rem; }
  .px-footer__desc { max-width: none; }
  .px-footer__socials { justify-content: center; }
  .px-footer__col { text-align: center; }
}


/* ==========================================================================
   px-hero — Monochroom silhouet scene
   ========================================================================== */

.px-hero {
  background:
    radial-gradient(ellipse at 40% 45%, #3A2E1F 0%, #1A0F05 70%, #0A0603 100%);
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.px-hero__canvas {
  position: relative;
  width: 100%;
  aspect-ratio: 5/2;
  max-height: 520px;
}
.px-hero__lights {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.px-hero__lights span {
  position: absolute;
  width: 6px;
  height: 6px;
  background: #FFE9A8;
  border-radius: 50%;
  box-shadow: 0 0 12px 3px rgba(255, 220, 120, 0.6);
  opacity: 0.9;
}
.px-hero__lights span:nth-child(1)  { top: 15%; left: 12%; }
.px-hero__lights span:nth-child(2)  { top: 22%; left: 28%; }
.px-hero__lights span:nth-child(3)  { top: 10%; left: 45%; width: 4px; height: 4px; }
.px-hero__lights span:nth-child(4)  { top: 18%; left: 62%; }
.px-hero__lights span:nth-child(5)  { top: 25%; left: 78%; width: 8px; height: 8px; }
.px-hero__lights span:nth-child(6)  { top: 12%; left: 88%; }
.px-hero__lights span:nth-child(7)  { top: 32%; left:  8%; width: 4px; height: 4px; }
.px-hero__lights span:nth-child(8)  { top: 35%; left: 22%; width: 5px; height: 5px; }
.px-hero__lights span:nth-child(9)  { top: 38%; left: 52%; }
.px-hero__lights span:nth-child(10) { top: 30%; left: 72%; width: 4px; height: 4px; }
.px-hero__lights span:nth-child(11) { top: 40%; left: 92%; width: 5px; height: 5px; }
.px-hero__lights span:nth-child(12) { top: 45%; left: 38%; width: 3px; height: 3px; }
.px-hero__svg {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  display: block;
}
.px-hero__badge {
  position: absolute;
  left: 12%;
  top: 48%;
  transform: translateY(-50%) rotate(-4deg);
  background: var(--paper);
  border: 2px solid var(--ink);
  width: 130px;
  height: 130px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
}
.px-hero__badge-script {
  font-family: var(--font-script);
  font-size: 1.75rem;
  color: var(--ink);
  line-height: 0.95;
}
.px-hero__badge-small {
  font-family: var(--font-script);
  font-size: 1.25rem;
  color: var(--gold);
  margin-top: 0.125rem;
}

@media (max-width: 900px) {
  .px-hero__canvas { aspect-ratio: 3/2; }
  .px-hero__badge { left: 6%; width: 110px; height: 110px; }
}
@media (max-width: 640px) {
  .px-hero__canvas { aspect-ratio: 4/3; }
  .px-hero__badge { width: 90px; height: 90px; left: 4%; }
  .px-hero__badge-script { font-size: 1.25rem; }
  .px-hero__badge-small { font-size: 0.875rem; }
}


/* ==========================================================================
   px-producten — Product grid
   ========================================================================== */

.px-producten {
  background: var(--paper);
  padding: var(--space-d3) 0;
}
.px-producten__grid {
  display: grid;
  gap: var(--space-d2) var(--space-d15);
}
.px-producten__grid--4 { grid-template-columns: repeat(4, 1fr); }
.px-producten__grid--3 { grid-template-columns: repeat(3, 1fr); }

.px-producten__product {
  text-align: center;
  position: relative;
  display: block;
  text-decoration: none;
  color: inherit;
}
.px-producten__image-wrapper {
  aspect-ratio: 1/1;
  background: var(--cream);
  overflow: hidden;
  margin-bottom: var(--space-d075);
  position: relative;
}
.px-producten__image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.px-producten__product:hover .px-producten__image-wrapper img {
  transform: scale(1.02);
}
.px-producten__title {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: var(--weight-regular);
  color: var(--text);
  margin: 0 0 var(--space-d025);
  line-height: 1.4;
  letter-spacing: 0.01em;
  min-height: 2.8em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.px-producten__price {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: var(--weight-semibold);
  color: var(--ink);
  letter-spacing: 0.01em;
}
.px-producten__footer {
  text-align: center;
  margin-top: var(--space-d2);
}

@media (max-width: 900px) {
  .px-producten__grid--4 { grid-template-columns: repeat(3, 1fr); gap: 2.5rem 1.5rem; }
}
@media (max-width: 640px) {
  .px-producten { padding: 2.5rem 0; }
  .px-producten__grid--4,
  .px-producten__grid--3 { grid-template-columns: repeat(2, 1fr); gap: 1.5rem 1rem; }
  .px-producten__title { font-size: 11px; min-height: 2.4em; }
}


/* ==========================================================================
   px-side-hero — Promo banner naast elkaar
   ========================================================================== */

.px-side-hero {
  background: var(--cream);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: var(--space-d3) 0;
}
.px-side-hero__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: var(--space-d2);
  align-items: center;
}
.px-side-hero--reversed .px-side-hero__grid {
  direction: rtl;
}
.px-side-hero--reversed .px-side-hero__grid > * {
  direction: ltr;
}
.px-side-hero__media {
  aspect-ratio: 4/3;
  overflow: hidden;
  border: 1px solid var(--line);
}
.px-side-hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.px-side-hero__image-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(26,26,26,0.05), transparent), var(--paper);
}
.px-side-hero__eyebrow {
  font-family: var(--font-script);
  font-size: 1.75rem;
  color: var(--gold);
  display: block;
  line-height: 1;
}
.px-side-hero__title {
  font-family: var(--font-body);
  font-size: clamp(1.5rem, 1.2rem + 1.2vw, 2.25rem);
  font-style: italic;
  font-weight: 400;
  color: var(--ink);
  margin: 0.5rem 0 1rem;
  line-height: 1.15;
}
.px-side-hero__text {
  color: var(--text);
  font-size: 14px;
  margin-bottom: 1.5rem;
  max-width: 460px;
}

@media (max-width: 900px) {
  .px-side-hero__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .px-side-hero { padding: 2.5rem 0; }
  .px-side-hero__grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .px-side-hero--reversed .px-side-hero__grid { direction: ltr; }
  .px-side-hero__eyebrow { font-size: 1.5rem; }
  .px-side-hero__title { font-size: 1.35rem; }
  .px-side-hero__text { font-size: 13px; max-width: none; }
}


/* ==========================================================================
   px-over — Over Janneke sectie
   ========================================================================== */

.px-over {
  background: var(--paper);
  padding: var(--space-d3) 0;
}
.px-over__inner {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}
.px-over__portrait {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: var(--cream);
  margin: 0 auto 1.5rem;
  border: 4px solid var(--white);
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 0.5rem;
}
.px-over__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}
.px-over__letter {
  font-family: var(--font-script);
  font-size: 5.5rem;
  color: var(--gold);
  line-height: 1;
}
.px-over__eyebrow {
  font-family: var(--font-script);
  font-size: 2rem;
  color: var(--gold);
  line-height: 1;
}
.px-over__title {
  font-family: var(--font-body);
  font-size: clamp(1.5rem, 1.2rem + 1vw, 2rem);
  font-style: italic;
  font-weight: 400;
  color: var(--ink);
  margin: 0.5rem 0 1.25rem;
}
.px-over__text {
  color: var(--text);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}
.px-over__sig {
  font-family: var(--font-script);
  font-size: 2.25rem;
  color: var(--ink);
  line-height: 1;
  margin-top: 0.75rem;
}

@media (max-width: 640px) {
  .px-over { padding: 2.5rem 0; }
  .px-over__portrait { width: 110px; height: 110px; }
  .px-over__letter { font-size: 4rem; }
  .px-over__eyebrow { font-size: 1.5rem; }
  .px-over__title { font-size: 1.35rem; }
  .px-over__text { font-size: 14px; }
  .px-over__sig { font-size: 1.75rem; }
}


/* ==========================================================================
   px-nieuwsbrief — Nieuwsbrief aanmeld sectie
   ========================================================================== */

.px-nieuwsbrief {
  background: var(--cream);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: var(--space-d3) 0;
}
.px-nieuwsbrief__inner {
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
}
.px-nieuwsbrief__eyebrow {
  font-family: var(--font-script);
  font-size: 2rem;
  color: var(--gold);
  display: block;
  line-height: 1;
}
.px-nieuwsbrief__title {
  font-family: var(--font-body);
  font-style: italic;
  font-weight: 400;
  color: var(--ink);
  font-size: clamp(1.375rem, 1.1rem + 0.9vw, 1.75rem);
  margin: 0.5rem 0 1rem;
}
.px-nieuwsbrief__text {
  font-size: 13px;
  color: var(--text-muted);
  max-width: 520px;
  margin: 0 auto;
  letter-spacing: 0.02em;
}
.px-nieuwsbrief__form {
  display: flex;
  gap: 0;
  margin-top: 1.5rem;
  border: 1px solid var(--ink);
  background: var(--paper);
}
.px-nieuwsbrief__input {
  flex: 1;
  padding: 0.875rem 1rem;
  font-family: var(--font-display);
  font-size: 13px;
  border: 0;
  background: transparent;
  color: var(--ink);
}
.px-nieuwsbrief__input:focus { outline: none; }
.px-nieuwsbrief__button {
  background: var(--ink);
  color: var(--paper);
  border: 0;
  padding: 0 1.75rem;
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: var(--weight-semibold);
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.px-nieuwsbrief__button:hover { background: var(--gold); color: var(--ink); }

@media (max-width: 640px) {
  .px-nieuwsbrief { padding: 2.5rem 0; }
  .px-nieuwsbrief__eyebrow { font-size: 1.5rem; }
  .px-nieuwsbrief__title { font-size: 1.25rem; }
  .px-nieuwsbrief__text { font-size: 12px; }
  .px-nieuwsbrief__form {
    flex-direction: column;
    gap: 0.5rem;
    border: 0;
    background: transparent;
  }
  .px-nieuwsbrief__input {
    border: 1px solid var(--ink);
    background: var(--paper);
  }
  .px-nieuwsbrief__button {
    padding: 0.875rem;
    border: 1px solid var(--ink);
  }
}


/* ==========================================================================
   px-search — Zoekpagina & live zoeken
   ========================================================================== */

.px-search__hero {
  background: var(--cream);
  padding: var(--space-d3) 0 var(--space-d2);
  border-bottom: 1px solid var(--line);
}

.px-search__form {
  max-width: 640px;
  margin: 0 auto;
  position: relative;
}

.px-search__input-wrap {
  display: flex;
  align-items: center;
  background: var(--white);
  border: 1px solid var(--line);
  transition: border-color var(--duration-normal) var(--ease-smooth),
              box-shadow var(--duration-normal) var(--ease-smooth);
}

.px-search__input-wrap:focus-within {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(var(--px-color-custom-rgb), 0.12);
}

.px-search__icon {
  flex-shrink: 0;
  margin-left: var(--space-d075);
  color: var(--text-muted);
  width: 18px;
  height: 18px;
}

.px-search__input {
  flex: 1;
  border: none;
  background: transparent;
  font-family: var(--font-display);
  font-size: 15px;
  color: var(--ink);
  padding: var(--space-d075);
  outline: none;
  min-width: 0;
}

.px-search__input::placeholder {
  color: var(--text-muted);
  font-weight: 300;
}

/* Remove native search cancel button */
.px-search__input::-webkit-search-cancel-button {
  -webkit-appearance: none;
}

.px-search__submit {
  flex-shrink: 0;
  border: none;
  margin: 3px;
}

/* ── Results area ── */

.px-search__results {
  padding: var(--space-d2) 0 var(--space-d3);
}

.px-search__count {
  font-family: var(--font-display);
  font-size: 13px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: var(--ls-wide);
  margin: 0 0 var(--space-d15);
}

/* ── Live search dropdown ── */

.px-search__live {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--white);
  border: 1px solid var(--line);
  border-top: none;
  box-shadow: var(--shadow-elevated);
  z-index: 100;
  max-height: 420px;
  overflow-y: auto;
}

.px-search__live-item {
  display: flex;
  align-items: center;
  gap: var(--space-d075);
  padding: var(--space-d05) var(--space-d075);
  text-decoration: none;
  color: inherit;
  transition: background var(--duration-fast);
}

.px-search__live-item:hover,
.px-search__live-item.is-active {
  background: var(--cream);
}

.px-search__live-thumb {
  width: 48px;
  height: 48px;
  object-fit: cover;
  background: var(--cream);
  flex-shrink: 0;
}

.px-search__live-info {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.px-search__live-title {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.px-search__live-price {
  font-family: var(--font-display);
  font-size: 12px;
  color: var(--text-muted);
}

.px-search__live-all {
  display: block;
  text-align: center;
  padding: var(--space-d075);
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: var(--ls-wide);
  text-transform: uppercase;
  color: var(--gold);
  border-top: 1px solid var(--line);
  text-decoration: none;
  transition: background var(--duration-fast);
}

.px-search__live-all:hover {
  background: var(--cream);
  color: var(--gold);
}

.px-search__live-empty {
  padding: var(--space-d1);
  text-align: center;
  font-family: var(--font-display);
  font-size: 13px;
  color: var(--text-muted);
}

/* ── Empty / no results state ── */

.px-search__empty {
  text-align: center;
  padding: var(--space-d3) 0;
}

.px-search__empty-text {
  font-family: var(--font-body);
  font-size: var(--text-d1);
  font-style: italic;
  color: var(--text);
  margin: 0 0 var(--space-d05);
}

.px-search__empty-hint {
  font-family: var(--font-display);
  font-size: 14px;
  color: var(--text-muted);
  margin: 0 0 var(--space-d15);
}

.px-search__cats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-d05);
}

.px-search__cat-link {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: var(--ls-wider);
  text-transform: uppercase;
  padding: var(--space-d05) var(--space-d1);
  border: 1px solid var(--line);
  color: var(--ink);
  text-decoration: none;
  transition: all var(--duration-normal) var(--ease-smooth);
}

.px-search__cat-link:hover {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--paper);
}

/* ── Pagination ── */

.px-search__pagination .nav-links {
  display: flex;
  justify-content: center;
  gap: var(--space-d025);
  margin-top: var(--space-d3);
}

.px-search__pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  font-family: var(--font-display);
  font-size: 13px;
  color: var(--text);
  border: 1px solid var(--line);
  text-decoration: none;
  transition: all var(--duration-fast);
}

.px-search__pagination .page-numbers:hover {
  border-color: var(--ink);
  color: var(--ink);
}

.px-search__pagination .page-numbers.current {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--paper);
}

.px-search__pagination .prev,
.px-search__pagination .next {
  width: auto;
  padding: 0 var(--space-d075);
  font-weight: 600;
}

/* ── Responsive ── */

@media (max-width: 640px) {
  .px-search__input-wrap {
    flex-wrap: wrap;
  }
  .px-search__icon {
    order: -1;
    margin: var(--space-d075) 0 0 var(--space-d075);
  }
  .px-search__input {
    flex-basis: calc(100% - 48px);
  }
  .px-search__submit {
    width: calc(100% - 6px);
    margin: 0 3px 3px;
  }
}


/* ==========================================================================
   px-contact — Contactpagina
   ========================================================================== */

/* ── Hero banner ── */

.px-contact-hero {
  background: var(--cream);
  border-bottom: 1px solid var(--line);
  padding: var(--space-d3) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.px-contact-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(var(--px-color-custom-rgb), 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.px-contact-hero__eyebrow {
  font-family: var(--font-script);
  font-size: clamp(1.75rem, 1.5rem + 1vw, 2.25rem);
  color: var(--gold);
  display: block;
  line-height: 1;
  position: relative;
}

.px-contact-hero__title {
  font-family: var(--font-body);
  font-size: clamp(1.75rem, 1.4rem + 1.2vw, 2.5rem);
  font-style: italic;
  font-weight: 400;
  color: var(--ink);
  margin: 0.5rem 0 1rem;
  position: relative;
}

.px-contact-hero__sub {
  font-family: var(--font-display);
  font-size: 14px;
  color: var(--text-muted);
  max-width: 520px;
  margin: 0 auto;
  letter-spacing: 0.02em;
  line-height: 1.7;
  position: relative;
}


/* ── Contactinfo kaarten ── */

.px-contact-cards {
  padding: var(--space-d3) 0;
  background: var(--paper);
}

.px-contact-cards__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-d15);
}

.px-contact-card {
  background: var(--white);
  border: 1px solid var(--line);
  padding: var(--space-d2);
  text-align: center;
  transition: transform var(--duration-normal) var(--ease-smooth),
              box-shadow var(--duration-normal) var(--ease-smooth);
}

.px-contact-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-elevated);
}

.px-contact-card__icon {
  width: 48px;
  height: 48px;
  margin: 0 auto var(--space-d1);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--cream);
  border: 1px solid var(--line);
  color: var(--gold);
}

.px-contact-card__icon svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.px-contact-card__label {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: var(--weight-semibold);
  letter-spacing: var(--ls-widest);
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: var(--space-d05);
}

.px-contact-card__value {
  font-family: var(--font-body);
  font-size: var(--text-d1);
  font-style: italic;
  color: var(--ink);
  display: block;
  margin-bottom: var(--space-d025);
}

.px-contact-card__value a {
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid var(--line);
  transition: border-color var(--duration-fast), color var(--duration-fast);
}

.px-contact-card__value a:hover {
  color: var(--gold);
  border-color: var(--gold);
}

.px-contact-card__sub {
  font-family: var(--font-display);
  font-size: 12px;
  color: var(--text-muted);
  display: block;
  margin-top: var(--space-d025);
}

@media (max-width: 900px) {
  .px-contact-cards__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .px-contact-cards__grid { grid-template-columns: 1fr; }
}


/* ── Contactformulier sectie ── */

.px-contact-form-section {
  background: var(--cream);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: var(--space-d3) 0;
}

.px-contact-form-section__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--space-d3);
  align-items: start;
}

.px-contact-form-section__intro {
  padding-top: var(--space-d1);
}

.px-contact-form-section__eyebrow {
  font-family: var(--font-script);
  font-size: 1.75rem;
  color: var(--gold);
  display: block;
  line-height: 1;
}

.px-contact-form-section__title {
  font-family: var(--font-body);
  font-size: clamp(1.5rem, 1.2rem + 1vw, 2rem);
  font-style: italic;
  font-weight: 400;
  color: var(--ink);
  margin: 0.5rem 0 1.25rem;
  line-height: var(--lh-snug);
}

.px-contact-form-section__text {
  font-family: var(--font-display);
  font-size: 14px;
  color: var(--text);
  line-height: 1.75;
  margin-bottom: var(--space-d15);
}

.px-contact-form-section__sig {
  font-family: var(--font-script);
  font-size: 2.25rem;
  color: var(--ink);
  line-height: 1;
}

/* ── Formulier styling ── */

.px-contact-form {
  background: var(--white);
  border: 1px solid var(--line);
  padding: var(--space-d2);
}

.px-contact-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-d1);
}

.px-contact-form__field {
  margin-bottom: var(--space-d1);
}

.px-contact-form__field--full {
  grid-column: 1 / -1;
}

.px-contact-form__label {
  display: block;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: var(--weight-semibold);
  letter-spacing: var(--ls-wider);
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: var(--space-d025);
}

.px-contact-form__label .required {
  color: var(--gold);
  margin-left: 2px;
}

.px-contact-form__input,
.px-contact-form__textarea,
.px-contact-form__select {
  width: 100%;
  padding: var(--space-d075);
  font-family: var(--font-display);
  font-size: 14px;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  transition: border-color var(--duration-normal) var(--ease-smooth),
              box-shadow var(--duration-normal) var(--ease-smooth);
  -webkit-appearance: none;
  appearance: none;
}

.px-contact-form__input:focus,
.px-contact-form__textarea:focus,
.px-contact-form__select:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(var(--px-color-custom-rgb), 0.12);
}

.px-contact-form__input::placeholder,
.px-contact-form__textarea::placeholder {
  color: var(--text-muted);
  font-weight: 300;
}

.px-contact-form__textarea {
  min-height: 140px;
  resize: vertical;
}

.px-contact-form__select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%237A7570' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right var(--space-d075) center;
  padding-right: calc(var(--space-d075) + 24px);
}

.px-contact-form__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-d1);
  margin-top: var(--space-d05);
}

.px-contact-form__hint {
  font-family: var(--font-display);
  font-size: 11px;
  color: var(--text-muted);
}

@media (max-width: 768px) {
  .px-contact-form-section__grid {
    grid-template-columns: 1fr;
  }
  .px-contact-form__row {
    grid-template-columns: 1fr;
  }
  .px-contact-form__footer {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }
}


/* ── FAQ sectie ── */

.px-contact-faq {
  background: var(--paper);
  padding: var(--space-d3) 0;
}

.px-contact-faq__inner {
  max-width: 760px;
  margin: 0 auto;
}


/* ── WhatsApp floating knop ── */

.px-contact-whatsapp {
  position: fixed;
  bottom: var(--space-d15);
  right: var(--space-d15);
  z-index: 50;
  display: flex;
  align-items: center;
  gap: var(--space-d05);
  background: var(--ink);
  color: var(--paper);
  padding: var(--space-d075) var(--space-d1);
  border: 1px solid var(--charcoal);
  text-decoration: none;
  box-shadow: var(--shadow-elevated);
  transition: transform var(--duration-normal) var(--ease-smooth),
              background var(--duration-normal) var(--ease-smooth);
}

.px-contact-whatsapp:hover {
  background: var(--gold);
  color: var(--ink);
  transform: translateY(-2px);
}

.px-contact-whatsapp__icon {
  width: 20px;
  height: 20px;
  fill: currentColor;
  flex-shrink: 0;
}

.px-contact-whatsapp__text {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: var(--weight-semibold);
  letter-spacing: var(--ls-wider);
  text-transform: uppercase;
}

@media (max-width: 640px) {
  .px-contact-whatsapp__text { display: none; }
  .px-contact-whatsapp { padding: var(--space-d075); }
}


/* ==========================================================================
   px-info-page — Herbruikbaar voor informatiepagina's
   (Verzending, Voorwaarden, FAQ, Over)
   ========================================================================== */

/* ── Page hero (gedeeld) ── */

.px-info-hero {
  background: var(--cream);
  border-bottom: 1px solid var(--line);
  padding: var(--space-d3) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.px-info-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(var(--px-color-custom-rgb), 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.px-info-hero__eyebrow {
  font-family: var(--font-script);
  font-size: clamp(1.75rem, 1.5rem + 1vw, 2.25rem);
  color: var(--gold);
  display: block;
  line-height: 1;
  position: relative;
}

.px-info-hero__title {
  font-family: var(--font-body);
  font-size: clamp(1.75rem, 1.4rem + 1.2vw, 2.5rem);
  font-style: italic;
  font-weight: 400;
  color: var(--ink);
  margin: 0.5rem 0 1rem;
  position: relative;
}

.px-info-hero__sub {
  font-family: var(--font-display);
  font-size: 14px;
  color: var(--text-muted);
  max-width: 520px;
  margin: 0 auto;
  letter-spacing: 0.02em;
  line-height: 1.7;
  position: relative;
}


/* ── Content blok (prose tekst) ── */

.px-info-content {
  background: var(--paper);
  padding: var(--space-d3) 0;
}

.px-info-content--cream {
  background: var(--cream);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.px-info-content__inner {
  max-width: 760px;
  margin: 0 auto;
}

.px-info-content__inner h2 {
  font-family: var(--font-body);
  font-size: clamp(1.25rem, 1.1rem + 0.5vw, 1.5rem);
  font-style: italic;
  font-weight: 400;
  color: var(--ink);
  margin: var(--space-d2) 0 var(--space-d075);
  line-height: var(--lh-snug);
}

.px-info-content__inner h2:first-child {
  margin-top: 0;
}

.px-info-content__inner h3 {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: var(--weight-semibold);
  color: var(--ink);
  margin: var(--space-d15) 0 var(--space-d05);
  letter-spacing: var(--ls-wide);
  text-transform: uppercase;
}

.px-info-content__inner p {
  font-family: var(--font-display);
  font-size: 14px;
  color: var(--text);
  line-height: 1.8;
  margin: 0 0 var(--space-d1);
}

.px-info-content__inner ul,
.px-info-content__inner ol {
  font-family: var(--font-display);
  font-size: 14px;
  color: var(--text);
  line-height: 1.8;
  margin: 0 0 var(--space-d1);
  padding-left: 1.5em;
}

.px-info-content__inner li {
  margin-bottom: var(--space-d025);
}

.px-info-content__inner a:not(.px-btn) {
  color: var(--ink);
  border-bottom: 1px solid var(--gold);
  transition: color var(--duration-fast);
}

.px-info-content__inner a:not(.px-btn):hover {
  color: var(--gold);
}

.px-info-content__inner strong {
  font-weight: var(--weight-semibold);
  color: var(--ink);
}


/* ── Verzending: tarieven tabel ── */

.px-shipping-table {
  width: 100%;
  border-collapse: collapse;
  margin: var(--space-d1) 0 var(--space-d15);
  font-family: var(--font-display);
  font-size: 14px;
}

.px-shipping-table th,
.px-shipping-table td {
  padding: var(--space-d075) var(--space-d1);
  text-align: left;
  border-bottom: 1px solid var(--line);
}

.px-shipping-table th {
  font-weight: var(--weight-semibold);
  font-size: 11px;
  letter-spacing: var(--ls-wider);
  text-transform: uppercase;
  color: var(--gold);
  background: var(--cream);
  border-bottom: 1px solid var(--line);
}

.px-shipping-table td {
  color: var(--text);
}

.px-shipping-table tbody tr:hover {
  background: var(--cream);
}

@media (max-width: 640px) {
  .px-shipping-table th,
  .px-shipping-table td {
    padding: var(--space-d05) var(--space-d075);
    font-size: 13px;
  }
}


/* ── Verzending: stappen ── */

.px-shipping-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-d15);
  margin: var(--space-d2) 0;
}

.px-shipping-step {
  text-align: center;
  padding: var(--space-d15);
  background: var(--white);
  border: 1px solid var(--line);
  position: relative;
}

.px-shipping-step__number {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--gold-light);
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: var(--weight-bold);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-d075);
}

.px-shipping-step__title {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: var(--weight-semibold);
  color: var(--ink);
  text-transform: uppercase;
  letter-spacing: var(--ls-wide);
  display: block;
  margin-bottom: var(--space-d025);
}

.px-shipping-step__text {
  font-family: var(--font-display);
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}

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


/* ── FAQ pagina: categorieën ── */

.px-faq-category {
  margin-bottom: var(--space-d3);
}

.px-faq-category__title {
  font-family: var(--font-script);
  font-size: 1.75rem;
  font-weight: var(--weight-regular);
  color: var(--gold);
  margin: 0 0 var(--space-d075);
  line-height: 1;
}

/* Voorkom dubbele border: category titel + eerste accordion item */
.px-faq-category .px-accordion__item:first-child {
  border-top: none;
}


/* ── Over Janneke: hero portret ── */

.px-over-hero {
  background: var(--cream);
  border-bottom: 1px solid var(--line);
  padding: var(--space-d3) 0;
}

.px-over-hero__grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: var(--space-d3);
  align-items: center;
  max-width: 860px;
  margin: 0 auto;
}

.px-over-hero__portrait-wrap {
  position: relative;
}

.px-over-hero__portrait {
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: var(--paper);
  border: 4px solid var(--white);
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.px-over-hero__portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.px-over-hero__letter {
  font-family: var(--font-script);
  font-size: 8rem;
  color: var(--gold);
  line-height: 1;
  padding-bottom: 1rem;
}

.px-over-hero__portrait-accent {
  position: absolute;
  bottom: -8px;
  right: -8px;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid var(--cream);
}

.px-over-hero__portrait-accent svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: var(--gold-light);
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.px-over-hero__eyebrow {
  font-family: var(--font-script);
  font-size: clamp(1.75rem, 1.5rem + 1vw, 2.25rem);
  color: var(--gold);
  display: block;
  line-height: 1;
}

.px-over-hero__title {
  font-family: var(--font-body);
  font-size: clamp(1.75rem, 1.4rem + 1.2vw, 2.5rem);
  font-style: italic;
  font-weight: 400;
  color: var(--ink);
  margin: 0.5rem 0 1.25rem;
}

.px-over-hero__text {
  font-family: var(--font-display);
  font-size: 14px;
  color: var(--text);
  line-height: 1.8;
}

.px-over-hero__sig {
  font-family: var(--font-script);
  font-size: 2.25rem;
  color: var(--ink);
  line-height: 1;
  margin-top: var(--space-d1);
}

@media (max-width: 768px) {
  .px-over-hero__grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .px-over-hero__portrait-wrap {
    margin: 0 auto;
  }
  .px-over-hero__portrait {
    width: 200px;
    height: 200px;
  }
  .px-over-hero__letter {
    font-size: 6rem;
  }
  .px-over-hero__portrait-accent {
    width: 56px;
    height: 56px;
    bottom: -4px;
    right: -4px;
  }
  .px-over-hero__portrait-accent svg {
    width: 22px;
    height: 22px;
  }
}


/* ── Over Janneke: timeline ── */

.px-timeline {
  position: relative;
  max-width: 760px;
  margin: 0 auto;
  padding-left: 32px;
}

.px-timeline::before {
  content: '';
  position: absolute;
  left: 12px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: var(--line);
}

.px-timeline__item {
  position: relative;
  margin-bottom: var(--space-d2);
}

.px-timeline__dot {
  position: absolute;
  left: -28px;
  top: 4px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--gold);
  border: 3px solid var(--paper);
  box-shadow: 0 0 0 1px var(--line);
}

.px-timeline__year {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: var(--weight-bold);
  letter-spacing: var(--ls-wider);
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: var(--space-d025);
}

.px-timeline__title {
  font-family: var(--font-body);
  font-size: var(--text-d1);
  font-style: italic;
  font-weight: 400;
  color: var(--ink);
  margin: 0 0 var(--space-d025);
}

.px-timeline__text {
  font-family: var(--font-display);
  font-size: 14px;
  color: var(--text);
  line-height: 1.7;
  margin: 0;
}

.px-info-content--cream .px-timeline::before {
  background: var(--line);
}

.px-info-content--cream .px-timeline__dot {
  border-color: var(--cream);
}


/* ── Over Janneke: waarden kaarten ── */

.px-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-d15);
  margin: var(--space-d15) 0;
}

.px-value {
  text-align: center;
  padding: var(--space-d2) var(--space-d1);
  background: var(--white);
  border: 1px solid var(--line);
}

.px-value__icon {
  width: 44px;
  height: 44px;
  margin: 0 auto var(--space-d1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}

.px-value__icon svg {
  width: 32px;
  height: 32px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.px-value__title {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: var(--weight-semibold);
  letter-spacing: var(--ls-wider);
  text-transform: uppercase;
  color: var(--ink);
  display: block;
  margin-bottom: var(--space-d05);
}

.px-value__text {
  font-family: var(--font-display);
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}

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


/* ==========================================================================
   MOBIELE RESPONSIVE — Extra verfijning voor alle nieuwe pagina's
   ========================================================================== */

@media (max-width: 640px) {

  /* Hero's compacter */
  .px-contact-hero,
  .px-info-hero {
    padding: 2.5rem 0;
  }
  .px-contact-hero__eyebrow,
  .px-info-hero__eyebrow {
    font-size: 1.5rem;
  }
  .px-contact-hero__title,
  .px-info-hero__title {
    font-size: 1.5rem;
    margin: 0.35rem 0 0.75rem;
  }
  .px-contact-hero__sub,
  .px-info-hero__sub {
    font-size: 13px;
    line-height: 1.6;
  }

  /* Contact kaarten */
  .px-contact-cards { padding: 2rem 0; }
  .px-contact-card {
    padding: var(--space-d15);
  }
  .px-contact-card__icon {
    width: 40px;
    height: 40px;
  }
  .px-contact-card__icon svg {
    width: 18px;
    height: 18px;
  }

  /* Formulier sectie */
  .px-contact-form-section { padding: 2rem 0; }
  .px-contact-form-section__eyebrow { font-size: 1.5rem; }
  .px-contact-form-section__title { font-size: 1.35rem; }
  .px-contact-form-section__text { font-size: 13px; }
  .px-contact-form-section__sig { font-size: 1.75rem; }
  .px-contact-form {
    padding: var(--space-d15);
  }
  .px-contact-form__input,
  .px-contact-form__textarea,
  .px-contact-form__select {
    font-size: 16px; /* voorkomt zoom op iOS */
  }

  /* FAQ secties */
  .px-contact-faq { padding: 2.5rem 0; }

  /* Info content blokken */
  .px-info-content { padding: 2rem 0; }
  .px-info-content__inner p,
  .px-info-content__inner ul,
  .px-info-content__inner ol {
    font-size: 13px;
    line-height: 1.7;
  }
  .px-info-content__inner h2 {
    font-size: 1.2rem;
    margin-top: var(--space-d15);
  }

  /* Verzending stappen */
  .px-shipping-step {
    padding: var(--space-d1);
  }

  /* Over hero */
  .px-over-hero { padding: 2.5rem 0; }
  .px-over-hero__text { font-size: 13px; }
  .px-over-hero__sig { font-size: 1.75rem; }

  /* Timeline */
  .px-timeline {
    padding-left: 24px;
  }
  .px-timeline::before {
    left: 8px;
  }
  .px-timeline__dot {
    left: -22px;
    width: 12px;
    height: 12px;
  }
  .px-timeline__title {
    font-size: 1rem;
  }
  .px-timeline__text {
    font-size: 13px;
  }

  /* FAQ categorie titels */
  .px-faq-category__title {
    font-size: 10px;
    letter-spacing: var(--ls-wider);
  }

  /* Accordion op mobiel */
  .px-accordion__trigger {
    padding: var(--space-d075) 0;
    font-size: 14px;
  }
  .px-accordion__trigger svg {
    width: 18px;
    height: 18px;
  }
  .px-accordion__panel p {
    font-size: 13px;
    line-height: 1.7;
  }
}


/* ==========================================================================
   Gravity Forms — Thema override
   Past GF standaard markup in het sinterklaasdecoratie design.
   ========================================================================== */

.px-contact-form .gform_wrapper {
  margin: 0;
  padding: 0;
}

.px-contact-form .gform_wrapper .gform_body {
  padding: 0;
}

/* Labels */
.px-contact-form .gform_wrapper .gfield_label,
.px-contact-form .gform_wrapper .gfield .gfield_label {
  font-family: var(--font-display) !important;
  font-size: 11px !important;
  font-weight: var(--weight-semibold) !important;
  letter-spacing: var(--ls-wider) !important;
  text-transform: uppercase !important;
  color: var(--ink) !important;
  margin-bottom: var(--space-d025) !important;
}

.px-contact-form .gform_wrapper .gfield_required {
  color: var(--gold) !important;
}

/* Inputs, textareas, selects */
.px-contact-form .gform_wrapper input[type="text"],
.px-contact-form .gform_wrapper input[type="email"],
.px-contact-form .gform_wrapper input[type="tel"],
.px-contact-form .gform_wrapper input[type="url"],
.px-contact-form .gform_wrapper input[type="number"],
.px-contact-form .gform_wrapper textarea,
.px-contact-form .gform_wrapper select {
  width: 100% !important;
  padding: var(--space-d075) !important;
  font-family: var(--font-display) !important;
  font-size: 14px !important;
  color: var(--ink) !important;
  background: var(--paper) !important;
  border: 1px solid var(--line) !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  transition: border-color var(--duration-normal) var(--ease-smooth),
              box-shadow var(--duration-normal) var(--ease-smooth) !important;
  -webkit-appearance: none !important;
  appearance: none !important;
}

.px-contact-form .gform_wrapper input:focus,
.px-contact-form .gform_wrapper textarea:focus,
.px-contact-form .gform_wrapper select:focus {
  outline: none !important;
  border-color: var(--gold) !important;
  box-shadow: 0 0 0 3px rgba(var(--px-color-custom-rgb), 0.12) !important;
}

.px-contact-form .gform_wrapper ::placeholder {
  color: var(--text-muted) !important;
  font-weight: 300 !important;
}

.px-contact-form .gform_wrapper textarea {
  min-height: 140px !important;
  resize: vertical !important;
}

/* Select arrow */
.px-contact-form .gform_wrapper select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%237A7570' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: right var(--space-d075) center !important;
  padding-right: calc(var(--space-d075) + 24px) !important;
}

/* Field spacing */
.px-contact-form .gform_wrapper .gfield {
  margin-bottom: var(--space-d1) !important;
}

/* Two-column row layout */
.px-contact-form .gform_wrapper .gform_fields {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: var(--space-d1) !important;
}

.px-contact-form .gform_wrapper .gfield--width-full,
.px-contact-form .gform_wrapper .gfield.gfield--type-textarea,
.px-contact-form .gform_wrapper .gfield.gfield--type-html {
  grid-column: 1 / -1 !important;
}

/* Submit button */
.px-contact-form .gform_wrapper .gform_footer,
.px-contact-form .gform_wrapper .gform_page_footer {
  display: flex !important;
  justify-content: flex-end !important;
  margin-top: var(--space-d05) !important;
  padding: 0 !important;
}

.px-contact-form .gform_wrapper input[type="submit"],
.px-contact-form .gform_wrapper .gform_button {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-family: var(--font-display) !important;
  font-size: 11px !important;
  font-weight: 600 !important;
  letter-spacing: 0.2em !important;
  text-transform: uppercase !important;
  padding: 0.875rem 1.75rem !important;
  border: 1px solid var(--ink) !important;
  background: var(--ink) !important;
  color: var(--paper) !important;
  cursor: pointer !important;
  border-radius: 0 !important;
  transition: all 0.2s !important;
}

.px-contact-form .gform_wrapper input[type="submit"]:hover,
.px-contact-form .gform_wrapper .gform_button:hover {
  background: var(--gold) !important;
  border-color: var(--gold) !important;
  color: var(--ink) !important;
}

/* Confirmation message */
.px-contact-form .gform_confirmation_message {
  font-family: var(--font-display) !important;
  font-size: 14px !important;
  color: var(--text) !important;
  text-align: center !important;
  padding: var(--space-d2) !important;
}

/* Validation errors */
.px-contact-form .gform_wrapper .gfield_error input,
.px-contact-form .gform_wrapper .gfield_error textarea,
.px-contact-form .gform_wrapper .gfield_error select {
  border-color: var(--error) !important;
}

.px-contact-form .gform_wrapper .validation_message {
  font-family: var(--font-display) !important;
  font-size: 12px !important;
  color: var(--error) !important;
}

/* Responsive */
@media (max-width: 768px) {
  .px-contact-form .gform_wrapper .gform_fields {
    grid-template-columns: 1fr !important;
  }
  .px-contact-form .gform_wrapper input[type="text"],
  .px-contact-form .gform_wrapper input[type="email"],
  .px-contact-form .gform_wrapper input[type="tel"],
  .px-contact-form .gform_wrapper textarea,
  .px-contact-form .gform_wrapper select {
    font-size: 16px !important; /* voorkomt iOS zoom */
  }
  .px-contact-form .gform_wrapper .gform_footer {
    justify-content: stretch !important;
  }
  .px-contact-form .gform_wrapper input[type="submit"],
  .px-contact-form .gform_wrapper .gform_button {
    width: 100% !important;
  }
}


/* ==========================================================================
   px-videoblog — Video grid pagina
   ========================================================================== */

.px-videoblog {
  background: var(--paper);
  padding: var(--space-d3) 0;
}

.px-videoblog__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-d2);
}

.px-videoblog__card {
  background: var(--white);
  border: 1px solid var(--line);
  overflow: hidden;
  transition: transform var(--duration-normal) var(--ease-smooth),
              box-shadow var(--duration-normal) var(--ease-smooth);
}

.px-videoblog__card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-elevated);
}

.px-videoblog__thumb {
  position: relative;
  aspect-ratio: 16/9;
  background: var(--cream);
  overflow: hidden;
}

.px-videoblog__thumb img,
.px-videoblog__thumb video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.px-videoblog__placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-d05);
  background: var(--cream);
}

.px-videoblog__coming {
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: var(--weight-semibold);
  letter-spacing: var(--ls-wider);
  text-transform: uppercase;
  color: var(--text-muted);
}

.px-videoblog__play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(26, 26, 26, 0.25);
  transition: background var(--duration-normal);
}

.px-videoblog__card:hover .px-videoblog__play {
  background: rgba(26, 26, 26, 0.45);
}

.px-videoblog__play-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--paper);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
}

.px-videoblog__play-icon svg {
  width: 22px;
  height: 22px;
  fill: var(--ink);
  margin-left: 3px;
}

.px-videoblog__info {
  padding: var(--space-d1);
}

.px-videoblog__badge {
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: var(--weight-semibold);
  letter-spacing: var(--ls-wider);
  text-transform: uppercase;
  color: var(--gold);
  display: inline-block;
  margin-bottom: var(--space-d025);
}

.px-videoblog__title {
  font-family: var(--font-body);
  font-size: var(--text-d075);
  font-style: italic;
  font-weight: 400;
  color: var(--ink);
  margin: 0 0 var(--space-d05);
  line-height: var(--lh-snug);
}

.px-videoblog__desc {
  font-family: var(--font-display);
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Lightbox / modal voor video */
.px-videoblog__modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.85);
  display: none;
  align-items: center;
  justify-content: center;
  padding: var(--space-d2);
}

.px-videoblog__modal.is-open {
  display: flex;
}

.px-videoblog__modal-inner {
  position: relative;
  width: 100%;
  max-width: 900px;
  aspect-ratio: 16/9;
  background: #000;
}

.px-videoblog__modal-inner iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.px-videoblog__modal-close {
  position: absolute;
  top: -40px;
  right: 0;
  background: none;
  border: none;
  color: var(--paper);
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: var(--weight-semibold);
  letter-spacing: var(--ls-wide);
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: var(--space-d025);
}

.px-videoblog__modal-close svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
}

/* Kreadoe banner */
.px-videoblog__kreadoe {
  background: var(--cream);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: var(--space-d3) 0;
  text-align: center;
}

.px-videoblog__kreadoe-inner {
  max-width: 640px;
  margin: 0 auto;
}

@media (max-width: 900px) {
  .px-videoblog__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .px-videoblog { padding: 2rem 0; }
  .px-videoblog__grid { grid-template-columns: 1fr; gap: var(--space-d15); }
  .px-videoblog__play-icon { width: 44px; height: 44px; }
  .px-videoblog__play-icon svg { width: 18px; height: 18px; }
  .px-videoblog__info { padding: var(--space-d075); }
  .px-videoblog__title { font-size: 1rem; }
  .px-videoblog__kreadoe { padding: 2rem 0; }
}
