:root {
  --thisis-blue: #203a6e;
  --thisis-deep: #1e2d5a;
  --thisis-gold: #c9a84c;
  --thisis-cream: #f0ede6;
  --thisis-soft: #faf7f2;
  --thisis-ink: #111111;
  --thisis-muted: #5d6270;
  --thisis-line: rgba(32, 58, 110, 0.16);
}

@font-face {
  font-family: "Bungee";
  src: url("../fonts/Bungee-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Questrial";
  src: url("../fonts/Questrial-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Thisis Display";
  src: url("../fonts/Bungee-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

* { box-sizing: border-box; }
body {
  margin: 0;
  color: var(--thisis-ink);
  background: #fff;
  font-family: Questrial, Arial, sans-serif;
  line-height: 1.8;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
h1, h2, h3, p { margin: 0; }
h1, h2, h3 {
  font-family: "Bungee", "Thisis Display", Arial, sans-serif;
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: 0;
}
.site-main,
.thisis-footer {
  display: block;
  float: none;
  clear: both;
  width: 100%;
  max-width: 100vw;
}
.site-main::after,
.thisis-page::after {
  content: "";
  display: table;
  clear: both;
}
.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.thisis-announcement {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  overflow: hidden;
  min-height: 42px;
  padding: 8px 18px;
  color: #fff;
  font-size: 14px;
  white-space: nowrap;
}
.thisis-announcement__icon {
  display: inline-grid;
  place-items: center;
  width: 22px;
  height: 22px;
  color: var(--thisis-gold);
  font-size: 16px;
  line-height: 1;
}
.thisis-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: minmax(180px, 250px) minmax(0, 1fr) minmax(210px, auto);
  align-items: center;
  min-height: 112px;
  column-gap: clamp(16px, 2vw, 30px);
  padding: 18px clamp(10px, 2.4vw, 34px);
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--thisis-line);
  backdrop-filter: blur(14px);
}
.thisis-logo {
  justify-self: start;
}
.thisis-nav {
  justify-self: center;
}
.thisis-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 1.8vw, 34px);
  margin: 0;
  padding: 0;
  list-style: none;
}
.thisis-menu li {
  position: relative;
}
.thisis-menu a {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  min-height: 42px;
  color: var(--thisis-deep);
  font-family: "Thisis Display", Bungee, Inter, Arial, sans-serif;
  font-size: clamp(11px, .75vw, 13px);
  line-height: 1.2;
  text-transform: uppercase;
  white-space: nowrap;
}
.thisis-menu > .menu-item-has-children > a::after {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-left: 3px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
}
.thisis-menu > li.current-menu-item > a,
.thisis-menu > li.current_page_item > a,
.thisis-menu > li:first-child > a:hover,
.thisis-menu a:hover {
  color: var(--thisis-gold);
}
.thisis-menu li.menu-item-has-children::after {
  /* Onzichtbare brug tussen menu-item en submenu: zonder dit verliest de
     hover-state het menu-item zodra de cursor door de 8px-kloof beweegt,
     waardoor het submenu op desktop lijkt te "glitchen"/flikkeren. */
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 8px;
}
.thisis-menu .sub-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  z-index: 80;
  display: grid;
  min-width: 240px;
  margin: 0;
  padding: 12px;
  list-style: none;
  background: #fff;
  border: 1px solid var(--thisis-line);
  border-radius: 6px;
  box-shadow: 0 18px 40px rgba(17, 24, 39, 0.14);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 8px);
  transition: opacity .18s ease, transform .18s ease;
}
.thisis-menu li:hover > .sub-menu,
.thisis-menu li:focus-within > .sub-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}
.thisis-menu .sub-menu a {
  display: flex;
  min-height: 0;
  padding: 10px 12px;
  border-radius: 4px;
  color: var(--thisis-deep);
  font-family: Questrial, Inter, sans-serif;
  font-size: 15px;
  text-transform: none;
}
.thisis-menu .sub-menu a:hover {
  color: var(--thisis-deep);
  background: var(--thisis-soft);
}
.thisis-caret {
  display: none;
}
.thisis-logo img { width: clamp(150px, 12vw, 214px); }
.thisis-logo__text {
  color: var(--thisis-deep);
  font-family: "Thisis Display", Bungee, Inter, Arial, sans-serif;
  font-size: 22px;
  line-height: 1;
  text-transform: uppercase;
}
.thisis-header-actions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 18px;
}
.thisis-header-cta {
  min-width: 166px;
  padding: 13px clamp(16px, 1.5vw, 22px);
  color: #fff;
  background: var(--thisis-gold);
  border-radius: 999px;
  box-shadow: 0 4px 18px rgba(201, 168, 76, 0.24);
  font-family: "Thisis Display", Bungee, Inter, Arial, sans-serif;
  font-size: clamp(10px, .72vw, 12px);
  line-height: 1.2;
  text-transform: uppercase;
  white-space: nowrap;
}
.thisis-cart-link {
  position: relative;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  color: #fff;
  border: 0;
  border-radius: 50%;
  background: var(--thisis-deep);
}
.thisis-cart-link__icon {
  width: 22px;
  height: 22px;
}
.thisis-cart-link .thisis-cart-count {
  position: absolute;
  top: -5px;
  right: -5px;
  display: grid;
  place-items: center;
  min-width: 22px;
  height: 22px;
  padding: 0 6px;
  color: #fff;
  background: var(--thisis-gold);
  border: 2px solid #fff;
  border-radius: 999px;
  font-size: 12px;
  line-height: 1;
}
.thisis-floating-cart {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 90;
  display: none;
  place-items: center;
  width: 56px;
  height: 56px;
  color: #fff;
  background: var(--thisis-deep);
  border-radius: 999px;
  box-shadow: 0 14px 34px rgba(17, 24, 39, 0.2);
}
@media (min-width: 981px) {
  .thisis-floating-cart {
    display: none !important;
  }
}
.thisis-floating-cart__icon {
  width: 25px;
  height: 25px;
}
.thisis-floating-cart__count,
.thisis-floating-cart .thisis-cart-count {
  position: absolute;
  top: -5px;
  right: -5px;
  display: grid;
  place-items: center;
  min-width: 22px;
  height: 22px;
  padding: 0 6px;
  color: #fff;
  background: var(--thisis-gold);
  border: 2px solid #fff;
  border-radius: 999px;
  font-size: 12px;
  line-height: 1;
}
.thisis-menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  background: transparent;
}
.thisis-menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 6px auto;
  background: var(--thisis-deep);
}
.thisis-age-gate {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 100020;
  align-items: center;
  justify-content: center;
  padding: 22px;
  background: rgba(10, 18, 38, .72);
}
.thisis-age-gate.is-active {
  display: flex;
}
html.has-age-gate,
html.has-age-gate body {
  overflow: hidden;
}
.thisis-age-gate__box {
  width: min(100%, 460px);
  padding: 34px;
  text-align: center;
  color: var(--thisis-deep);
  background: #fff;
  border: 3px solid var(--thisis-gold);
  border-radius: 16px;
  box-shadow: 0 26px 80px rgba(10, 18, 38, .3);
}
.thisis-age-gate__eyebrow {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 6px 12px;
  color: var(--thisis-deep);
  background: var(--thisis-cream);
  border-radius: 999px;
  font-family: "Thisis Display", Bungee, Arial, sans-serif;
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.thisis-age-gate__box h2 {
  margin-bottom: 12px;
  font-size: clamp(24px, 4vw, 32px);
  line-height: 1.2;
}
.thisis-age-gate__box p {
  margin-bottom: 24px;
  color: var(--thisis-muted);
  font-size: 15px;
  line-height: 1.6;
}
.thisis-age-gate__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}
.thisis-mobile-panel {
  /* Zelfde overlay-mechaniek (opacity/transform i.p.v. display) op elke
     breakpoint waar dit paneel kan opengaan, zodat het menu tussen 768px en
     980px niet ineens zonder animatie en met een lagere z-index verschijnt
     (verschilde eerder per breakpoint = "glitchy" gedrag). */
  display: block;
  position: fixed;
  inset: 118px 0 auto;
  z-index: 100000;
  padding: 22px;
  background: #fff;
  border-bottom: 1px solid var(--thisis-line);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-10px);
  transition: opacity .18s ease, transform .18s ease;
}
.thisis-mobile-panel.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.thisis-mobile-panel .thisis-menu {
  display: grid;
  gap: 16px;
}
.tc-hero {
  position: relative;
  width: 100%;
  min-height: 560px;
  max-height: 700px;
  height: 75vw;
  overflow: hidden;
  font-family: Questrial, sans-serif;
}
.tc-hero--empty {
  background: linear-gradient(105deg, #1e2d5a 0%, #203a6e 100%);
}
.tc-hero picture,
.tc-hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.tc-hero__bg {
  object-fit: cover;
  object-position: center;
}
.tc-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(10, 18, 40, 0.72) 0%, rgba(10, 18, 40, 0.45) 45%, rgba(10, 18, 40, 0) 75%);
}
.tc-hero__content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 58%;
  padding: 0 6% 80px;
}
.tc-hero__title {
  margin-bottom: 16px;
  color: #fff;
  font-family: "Bungee", "Thisis Display", Arial, sans-serif;
  font-size: clamp(22px, 2.8vw, 44px);
  font-weight: 400;
  text-transform: none;
}
.tc-hero__subtitle {
  max-width: 440px;
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(14px, 1.5vw, 18px);
  line-height: 1.55;
  text-shadow: 0 1px 8px rgba(0,0,0,0.3);
}
.tc-hero__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.tc-hero__btn,
.thisis-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 999px;
  border: 0;
  font-family: "Bungee", "Thisis Display", Arial, sans-serif;
  font-size: 12px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}
.tc-hero__btn--primary,
.thisis-button--gold {
  color: #fff;
  background: var(--thisis-gold);
  box-shadow: 0 4px 20px rgba(201, 168, 76, 0.28);
}
.tc-hero__btn--secondary,
.thisis-button--outline-dark {
  color: var(--thisis-gold);
  background: transparent;
  border: 2px solid var(--thisis-gold);
}
.thisis-button--blue {
  color: #fff;
  background: var(--thisis-deep);
}
.tc-hero__reviews {
  position: absolute;
  bottom: 24px;
  left: 6%;
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.82);
  font-size: 13px;
}
.thisis-stars {
  color: var(--thisis-gold);
  letter-spacing: 1px;
}
.thisis-section {
  padding: 64px clamp(20px, 5vw, 72px);
}
.thisis-section-title {
  max-width: 900px;
  margin-bottom: 30px;
}
.thisis-center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.thisis-eyebrow {
  display: block;
  margin-bottom: 14px;
  color: var(--thisis-gold);
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
}
.thisis-section-title h2,
.thisis-split h2,
.thisis-blue h2 {
  color: var(--thisis-deep);
  font-size: clamp(28px, 4vw, 52px);
}
.thisis-section-title p,
.thisis-richtext p {
  max-width: 720px;
  margin-top: 18px;
  color: var(--thisis-muted);
  font-size: 17px;
}
.thisis-icon-bar {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  min-height: 120px;
  padding: 0 clamp(20px, 5vw, 72px);
  background: var(--thisis-blue);
}
.thisis-icon-bar__item {
  display: grid;
  justify-items: center;
  align-content: center;
  min-height: 96px;
  padding: 10px 18px;
  color: #fff;
  text-align: center;
  font-size: 15px;
  border-right: 1px solid rgba(255,255,255,0.12);
}
.thisis-icon-bar img {
  height: 40px;
  margin-bottom: 8px;
  object-fit: contain;
}
.thisis-product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1180px;
  margin: 0 auto 28px;
}
.thisis-process {
  background: var(--thisis-cream);
  min-height: 905px;
  display: grid;
  align-content: center;
}
.thisis-tab-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 34px;
}
.thisis-tab-buttons button {
  padding: 13px 28px;
  border: 0;
  border-radius: 999px;
  color: var(--thisis-deep);
  background: #e0ddd5;
  font-family: "Thisis Display", Bungee, Arial, sans-serif;
  font-size: 13px;
  text-transform: uppercase;
  opacity: 0.72;
}
.thisis-tab-buttons .is-active {
  color: #fff;
  background: var(--thisis-gold);
  opacity: 1;
}
.thisis-process-grid {
  display: grid;
  grid-template-columns: 1fr minmax(260px, 360px) 1fr;
  gap: 34px;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
}
.thisis-feature-col {
  display: grid;
  gap: 22px;
}
.thisis-feature-col article {
  display: grid;
  grid-template-columns: 44px 1fr;
  column-gap: 14px;
}
.thisis-feature-col span {
  grid-row: span 2;
  color: var(--thisis-deep);
  font-family: "Thisis Display", Bungee, Arial, sans-serif;
}
.thisis-feature-col h3 {
  color: var(--thisis-deep);
  font-size: 15px;
  text-transform: uppercase;
}
.thisis-feature-col p {
  color: #3a3a3a;
  font-size: 14px;
}
.thisis-process-image {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 16px;
}
.thisis-process-image--empty {
  background: rgba(32,58,110,0.12);
}
.thisis-blue {
  color: #fff;
  background: var(--thisis-deep);
}
.thisis-blue h2,
.thisis-blue .thisis-eyebrow {
  color: #fff;
}
.thisis-blue .thisis-richtext p {
  color: rgba(255,255,255,0.78);
}
.thisis-culture,
.thisis-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(30px, 5vw, 64px);
  align-items: center;
}
.thisis-culture {
  min-height: 1004px;
}
.thisis-split {
  min-height: 860px;
}
.thisis-award-logos {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  align-items: center;
  justify-items: center;
}
.thisis-award-logos img {
  max-height: 92px;
  object-fit: contain;
}
.thisis-split--cream {
  background: var(--thisis-cream);
}
.thisis-split--soft {
  background: var(--thisis-soft);
}
.thisis-split--blue {
  color: #fff;
  background: var(--thisis-deep);
}
.thisis-split--blue h2,
.thisis-split--blue .thisis-eyebrow {
  color: #fff;
}
.thisis-split--blue .thisis-richtext p {
  color: rgba(255,255,255,0.78);
}
.thisis-split.is-reverse .thisis-media-card {
  order: -1;
}
.thisis-media-card {
  position: relative;
  overflow: hidden;
  width: min(100%, 568px);
  aspect-ratio: 4 / 5;
  justify-self: center;
  border-radius: 16px;
  background: rgba(32,58,110,0.1);
}
.thisis-media-card img,
.thisis-media-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.thisis-play {
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  color: #fff;
  background: var(--thisis-gold);
  border-radius: 50%;
  font-size: 24px;
}
.thisis-split .thisis-button {
  margin-top: 26px;
}
.thisis-split--purity {
  min-height: 886px;
}
.thisis-split--balance {
  min-height: 870px;
}
.thisis-split--community {
  min-height: 722px;
}
.thisis-split--family {
  min-height: 834px;
}
.thisis-split--why .thisis-richtext ul {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}
.thisis-split--why .thisis-richtext li {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--thisis-deep);
  font-size: 15px;
}
.thisis-split--why .thisis-richtext li::before {
  content: "";
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  background: var(--thisis-gold);
  border-radius: 50%;
}
.thisis-compare {
  background: linear-gradient(180deg, rgba(32,58,110,0.16), #fff);
  display: grid;
  min-height: 1036px;
  align-content: center;
}
.thisis-compare-table {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) 180px 180px;
  max-width: 920px;
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid var(--thisis-line);
  border-radius: 12px;
  background: #fff;
}
.thisis-compare-table > * {
  display: grid;
  align-items: center;
  min-height: 62px;
  padding: 13px 16px;
  border-bottom: 1px solid var(--thisis-line);
}
.thisis-compare-table > *:nth-last-child(-n + 3) {
  border-bottom: 0;
}
.thisis-compare-table img {
  justify-self: center;
  max-width: 150px;
}
.thisis-compare-table strong {
  justify-content: center;
  color: var(--thisis-deep);
  text-align: center;
}
.thisis-compare-table b,
.thisis-compare-table i {
  justify-content: center;
  font-size: 32px;
  font-style: normal;
}
.thisis-compare-table b { color: var(--thisis-gold); }
.thisis-compare-table i { color: #ba3a3a; }
.thisis-review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  max-width: 1180px;
  margin: 0 auto;
}
.thisis-reviews {
  display: grid;
  min-height: 781px;
  align-content: center;
}
.thisis-review-grid article {
  padding: 22px;
  background: linear-gradient(180deg, rgba(32,58,110,0.14), #fff);
  border: 1px solid var(--thisis-line);
  border-radius: 12px;
}
.thisis-review-grid h3 {
  margin-top: 14px;
  color: var(--thisis-ink);
  font-family: Questrial, sans-serif;
  font-size: 18px;
  line-height: 1.3;
}
.thisis-review-grid p {
  margin-top: 12px;
  color: rgba(0,0,0,0.62);
}
.thisis-review-grid strong {
  display: block;
  margin-top: 18px;
}
.thisis-faq {
  max-width: 980px;
  min-height: 701px;
  margin: 0 auto;
  align-content: center;
}
.thisis-faq details {
  border-top: 1px solid var(--thisis-line);
}
.thisis-faq details:last-child {
  border-bottom: 1px solid var(--thisis-line);
}
.thisis-faq summary {
  cursor: pointer;
  padding: 24px 0;
  color: var(--thisis-deep);
  font-size: 20px;
  font-weight: 700;
}
.thisis-faq details p {
  padding-bottom: 24px;
  color: var(--thisis-muted);
}
.thisis-newsletter {
  background: linear-gradient(180deg, rgba(32,58,110,0.16), #fff);
  display: grid;
  min-height: 616px;
  align-content: center;
}
.thisis-newsletter-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  max-width: 560px;
  margin: 0 auto;
}
.thisis-newsletter-form label {
  grid-column: 1 / -1;
  color: var(--thisis-deep);
  font-weight: 700;
}
.thisis-newsletter-form input,
.thisis-newsletter-form button {
  min-height: 54px;
  border-radius: 999px;
}
.thisis-newsletter-form input {
  padding: 0 20px;
  border: 1px solid var(--thisis-line);
}
.thisis-newsletter-form button {
  padding: 0 26px;
  color: #fff;
  background: var(--thisis-deep);
  border: 0;
  font-family: "Thisis Display", Bungee, Arial, sans-serif;
  font-size: 12px;
  text-transform: uppercase;
}
.thisis-page {
  padding: 80px clamp(20px, 5vw, 72px);
}
.thisis-page__inner {
  max-width: 980px;
  margin: 0 auto;
}
.thisis-page h1 {
  margin-bottom: 28px;
  color: var(--thisis-deep);
  font-size: clamp(34px, 5vw, 64px);
}
.thisis-page__content > * + * {
  margin-top: 1.2em;
}
.thisis-keuzehulp {
  margin-top: 40px;
  padding: 36px clamp(20px, 4vw, 48px);
  background: var(--thisis-soft);
  border: 1px solid var(--thisis-line);
  border-radius: 16px;
}
.thisis-keuzehulp__progress {
  display: block;
  margin-bottom: 10px;
  color: var(--thisis-gold);
  font-family: "Thisis Display", Bungee, Arial, sans-serif;
  font-size: 11px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}
.thisis-keuzehulp__step h2,
.thisis-keuzehulp__result h2 {
  margin-bottom: 12px;
  color: var(--thisis-deep);
  font-size: clamp(22px, 3vw, 30px);
  line-height: 1.25;
}
.thisis-keuzehulp__hint {
  margin-bottom: 22px;
  color: var(--thisis-muted);
  font-size: 15px;
  line-height: 1.6;
}
.thisis-keuzehulp__options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
}
.thisis-keuzehulp__option {
  display: grid;
  gap: 4px;
  padding: 18px 20px;
  text-align: left;
  color: var(--thisis-deep);
  background: #fff;
  border: 2px solid var(--thisis-line);
  border-radius: 12px;
  cursor: pointer;
  transition: border-color .15s ease, transform .15s ease;
}
.thisis-keuzehulp__option:hover,
.thisis-keuzehulp__option:focus-visible {
  border-color: var(--thisis-gold);
  transform: translateY(-2px);
}
.thisis-keuzehulp__option strong {
  font-family: "Thisis Display", Bungee, Arial, sans-serif;
  font-size: 13px;
  line-height: 1.3;
  text-transform: uppercase;
}
.thisis-keuzehulp__option span {
  color: var(--thisis-muted);
  font-size: 14px;
}
.thisis-keuzehulp__back {
  display: inline-block;
  margin-top: 18px;
  padding: 0;
  color: var(--thisis-muted);
  background: none;
  border: 0;
  font-size: 14px;
  text-decoration: underline;
  cursor: pointer;
}
.thisis-keuzehulp__result p {
  margin-bottom: 22px;
  color: var(--thisis-muted);
  font-size: 16px;
  line-height: 1.6;
}
.thisis-keuzehulp__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  align-items: center;
}
@media (max-width: 640px) {
  .thisis-keuzehulp {
    padding: 24px 18px;
  }
  .thisis-keuzehulp__options {
    grid-template-columns: 1fr;
  }
}
.thisis-post-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.thisis-contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 38px;
}
.thisis-contact-grid article {
  padding: 24px;
  background: var(--thisis-cream);
  border-radius: 12px;
}
.thisis-contact-grid h2 {
  margin-bottom: 10px;
  color: var(--thisis-deep);
  font-size: 20px;
}
.thisis-footer {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 34px;
  min-height: 484px;
  padding: 78px clamp(20px, 5vw, 72px) 54px;
  color: #fff;
  background-color: var(--thisis-deep);
  background-image:
    linear-gradient(30deg, rgba(255,255,255,.055) 12%, transparent 12.5%, transparent 87%, rgba(255,255,255,.055) 87.5%, rgba(255,255,255,.055)),
    linear-gradient(150deg, rgba(255,255,255,.055) 12%, transparent 12.5%, transparent 87%, rgba(255,255,255,.055) 87.5%, rgba(255,255,255,.055)),
    linear-gradient(30deg, rgba(255,255,255,.055) 12%, transparent 12.5%, transparent 87%, rgba(255,255,255,.055) 87.5%, rgba(255,255,255,.055)),
    linear-gradient(150deg, rgba(255,255,255,.055) 12%, transparent 12.5%, transparent 87%, rgba(255,255,255,.055) 87.5%, rgba(255,255,255,.055));
  background-position: 0 0, 0 0, 32px 56px, 32px 56px;
  background-size: 64px 112px;
}
.thisis-footer img {
  width: 170px;
  margin-bottom: 20px;
}
.thisis-footer h3 {
  margin-bottom: 14px;
  color: var(--thisis-gold);
  font-family: Questrial, sans-serif;
  font-size: 18px;
}
.thisis-footer .thisis-menu {
  display: grid;
  gap: 8px;
}
.thisis-footer a,
.thisis-footer p,
.thisis-footer div {
  color: rgba(255,255,255,0.78);
}
@media (max-width: 980px) {
  .thisis-header {
    grid-template-columns: auto 1fr auto;
    min-height: 78px;
  }
  .thisis-menu-toggle { display: block; }
  .thisis-nav { display: none; }
  .thisis-logo { justify-self: center; }
  .thisis-header-cta { display: none; }
  .thisis-header-actions {
    min-width: 42px;
  }
  .thisis-mobile-panel .thisis-menu a {
    justify-content: space-between;
    width: 100%;
    min-height: 0;
    font-size: 14px;
  }
  .thisis-mobile-panel .thisis-menu .sub-menu {
    position: static;
    min-width: 0;
    margin-top: 10px;
    padding: 0 0 0 14px;
    border: 0;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }
  .thisis-mobile-panel .thisis-menu .sub-menu a {
    padding: 7px 0;
    font-size: 15px;
  }
  .thisis-floating-cart {
    display: grid;
  }
  .thisis-icon-bar { grid-template-columns: repeat(2, 1fr); }
  .thisis-product-grid,
  .thisis-process-grid,
  .thisis-culture,
  .thisis-split,
  .thisis-review-grid,
  .thisis-contact-grid,
  .thisis-post-grid,
  .thisis-footer {
    grid-template-columns: 1fr 1fr;
  }
  .thisis-process-image {
    order: -1;
    grid-column: 1 / -1;
    max-height: 420px;
  }
}
@media (max-width: 768px) {
  .thisis-announcement {
    justify-content: flex-start;
    font-size: 13px;
  }
  .thisis-header { min-height: 66px; padding: 12px 16px; }
  .thisis-mobile-panel { inset: 106px 0 auto; }
  .thisis-logo img { width: 128px; }
  .thisis-cart-link {
    display: none;
  }
  .tc-hero {
    height: 100svh;
    min-height: 600px;
    max-height: none;
  }
  .tc-hero__overlay {
    background: linear-gradient(180deg, rgba(10,18,40,0) 35%, rgba(10,18,40,0.62) 66%, rgba(10,18,40,0.84) 100%);
  }
  .tc-hero__content {
    justify-content: flex-end;
    max-width: 100%;
    padding: 0 6% 90px;
  }
  .tc-hero__title { font-size: clamp(22px, 7vw, 32px); }
  .tc-hero__buttons { flex-direction: column; }
  .tc-hero__btn { width: 100%; }
  .tc-hero__reviews {
    bottom: 20px;
    align-items: flex-start;
  }
  .thisis-section { padding: 56px 20px; }
  .thisis-icon-bar,
  .thisis-product-grid,
  .thisis-process-grid,
  .thisis-culture,
  .thisis-split,
  .thisis-award-logos,
  .thisis-review-grid,
  .thisis-contact-grid,
  .thisis-post-grid,
  .thisis-footer {
    grid-template-columns: 1fr;
  }
  .thisis-feature-col article { grid-template-columns: 38px 1fr; }
  .thisis-compare-table {
    grid-template-columns: 1fr 82px 92px;
    font-size: 14px;
  }
  .thisis-compare-table > * {
    min-height: 62px;
    padding: 12px;
  }
  .thisis-compare-table img { max-width: 74px; }
  .thisis-newsletter-form { grid-template-columns: 1fr; }
.thisis-newsletter-form button { width: 100%; }
}

/* Homepage reference pass: mirror the complete Shopify homepage structure. */
.home .tc-hero,
.front-page .tc-hero {
  min-height: 420px;
  max-height: 560px;
  height: 38vw;
}
.home .tc-hero__content,
.front-page .tc-hero__content {
  max-width: 44%;
  padding-bottom: 54px;
}
.home .tc-hero__title,
.front-page .tc-hero__title {
  font-size: clamp(24px, 2.3vw, 42px);
}
.home .thisis-icon-bar,
.front-page .thisis-icon-bar {
  min-height: 86px;
}
.home .thisis-icon-bar__item,
.front-page .thisis-icon-bar__item {
  min-height: 78px;
  font-size: 13px;
}
.home .thisis-section,
.front-page .thisis-section {
  padding-top: clamp(54px, 6vw, 92px);
  padding-bottom: clamp(54px, 6vw, 92px);
}
.home .thisis-products-preview,
.front-page .thisis-products-preview {
  padding-top: 52px;
}
.home .thisis-process,
.front-page .thisis-process {
  min-height: 600px;
}
.home .thisis-culture,
.front-page .thisis-culture {
  min-height: 610px;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.72fr);
  max-width: none;
}
.home .thisis-split,
.front-page .thisis-split {
  min-height: 620px;
}
.thisis-split--no-media {
  grid-template-columns: minmax(0, 760px);
  justify-content: center;
  text-align: center;
}
.thisis-split--no-media .thisis-richtext p {
  margin-right: auto;
  margin-left: auto;
}
.thisis-split--community {
  min-height: 430px;
}
.thisis-split--family .thisis-media-card {
  aspect-ratio: 2.2 / 1;
  background: transparent;
}
.thisis-split--family .thisis-media-card img {
  object-fit: contain;
  padding: 20px;
}
.home .thisis-compare,
.front-page .thisis-compare {
  min-height: 560px;
}
.home .thisis-reviews,
.front-page .thisis-reviews {
  min-height: 520px;
}
.home .thisis-faq,
.front-page .thisis-faq {
  min-height: 500px;
}
.home .thisis-newsletter,
.front-page .thisis-newsletter {
  min-height: 380px;
}
.thisis-footer__brand {
  display: grid;
  gap: 24px;
}
.thisis-footer__brand img {
  width: min(260px, 100%);
}

@media (min-width: 769px) {
  .thisis-footer,
  body > .thisis-footer {
    display: grid !important;
    grid-template-columns: minmax(220px, 1.1fr) minmax(150px, .75fr) minmax(260px, 1fr) minmax(220px, .9fr) !important;
    align-items: start;
    gap: clamp(34px, 5vw, 86px);
    min-height: 0;
    padding: 60px clamp(44px, 8vw, 120px) 56px;
  }

  .thisis-footer__brand {
    align-content: start;
    gap: 18px;
  }

  .thisis-footer__brand img,
  .thisis-footer img {
    width: 210px;
    margin-bottom: 0;
  }

  .thisis-footer h3 {
    margin-bottom: 18px;
  }

  .thisis-footer .thisis-menu {
    justify-items: start;
    gap: 12px;
  }

  .thisis-footer .thisis-menu a {
    min-height: 0;
    justify-content: flex-start;
    font-size: 13px;
    text-align: left;
  }
}

@media (max-width: 768px) {
  .home .tc-hero,
  .front-page .tc-hero {
    height: 100svh;
    min-height: 690px;
    max-height: none;
  }
  .home .tc-hero__content,
  .front-page .tc-hero__content {
    max-width: 100%;
    padding-bottom: 78px;
  }
  .thisis-split--no-media {
    text-align: left;
  }
  .home .thisis-process,
  .front-page .thisis-process,
  .home .thisis-culture,
  .front-page .thisis-culture,
  .home .thisis-split,
  .front-page .thisis-split {
    min-height: 0;
  }
  .thisis-announcement {
    justify-content: center;
    min-height: 48px;
    white-space: normal;
    text-align: center;
    line-height: 1.35;
  }
  .home .thisis-header,
  .front-page .thisis-header {
    position: sticky;
    min-height: 68px;
  }
  .home .thisis-products-preview .thisis-product-grid,
  .front-page .thisis-products-preview .thisis-product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px 16px;
  }
  .home .thisis-products-preview .thisis-section-title h2,
  .front-page .thisis-products-preview .thisis-section-title h2,
  .home .thisis-section-title h2,
  .front-page .thisis-section-title h2,
  .home .thisis-split h2,
  .front-page .thisis-split h2,
  .home .thisis-blue h2,
  .front-page .thisis-blue h2 {
    font-size: clamp(25px, 8.2vw, 34px);
    line-height: 1.12;
  }
  .home .thisis-products-preview .thisis-product-card__image img,
  .front-page .thisis-products-preview .thisis-product-card__image img {
    aspect-ratio: 1 / 1.05;
    object-fit: contain;
  }
  .home .thisis-products-preview .thisis-product-card h3,
  .front-page .thisis-products-preview .thisis-product-card h3 {
    font-size: clamp(14px, 4.5vw, 18px);
    line-height: 1.15;
    overflow-wrap: anywhere;
  }
  .home .thisis-process-grid,
  .front-page .thisis-process-grid,
  .home .thisis-culture,
  .front-page .thisis-culture,
  .home .thisis-split,
  .front-page .thisis-split {
    grid-template-columns: 1fr;
  }
  .home .thisis-process-image,
  .front-page .thisis-process-image {
    order: 0;
    max-height: 390px;
    object-fit: contain;
  }
  .home .thisis-culture,
  .front-page .thisis-culture {
    gap: 34px;
  }
  .thisis-award-logos {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px 18px;
  }
  .thisis-award-logos img {
    max-width: 100%;
    max-height: 72px;
  }
  .thisis-media-card {
    width: 100%;
    max-height: 470px;
    border-radius: 10px;
  }
  .thisis-split--family .thisis-media-card {
    max-height: 190px;
  }
  .thisis-review-grid {
    gap: 14px;
  }
  .thisis-review-grid article {
    padding: 18px;
    border-radius: 8px;
  }
  .thisis-faq summary {
    padding: 18px 0;
    font-size: 17px;
    line-height: 1.35;
  }
  .thisis-footer {
    gap: 26px;
    padding-top: 48px;
    padding-bottom: 42px;
  }
  .thisis-footer__brand img {
    width: 190px;
  }
}

/* Layout guard: checkout/payment plugins must never turn the theme shell horizontal. */
html,
body {
  display: block !important;
  width: 100% !important;
  max-width: 100% !important;
  overflow-x: hidden !important;
}
body > .thisis-announcement {
  display: flex !important;
  float: none !important;
  clear: both !important;
  width: 100% !important;
  max-width: 100vw !important;
}
body > .thisis-header {
  display: grid !important;
  float: none !important;
  clear: both !important;
  width: 100% !important;
  max-width: 100vw !important;
}
body > .site-main {
  display: block !important;
  float: none !important;
  clear: both !important;
  width: 100% !important;
  max-width: 100vw !important;
  min-width: 0 !important;
}
body > .thisis-footer {
  display: grid !important;
  float: none !important;
  clear: both !important;
  width: 100% !important;
  max-width: 100vw !important;
}

@media (max-width: 768px) {
  body {
    padding-bottom: env(safe-area-inset-bottom);
  }

  .thisis-announcement {
    min-height: 34px !important;
    padding: 6px 14px;
    font-size: 12px;
    line-height: 1.25;
  }

  .thisis-announcement__icon {
    display: none;
  }

  .thisis-header {
    min-height: 58px !important;
    padding: 8px 14px !important;
  }

  .thisis-logo img {
    width: 116px;
  }

  .thisis-menu-toggle,
  .thisis-header-actions {
    width: 38px;
    min-width: 38px;
  }

  .thisis-menu-toggle {
    height: 38px;
  }

  .thisis-floating-cart {
    right: 14px;
    bottom: max(18px, calc(env(safe-area-inset-bottom) + 14px));
    width: 46px;
    height: 46px;
  }

  body.woocommerce-cart .thisis-floating-cart,
  body.woocommerce-checkout .thisis-floating-cart,
  body.has-sidecart-open .thisis-floating-cart {
    display: none !important;
  }

  .thisis-mobile-panel {
    position: fixed;
    inset: 0;
    z-index: 100000;
    display: block;
    visibility: hidden;
    overflow-y: auto;
    padding: max(22px, env(safe-area-inset-top)) 20px max(28px, env(safe-area-inset-bottom));
    background: #fff;
    border: 0;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
  }

  .thisis-mobile-panel.is-open {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  body.has-mobile-menu {
    overflow: hidden;
  }

  .thisis-mobile-panel__close {
    display: grid;
    width: 42px;
    height: 42px;
    margin: 0 0 18px auto;
    place-items: center;
    color: #fff;
    background: var(--thisis-deep);
    border: 0;
    border-radius: 50%;
    font-size: 26px;
    line-height: 1;
  }

  .thisis-mobile-panel .thisis-menu {
    display: grid;
    gap: 0;
    justify-content: stretch;
  }

  .thisis-mobile-panel .thisis-menu > li {
    border-bottom: 1px solid var(--thisis-line);
  }

  .thisis-mobile-panel .thisis-menu a {
    justify-content: space-between;
    min-height: 52px;
    padding: 0;
    color: var(--thisis-deep);
    font-size: 18px;
    text-align: left;
  }

  .thisis-mobile-panel .thisis-menu > .current-menu-item > a,
  .thisis-mobile-panel .thisis-menu > .current_page_item > a,
  .thisis-mobile-panel .thisis-menu > .menu-item-has-children > a {
    color: var(--thisis-deep);
  }

  .thisis-mobile-panel .thisis-menu > .menu-item-has-children > a {
    font-weight: 400;
  }

  .thisis-mobile-panel .thisis-menu .sub-menu {
    display: grid;
    gap: 0;
    margin: 0 0 14px;
    padding: 0 0 0 14px;
    background: #f7f8fb;
    border-left: 3px solid var(--thisis-gold);
    border-radius: 0 8px 8px 0;
  }

  .thisis-mobile-panel .thisis-menu .sub-menu a {
    min-height: 42px;
    padding: 0 12px;
    font-size: 15px;
  }

  .thisis-section {
    padding: 42px 18px;
  }

  .thisis-footer {
    gap: 22px !important;
    min-height: 0;
    padding: 38px 22px max(36px, calc(env(safe-area-inset-bottom) + 26px)) !important;
    text-align: left;
    justify-items: start;
    align-items: start;
  }

  .thisis-footer,
  body > .thisis-footer {
    grid-template-columns: 1fr !important;
  }

  .thisis-footer__brand {
    gap: 12px;
    justify-items: start;
    text-align: left;
  }

  .thisis-footer__brand img,
  .thisis-footer img {
    width: 150px;
    margin-bottom: 4px;
  }

  .thisis-footer h3 {
    margin-bottom: 8px;
    text-align: left;
  }

  .thisis-footer .thisis-menu {
    display: grid;
    width: 100%;
    gap: 2px;
    justify-items: start;
    justify-content: start;
    text-align: left;
  }

  .thisis-footer .thisis-menu a {
    width: auto;
    min-height: 30px;
    justify-content: flex-start;
    font-family: Questrial, Arial, sans-serif;
    font-size: 15px;
    text-transform: none;
    text-align: left;
  }

  .thisis-footer .thisis-menu li {
    width: auto;
    border: 0;
  }

  .thisis-footer > div,
  .thisis-footer p,
  .thisis-footer a {
    text-align: left;
  }

  .thisis-footer .thisis-menu > li.current-menu-item > a,
  .thisis-footer .thisis-menu > li.current_page_item > a,
  .thisis-footer .thisis-menu a,
  .thisis-footer .thisis-menu a:hover {
    color: rgba(255,255,255,.78);
  }
}

/* Footer reset: keep footer navigation independent from the centered header menu. */
.thisis-footer,
body > .thisis-footer {
  display: grid !important;
  justify-items: start !important;
  align-items: start !important;
  text-align: left !important;
}

.thisis-footer > div,
.thisis-footer__brand,
.thisis-footer h3,
.thisis-footer p,
.thisis-footer a {
  justify-self: start !important;
  text-align: left !important;
}

.thisis-footer .thisis-menu {
  display: block !important;
  width: 100%;
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
  text-align: left !important;
}

.thisis-footer .thisis-menu li {
  display: block !important;
  width: 100% !important;
  margin: 0 0 12px !important;
  padding: 0 !important;
  text-align: left !important;
}

.thisis-footer .thisis-menu a {
  display: inline-block !important;
  min-height: 0 !important;
  padding: 0 !important;
  justify-content: flex-start !important;
  color: rgba(255,255,255,.78) !important;
  font-size: 13px !important;
  line-height: 1.45 !important;
  text-align: left !important;
  white-space: normal !important;
}

@media (min-width: 769px) {
  .thisis-footer,
  body > .thisis-footer {
    grid-template-columns: minmax(240px, 1.15fr) minmax(150px, .7fr) minmax(260px, 1fr) minmax(220px, .85fr) !important;
    column-gap: clamp(44px, 6vw, 96px) !important;
    row-gap: 28px !important;
    min-height: 0 !important;
    padding: 54px clamp(44px, 7vw, 112px) 48px !important;
  }
}

@media (max-width: 768px) {
  .thisis-footer,
  body > .thisis-footer {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }
}
