/*
Theme Name: Pro Football Limburg
Theme URI: https://profootball-limburg.nl
Author: Max Middelhoven
Description: Licht maatwerkthema voor Pro Football Limburg met beheerbare homepage, trainingsaanbod en inschrijfflow.
Version: 1.5.4
Requires at least: 6.0
Tested up to: 6.5
Text Domain: profootball-limburg
*/

:root {
  --navy: #151f44;
  --navy-2: #202b56;
  --ink: #26304f;
  --muted: #65708b;
  --line: #dfe4ec;
  --soft: #f5f7fb;
  --white: #ffffff;
  --gold: #c99a4d;
  --shadow: 0 20px 50px rgba(21, 31, 68, .14);
  --radius: 8px;
  --pfl-title-font-family: "Playfair Display", Georgia, serif;
  --pfl-title-font-weight: 700;
  --pfl-title-font-style: italic;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 30px;
  min-height: 86px;
  padding: 14px clamp(18px, 5vw, 72px);
  border-bottom: 1px solid rgba(223, 228, 236, .8);
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(18px);
  transition: min-height .28s ease, padding .28s ease, box-shadow .2s ease;
}

.site-header.is-scrolled {
  box-shadow: 0 12px 30px rgba(21, 31, 68, .08);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--navy);
}

.brand-title {
  display: block;
}

.brand-mark {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border: 3px solid var(--gold);
  border-radius: 50%;
  background: radial-gradient(circle at center, #243066 0 44%, var(--navy) 45% 100%);
  color: #fff;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0;
}

.custom-logo {
  width: 58px;
  height: 58px;
  object-fit: contain;
  transform-origin: left center;
  transition: width .3s ease, height .3s ease, transform .3s ease;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.1;
}

.brand strong {
  font-family: var(--pfl-title-font-family);
  font-size: clamp(20px, 2vw, 27px);
  font-style: var(--pfl-title-font-style);
  font-weight: var(--pfl-title-font-weight);
  line-height: .95;
  letter-spacing: 0;
}

.brand small {
  margin-top: 3px;
  color: var(--muted);
}

@media (min-width: 1441px) {
  .site-header:not(.is-scrolled) {
    min-height: 112px;
    padding-top: 18px;
    padding-bottom: 18px;
  }

  .site-header:not(.is-scrolled) .custom-logo {
    width: 82px;
    height: 82px;
  }

  .site-header:not(.is-scrolled) .brand-mark {
    width: 82px;
    height: 82px;
  }

  .site-header:not(.is-scrolled) .brand-title {
    max-width: 340px;
    opacity: 1;
    transform: translateX(0);
  }

  .site-header.is-scrolled .brand-title {
    max-width: 280px;
    opacity: 1;
    transform: translateX(0);
  }

  .site-header:not(.is-scrolled) .brand strong {
    font-size: 30px;
  }

  .site-header.is-scrolled .brand strong {
    font-size: 22px;
  }

  .brand-title {
    white-space: nowrap;
    transition: max-width .3s ease, opacity .24s ease, transform .3s ease;
  }

  .brand strong {
    transition: font-size .3s ease;
  }
}

.nav {
  display: flex;
  justify-content: center;
  gap: clamp(16px, 2.2vw, 34px);
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
}

.nav .primary-menu {
  display: contents;
  margin: 0;
  padding: 0;
}

.footer-menu {
  display: contents;
  margin: 0;
  padding: 0;
}

.nav li,
.footer-grid li {
  list-style: none;
}

.nav .menu-item {
  position: relative;
}

.nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 0;
}

.nav .menu-item-has-children > a::before {
  width: 6px;
  height: 6px;
  margin-left: 3px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  content: "";
  transform: rotate(45deg) translateY(-2px);
  order: 2;
}

.nav a::after {
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 2px;
  background: var(--gold);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .2s ease;
}

.nav a:hover::after {
  transform: scaleX(1);
}

.nav .sub-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  z-index: 40;
  display: grid;
  min-width: 210px;
  margin: 0;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 8px);
  transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
}

.nav .sub-menu .sub-menu {
  top: -8px;
  left: calc(100% + 8px);
  transform: translate(8px, 0);
}

.nav .menu-item:hover > .sub-menu,
.nav .menu-item:focus-within > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

.nav .sub-menu .menu-item:hover > .sub-menu,
.nav .sub-menu .menu-item:focus-within > .sub-menu {
  transform: translate(0, 0);
}

.nav .sub-menu a {
  width: 100%;
  padding: 10px 12px;
  border-radius: 6px;
  white-space: nowrap;
}

.nav .sub-menu a:hover,
.nav .sub-menu a:focus {
  background: var(--soft);
}

.nav .sub-menu a::after {
  display: none;
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  justify-self: end;
}

.whatsapp,
.trial-whatsapp,
.button,
.offer-card a,
.news-card a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 20px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 13px;
}

.whatsapp {
  border: 1px solid var(--navy);
  color: var(--navy);
  animation: whatsapp-soft-pulse 60s ease-in-out 12s infinite;
}

.trial-whatsapp{border:1px solid var(--gold);background:var(--gold);color:var(--navy);white-space:nowrap}.trial-whatsapp:hover,.trial-whatsapp:focus{background:#d8aa5c;transform:translateY(-1px)}
.pfl-cart-link{position:relative;display:grid;width:44px;height:44px;flex:0 0 44px;place-items:center;border:1px solid var(--line);border-radius:50%;background:#fff;color:var(--navy);transition:border-color .2s ease,background .2s ease,transform .2s ease}.pfl-cart-link:hover,.pfl-cart-link:focus{border-color:var(--gold);background:var(--soft);transform:translateY(-1px)}.pfl-cart-icon{display:grid;width:23px;height:23px;place-items:center}.pfl-cart-icon svg{width:23px;height:23px;fill:none;stroke:currentColor;stroke-width:1.8;stroke-linecap:round;stroke-linejoin:round}.pfl-cart-icon-image{width:23px;height:23px;object-fit:contain}.pfl-cart-count{position:absolute;top:-5px;right:-5px;display:grid;min-width:19px;height:19px;padding:0 5px;place-items:center;border:2px solid #fff;border-radius:999px;background:var(--gold);color:var(--navy);font-size:10px;font-weight:900;line-height:1}

.nav-toggle {
  display: none;
  width: auto;
  height: 42px;
  min-width: 52px;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 0 16px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: var(--soft);
  cursor: pointer;
}

.nav-toggle-label {
  color: var(--navy);
  font: inherit;
  font-size: 13px;
  font-weight: 900;
}

.nav-toggle-icon {
  display: grid;
  gap: 5px;
}

.nav-toggle-icon > span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
}

.nav-toggle-icon img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

@keyframes whatsapp-soft-pulse {
  0%,
  8%,
  100% {
    box-shadow: 0 0 0 0 rgba(201, 154, 77, 0);
    transform: translateY(0) scale(1);
  }

  3% {
    box-shadow: 0 0 0 5px rgba(201, 154, 77, .12);
    transform: translateY(-1px) scale(1.015);
  }

  6% {
    box-shadow: 0 0 0 0 rgba(201, 154, 77, 0);
    transform: translateY(0) scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .whatsapp {
    animation: none;
  }
}

.hero {
  position: relative;
  min-height: calc(100vh - 86px);
  overflow: hidden;
  background: var(--navy);
}

.hero-media,
.hero > img,
.hero > video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(13, 22, 52, .92), rgba(13, 22, 52, .62) 46%, rgba(13, 22, 52, .16)),
    linear-gradient(0deg, rgba(21, 31, 68, .72), rgba(21, 31, 68, .05) 48%);
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  width: min(720px, calc(100% - 36px));
  min-height: calc(100vh - 86px);
  flex-direction: column;
  justify-content: center;
  margin-left: clamp(18px, 10vw, 128px);
  padding: 70px 0 150px;
  color: #fff;
}

.eyebrow,
.section-kicker {
  margin: 0 0 13px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 700px;
  margin: 0;
  font-size: clamp(44px, 7vw, 88px);
  line-height: .96;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 590px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, .86);
  font-size: clamp(17px, 1.8vw, 21px);
  line-height: 1.65;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button-primary {
  border: 1px solid var(--gold);
  background: var(--gold);
  color: var(--navy);
}

.button-secondary {
  border: 1px solid rgba(255, 255, 255, .62);
  background: rgba(255, 255, 255, .12);
  color: #fff;
}

.button-outline {
  border: 1px solid var(--navy);
  color: var(--navy);
}

.hero-card {
  position: absolute;
  right: clamp(18px, 7vw, 90px);
  bottom: 48px;
  z-index: 2;
  width: min(360px, calc(100% - 36px));
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: var(--radius);
  background: rgba(21, 31, 68, .94);
  color: #fff;
  box-shadow: var(--shadow);
}

.hero-card span,
.offer-card span,
.news-card span,
.badge {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 14px;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(201, 154, 77, .16);
  color: var(--gold);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-card h2,
.hero-card p {
  margin: 0;
}

.hero-card h2 {
  font-size: 26px;
}

.hero-card p {
  margin-top: 8px;
  color: rgba(255, 255, 255, .78);
  line-height: 1.55;
}

.hero-card strong {
  display: block;
  margin-top: 18px;
  color: var(--gold);
  font-size: 20px;
}

.hero-card-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  margin-top: 18px;
  padding: 0 20px;
  border-radius: 999px;
  background: var(--gold);
  color: var(--navy);
  font-size: 13px;
  font-weight: 900;
}

.section,
.intro,
.stats,
.cta {
  padding: clamp(58px, 8vw, 104px) 0;
}

.section-narrow {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
}

.intro {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: clamp(28px, 6vw, 76px);
  align-items: end;
}

.intro h2,
.section-heading h2,
.location h2,
.cta h2 {
  margin: 0;
  color: var(--navy);
  font-family: var(--pfl-title-font-family);
  font-size: clamp(32px, 4vw, 54px);
  font-style: var(--pfl-title-font-style);
  line-height: 1.08;
  letter-spacing: 0;
}

.intro p:last-child,
.location p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  padding-top: 0;
}

.stats article {
  padding: 26px;
  border: 1px solid var(--line);
  background: #fff;
}

.stats strong {
  display: block;
  color: var(--navy);
  font-size: 38px;
}

.stats span {
  color: var(--muted);
  font-weight: 700;
}

.section-heading {
  margin-bottom: 32px;
}

.section-heading.split {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}

.text-link {
  flex: 0 0 auto;
  color: var(--navy);
  font-weight: 900;
  border-bottom: 2px solid var(--gold);
}

.offer-section {
  background: var(--soft);
}

.offer-grid,
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.offer-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  min-width: 0;
  min-height: 270px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 18px 8px 18px 8px;
  background: #fff;
  box-shadow: 0 12px 34px rgba(21, 31, 68, .08);
  transition: transform .28s ease, box-shadow .28s ease;
}

.offer-card:hover,
.offer-card:focus-within {
  box-shadow: 0 22px 46px rgba(21, 31, 68, .15);
  transform: translateY(-7px);
}

.offer-card-image {
  overflow: hidden;
  aspect-ratio: 16 / 10;
}

.offer-card-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .55s ease;
}

.offer-card:hover .offer-card-image img,
.offer-card:focus-within .offer-card-image img {
  transform: scale(1.04);
}

.offer-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 22px;
}

.offer-card.highlight .offer-price strong {
  color: #fff;
}

@media (prefers-reduced-motion: reduce) {
  .offer-card,
  .offer-card-image img {
    transition: none;
  }
  .offer-card:hover,
  .offer-card:focus-within,
  .offer-card:hover .offer-card-image img,
  .offer-card:focus-within .offer-card-image img {
    transform: none;
  }
}

.offer-card.highlight,
.news-card.dark {
  background: var(--navy);
}

.offer-card h3 {
  margin: 0;
  color: var(--navy);
  font-size: 23px;
  line-height: 1.15;
}

.offer-card p {
  margin: 14px 0 22px;
  color: var(--muted);
  line-height: 1.65;
}

.offer-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-top: -8px;
}

.offer-price-block {
  margin: -8px 0 22px;
}

.offer-price-block .offer-price {
  margin: 0;
}

.offer-price-block .offer-price span,
.offer-price-alternative {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.35;
}

.offer-card .offer-price-alternative {
  margin: 2px 0 0;
}

.offer-price del,
.choice-card del {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.offer-price strong {
  color: var(--navy);
  font-size: 20px;
}

.flow-page-main {
  background: var(--soft);
}

.offer-card .offer-actions a,
.news-card-body > a {
  border: 1px solid var(--navy);
  color: var(--navy);
}

.offer-card.highlight h3,
.offer-card.highlight .offer-actions a,
.news-card.dark h3,
.news-card.dark a {
  color: #fff;
}

.offer-card.highlight p,
.news-card.dark p {
  color: rgba(255, 255, 255, .76);
}

.offer-card.highlight .offer-actions a,
.news-card.dark a {
  border-color: rgba(255, 255, 255, .5);
}

.offer-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: auto;
}

.offer-actions a.offer-more-link {
  border-color: var(--line);
  color: var(--muted);
}

.offer-card.highlight .offer-actions a.offer-more-link {
  border-color: rgba(255, 255, 255, .32);
  color: rgba(255, 255, 255, .76);
}

.locations {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: -6px 0 22px;
}

.locations b {
  padding: 8px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--navy);
  font-size: 12px;
}

.offer-card.highlight .locations b {
  border-color: rgba(255, 255, 255, .38);
  background: rgba(255, 255, 255, .08);
  color: #fff;
}

.news-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 18px 48px rgba(21, 31, 68, .1);
}

.news-card-image {
  display: block;
  min-height: 220px;
  background: var(--soft);
}

.news-card-image img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.news-card-body {
  display: grid;
  min-height: 290px;
  align-content: start;
  padding: 24px;
}

.news-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.news-card-tags a,
.news-card-tags span {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  padding: 0 13px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: var(--navy);
  font-size: 13px;
  font-weight: 800;
}

.news-card h3 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(22px, 2vw, 30px);
  line-height: 1.15;
}

.news-card p {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.news-card-body > a {
  align-self: end;
  width: fit-content;
  margin-top: 34px;
}

.single-post-main {
  background: #fff;
}

.single-post-article {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(54px, 7vw, 90px) 0 clamp(70px, 8vw, 112px);
}

.single-post-hero {
  display: grid;
  gap: 26px;
}

.single-post-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.single-post-tags a {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: var(--navy);
  font-size: 13px;
  font-weight: 800;
}

.single-post-tags a:hover {
  border-color: var(--gold);
  background: rgba(201, 154, 77, .12);
}

.single-post-hero h1 {
  max-width: 900px;
  margin: 0;
  color: var(--navy);
  font-family: var(--pfl-title-font-family);
  font-size: clamp(34px, 5.1vw, 56px);
  font-style: var(--pfl-title-font-style);
  line-height: 1.02;
  letter-spacing: 0;
}

.single-post-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  color: var(--muted);
  font-size: 17px;
  font-weight: 700;
}

.single-post-meta span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.single-post-meta i {
  position: relative;
  display: inline-block;
  width: 22px;
  height: 22px;
  border: 2px solid currentColor;
  border-radius: 50%;
}

.single-post-meta span:first-child i {
  border-radius: 5px;
}

.single-post-meta span:first-child i::before {
  position: absolute;
  top: 4px;
  right: -2px;
  left: -2px;
  height: 2px;
  background: currentColor;
  content: "";
}

.single-post-meta span:last-child i::before {
  position: absolute;
  top: 4px;
  left: 50%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
  content: "";
  transform: translateX(-50%);
}

.single-post-meta span:last-child i::after {
  position: absolute;
  right: 4px;
  bottom: 4px;
  left: 4px;
  height: 7px;
  border-radius: 999px 999px 0 0;
  background: currentColor;
  content: "";
}

.single-post-image {
  margin: 22px 0 0;
}

.single-post-image img {
  width: 100%;
  max-height: 480px;
  object-fit: cover;
  border-radius: 20px;
}

.single-post-content {
  width: min(780px, 100%);
  margin: clamp(42px, 6vw, 70px) auto 0;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.8;
}

.single-post-content > * {
  margin-top: 0;
  margin-bottom: 24px;
}

.single-post-content h2,
.single-post-content h3 {
  margin-top: 42px;
  color: var(--navy);
  line-height: 1.18;
}

.single-post-content h2 {
  font-size: clamp(30px, 3vw, 42px);
}

.single-post-content h3 {
  font-size: 25px;
}

.single-post-content a {
  color: var(--navy);
  font-weight: 900;
  border-bottom: 2px solid var(--gold);
}

.single-post-content img {
  border-radius: var(--radius);
}

.single-related-posts {
  margin-top: clamp(64px, 9vw, 116px);
}

.single-related-posts h2 {
  margin: 0 0 30px;
  color: var(--navy);
  font-family: var(--pfl-title-font-family);
  font-size: clamp(30px, 3.5vw, 46px);
  font-style: var(--pfl-title-font-style);
  line-height: 1.04;
  letter-spacing: 0;
}

.single-related-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.single-related-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 18px 48px rgba(21, 31, 68, .1);
}

.single-related-image {
  display: block;
  min-height: 230px;
  background: var(--soft);
}

.single-related-image img {
  width: 100%;
  height: 230px;
  object-fit: cover;
}

.single-related-card-body {
  display: grid;
  min-height: 250px;
  align-content: start;
  padding: 24px;
}

.single-related-tags {
  margin-bottom: 26px;
}

.single-related-tags a {
  min-height: 36px;
  padding: 0 13px;
  font-size: 12px;
}

.single-related-card h3 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(21px, 1.8vw, 28px);
  line-height: 1.15;
}

.single-related-card h3 a {
  color: inherit;
}

.single-related-link {
  align-self: end;
  width: fit-content;
  margin-top: 42px;
  color: var(--navy);
  font-weight: 900;
}

.blog-archive-hero {
  margin-bottom: 36px;
}

.blog-archive-selected {
  margin: -10px 0 0;
  color: var(--muted);
  font-size: 18px;
  font-weight: 700;
}

.blog-archive-selected span {
  color: var(--navy);
  font-weight: 900;
}

.blog-archive-grid {
  margin-top: 0;
}

.blog-archive-pagination {
  margin-top: 42px;
}

.blog-archive-pagination .nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.blog-archive-pagination .page-numbers {
  display: inline-flex;
  min-width: 40px;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--navy);
  font-weight: 900;
}

.blog-archive-pagination .page-numbers.current {
  border-color: var(--gold);
  background: rgba(201, 154, 77, .14);
}

.blog-archive-empty {
  color: var(--muted);
  font-size: 18px;
  font-weight: 700;
}

.generic-single-main {
  background: #fff;
}

.generic-single-article {
  max-width: 880px;
}

.generic-single-image {
  margin: 0 0 32px;
}

.generic-single-image img {
  width: 100%;
  max-height: 480px;
  object-fit: cover;
  border-radius: 20px;
}

.generic-single-content {
  color: var(--ink);
  font-size: 18px;
  line-height: 1.75;
}

.generic-single-content > * {
  margin-top: 0;
  margin-bottom: 22px;
}

.generic-single-content h2,
.generic-single-content h3,
.generic-single-content h4 {
  margin-top: 34px;
  color: var(--navy);
  line-height: 1.18;
}

.hero h1,
.intro h2,
.section-heading h2,
.location h2,
.cta h2,
.single-post-hero h1,
.single-related-posts h2,
.generic-single-content h2,
.generic-single-content h3,
.generic-single-content h4,
.pfl-flow-hero h1,
.signup-hero h1,
.signup-form .form-panel-heading h2,
body.woocommerce-order-pay .woocommerce #payment ul.payment_methods::before,
.birthday-hero h1,
.birthday-panel-heading h2,
.birthday-info-panel h2,
.single-post-content h2,
.single-post-content h3 {
  font-family: var(--pfl-title-font-family);
  font-style: var(--pfl-title-font-style);
  font-weight: var(--pfl-title-font-weight);
}

.banner-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--navy);
  color: #fff;
}

.banner-strip span {
  display: grid;
  min-height: 74px;
  place-items: center;
  border-right: 1px solid rgba(255, 255, 255, .08);
  font-size: 14px;
  font-weight: 800;
}

.trainer-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.trainer-grid article {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 22px;
  align-items: center;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 12px 34px rgba(21, 31, 68, .08);
}

.trainer-photo {
  display: grid;
  width: 96px;
  height: 96px;
  place-items: center;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold);
  font-weight: 900;
}

.trainer-photo-image {
  width: 96px;
  height: 96px;
  object-fit: cover;
  border-radius: 50%;
}

.trainer-grid h3,
.trainer-grid p {
  margin: 0;
}

.trainer-grid h3 a{color:inherit;text-decoration:none}.trainer-photo-link{display:block;width:96px;height:96px;border-radius:50%}.trainer-more{display:inline-flex;margin-top:12px;color:var(--navy);font-size:14px;font-weight:800;text-decoration:none}.trainer-more:hover{text-decoration:underline}
.training-trainers{padding-top:clamp(54px,7vw,88px);padding-bottom:0}
.training-unavailable{display:flex;align-items:center;justify-content:space-between;gap:32px;margin-top:clamp(54px,7vw,88px);margin-bottom:clamp(54px,7vw,88px);padding:clamp(28px,4vw,46px);border-radius:var(--radius);background:var(--navy);color:#fff;box-shadow:var(--shadow)}.training-unavailable h2{max-width:760px;margin:0;color:#fff;font-size:clamp(28px,4vw,46px)}.training-unavailable p:not(.section-kicker){max-width:650px;margin:14px 0 0;color:rgba(255,255,255,.76);line-height:1.65}.training-unavailable .button{flex:0 0 auto}
.trainer-profile-page{overflow:hidden;background:linear-gradient(180deg,var(--soft) 0 720px,var(--white) 720px)}
.trainer-profile-hero{position:relative;display:grid;grid-template-columns:minmax(280px,440px) minmax(0,1fr);gap:clamp(42px,7vw,100px);align-items:center;padding-top:clamp(54px,8vw,110px);padding-bottom:clamp(70px,9vw,120px)}.trainer-profile-hero::after{position:absolute;right:-140px;bottom:30px;width:330px;height:330px;border:70px solid rgba(201,154,77,.12);border-radius:50%;content:"";pointer-events:none}
.trainer-profile-portrait{position:relative;aspect-ratio:4/5;display:grid;place-items:center;overflow:hidden;border-radius:28px 8px 28px 8px;background:var(--navy);box-shadow:var(--shadow);color:var(--gold);font-size:80px;font-weight:900;transform:rotate(-1.5deg)}.trainer-profile-portrait::after{position:absolute;inset:0;border:1px solid rgba(255,255,255,.24);border-radius:inherit;content:"";pointer-events:none}.trainer-profile-portrait img{width:100%;height:100%;object-fit:cover;transition:transform .7s cubic-bezier(.2,.7,.2,1)}.trainer-profile-portrait:hover img{transform:scale(1.045)}.trainer-photo-label{position:absolute;z-index:2;right:18px;bottom:18px;padding:9px 14px;border-radius:999px;background:var(--gold);color:var(--navy);font-size:11px;font-weight:900;letter-spacing:.05em;text-transform:uppercase}
.trainer-profile-copy{position:relative;z-index:1;min-width:0}.trainer-profile-hero h1{max-width:760px;margin:8px 0 20px;color:var(--navy);font-family:var(--pfl-title-font-family);font-size:clamp(48px,5.7vw,78px);font-style:var(--pfl-title-font-style);font-weight:var(--pfl-title-font-weight);line-height:.92;overflow-wrap:normal;word-break:normal;hyphens:none}.trainer-profile-hero h1 span{display:block;white-space:nowrap}.trainer-profile-intro{max-width:720px;margin:0;color:var(--muted);font-size:clamp(18px,2vw,23px);line-height:1.65}
.trainer-facts{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:12px;margin-top:34px}.trainer-facts div{position:relative;padding:19px 18px 19px 23px;overflow:hidden;border:1px solid var(--line);border-radius:12px;background:rgba(255,255,255,.9);box-shadow:0 10px 28px rgba(21,31,68,.06);transition:transform .25s ease,border-color .25s ease,box-shadow .25s ease}.trainer-facts div::before{position:absolute;inset:0 auto 0 0;width:5px;background:var(--gold);content:""}.trainer-facts div:hover{border-color:rgba(201,154,77,.65);box-shadow:0 16px 34px rgba(21,31,68,.1);transform:translateY(-4px)}.trainer-facts span,.trainer-facts strong{display:block}.trainer-facts span{margin-bottom:7px;color:var(--muted);font-size:11px;font-weight:800;text-transform:uppercase;letter-spacing:.06em}.trainer-facts strong{color:var(--navy);line-height:1.45}
.trainer-profile-content{display:grid;grid-template-columns:minmax(0,1.45fr) minmax(300px,.75fr);gap:clamp(28px,5vw,64px);align-items:start;padding-top:clamp(58px,8vw,100px);padding-bottom:clamp(70px,9vw,110px)}.trainer-story-card{padding:clamp(26px,4vw,46px);border:1px solid var(--line);border-radius:20px 8px 20px 8px;background:#fff;box-shadow:0 18px 50px rgba(21,31,68,.08)}.trainer-story-card>h2{margin:7px 0 24px;font-family:var(--pfl-title-font-family);font-size:clamp(30px,3.2vw,42px);font-style:var(--pfl-title-font-style);font-weight:var(--pfl-title-font-weight);line-height:1}.trainer-story-card .entry-content{color:var(--ink);font-size:16px;line-height:1.75}.trainer-story-card .entry-content h2{margin:34px 0 12px;font-family:var(--pfl-title-font-family);font-size:clamp(23px,2.2vw,30px);font-style:var(--pfl-title-font-style);font-weight:var(--pfl-title-font-weight);line-height:1.15}.trainer-story-card .entry-content h3{margin:28px 0 10px;font-size:20px;line-height:1.25}
.trainer-credentials{position:sticky;top:110px;align-self:start;padding:clamp(26px,3vw,36px);overflow:hidden;border-radius:8px 24px 8px 24px;background:var(--navy);box-shadow:var(--shadow);color:#fff}.trainer-credentials::after{position:absolute;right:-70px;bottom:-80px;width:180px;height:180px;border:34px solid rgba(201,154,77,.17);border-radius:50%;content:""}.trainer-credentials .section-kicker{color:var(--gold)}.trainer-credentials h2,.trainer-credentials h3{position:relative;z-index:1;color:#fff}.trainer-credentials h2{margin:7px 0 22px;font-family:var(--pfl-title-font-family);font-size:clamp(27px,2.7vw,38px);font-style:var(--pfl-title-font-style);font-weight:var(--pfl-title-font-weight);line-height:.98;overflow-wrap:normal;word-break:normal}.trainer-credentials h2 span{display:block}.trainer-credential-group{position:relative;z-index:1;margin-top:14px;padding:18px;border:1px solid rgba(255,255,255,.14);border-radius:12px;background:rgba(255,255,255,.07)}.trainer-credentials h3{margin:0 0 12px;font-family:var(--pfl-title-font-family);font-size:21px;font-style:var(--pfl-title-font-style);font-weight:var(--pfl-title-font-weight)}.trainer-credentials ul{display:grid;gap:9px;margin:0;padding:0;list-style:none}.trainer-credentials li{position:relative;padding-left:19px;line-height:1.55;overflow-wrap:anywhere}.trainer-credentials li::before{position:absolute;top:.62em;left:0;width:7px;height:7px;border-radius:50%;background:var(--gold);content:""}
.trainer-training-section,.trainer-gallery{padding-top:0}.trainer-training-section .section-heading h2,.trainer-gallery .section-heading h2{font-family:var(--pfl-title-font-family);font-style:var(--pfl-title-font-style);font-weight:var(--pfl-title-font-weight)}.trainer-training-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:18px}.trainer-training-grid article{overflow:hidden;border:1px solid var(--line);border-radius:18px 8px 18px 8px;background:#fff;box-shadow:0 12px 34px rgba(21,31,68,.08);transition:transform .28s ease,box-shadow .28s ease}.trainer-training-grid article:hover{box-shadow:0 22px 46px rgba(21,31,68,.15);transform:translateY(-7px)}.trainer-training-grid img{width:100%;aspect-ratio:16/10;object-fit:cover;transition:transform .55s ease}.trainer-training-grid article:hover img{transform:scale(1.04)}.trainer-training-grid article>div{padding:22px}.trainer-training-grid h3{margin:0}.trainer-training-grid p{color:var(--muted);line-height:1.6}
.trainer-gallery-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:16px}.trainer-gallery-grid img{width:100%;height:100%;max-height:440px;aspect-ratio:4/3;object-fit:cover;border-radius:18px 6px 18px 6px;transition:filter .3s ease,transform .3s ease}.trainer-gallery-grid img:hover{filter:saturate(1.08);transform:translateY(-5px) rotate(.4deg)}
.has-reveal [data-reveal]{opacity:0;transform:translateY(24px);transition:opacity .7s ease,transform .7s cubic-bezier(.2,.7,.2,1)}.has-reveal [data-reveal].is-visible{opacity:1;transform:none}
@media(max-width:900px){.trainer-profile-hero,.trainer-profile-content{grid-template-columns:1fr}.trainer-profile-portrait{width:min(100%,460px);max-width:none}.trainer-credentials{position:relative;top:auto}.trainer-facts,.trainer-training-grid{grid-template-columns:1fr 1fr}}
@media(max-width:640px){.trainer-profile-page{background:linear-gradient(180deg,var(--soft) 0 900px,#fff 900px)}.trainer-facts,.trainer-training-grid,.trainer-gallery-grid{grid-template-columns:1fr}.trainer-profile-hero{padding-top:34px}.trainer-profile-hero h1{font-size:clamp(39px,12vw,54px)}.trainer-profile-portrait{width:calc(100% - 10px);margin-left:5px}.trainer-profile-content{padding-top:20px}.trainer-story-card,.trainer-credentials{padding:24px}.trainer-photo-label{right:13px;bottom:13px}}
@media(prefers-reduced-motion:reduce){[data-reveal]{opacity:1;transform:none;transition:none}.trainer-profile-portrait img,.trainer-training-grid article,.trainer-training-grid img,.trainer-gallery-grid img,.trainer-facts div{transition:none}}
@media(max-width:720px){.training-unavailable{align-items:flex-start;flex-direction:column;margin-right:18px;margin-left:18px}.training-unavailable .button{width:100%}}

/* PFL webshop */
.pfl-shop{background:var(--soft)}
.pfl-shop-hero{position:relative;isolation:isolate;min-height:420px;overflow:hidden;background:var(--navy);color:#fff}
.pfl-shop-hero>img{position:absolute;inset:0;z-index:-2;width:100%;height:100%;object-fit:cover}
.pfl-shop-hero-overlay{position:absolute;inset:0;z-index:-1;background:linear-gradient(90deg,rgba(13,22,52,.96),rgba(13,22,52,.72) 58%,rgba(13,22,52,.3))}
.pfl-shop-hero-content{display:flex;min-height:420px;flex-direction:column;justify-content:center;padding-top:58px;padding-bottom:58px}
.pfl-shop-hero h1{max-width:850px;margin:0;color:#fff;font-size:clamp(42px,6vw,76px);line-height:1}
.pfl-shop-hero-content>p:not(.section-kicker){max-width:650px;margin:18px 0 0;color:rgba(255,255,255,.82);font-size:18px;line-height:1.65}
.pfl-shop-search{display:flex;width:min(700px,100%);margin-top:30px;padding:6px;border-radius:999px;background:#fff;box-shadow:var(--shadow)}
.pfl-shop-search input[type=search]{min-width:0;flex:1;padding:0 20px;border:0;background:transparent;color:var(--navy);font:inherit;outline:0}
.pfl-shop-search button,.pfl-filter-submit{min-height:46px;padding:0 26px;border:0;border-radius:999px;background:var(--gold);color:var(--navy);font:inherit;font-size:13px;font-weight:900;cursor:pointer}
.pfl-shop-layout{display:grid;grid-template-columns:290px minmax(0,1fr);gap:34px;padding-top:52px;padding-bottom:88px}
.pfl-shop-sidebar{align-self:start;padding:26px;border:1px solid var(--line);border-radius:var(--radius);background:#fff;box-shadow:0 12px 34px rgba(21,31,68,.07)}
.pfl-filter-heading{display:flex;align-items:center;justify-content:space-between;gap:12px}.pfl-filter-heading h2{margin:0;font-size:20px}.pfl-filter-heading a{color:var(--gold);font-size:12px;font-weight:900}
.pfl-shop-sidebar fieldset{margin:24px 0 0;padding:22px 0 0;border:0}
.pfl-shop-sidebar legend{padding:0;color:var(--navy);font-weight:900}
.pfl-shop-sidebar fieldset>label{display:grid;grid-template-columns:20px minmax(0,1fr) 30px;gap:10px;align-items:center;margin-top:13px;color:var(--ink);cursor:pointer}
.pfl-shop-sidebar fieldset>label span{min-width:0;line-height:1.35}.pfl-shop-sidebar fieldset>label small{color:var(--muted);text-align:right}.pfl-shop-sidebar input[type=checkbox]{width:18px;height:18px;margin:0;accent-color:var(--gold)}
.pfl-shop-sidebar fieldset>p{color:var(--muted);font-size:13px;line-height:1.5}
.pfl-price-fields{display:grid;grid-template-columns:1fr 1fr;gap:10px;margin-top:14px}.pfl-price-fields label span{display:block;margin-bottom:7px;color:var(--muted);font-size:12px}.pfl-price-fields input{width:100%;min-width:0;height:46px;padding:0 12px;border:1px solid var(--line);border-radius:8px;background:#fff;color:var(--navy);font:inherit}
.pfl-filter-submit{display:flex!important;width:100%!important;min-height:48px!important;align-items:center;justify-content:center;margin-top:24px!important;padding:0 18px!important;border:1px solid var(--gold)!important;border-radius:999px!important;background:var(--gold)!important;color:var(--navy)!important;font-weight:900!important;line-height:1.2!important;opacity:1!important;box-shadow:none!important}
.pfl-filter-submit:hover,.pfl-filter-submit:focus{background:var(--navy)!important;border-color:var(--navy)!important;color:#fff!important}
.pfl-shop-results{min-width:0}.pfl-shop-toolbar{display:flex;min-height:48px;align-items:center;justify-content:space-between;gap:20px;margin-bottom:18px}.pfl-shop-toolbar .woocommerce-result-count{margin:0;color:var(--muted)}.pfl-shop-toolbar .woocommerce-ordering{margin:0}.pfl-shop-toolbar select{min-height:42px;padding:0 38px 0 14px;border:1px solid var(--line);border-radius:999px;background:#fff;color:var(--navy);font-weight:700}
.pfl-shop-results .products{display:grid!important;grid-template-columns:repeat(3,minmax(0,1fr));gap:18px;margin:0!important;padding:0!important}
.pfl-shop-results ul.products::before,.pfl-shop-results ul.products::after{display:none!important}
.pfl-shop-results ul.products li.product{display:flex!important;width:auto!important;min-width:0;float:none!important;flex-direction:column;margin:0!important;padding:0 0 20px!important;overflow:hidden;border:1px solid var(--line);border-radius:var(--radius);background:#fff;box-shadow:0 12px 34px rgba(21,31,68,.07);transition:transform .2s ease,box-shadow .2s ease}
.pfl-shop-results ul.products li.product:hover{box-shadow:0 18px 42px rgba(21,31,68,.13);transform:translateY(-3px)}
.pfl-shop-results ul.products li.product>a.woocommerce-LoopProduct-link{display:block;flex:1}
.pfl-shop-results ul.products li.product img{width:100%;aspect-ratio:1/1;margin:0 0 18px!important;object-fit:cover;background:#f1f3f4}
.pfl-shop-results ul.products li.product .woocommerce-loop-product__title{padding:0 18px!important;color:var(--navy);font-size:17px!important;line-height:1.3}
.pfl-shop-results ul.products li.product .price{display:block;padding:0 18px;color:var(--gold)!important;font-size:16px!important;font-weight:900}
.pfl-shop-results ul.products li.product .button{width:calc(100% - 36px);min-height:44px;margin:16px 18px 0!important;border:1px solid var(--gold);border-radius:999px;background:var(--gold);color:var(--navy);text-align:center}
.pfl-shop-results ul.products li.product .onsale{top:12px!important;right:12px!important;left:auto!important;min-width:0;min-height:0;padding:6px 10px;border-radius:999px;background:var(--gold);color:var(--navy);line-height:1.2}
.pfl-shop-results .woocommerce-pagination{margin-top:38px}.pfl-shop-results .woocommerce-pagination ul{display:flex!important;justify-content:center;gap:7px;border:0!important}.pfl-shop-results .woocommerce-pagination li{border:0!important}.pfl-shop-results .woocommerce-pagination a,.pfl-shop-results .woocommerce-pagination span{display:grid!important;width:42px;height:42px;place-items:center;border-radius:50%;background:#fff!important;color:var(--navy)!important;font-weight:900}.pfl-shop-results .woocommerce-pagination .current{background:var(--gold)!important}
@media(max-width:1080px){.pfl-shop-layout{grid-template-columns:220px minmax(0,1fr)}.pfl-shop-results .products{grid-template-columns:repeat(2,minmax(0,1fr))}}
@media(max-width:760px){.pfl-shop-hero,.pfl-shop-hero-content{min-height:390px}.pfl-shop-hero-content{padding:48px 18px}.pfl-shop-search{border-radius:8px}.pfl-shop-search button{padding:0 17px}.pfl-shop-layout{grid-template-columns:1fr;padding:28px 18px 64px}.pfl-shop-sidebar{padding:20px}.pfl-shop-sidebar fieldset>label{display:inline-grid;width:calc(50% - 6px);margin-right:6px}.pfl-shop-toolbar{align-items:flex-start;flex-direction:column}.pfl-shop-results .products{grid-template-columns:repeat(2,minmax(0,1fr));gap:12px}.pfl-shop-results ul.products li.product .woocommerce-loop-product__title{padding:0 13px!important;font-size:14px!important}.pfl-shop-results ul.products li.product .price{padding:0 13px}.pfl-shop-results ul.products li.product .button{width:calc(100% - 26px);margin:13px 13px 0!important;padding:0 8px;font-size:11px}}
@media(max-width:430px){.pfl-shop-sidebar fieldset>label{display:grid;width:100%;margin-right:0}.pfl-shop-results .products{grid-template-columns:1fr}}

/* PFL productpagina */
.pfl-product-page{background:var(--soft)}
.pfl-product{padding-top:34px;padding-bottom:86px}
.pfl-product-back{margin-bottom:24px}.pfl-product-back a{color:var(--navy);font-size:13px;font-weight:900}.pfl-product-back a:hover{text-decoration:underline}
.pfl-product-main{display:grid;grid-template-columns:minmax(0,1.05fr) minmax(340px,.95fr);gap:clamp(34px,6vw,78px);align-items:start;padding:clamp(24px,4vw,48px);border:1px solid var(--line);border-radius:var(--radius);background:#fff;box-shadow:var(--shadow)}
.pfl-product-gallery{min-width:0}.pfl-product-gallery .woocommerce-product-gallery{width:100%!important;float:none!important;margin:0!important}.pfl-product-gallery .woocommerce-product-gallery__wrapper{margin:0}.pfl-product-gallery .woocommerce-product-gallery__image img{width:100%;border-radius:var(--radius);background:#f1f3f4}.pfl-product-gallery .flex-control-thumbs{display:grid;grid-template-columns:repeat(5,minmax(0,1fr));gap:10px;margin-top:12px!important;padding:0!important}.pfl-product-gallery .flex-control-thumbs li{width:auto!important;float:none!important;margin:0!important;list-style:none}.pfl-product-gallery .flex-control-thumbs img{width:100%;aspect-ratio:1/1;border:2px solid transparent;border-radius:6px;object-fit:cover;background:#f1f3f4;cursor:pointer;opacity:.62;transition:border-color .2s ease,opacity .2s ease}.pfl-product-gallery .flex-control-thumbs img.flex-active,.pfl-product-gallery .flex-control-thumbs img:hover{border-color:var(--gold);opacity:1}.pfl-product-gallery .woocommerce-product-gallery__trigger{z-index:3!important;display:grid!important;width:42px!important;height:42px!important;place-items:center;border-radius:50%!important;background:#fff!important;box-shadow:0 8px 24px rgba(21,31,68,.14)}
.pfl-product-summary{width:auto!important;float:none!important;margin:0!important}.pfl-product-summary .product_title{margin:0;color:var(--navy);font-family:var(--pfl-title-font-family);font-size:clamp(36px,5vw,62px);font-style:var(--pfl-title-font-style);font-weight:var(--pfl-title-font-weight);line-height:1;overflow-wrap:anywhere}.pfl-product-summary .woocommerce-product-rating{margin:14px 0}.pfl-product-summary .price{margin:20px 0;color:var(--gold)!important;font-size:clamp(24px,3vw,34px)!important;font-weight:900}.pfl-product-summary .woocommerce-product-details__short-description{color:var(--muted);font-size:17px;line-height:1.75}
.pfl-product-summary form.cart{display:flex;flex-wrap:wrap;gap:10px;margin:28px 0!important;padding:22px 0;border-top:1px solid var(--line);border-bottom:1px solid var(--line)}.pfl-product-summary form.cart .quantity .qty{min-height:48px;border:1px solid var(--line);border-radius:999px}.pfl-product-summary form.cart .single_add_to_cart_button{min-height:48px!important;padding:0 26px!important;border-radius:999px!important;background:var(--gold)!important;color:var(--navy)!important;font-weight:900!important}.pfl-product-summary form.cart .variations{width:100%;margin-bottom:10px}.pfl-product-summary form.cart .variations th,.pfl-product-summary form.cart .variations td{display:block;padding:0 0 8px;text-align:left}.pfl-product-summary form.cart .variations select{width:100%;min-height:46px;padding:0 14px;border:1px solid var(--line);border-radius:6px;background:#fff}.pfl-product-summary .product_meta{display:grid;gap:7px;color:var(--muted);font-size:13px}.pfl-product-summary .product_meta a{color:var(--navy);font-weight:800}
.pfl-product-options{display:grid;width:100%;gap:18px;margin-bottom:12px;padding:20px;border:1px solid var(--line);border-radius:var(--radius);background:var(--soft)}.pfl-product-options>label,.pfl-initials-field>label,.pfl-printing-options legend{display:block;margin-bottom:8px;color:var(--navy);font-size:13px;font-weight:900}.pfl-product-options abbr{color:var(--gold);text-decoration:none}.pfl-product-options select,.pfl-product-options input[type=text]{width:100%;min-height:46px;padding:0 14px;border:1px solid var(--line);border-radius:8px;background:#fff;color:var(--navy);font:inherit}.pfl-printing-options{display:flex;flex-wrap:wrap;gap:12px 22px;margin:0;padding:0;border:0}.pfl-printing-options legend{width:100%}.pfl-printing-options label{display:flex;align-items:center;gap:8px;color:var(--ink);font-size:14px;cursor:pointer}.pfl-printing-options input{width:18px;height:18px;margin:0;accent-color:var(--gold)}.pfl-initials-field small{display:block;margin-top:7px;color:var(--muted);font-size:12px}.pfl-initials-field[hidden]{display:none!important}
.pfl-product-service{display:flex;flex-wrap:wrap;gap:8px;margin-top:24px}.pfl-product-service span{padding:8px 11px;border-radius:999px;background:var(--soft);color:var(--navy);font-size:12px;font-weight:800}
.pfl-product-more{margin-top:42px}.pfl-product-more .woocommerce-tabs,.pfl-product-more .related,.pfl-product-more .up-sells{padding:clamp(24px,4vw,42px);border:1px solid var(--line);border-radius:var(--radius);background:#fff}.pfl-product-more .woocommerce-tabs ul.tabs{display:flex;flex-wrap:wrap;gap:8px;margin:0 0 28px!important;padding:0!important}.pfl-product-more .woocommerce-tabs ul.tabs::before,.pfl-product-more .woocommerce-tabs li::before,.pfl-product-more .woocommerce-tabs li::after{display:none!important}.pfl-product-more .woocommerce-tabs ul.tabs li{margin:0!important;padding:0!important;border:0!important;border-radius:999px!important;background:var(--soft)!important}.pfl-product-more .woocommerce-tabs ul.tabs li.active{background:var(--navy)!important}.pfl-product-more .woocommerce-tabs ul.tabs a{padding:11px 16px!important;color:var(--navy)!important}.pfl-product-more .woocommerce-tabs ul.tabs li.active a{color:#fff!important}.pfl-product-more .woocommerce-Tabs-panel{color:var(--muted);line-height:1.75}.pfl-product-more .woocommerce-Tabs-panel h2,.pfl-product-more .related>h2,.pfl-product-more .up-sells>h2{color:var(--navy);font-size:clamp(25px,4vw,38px)}.pfl-product-more .related,.pfl-product-more .up-sells{margin-top:28px}.pfl-product-more .products{display:grid!important;grid-template-columns:repeat(4,minmax(0,1fr));gap:16px}.pfl-product-more ul.products::before,.pfl-product-more ul.products::after{display:none!important}.pfl-product-more ul.products li.product{width:auto!important;float:none!important;margin:0!important}.pfl-product-more ul.products li.product img{border-radius:var(--radius)}.pfl-product-more ul.products li.product .button{border-radius:999px;background:var(--gold);color:var(--navy)}
@media(max-width:820px){.pfl-product-main{grid-template-columns:1fr}.pfl-product-more .products{grid-template-columns:repeat(2,minmax(0,1fr))}}
@media(max-width:720px){.hero h1,.training-hero h1,.single-post-hero h1,.trainer-profile-hero h1,.pfl-shop-hero h1,.pfl-product-summary .product_title,.generic-single-content h1{max-width:100%;font-size:clamp(34px,10vw,48px);line-height:1.02;overflow-wrap:anywhere;word-break:normal}.hero-content,.training-hero-content,.pfl-shop-hero-content{overflow:hidden}.pfl-product{padding:22px 18px 58px}.pfl-product-main{padding:18px}.pfl-product-summary .woocommerce-product-details__short-description{font-size:16px}.pfl-product-summary form.cart .single_add_to_cart_button{flex:1}.pfl-product-service{align-items:flex-start;flex-direction:column}.pfl-product-more{margin-top:22px}.pfl-product-more .woocommerce-tabs,.pfl-product-more .related,.pfl-product-more .up-sells{padding:20px}.pfl-product-more .products{grid-template-columns:1fr 1fr}}
@media(max-width:430px){.pfl-product-more .products{grid-template-columns:1fr}}

/* Gerelateerde producten: WooCommerce-layout volledig neutraliseren */
body.single-product .pfl-product-more section.related.products,
body.single-product .pfl-product-more section.up-sells.products{display:block!important;width:100%!important;float:none!important;clear:both}
body.single-product .pfl-product-more section.related.products>h2,
body.single-product .pfl-product-more section.up-sells.products>h2{display:block!important;width:100%!important;margin:0 0 28px!important}
body.single-product .pfl-product-more section.related.products ul.products,
body.single-product .pfl-product-more section.up-sells.products ul.products{display:grid!important;width:100%!important;grid-template-columns:repeat(4,minmax(0,1fr));gap:18px;clear:both;margin:0!important;padding:0!important}
body.single-product .pfl-product-more ul.products li.product{display:flex!important;width:auto!important;min-width:0;float:none!important;flex-direction:column;margin:0!important;padding:0 0 16px!important;overflow:hidden;border:1px solid var(--line);border-radius:var(--radius);background:var(--soft)}
body.single-product .pfl-product-more ul.products li.product>a.woocommerce-LoopProduct-link{display:block;min-width:0;flex:1}
body.single-product .pfl-product-more ul.products li.product img{width:100%!important;aspect-ratio:1/1;margin:0 0 15px!important;border-radius:0!important;object-fit:cover;background:#f1f3f4}
body.single-product .pfl-product-more ul.products li.product .woocommerce-loop-product__title{padding:0 15px!important;color:var(--navy);font-size:15px!important;line-height:1.35;overflow-wrap:anywhere}
body.single-product .pfl-product-more ul.products li.product .price{display:block;padding:0 15px;color:var(--gold)!important;font-weight:900}
body.single-product .pfl-product-more ul.products li.product .button{display:flex!important;width:calc(100% - 30px)!important;min-height:42px;align-items:center;justify-content:center;margin:14px 15px 0!important;padding:8px 12px!important;border-radius:999px;background:var(--gold);color:var(--navy);font-size:12px;line-height:1.25;text-align:center;white-space:normal}
@media(max-width:900px){body.single-product .pfl-product-more section.related.products ul.products,body.single-product .pfl-product-more section.up-sells.products ul.products{grid-template-columns:repeat(2,minmax(0,1fr))}}
@media(max-width:430px){body.single-product .pfl-product-more section.related.products ul.products,body.single-product .pfl-product-more section.up-sells.products ul.products{grid-template-columns:1fr}}

.trainer-grid p {
  margin-top: 10px;
  color: var(--muted);
  line-height: 1.65;
}

.location {
  padding: clamp(64px, 8vw, 108px) 0;
  background: var(--navy);
  color: #fff;
}

.location h2 {
  color: #fff;
}

.location p {
  color: rgba(255, 255, 255, .78);
}

.location-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(28px, 7vw, 90px);
  align-items: center;
}

.location-cards {
  display: grid;
  gap: 22px;
  margin-top: 30px;
}

.location-cards article {
  display: grid;
  gap: 9px;
  align-content: start;
  padding: 0 0 22px;
  border-bottom: 1px solid rgba(255, 255, 255, .16);
}

.location-cards article:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.location-cards strong {
  color: #fff;
  font-size: 19px;
}

.location-cards span,
.location-cards a {
  color: rgba(255, 255, 255, .75);
}

.location-address {
  line-height: 1.45;
}

.location-cards a {
  width: fit-content;
  margin-top: 2px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
}

.location-schedule {
  display: grid;
  gap: 4px;
  margin-top: 2px;
}

.location-schedule span {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: none;
  color: rgba(255, 255, 255, .78);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.45;
}

.map-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: var(--radius);
  box-shadow: 0 24px 70px rgba(0, 0, 0, .26);
}

.map-frame {
  display: block;
  width: 100%;
  height: 430px;
  border: 0;
  filter: saturate(.85) contrast(.95);
}

.map-card::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(21, 31, 68, .06), rgba(201, 154, 77, .12));
  content: "";
  pointer-events: none;
}

.map-pins {
  position: absolute;
  inset: 0;
  z-index: 2;
}

.map-pin {
  position: absolute;
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border: 3px solid var(--gold);
  border-radius: 50% 50% 50% 12px;
  background: #fff;
  box-shadow: 0 16px 34px rgba(0, 0, 0, .26);
  transform: translate(-50%, -100%) rotate(-45deg);
}

.map-pin img,
.map-pin span {
  width: 38px;
  height: 38px;
  object-fit: contain;
  transform: rotate(45deg);
}

.map-pin span {
  display: grid;
  place-items: center;
  color: var(--navy);
  font-size: 11px;
  font-weight: 900;
}

.cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.cta-actions {
  display: flex;
  flex: 0 0 auto;
  gap: 12px;
}

.footer {
  width: min(1240px, calc(100% - 36px));
  margin: 0 auto 24px;
  overflow: hidden;
  border-radius: 18px;
  background: var(--navy);
  color: #fff;
}

.footer-top {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-bottom: 1px solid rgba(255, 255, 255, .16);
}

.footer-top a {
  display: grid;
  min-height: 104px;
  place-items: center;
  padding: 18px;
  border-right: 1px solid rgba(255, 255, 255, .1);
  color: rgba(255, 255, 255, .82);
  font-weight: 800;
  text-align: center;
}

.footer-top a:last-child {
  border-right: 0;
}

.footer-top img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.footer-top span {
  display: block;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr 1fr;
  gap: 44px;
  padding: 34px clamp(24px, 6vw, 76px);
}

.footer-grid div {
  display: grid;
  gap: 11px;
}

.footer-grid a,
.footer-grid span,
.footer-grid em {
  color: rgba(255, 255, 255, .72);
  font-size: 14px;
}

.footer-location {
  display: grid;
  gap: 3px;
}

.footer-location .footer-location-name {
  color: rgba(255, 255, 255, .82);
}

.footer-location small {
  color: rgba(255, 255, 255, .56);
  font-size: 12px;
  line-height: 1.45;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 18px clamp(24px, 6vw, 76px);
  border-top: 1px solid rgba(255, 255, 255, .16);
  color: rgba(255, 255, 255, .72);
  font-size: 13px;
}

.training-landing {
  background: #fff;
}

.training-hero {
  position: relative;
  min-height: min(720px, calc(100vh - 92px));
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #fff;
}

.training-hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.training-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(21, 31, 68, .92), rgba(21, 31, 68, .58) 52%, rgba(21, 31, 68, .18));
}

.training-hero-content {
  position: relative;
  z-index: 1;
  padding-top: clamp(96px, 13vw, 170px);
  padding-bottom: clamp(56px, 8vw, 92px);
}

.training-hero h1 {
  max-width: 850px;
  margin: 0;
  color: #fff;
  font-family: var(--pfl-title-font-family);
  font-size: clamp(46px, 8vw, 96px);
  font-style: var(--pfl-title-font-style);
  line-height: .96;
}

.training-hero p:not(.eyebrow) {
  max-width: 620px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, .82);
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.6;
}

.training-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.training-intro {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(28px, 7vw, 88px);
  padding-top: clamp(62px, 8vw, 104px);
  padding-bottom: clamp(62px, 8vw, 104px);
}

.training-intro h2,
.training-detail-grid h2,
.training-faq h2 {
  margin: 0;
  color: var(--navy);
  font-family: var(--pfl-title-font-family);
  font-size: clamp(34px, 4.8vw, 62px);
  font-style: var(--pfl-title-font-style);
  line-height: 1.03;
}

.training-intro .entry-content {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.85;
}

.training-intro .entry-content p:first-child {
  margin-top: 0;
}

.training-detail-band {
  padding: clamp(64px, 8vw, 104px) 0;
  background: var(--soft);
}

.training-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 5vw, 72px);
}

.training-check-list,
.training-program ol {
  display: grid;
  gap: 12px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.training-check-list li,
.training-program li {
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
  font-weight: 800;
  line-height: 1.45;
}

.training-check-list li::before {
  margin-right: 10px;
  color: var(--gold);
  content: "✓";
}

.training-program {
  align-self: start;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 14px 34px rgba(21, 31, 68, .08);
}

.training-program h3 {
  margin: 0;
  color: var(--navy);
  font-size: 24px;
}

.training-program li {
  padding: 0 0 12px;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  font-weight: 700;
}

.training-program li:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.training-base-price {
  color: var(--gold);
  font-size: 22px;
}

.training-location-price-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.training-location-price-card {
  display: grid;
  min-height: 280px;
  gap: 24px;
  align-content: space-between;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 16px 42px rgba(21, 31, 68, .09);
}

.training-location-price-card h3 {
  margin: 0;
  color: var(--navy);
  font-size: 24px;
}

.training-location-price-card p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.55;
}

.training-location-price-card span {
  display: block;
  margin-top: 14px;
  color: var(--ink);
  font-weight: 800;
  line-height: 1.45;
}

.training-location-price {
  display: grid;
  gap: 4px;
}

.training-location-price strong {
  color: var(--navy);
  font-size: 34px;
}

.training-location-price small {
  color: var(--muted);
  font-size: 15px;
  font-weight: 700;
}

.training-location-price strong small {
  display: inline;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.training-location-price-card .button {
  width: fit-content;
}

.training-faq {
  padding-top: clamp(44px, 7vw, 86px);
  padding-bottom: clamp(62px, 8vw, 104px);
}

.training-faq-list {
  display: grid;
  gap: 12px;
}

.training-faq details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 10px 28px rgba(21, 31, 68, .06);
}

.training-faq summary {
  cursor: pointer;
  padding: 20px 22px;
  color: var(--navy);
  font-weight: 900;
}

.training-faq details p {
  margin: 0;
  padding: 0 22px 22px;
  color: var(--muted);
  line-height: 1.7;
}

@media (max-width: 1440px) {
  .site-header {
    grid-template-columns: auto 1fr;
    gap: 14px;
    min-height: 76px;
    padding-top: 10px;
    padding-bottom: 10px;
    transition: box-shadow .2s ease;
  }

  .brand-title {
    display: none;
  }

  .custom-logo,
  .site-header.is-scrolled .custom-logo {
    width: 54px;
    height: 54px;
    transition: none;
  }

  .brand-mark,
  .site-header.is-scrolled .brand-mark {
    width: 54px;
    height: 54px;
  }

  .nav {
    position: absolute;
    top: calc(100% + 10px);
    right: 18px;
    left: auto;
    display: none;
    flex-direction: column;
    gap: 0;
    width: min(340px, calc(100vw - 36px));
    max-height: calc(100vh - 110px);
    overflow: auto;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: var(--shadow);
    z-index: 80;
  }

  .nav.is-open {
    display: flex;
  }

  .nav a {
    width: 100%;
    padding: 14px;
  }

  .nav .primary-menu {
    display: grid;
    gap: 2px;
    margin: 0;
    padding: 0;
  }

  .nav .sub-menu {
    position: static;
    display: grid;
    min-width: 0;
    margin: 0 0 4px 14px;
    padding: 0 0 0 12px;
    border: 0;
    border-left: 1px solid var(--line);
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .nav .sub-menu .sub-menu {
    transform: none;
  }

  .nav .menu-item:hover > .sub-menu,
  .nav .menu-item:focus-within > .sub-menu,
  .nav .sub-menu .menu-item:hover > .sub-menu,
  .nav .sub-menu .menu-item:focus-within > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .nav .sub-menu a {
    padding: 10px 12px;
    white-space: normal;
  }

  .header-actions {
    justify-self: end;
  }

  .nav-toggle {
    display: inline-flex;
  }

}

@media (max-width: 980px) {
  .intro,
  .news-grid,
  .offer-grid,
  .location-grid,
  .training-intro,
  .training-detail-grid,
  .training-location-price-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

  .cta {
    align-items: flex-start;
    flex-direction: column;
  }

  .single-related-grid {
    grid-template-columns: 1fr;
  }

  .training-hero {
    min-height: 620px;
  }

  .training-hero-overlay {
    background: linear-gradient(180deg, rgba(21, 31, 68, .52), rgba(21, 31, 68, .95));
  }
}

@media (max-width: 720px) {
  .site-header {
    min-height: 76px;
    padding: 10px 16px;
  }

  .brand-mark {
    width: 54px;
    height: 54px;
  }

  .custom-logo {
    width: 54px;
    height: 54px;
  }

  .brand strong {
    max-width: 128px;
    font-size: 18px;
  }

  .nav {
    top: 76px;
  }

  .whatsapp {
    display:none;
  }

  .header-actions{gap:7px}.trial-whatsapp{min-height:38px;padding:0 12px;font-size:11px}.nav-toggle{min-width:44px;padding:0 10px}.nav-toggle-label{display:none}

  .hero {min-height:0;padding-bottom:22px}

  .hero-content {min-height:0}

  .hero-content {
    width:auto;
    margin:0 18px;
    padding:48px 0 28px;
  }

  .hero-card {
    position:relative;
    right:auto;
    bottom:auto;
    left:auto;
    width: auto;
    margin:0 18px;
    padding:22px;
  }

  .hero h1{font-size:clamp(36px,10.5vw,50px);line-height:.98;overflow-wrap:normal;word-break:normal;hyphens:none}
  .hero-copy{margin-top:22px;font-size:16px;line-height:1.55}
  .hero-buttons{margin-top:26px}
  .hero-card h2{font-size:30px}.hero-card strong{font-size:21px}

  .hero-buttons,
  .training-hero-actions,
  .cta-actions {
    width: 100%;
    flex-direction: column;
  }

  .button,
  .button-primary,
  .button-secondary,
  .button-outline {
    width: 100%;
  }

  .stats,
  .offer-grid,
  .trainer-grid,
  .banner-strip,
  .footer-top,
  .location-cards {
    grid-template-columns: 1fr;
  }

  .section-heading.split,
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .trainer-grid article {
    grid-template-columns: 1fr;
  }

  .map-frame {
    height: 320px;
  }

  .single-post-article {
    width: min(100% - 24px, 1120px);
  }

  .single-post-tags a {
    min-height: 38px;
    padding: 0 14px;
    font-size: 13px;
  }

  .single-post-image img,
  .single-related-card {
    border-radius: 16px;
  }
}

@media (max-width: 720px) {
  .pfl-cart-link { width: 40px; height: 40px; flex-basis: 40px; }
  .pfl-cart-icon,
  .pfl-cart-icon svg,
  .pfl-cart-icon-image { width: 21px; height: 21px; }
}

@media (max-width: 520px) {
  body.woocommerce .trial-whatsapp,
  body.woocommerce-cart .trial-whatsapp,
  body.woocommerce-checkout .trial-whatsapp { display: none; }
}

/* Trainingen en events delen dezelfde aanpasbare paginakop. */
.overview-header{position:relative;isolation:isolate;overflow:hidden;background:var(--navy);color:#fff}
.overview-header-image{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;z-index:-2}
.overview-header.has-image:after{content:"";position:absolute;inset:0;background:linear-gradient(90deg,rgba(21,31,68,.94),rgba(21,31,68,.5));z-index:-1}
.overview-header-content{padding-top:76px;padding-bottom:76px}
.overview-header h1{font-family:var(--pfl-title-font-family);font-weight:var(--pfl-title-font-weight);font-style:var(--pfl-title-font-style);font-size:clamp(38px,6vw,72px);line-height:1.05;margin:0 0 22px;color:#fff;overflow-wrap:anywhere}
.overview-header-content>p:last-child{max-width:680px;font-size:18px;line-height:1.7}
.event-card-title{font-size:23px;line-height:1.2;margin:0;color:var(--navy)}
.event-facts{margin:0 0 24px;font-size:14px;line-height:1.6}
.event-facts>div{margin-bottom:10px}.event-facts dt{font-weight:800}.event-facts dd{margin:0;color:var(--muted);overflow-wrap:anywhere}
.overview-cta{margin-bottom:64px}.overview-cta p{line-height:1.7}
@media(max-width:640px){.overview-header-content{padding-top:44px;padding-bottom:44px}.overview-cta .cta-actions{flex-wrap:wrap}}

.pfl-shop-category-nav{display:flex;flex-wrap:wrap;justify-content:center;gap:14px;padding-top:30px}
.pfl-shop-category-nav .button{min-width:160px;min-height:48px;text-decoration:none}
.pfl-shop-category-nav .button:hover,.pfl-shop-category-nav .button:focus-visible{box-shadow:0 6px 18px rgba(21,31,68,.12)}
@media(max-width:540px){.pfl-shop-category-nav{gap:8px;padding-right:18px;padding-left:18px}.pfl-shop-category-nav .button{flex:1;min-width:0;padding:0 12px;font-size:12px}}

/* Shop controls deliberately scoped above WooCommerce's generic button rules. */
.pfl-shop .pfl-shop-category-nav{justify-content:flex-start;padding-top:26px;gap:10px}
.pfl-shop .pfl-shop-category-nav a.button{display:inline-flex;align-items:center;justify-content:center;min-height:48px;min-width:120px;margin:0;padding:12px 24px!important;border:1px solid var(--line)!important;border-radius:999px!important;background:#fff!important;color:var(--navy)!important;font-weight:800;line-height:1.2;transition:background .2s,color .2s}
.pfl-shop .pfl-shop-category-nav a.button[aria-current],.pfl-shop .pfl-shop-category-nav a.button:hover{background:var(--navy)!important;color:#fff!important;border-color:var(--navy)!important}
.pfl-shop a:focus-visible,.pfl-shop summary:focus-visible{outline:3px solid var(--gold);outline-offset:4px}
.pfl-mobile-filters>summary{display:none;cursor:pointer;font-weight:900;color:var(--navy);list-style:none;min-height:48px;align-items:center;justify-content:space-between}
.pfl-mobile-filters>summary::-webkit-details-marker{display:none}
.pfl-shop-sidebar fieldset{border:0!important}
.pfl-shop-empty{padding:36px;border:1px solid var(--line);border-radius:16px;background:#fff}.pfl-shop-empty h2{font-size:28px;line-height:1.2}.pfl-shop-empty p{line-height:1.7;color:var(--muted)}
.pfl-shop-closing{display:grid;grid-template-columns:1.5fr 1fr;gap:32px;align-items:center;padding:40px;margin-bottom:64px;border-radius:20px;background:var(--navy);color:#fff}
.pfl-shop-closing h2{font-family:var(--pfl-title-font-family);font-size:clamp(28px,4vw,42px);line-height:1.15;color:#fff;margin:0 0 16px}.pfl-shop-closing p:not(.section-kicker){color:#e0e5f2;line-height:1.7;margin:0}
.pfl-shop-closing-actions{display:flex;flex-direction:column;align-items:stretch;gap:12px}
.pfl-shop .pfl-shop-closing a.button,.pfl-shop .pfl-shop-empty a.button{display:inline-flex;justify-content:center;align-items:center;min-height:48px;padding:12px 20px!important;border-radius:999px!important;background:var(--gold)!important;color:var(--navy)!important;line-height:1.4;text-align:center;white-space:normal}
.pfl-shop .pfl-shop-closing a.button-outline{border:1px solid #fff!important;background:transparent!important;color:#fff!important}
@media(max-width:760px){
.pfl-shop .pfl-shop-hero,.pfl-shop .pfl-shop-hero-content{min-height:0}.pfl-shop .pfl-shop-hero-content{padding:40px 18px}.pfl-shop-hero h1{font-size:clamp(30px,8vw,46px)}
.pfl-shop .pfl-shop-category-nav{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));padding:20px 18px 0;gap:6px}.pfl-shop .pfl-shop-category-nav a.button{min-width:0;padding:12px 6px!important;font-size:12px}
.pfl-shop-layout{gap:20px!important}.pfl-shop-sidebar{position:static!important;padding:12px 18px!important}.pfl-mobile-filters>summary{display:flex}.pfl-mobile-filters[open]>summary{margin-bottom:16px}.pfl-mobile-filters[open]>summary span{transform:rotate(45deg)}
.pfl-shop-sidebar fieldset>label{min-height:44px}.pfl-shop-sidebar input,.pfl-shop-search input,.pfl-shop-toolbar select{font-size:16px!important}
.pfl-shop-toolbar{gap:14px}.pfl-shop-toolbar .woocommerce-ordering,.pfl-shop-toolbar select{width:100%;margin:0!important;min-height:44px}
.pfl-shop .pfl-shop-results .products{grid-template-columns:repeat(2,minmax(0,1fr))!important;gap:12px}.pfl-shop-results{min-width:0}.pfl-shop-results ul.products li.product .button{min-height:48px;white-space:normal;line-height:1.3}
.pfl-shop-closing{grid-template-columns:1fr;padding:26px 20px;margin-bottom:32px;width:calc(100% - 36px)}.pfl-shop-empty{padding:24px}
}
@media(max-width:350px){.pfl-shop .pfl-shop-category-nav{grid-template-columns:repeat(2,1fr)}.pfl-shop .pfl-shop-results .products{grid-template-columns:1fr!important}}
@media(prefers-reduced-motion:reduce){.pfl-shop .pfl-shop-category-nav a.button{transition:none}}

/* Header: compact navigation before logo, menu and actions can collide. */
.site-header{grid-template-columns:minmax(0,1fr) auto auto;gap:20px;padding-left:clamp(16px,2.5vw,40px);padding-right:clamp(16px,2.5vw,40px)}
.site-header .brand{min-width:0;max-width:330px}.site-header .brand-title{min-width:0;white-space:normal;max-width:100%!important}.site-header .brand strong{white-space:normal;overflow-wrap:normal;line-height:1.05}
.site-header .custom-logo,.site-header .brand-mark{flex-shrink:0}.site-header .nav{gap:18px;min-width:0}.site-header .header-actions{flex-shrink:0;gap:8px}.site-header .header-actions>a{white-space:nowrap}
.mobile-nav-contact,.trial-label-short{display:none}
@media(min-width:1441px){.site-header:not(.is-scrolled) .custom-logo,.site-header:not(.is-scrolled) .brand-mark{width:64px;height:64px}.site-header:not(.is-scrolled) .brand strong{font-size:24px}.site-header .nav>.primary-menu>.menu-item>a{white-space:nowrap}.site-header .header-actions>a{padding-left:14px;padding-right:14px}}
@media(max-width:1440px){
.site-header,.site-header:not(.is-scrolled){grid-template-columns:minmax(0,1fr) auto;min-height:76px;gap:12px;padding-top:10px;padding-bottom:10px}
.site-header .nav{top:calc(100% + 6px);right:16px;width:min(380px,calc(100vw - 32px));max-height:calc(100dvh - 150px);overscroll-behavior:contain;gap:0}
.site-header .nav-toggle{display:inline-flex;min-height:44px}.site-header .mobile-nav-contact{display:grid;border-top:1px solid var(--line);margin-top:10px;padding-top:10px}.site-header .mobile-nav-contact a{color:var(--navy);font-weight:800;min-height:44px}
}
@media(min-width:721px) and (max-width:1440px){.site-header .brand-title{display:block}.site-header .brand strong{font-size:20px}}
@media(max-width:720px){.site-header .brand-title{display:none}.site-header .header-actions{gap:6px}.site-header .header-actions>a{min-height:44px}.site-header .nav{top:calc(100% + 6px)}}
@media(max-width:480px){.site-header .trial-label-full{display:none}.site-header .trial-label-short{display:inline}.site-header .custom-logo,.site-header .brand-mark{width:46px;height:46px}.site-header .header-actions .trial-whatsapp{padding:0 12px;font-size:12px}.site-header .header-actions .pfl-cart-link{padding:0 8px}}
.pfl-shop-sidebar fieldset>label{grid-template-columns:18px minmax(0,1fr) 24px;gap:8px}.pfl-shop-sidebar fieldset>label span{overflow-wrap:anywhere}.pfl-shop-sidebar fieldset>label small{min-width:24px}
.admin-bar .site-header{top:32px}@media(max-width:782px){.admin-bar .site-header{top:46px}}@media(max-width:600px){.admin-bar .site-header{top:0}}
@media(max-width:720px){.site-header .header-actions .trial-whatsapp{display:inline-flex}}

/* Prominent horizontal branding and larger primary navigation. */
.site-header .brand{max-width:none;gap:14px}
.site-header .brand-title,.site-header .brand strong{white-space:nowrap;max-width:none!important}
@media(min-width:1441px){
.site-header:not(.is-scrolled){min-height:118px}.site-header:not(.is-scrolled) .custom-logo,.site-header:not(.is-scrolled) .brand-mark{width:82px;height:82px}
.site-header:not(.is-scrolled) .brand strong{font-size:28px}.site-header.is-scrolled .custom-logo,.site-header.is-scrolled .brand-mark{width:68px;height:68px}.site-header.is-scrolled .brand strong{font-size:25px}
.site-header .nav{font-size:16px;gap:20px}.site-header .nav a{min-height:48px;display:inline-flex;align-items:center}
.site-header .header-actions>a{min-height:48px;font-size:14px;padding-left:18px;padding-right:18px}
}
@media(min-width:901px) and (max-width:1440px){.site-header .brand strong{font-size:23px}.site-header .custom-logo,.site-header .brand-mark{width:64px;height:64px}.site-header .nav a{font-size:16px;min-height:48px}}
@media(max-width:900px){.site-header .brand-title{display:none}}
@media(max-width:720px){.site-header .custom-logo,.site-header .brand-mark{width:58px;height:58px}}
@media(min-width:901px){.site-header .brand{min-width:max-content}}
