@font-face {
        font-family: 'Oswald';
        src: url('../fonts/Oswald-Regular.eot') format('opentype');
        font-display: swap;
}
@font-face {
        font-family: 'Oswald';
        src: url('../fonts/Oswald-Regular.ttf') format('truetype');
        font-display: swap;
}
@font-face {
        font-family: 'Oswald-Light';
        src: url('../fonts/Oswald-Light.ttf') format('truetype');
        font-display: swap;
}

:root {
  --green: #178A4F;
  --light-green: #91DBB5;
  --light-bg: #edf9f1;
  --dark: #1e1e1e;
  --text: #333;
  --radius: 12px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
body {
  font-family: "Segoe UI", Arial, -apple-system, BlinkMacSystemFont, Roboto, "Helvetica Neue", sans-serif;
  background: #EBF2F1;
  color: var(--text);
  line-height: 1.5;
}

header {
  padding: .5rem 1.5rem 1rem;
  background: #d2e4e1;
  background: linear-gradient(to bottom, rgba(255,255,255,1) 0%,rgba(210,228,225,1) 100%);
}

/* --- Hero: Bild + Buybox direkt oben --- */
.header-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.brand-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.brand-row--centered {
  justify-content: center;
}

.top-nav {
  display: flex;
  gap: .5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.top-nav a {
  display: inline-block;
  padding: .55rem .85rem;
  border-radius: 999px;
  background: rgba(23, 138, 79, .10);
  color: var(--dark);
  text-decoration: none;
  font-weight: 600;
}

.top-nav a:hover {
  background: rgba(23, 138, 79, .18);
}

.header-intro {
  padding-top: .5rem;
}

.hero-row {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  justify-content: center;
  padding-top: .5rem;
}

.hero-image {
  flex: 1 1 680px;
  min-width: 280px;
}

.hero-buybox {
  flex: 0 1 400px;
  min-width: 280px;
}

/* Buybox im Hero: kompakter + Angebote untereinander */
.buybox-top {
  padding: 1rem;
}

.hero-buybox .boxes {
  grid-template-columns: 1fr;
}

.hero-buybox .box {
  padding: 1.25rem;
}

.hero-buybox .benefits {
  grid-template-columns: 1fr;
}

.hero-cta {
  margin-top: .75rem;
}

@media (max-width: 991.98px) {
  .hero-row { 
    flex-direction: column; 
    gap: 1rem;
  }
  .hero-buybox { 
    width: 100%; 
    flex: 1 1 100%;
  }
  .hero-image {
    flex: 1 1 100%;
    width: 100%;
  }
}

/* Mobile optimizations */
@media (max-width: 767.98px) {
  .hero-image img {
    width: 100%;
    height: auto;
  }
  
  .buybox-card {
    padding: 0.85rem;
  }
  
  .offer {
    padding: 0.85rem 0.75rem;
    padding-left: 2.75rem;
    min-height: 60px;
  }
  
  .offer::before {
    left: 0.75rem;
    top: 0.9rem;
  }
  
  /* Mobile dot positioning removed - now handled in wp4.css with correct centering */
  /* .offer.is-selected::after {
    left: 1.05rem;
    top: 1.25rem;
  } */
  
  .trust-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 0 1rem;
    gap: 0.6rem;
  }
  
  .trust-item {
    padding: 0.7rem 0.75rem;
    gap: 0.5rem;
    font-size: 0.85rem;
  }
  
  .trust-ic {
    width: 28px;
    height: 28px;
    flex: 0 0 28px;
  }
  
  .announcement {
    font-size: 0.85rem;
  }
  
  .announcement__inner {
    padding: 0.5rem 0.75rem;
  }
  
  .btn {
    padding: 16px 28px;
    font-size: 1.1rem;
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .buybox-cta .btn {
    width: 100%;
    padding: 18px 24px;
  }
  
  section {
    padding: 2rem 1rem;
  }
  
  .testimonials {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  
  .testimonial {
    padding: 1.5rem;
  }
}

h6, .h6, h5, .h5, h4, .h4, h3, .h3, h2, .h2, h1, .h1 {
  font-family: "Segoe UI", Arial, -apple-system, BlinkMacSystemFont, Roboto, "Helvetica Neue", sans-serif;
  font-weight: 700;
}

h1 {
  font-size: clamp(1.8rem, 4vw, 3.5rem);
  margin-bottom: .7rem;
  color: var(--dark);
  font-weight: 700;
}
.subheadline {
  font-size: clamp(1rem, 2vw, 1.5rem);
  margin-bottom: 1.5rem;
  color: #333;
  margin-left: auto;
  margin-right: auto;
}

.btn {
  display: inline-block;
  padding: 18px 36px;
  background: var(--green);
  color: white;
  border-radius: 8px;
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: 600;
  transition: opacity .5s;
  box-shadow: rgba(0, 0, 0, 0.45) 0px 25px 20px -20px;
}
.btn:hover { 
	background: var(--light-green); 
	box-shadow: none; 
}

/* Gentle glow animation with shiny sunlike effect for submit button when CTA is clicked */
#ctaAddToCart.btn-flash {
  animation: buttonGlow 2s ease-in-out;
  position: relative;
}

#ctaAddToCart.btn-flash::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  border-radius: 8px;
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.4) 0%, rgba(145, 219, 181, 0.3) 30%, transparent 70%);
  transform: translate(-50%, -50%);
  pointer-events: none;
  animation: shineGlow 2s ease-in-out;
}

@keyframes buttonGlow {
  0% {
    box-shadow: 0 2px 8px rgba(23, 138, 79, 0.2);
  }
  50% {
    box-shadow: 0 0 25px rgba(23, 138, 79, 0.6),
                0 0 40px rgba(145, 219, 181, 0.4),
                0 0 60px rgba(23, 138, 79, 0.2),
                0 0 80px rgba(145, 219, 181, 0.1),
                0 2px 8px rgba(23, 138, 79, 0.3);
  }
  100% {
    box-shadow: 0 2px 8px rgba(23, 138, 79, 0.2);
  }
}

@keyframes shineGlow {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.8);
  }
  50% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.1);
  }
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.8);
  }
}

section {
  padding: 2.5rem 1.5rem;
  max-width: 1100px;
  margin: auto;
}
.white { background: #fff !important;  }
p { margin: 1rem 0; }

small, .small {
  font-size: 0.75em;
}
.smaller {
  font-size: 0.7em;
}
.bcr {
  font-size: 0.7em;
}

@media (min-width: 1400px) {
.container-xxl, .container-xl, .container-lg, .container-md, .container-sm, .container {
max-width: 1100px;
}
}
@media (min-width: 1200px) {
.container-xl, .container-lg, .container-md, .container-sm, .container {
max-width: 1100px;
}
}

h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 1.5rem;
  color: var(--dark);
}

@media (min-width: 1200px) {
  h4, .h4 {
    font-size: 1.25rem;
  }
}

.dh-red {
  color: #cc071d;
}

ul.check li {
	list-style: none;
	margin-bottom: .1rem;
}
ul.check li::before {
	list-style: none;
	content: '\002713';
	font-size: 2rem;
	font-weight: 600;
	color: #cc071d;
	padding-right: 5px;
}

.benefits,
.boxes {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}
.benefit,
.testimonial,
 .box {
  background: #FFF;
  padding: 1.8rem;
  border-radius: var(--radius);
  /*box-shadow: rgba(50, 50, 93, 0.25) 0px 5px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
  box-shadow: rgba(0, 0, 0, 0.25) 0px 23px 10px -20px;*/
}
.benefit h3,
.box h3 {
  margin-bottom: .5rem;
  color: var(--green);
  font-size: 1.4rem;
}

.testimonials { 
  display: grid; 
  gap: 1.5rem; 
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
 }

.testimonial img {
  margin-bottom: 1rem;
  border-radius: 90%;
  max-width: 180px;
  border: 6px solid #68A49B;
}

ul { padding-left: .2rem; }
li { margin-bottom: .6rem; }

.price-box {
  text-align: center;
  background: var(--light-bg);
  padding: 2.5rem;
  border-radius: var(--radius);
  max-width: 600px;
  margin: auto;
}
.price-box small { color: #666; }

.faq-item { margin-bottom: 1.4rem; }
.faq-item h4 { margin-bottom: .4rem; color: var(--dark); }

footer {
  padding: 2rem 1.5rem;
  font-size: 1rem;
  color: #fff;
  line-height: 2.2rem;
  background: #15423A;
}
footer a {
  text-decoration: none;
  color: #fff;
}
footer a:hover {
  text-decoration: underline;
  color: #fff;
}
footer hr { border-color: #578078; }

hr { border-color: #aaa; }

.ps-4h {
  padding-left: 2.25rem !important;
}

.brd-green { border: 4px solid #69b022; }
.brd-red { border: 4px solid #c73227; }


.beratung { 
	padding: 0 20px 10px;
	border: 5px dashed #1A9355; 
}
.msg { margin-top: 15px; font-weight: bold; }
.success { color: green; }
.error { color: red; }
	
@media (max-width: 767.98px) {
	.order1 { order: 1; padding-bottom: .5rem !important; }
	.order2 { order: 2; padding-top: .5rem !important; }
	.order3 { order: 3; padding-top: .5rem !important; }
	.order4 { order: 4; }
}
/*
ul.check {
  margin: 0;
  padding-left: 1.2rem;
}
ul.check li {
  position: relative;
  list-style-type: none;
  padding-left: 2.5rem;
  margin-bottom: 0.5rem;
}

ul.check li:before {
    content: '\1F5F8';
    display: block;
    position: absolute;
    left: 0;
    top: -12px;
	font-size: 1.75em;
	font-weight: 600;
	color: #c00;
}
*/
.praemie {
  background: #e6f9b3;
  border-radius: 12px;
}

/*  Accordion  */
.infos {
  overflow: hidden;
}
.accordion {
	width: 100%;
	margin: auto;
}
.accordion input {
	position: absolute;
	opacity: 0;
	pointer-events: none; /* Hide checkbox visually but keep it functional */
}
.accordion label {
	display: flex;
	justify-content: space-between;
	padding: 1.5rem 0 1rem;
	cursor: pointer;
}
.accordion label::after {
	content: "\276F";
	transform: rotate(90deg);
	transition: all 0.35s;
}
.accordion input:checked + label::after {
	transform: rotate(270deg);
	transition: all 0.35s;
}
.accordion .content {
	display: none; /* Hide by default - only show when checkbox is checked */
	padding: 0 1rem 1rem;
}
.accordion input:checked + label + .content {
	display: block; /* Show when checkbox is checked */
}

/* To top */
#scrollTopBtn {
	position: fixed;
	bottom: 90px;
	right: 10px;
	display: block;
	background-color: #fff;
	color: white;
	border: none;
	padding: 12px 14px;
	border-radius: 90%;
	cursor: pointer;
	font-size: 20px;
	box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.25);
}

/* Tabelle basket */

table.rechnung {
  margin: 1.5em 0;
  border-radius: 0.35em;
  width: 100%;
}
table.rechnung tr td {
  padding: 10px;
  font-size: 0.9em;
}
table.rechnung tr td button {
  border-radius: 4px;
  border: 1px solid #DDD;
  padding: 0 8px 3px;
  margin: 0 12px !important;
  background: #aaa;
}
table.rechnung .td-prod,
table.rechnung .td-menge,
table.rechnung .td-betrag { 
  padding: 25px 10px 25px 0;
}
table.rechnung .td-menge .small {
  margin: 1rem 1rem 0;  
  font-size: 0.9rem;
}
.bshadow {
  background: #eff1f2;
}

.summe {
  border-top: 3px solid #ced4da;
  border-bottom: 1px solid #ced4da;
  line-height: 40px;
}
.col-vers  {
  border-top: 1px solid #ced4da;
}
.bshadow .head {
  background: #F3F4F5 !important;
}
#pic { 
	width: auto;
	float: left;
	margin-right: 30px;
	padding: 10px 20px;
	border-radius: 4px;
	background: #ebf0f2;
	background: linear-gradient(to bottom, rgba(235,240,242,1) 0%,rgba(235,240,242,1) 20%,rgba(197,219,229,1) 70%,rgba(197,219,229,1) 100%);
}
.art-desc { 
	float: left; 
	margin-top: 20px;
}
.art-desc::after { clear: left; }

.list ul {
	padding: 1.25em 1rem;
}
.list ul li {
	line-height: 1.5em;
}

label { font-size: .85em; }
.form-control { 
	padding: 0.75rem;
	border: none; 
	background-color: #eff1f2;
	/*box-shadow: rgba(0, 0, 0, 0.7) 0px 6px 8px -9px;*/
}


/* Checkbox */
    .agb input[type=checkbox] {
      --active: #275EFE;
      --active-inner: #fff;
      --focus: 2px rgba(39, 94, 254, .3);
      --border: #BBC1E1;
      --border-hover: #275EFE;
      --background: #eff1f2;
      --disabled: #F6F8FF;
      --disabled-inner: #E1E6F9;
      -webkit-appearance: none;
      -moz-appearance: none;
      appearance: none;
      height: 21px;
      outline: none;
      display: inline-block;
      vertical-align: middle;
      position: relative;
      margin: 0 5px 0 0;
      cursor: pointer;
      border: 1px solid var(--bc, var(--border));
      background: var(--b, var(--background));
      transition: background 0.3s, border-color 0.3s, box-shadow 0.2s;
    }
    .agb input[type=checkbox]:after {
      content: "";
      display: block;
      left: 0;
      top: 0;
      position: absolute;
      transition: transform var(--d-t, 0.3s) var(--d-t-e, ease), opacity var(--d-o, 0.2s);
    }
    .agb input[type=checkbox]:checked {
      --b: var(--active);
      --bc: var(--active);
      --d-o: .3s;
      --d-t: .6s;
      --d-t-e: cubic-bezier(.2, .85, .32, 1.2);
    }
    .agb input[type=checkbox]:disabled {
      --b: var(--disabled);
      cursor: not-allowed;
      opacity: 0.9;
    }
    .agb input[type=checkbox]:disabled:checked {
      --b: var(--disabled-inner);
      --bc: var(--border);
    }
    .agb input[type=checkbox]:disabled + label {
      cursor: not-allowed;
    }
    .agb input[type=checkbox]:hover:not(:checked):not(:disabled) {
      --bc: var(--border-hover);
    }
    .agb input[type=checkbox]:focus {
      box-shadow: 0 0 0 var(--focus);
    }
    .agb input[type=checkbox]:not(.switch) {
      width: 21px;
    }
    .agb input[type=checkbox]:not(.switch):after {
      opacity: var(--o, 0);
    }
    .agb input[type=checkbox]:not(.switch):checked {
      --o: 1;
    }
    .agb input[type=checkbox] + label {
      display: inline-block;
      vertical-align: middle;
      cursor: pointer;
      margin-left: 4px;
    }

    .agb input[type=checkbox]:not(.switch) {
      border-radius: 4px;
    }
    .agb input[type=checkbox]:not(.switch):after {
      width: 5px;
      height: 9px;
      border: 2px solid var(--active-inner);
      border-top: 0;
      border-left: 0;
      left: 7px;
      top: 4px;
      transform: rotate(var(--r, 20deg));
    }
    .agb input[type=checkbox]:not(.switch):checked {
      --r: 43deg;
    }

  .agb * {
    box-sizing: inherit;
  }
  .agb *:before,
  .agb *:after {
    box-sizing: inherit;
  }
 
.line-through { text-decoration: line-through !important; }






/* =====================================================================
   ADS / CRO OPTIMIZATIONS (Landing page: index_ads_optimized.php)
   ===================================================================== */

.announcement {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #15423A;
  color: #fff;
  font-size: 0.95rem;
}
.announcement__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: .55rem 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .75rem;
  text-align: center;
}
.announcement__inner--centered {
  justify-content: center;
}
.announcement__link {
  color: #fff;
  text-decoration: none;
  background: rgba(255,255,255,0.18);
  padding: .35rem .6rem;
  border-radius: 999px;
  font-weight: 700;
  white-space: nowrap;
}
.announcement__link:hover { background: rgba(255,255,255,0.28); }

.trust-strip {
  max-width: 1100px;
  margin: .75rem auto 0;
  padding: 0 0 .25rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: .75rem;
}
.trust-item {
  display: flex;
  gap: .6rem;
  align-items: flex-start;
  padding: .85rem 1rem;
  border-radius: 12px;
  background: rgba(255,255,255,0.72);
  box-shadow: 0 8px 20px rgba(0,0,0,0.06);
}
.trust-ic {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: rgba(23, 138, 79, .10);
  color: #15423A;
  flex: 0 0 34px;
}
.muted { color: #5b6765; }
.tel { color: inherit; text-decoration: none; }
.tel:hover { text-decoration: underline; }

@media (max-width: 991.98px) {
  .trust-strip { grid-template-columns: repeat(2, minmax(0, 1fr)); padding: 0 1rem; }
}
@media (max-width: 575.98px) {
  .announcement__inner { flex-direction: column; align-items: flex-start; }
  .trust-strip { grid-template-columns: 1fr; }
}

.hero-mini-benefits {
  display: grid;
  gap: .75rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: .85rem;
}
.hero-mini-benefits .mini {
  background: rgba(255,255,255,0.72);
  border-radius: 12px;
  padding: .85rem 1rem;
  box-shadow: 0 8px 20px rgba(0,0,0,0.06);
}
@media (max-width: 575.98px) {
  .hero-mini-benefits { grid-template-columns: 1fr; }
}

.buybox-card {
  background: rgba(255,255,255,0.92);
  border-radius: 16px;
  padding: 1rem;
  box-shadow: 0 14px 40px rgba(0,0,0,0.12);
  border: 1px solid rgba(0,0,0,0.06);
}
.buybox-head {
  padding: .5rem .5rem .75rem;
  border-bottom: 1px solid rgba(0,0,0,0.07);
  margin-bottom: .85rem;
}

/* Offer selector (integriert, ohne Produktbilder) */
.offer-selector {
  display: flex;
  flex-direction: column;
  gap: .75rem;
}

.offer {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  border: 1px solid rgba(0,0,0,0.10);
  background: rgba(255,255,255,0.70);
  border-radius: 14px;
  padding: .75rem 1rem;
  text-align: left;
  cursor: pointer;
  transition: transform .08s ease, box-shadow .15s ease, border-color .15s ease, background .15s ease;
  position: relative;
  padding-left: 2.75rem;
  outline: none;
}

.offer::before {
  content: "";
  position: absolute;
  left: 1rem;
  top: 1.05rem;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  border: 2px solid rgba(23, 138, 79, .35);
  background: transparent;
}

/* Desktop dot positioning - only apply to desktop screens */
@media (min-width: 768px) {
  .offer.is-selected::after {
    content: "";
    position: absolute;
    left: 1.35rem;
    top: 1.4rem;
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: var(--green);
  }
}

.offer:focus-visible {
  box-shadow: 0 0 0 4px rgba(23, 138, 79, .18), 0 10px 22px rgba(0,0,0,0.08);
}

.offer:hover {
  box-shadow: 0 10px 22px rgba(0,0,0,0.08);
}

.offer.is-selected {
  background: #fff;
  border-color: rgba(23, 138, 79, .75);
  box-shadow: 0 16px 32px rgba(23, 138, 79, .14);
}

.offer__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: .75rem;
}

.offer__title {
  display: flex;
  flex-direction: column;
  gap: .15rem;
  font-size: 1.1rem;
}

.offer__sub {
  font-size: .95rem;
  color: #5b6765;
}

.offer__tag {
  display: inline-block;
  padding: .18rem .55rem;
  border-radius: 999px;
  background: rgba(23, 138, 79, .12);
  color: #15423A;
  font-weight: 800;
  font-size: .78rem;
  white-space: nowrap;
}

.offer__tag--alt {
  background: rgba(204, 7, 29, .10);
  color: #7a0b16;
}

.offer__priceRow {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: .75rem;
  margin-top: .55rem;
}

.offer__price {
  font-size: 1.25rem;
  font-weight: 900;
}

.offer__save {
  font-size: .8rem;
  color: #5b6765;
  text-align: right;
}

.offer__meta {
  margin-top: .35rem;
  font-size: .95rem;
  color: #15423A;
}

.buybox-cta {
  margin-top: .85rem;
}

.buybox-cta .microcopy {
  text-align: center;
  margin-top: .55rem;
}

@media (max-width: 575.98px) {
  .offer__priceRow { flex-direction: column; align-items: flex-start; }
  .offer__save { text-align: left; }
}

/* Gutschein: kompakter, mehr "integriert" */
.promo--compact {
  align-items: center;
}

.promo__chip {
  flex: 0 0 auto;
  padding: .65rem .85rem;
  border-radius: 999px;
  background: rgba(21, 66, 58, 0.10);
  color: #15423A;
  font-weight: 900;
  letter-spacing: .02em;
}

/* Health claims: sauber gebündelt */
.claims-card {
  max-width: 1100px;
  margin: 1rem auto 0;
  padding: 1rem 1.1rem;
  border-radius: 14px;
  background: rgba(255,255,255,0.72);
  box-shadow: 0 8px 20px rgba(0,0,0,0.06);
  border: 1px solid rgba(0,0,0,0.06);
}

/* Health claims divider under picture (desktop) */
.hero-claims-divider {
  margin-top: 1.25rem;
  padding: 1.25rem 1.1rem;
  border-radius: 14px;
  background: rgba(255,255,255,0.85);
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  border: 1px solid rgba(0,0,0,0.06);
}

.hero-claims-divider__title {
  margin-bottom: 0.85rem;
  font-size: 1.1rem;
  color: #15423A;
}

.hero-claims-divider__list {
  margin: 0.5rem 0 0.85rem;
  padding-left: 1.1rem;
  list-style: none;
}

.hero-claims-divider__list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #333;
}

.hero-claims-divider__list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 700;
  font-size: 1.1rem;
}

.hero-claims-divider__disclaimer {
  margin-top: 0.85rem;
  font-size: 0.8rem;
  line-height: 1.4;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(0,0,0,0.08);
}

/* Hide on mobile - show only on desktop */
@media (max-width: 991.98px) {
  .hero-claims-divider {
    display: block;
  }
  .hero-trust-badges {
    display: none; /* Hide on mobile - trust badges shown below product details instead */
  }
}

/* Trust Badges in Hero (Desktop only - under health claims) */
.hero-trust-badges {
  margin-top: 1.25rem;
}

.hero-trust-badges__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 1rem;
  background: rgba(255,255,255,0.72);
  border-radius: 14px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  border: 1px solid rgba(0,0,0,0.06);
}

.hero-trust-badge {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-trust-badge--primary {
  order: -1;
}

.hero-trust-badges__inner img {
  max-width: 100%;
  height: auto;
  display: block;
  transition: transform 0.2s ease;
}

.hero-trust-badges__inner img:hover {
  transform: scale(1.05);
}

.hero-trust-badge--primary img {
  max-width: 180px;
}

/* Desktop: Ensure hero-buybox and hero-trust-badges have the same height */
@media (min-width: 992px) {
  .hero-row {
    align-items: stretch; /* Changed from flex-start to stretch so children have same height */
  }
  
  .hero-trust-badges {
    display: flex;
    flex-direction: column;
  }
  
  .hero-trust-badges__inner {
    gap: 0.85rem;
    padding: 0.9rem;
    flex: 1; /* Make it fill available space */
  }
  
  /* Ensure hero-buybox matches the height of hero-trust-badges container */
  .hero-buybox {
    display: flex;
    flex-direction: column;
  }
  
  .hero-buybox .buybox-card {
    flex: 1; /* Make buybox-card fill available space to match trust-badges height */
    display: flex;
    flex-direction: column;
  }
  
  .hero-trust-badge {
    flex: 0 1 auto;
  }
}

.claims-list {
  margin: .6rem 0 .75rem;
  padding-left: 1.1rem;
}

.plain-list {
  margin: .75rem 0 0;
  padding-left: 1.1rem;
}

.plain-list li {
  margin-bottom: .35rem;
}

.claims-list li {
  margin-bottom: .35rem;
}

.box--featured {
  border: 3px solid rgba(23, 138, 79, .55);
}
.badge {
  display: inline-block;
  margin: .35rem 0 .6rem;
  padding: .2rem .55rem;
  border-radius: 999px;
  background: rgba(23, 138, 79, .12);
  color: #15423A;
  font-weight: 800;
  font-size: .85rem;
}

.microcopy {
  margin-top: .55rem;
  font-size: .9rem;
  color: #566261;
}

.promo {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.2rem;
  padding: 1rem;
  border-radius: 14px;
  background: #e6f9b3;
}
.promo__right img { border-radius: 12px; }

/* Fix zoom issues on mobile - prevent horizontal scrolling */
html {
  overflow-x: hidden;
  width: 100%;
}

body {
  overflow-x: hidden;
  width: 100%;
  position: relative;
}

/* Sticky CTA bar */
.sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 60;
  padding: .65rem 1rem;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 -10px 28px rgba(0,0,0,0.10);
  /* Fix positioning issues when zoomed on mobile */
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
  will-change: transform, opacity;
  /* Smooth fade in/out transitions - opacity controlled by JavaScript for scroll-based fade */
  opacity: 1;
  visibility: visible;
  transition: background-color 0.3s ease, backdrop-filter 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease, opacity 0.2s ease-out, visibility 0.3s ease;
}
.sticky-cta__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.sticky-cta__btn {
  display: inline-block;
  padding: .85rem 1rem;
  border-radius: 12px;
  background: var(--green);
  color: #fff;
  text-decoration: none;
  font-weight: 800;
  white-space: nowrap;
}
.sticky-cta__btn:hover { background: var(--light-green); }
.sticky-cta.is-hidden { 
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

/* Prevent sticky bar from covering content */
.lp-ads { padding-bottom: 84px; }

@media (min-width: 992px) {
  /* On desktop keep it but slightly smaller */
  .sticky-cta { padding: .5rem 1rem; }
  .sticky-cta__btn { padding: .7rem 1rem; }
}

/* Trust Badges Section (Mobile only - hidden on desktop where hero-trust-badges is shown) */
.trust-badges {
  max-width: 1100px;
  margin: 1.5rem auto 0;
  padding: 0 1rem;
}

@media (min-width: 992px) {
  .trust-badges {
    display: none; /* Hide on desktop - hero-trust-badges shown in hero instead */
  }
}

.trust-badges__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  padding: 1.25rem;
  background: rgba(255,255,255,0.72);
  border-radius: 14px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.06);
  border: 1px solid rgba(0,0,0,0.06);
}

.trust-badges__inner picture {
  display: flex;
  align-items: center;
  justify-content: center;
}

.trust-badge {
  display: flex;
  align-items: center;
  justify-content: center;
}

.trust-badge--primary {
  order: -1;
}

.trust-badges__inner img {
  max-width: 100%;
  height: auto;
  display: block;
  transition: transform 0.2s ease;
}

.trust-badges__inner img:hover {
  transform: scale(1.05);
}

.trust-badge--primary img {
  max-width: 200px;
}

@media (max-width: 767.98px) {
  .trust-badges__inner {
    gap: 1rem;
    padding: 1rem;
  }
  
  .trust-badges__inner picture {
    flex: 0 1 calc(50% - 0.5rem);
    max-width: calc(50% - 0.5rem);
  }
  
  .trust-badges__inner picture:first-child {
    flex: 0 1 100%;
    max-width: 100%;
  }
}

@media (max-width: 575.98px) {
  .trust-badges__inner {
    gap: 0.75rem;
    padding: 0.85rem;
  }
  
  .trust-badges__inner picture {
    flex: 0 1 calc(50% - 0.375rem);
    max-width: calc(50% - 0.375rem);
  }
  
  .trust-badges__inner picture:first-child {
    flex: 0 1 100%;
    max-width: 100%;
    margin-bottom: 0.5rem;
  }
  
  .brand-row {
    justify-content: center;
  }
  
  .header-intro {
    padding-top: 0.75rem;
  }
  
  h1 {
    font-size: 1.8rem;
  }
  
  .subheadline {
    font-size: 1rem;
  }
}
/* WP4 specific styles - extracted from inline styles for better performance */

/* Trust strip grid */
.trust-strip {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

@media (max-width: 991.98px) {
  .trust-strip { 
    grid-template-columns: repeat(2, minmax(0, 1fr)); 
    padding: 0 1rem; 
  }
}

@media (max-width: 575.98px) {
  .trust-strip { grid-template-columns: 1fr; }
}

/* Desktop: Make trust badges box fit remaining space after picture and health claims */
/* Also ensure hero-buybox and hero-trust-badges have the same height */
@media (min-width: 992px) {
  .hero-row {
    align-items: stretch; /* Changed from flex-start to stretch so children have same height */
  }
  
  .hero-image {
    display: flex;
    flex-direction: column;
  }
  
  .hero-claims-divider {
    flex-shrink: 0;
  }
  
  .hero-trust-badges {
    flex: 1;
    display: flex;
    flex-direction: column;
    margin-top: 1.25rem;
    min-height: 0;
  }
  
  .hero-trust-badges__inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 0.85rem;
    background: rgba(255,255,255,0.72);
    border-radius: 14px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    border: 1px solid rgba(0,0,0,0.06);
    min-height: 0;
    flex: 1; /* Make it fill available space */
  }
  
  /* Ensure hero-buybox matches the height of hero-trust-badges container */
  .hero-buybox {
    display: flex;
    flex-direction: column;
  }
  
  .hero-buybox .buybox-card {
    flex: 1; /* Make buybox-card fill available space to match trust-badges height */
    display: flex;
    flex-direction: column;
  }
  
  .hero-trust-badge {
    flex: 0 1 auto;
  }
  
  .hero-trust-badge--primary img {
    max-width: 140px;
    height: auto;
  }
  
  .hero-trust-badge:not(.hero-trust-badge--primary) img {
    max-width: 100px;
    height: auto;
  }
}

/* Mobile: Show trust badges below product details, hide on desktop (they're in hero) */
@media (min-width: 992px) {
  .trust-badges {
    display: none; /* Hide on desktop - hero-trust-badges shown in hero instead */
  }
}

@media (max-width: 991.98px) {
  .trust-badges {
    max-width: 1100px;
    margin: 2rem auto;
    padding: 0 1rem;
  }
}

/* Fix price alignment - use non-breaking space */
.offer__price {
  white-space: nowrap;
}

/* WP4: Style hero-claims-divider title to match benefit h3 (green heading) */
.hero-claims-divider h3.hero-claims-divider__title {
  margin-bottom: 0.5rem;
  color: var(--green);
  font-size: 1.4rem;
}

/* WP2: New health claims divider styling */
.hero-claims-divider__content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin: 0.85rem 0;
}

.hero-claims-item {
  margin-bottom: 0.75rem;
}

.hero-claims-item__title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--green);
  margin-bottom: 0.35rem;
  line-height: 1.3;
}

.hero-claims-item__text {
  font-size: 0.9rem;
  color: #333;
  margin: 0;
  line-height: 1.5;
}

@media (max-width: 575.98px) {
  .hero-claims-divider__content {
    grid-template-columns: 1fr;
    gap: 0.85rem;
  }
  
  .hero-claims-divider {
    margin-top: 1.25rem;
    padding: 1rem 0.85rem;
  }
  
  .hero-claims-divider__title {
    font-size: 1.05rem;
    margin-bottom: 0.85rem;
  }
  
  .hero-claims-item {
    margin-bottom: 0.85rem;
  }
  
  .hero-claims-item__title {
    font-size: 0.95rem;
    margin-bottom: 0.4rem;
  }
  
  .hero-claims-item__text {
    font-size: 0.85rem;
    line-height: 1.4;
  }
}

/* Hide hero-claims-divider on mobile (it's desktop only) */
@media (max-width: 991.98px) {
  .hero-claims-divider {
    display: none !important;
  }
}

/* Fix offer subtitle wrapping - prevent "4 × 3‑Monatspackungen" from breaking */
.offer__sub {
  white-space: nowrap;
  display: inline-block;
}

@media (min-width: 992px) {
  .offer__sub {
    font-size: 0.9rem;
  }
  
  /* Hide mobile claims section on desktop, show desktop claims section */
  .benefit--mobile-claims {
    display: none;
  }
  
  .benefit--desktop-claims {
    display: block;
  }
}

/* WP3: Show mobile claims section only on mobile, hide desktop sections on mobile */
@media (max-width: 991.98px) {
  /* Hide desktop claims section on mobile */
  .benefit--desktop-claims {
    display: none;
  }
  
  /* Show mobile claims section on mobile */
  .benefit--mobile-claims {
    display: block;
  }
  
  .benefit--mobile-claims .hero-claims-divider__content {
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-top: 0.5rem;
  }
  
  .benefit--mobile-claims .hero-claims-item {
    margin-bottom: 0.35rem;
  }
  
  /* Match text sizes exactly to plain-list styling - override ALL general hero-claims-item styles */
  /* Titles should be same size as bold text in plain-list (1rem), keep green color */
  .benefit--mobile-claims .hero-claims-item__title,
  .benefit.benefit--mobile-claims .hero-claims-item__title {
    font-size: 1rem !important;
    font-weight: 700 !important;
    margin-bottom: 0.35rem !important;
    line-height: 1.5 !important;
    color: var(--green) !important;
  }
  
  /* Text should be same size as plain-list items (1rem) */
  .benefit--mobile-claims .hero-claims-item__text,
  .benefit.benefit--mobile-claims .hero-claims-item__text {
    font-size: 1rem !important;
    line-height: 1.5 !important;
    margin: 0 !important;
    margin-bottom: 0.35rem !important;
    color: #333 !important;
  }
  
  /* Hide desktop hero-claims-divider on mobile */
  .hero-claims-divider {
    display: none !important;
  }
}

/* WP4: Center the green dot perfectly - DIRECT CALCULATION FROM CIRCLE */
/* 
 * DESKTOP CIRCLE SPECIFICATIONS (from changes.css .offer::before):
 * - Position: left: 1rem, top: 1.05rem
 * - Size: width: 18px, height: 18px
 * 
 * DOT SPECIFICATIONS:
 * - Size: width: 10px, height: 10px
 * 
 * CALCULATION:
 * To center a 10px dot inside an 18px circle:
 * 1. Circle's center X = circle left + (circle width / 2) = 1rem + 9px
 * 2. Circle's center Y = circle top + (circle height / 2) = 1.05rem + 9px
 * 3. Dot's top-left X = circle center X - (dot width / 2) = (1rem + 9px) - 5px = 1rem + 4px
 * 4. Dot's top-left Y = circle center Y - (dot height / 2) = (1.05rem + 9px) - 5px = 1.05rem + 4px
 * 
 * RESULT: Position dot at left: calc(1rem + 4px), top: calc(1.05rem + 4px)
 */
/* Desktop: Only apply to screens 768px and wider */
@media (min-width: 768px) {
  .offer.is-selected::after {
    /* Calculate directly: circle position + (circle size - dot size) / 2 */
    left: calc(1rem + 4px) !important;  /* 1rem + (18px - 10px) / 2 = 1rem + 4px */
    top: calc(1.05rem + 4px) !important; /* 1.05rem + (18px - 10px) / 2 = 1.05rem + 4px */
    /* No transform needed - direct positioning */
    transform: none !important;
    /* Ensure exact dimensions match calculation */
    width: 10px !important;
    height: 10px !important;
    /* Remove any margins/padding */
    margin: 0 !important;
    padding: 0 !important;
    /* Ensure box-sizing doesn't affect calculations */
    box-sizing: border-box !important;
    /* Ensure it's positioned absolutely */
    position: absolute !important;
  }
}

/* Mobile: Override changes.css mobile rules with correct calculation */
/* IMPORTANT: The changes.css rule is inside @media (max-width: 767.98px) at line 156-159 */
/* We need to override it for ALL mobile breakpoints */
/* 
 * MOBILE CIRCLE SPECIFICATIONS (from changes.css .offer::before at line 151-154):
 * - Position: left: 0.75rem, top: 0.9rem
 * - Size: width: 18px, height: 18px
 * 
 * DOT SPECIFICATIONS:
 * - Size: width: 10px, height: 10px
 * 
 * CALCULATION (same method as desktop):
 * To center a 10px dot inside an 18px circle:
 * 1. Circle's center X = circle left + (circle width / 2) = 0.75rem + 9px
 * 2. Circle's center Y = circle top + (circle height / 2) = 0.9rem + 9px
 * 3. Dot's top-left X = circle center X - (dot width / 2) = (0.75rem + 9px) - 5px = 0.75rem + 4px
 * 4. Dot's top-left Y = circle center Y - (dot height / 2) = (0.9rem + 9px) - 5px = 0.9rem + 4px
 * 
 * RESULT: Position dot at left: calc(0.75rem + 4px), top: calc(0.9rem + 4px)
 */
/* Mobile: Override ALL other rules - USE TRANSFORM METHOD FOR PERFECT CENTERING */
/* This is the most reliable method: position at circle center, then translate -50% */
/* Mobile: Calculate center properly using rem units */
/* The old rule used: left: 1.05rem, top: 1.25rem (from changes.css line 156-159) */
/* Circle is at: left: 0.75rem, top: 0.9rem */
/* Old offset: 1.05rem - 0.75rem = 0.3rem (left), 1.25rem - 0.9rem = 0.35rem (top) */
/* But for perfect centering: circle center = circle left + (circle size / 2) */
/* Circle size: 18px. If 1rem = 16px, then 18px = 1.125rem */
/* Circle center: left: 0.75rem + 0.5625rem = 1.3125rem, top: 0.9rem + 0.5625rem = 1.4625rem */
/* Dot size: 10px = 0.625rem */
/* Dot position: center - (dot size / 2) = center - 0.3125rem */
/* Result: left: 1.3125rem - 0.3125rem = 1rem, top: 1.4625rem - 0.3125rem = 1.15rem */
/* But wait - let's use the simpler approach: circle left + offset where offset = (18px - 10px) / 2 = 4px = 0.25rem */
/* Mobile: Dot centering - ANALYSIS COMPLETE
 * 
 * Circle specs: left: 0.75rem, top: 0.9rem, size: 18px (includes 2px border)
 * Dot specs: size: 10px
 * 
 * Mathematical center: 0.75rem + 9px = 12px + 9px = 21px from left
 * User found working values: calc(0.75rem + 0.785rem) = 24.56px (3.56px too far right)
 * 
 * Since user said it worked initially but now off to other side after removing conflict,
 * trying transform method which is more reliable for centering
 */
@media (max-width: 767.98px) {
  /* Maximum specificity - override ALL conflicting rules */
  .buybox-card .offer-selector button.offer.is-selected::after,
  .buybox-card .offer-selector .offer.is-selected::after,
  .buybox-card button.offer.is-selected::after,
  .buybox-card .offer.is-selected::after,
  button.offer.is-selected::after,
  .offer-selector .offer.is-selected::after,
  .offer.is-selected::after {
    /* Use transform method: position at circle center, then translate -50% */
    /* Circle center: 0.75rem + 9px = 0.75rem + 0.5625rem (if 1rem = 16px) */
    /* But to account for any rem conversion differences, use the user's found offset */
    /* User found: 0.785rem works, so center might be at: 0.75rem + 0.785rem */
    /* Position at that point, then use transform to center the dot */
    left: calc(0.75rem + 0.785rem) !important;
    top: calc(0.9rem + 0.7125rem) !important;
    /* Use transform to center the dot itself - this should fix "off to other side" issue */
    transform: translate(-50%, -50%) !important;
    /* Ensure exact dimensions */
    width: 10px !important;
    height: 10px !important;
    /* Remove any margins/padding */
    margin: 0 !important;
    padding: 0 !important;
    /* Ensure box-sizing */
    box-sizing: border-box !important;
    /* Ensure positioning */
    position: absolute !important;
    right: auto !important;
    bottom: auto !important;
    /* Override all properties */
    content: "" !important;
    border-radius: 999px !important;
    background: var(--green) !important;
  }
}

/* Also cover smaller breakpoint */
@media (max-width: 575.98px) {
  .buybox-card .offer-selector button.offer.is-selected::after,
  .buybox-card .offer-selector .offer.is-selected::after,
  .buybox-card button.offer.is-selected::after,
  .buybox-card .offer.is-selected::after,
  button.offer.is-selected::after,
  .offer-selector .offer.is-selected::after,
  .offer.is-selected::after {
    /* Same transform method */
    left: calc(0.75rem + 0.785rem) !important;
    top: calc(0.9rem + 0.7125rem) !important;
    transform: translate(-50%, -50%) !important;
    width: 10px !important;
}

/* Basket Page Styling */
/* Field validation error highlighting */
.field-error {
  border: 2px solid #dc3545 !important;
  background-color: #fff5f5 !important;
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25) !important;
}

.field-error:focus {
  border-color: #dc3545 !important;
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25) !important;
}

/* SSL Badge on basket page - Top Right */
.basket-ssl-badge-top {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-shrink: 0;
  max-width: 100px; /* Constrain container on all sizes */
}

.basket-ssl-badge-top img {
  max-width: 100px !important;
  max-height: 60px !important;
  width: auto !important;
  height: auto !important;
  object-fit: contain !important;
  display: block;
}

@media (min-width: 768px) {
  .basket-ssl-badge-top {
    max-width: 100px !important; /* Strict constraint on desktop */
    width: 100px !important;
  }
  
  .basket-ssl-badge-top img {
    max-width: 100px !important;
    max-height: 60px !important; /* Smaller on desktop - max height 60px */
    width: 100% !important;
    height: auto !important;
    object-fit: contain !important;
  }
}

@media (max-width: 767.98px) {
  .basket-ssl-badge-top {
    display: flex; /* Show on mobile in same place if space allows */
    max-width: 120px; /* Bigger on mobile if space allows */
  }
  
  .basket-ssl-badge-top img {
    max-width: 120px !important; /* Bigger on mobile if space allows */
    max-height: 60px !important; /* Max height 60px on mobile */
    width: auto !important;
    height: auto !important;
  }
}

@media (max-width: 480px) {
  .basket-ssl-badge-top {
    display: flex; /* Keep visible on mobile, just smaller */
    max-width: 90px;
  }
  
  .basket-ssl-badge-top img {
    max-width: 90px !important; /* Still bigger than before on small mobile */
    max-height: 60px !important;
    width: auto !important;
    height: auto !important;
  }
}

/* Sticky CTA for basket page - Mobile only */
.basket-sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  transition: opacity 0.3s ease, visibility 0.3s ease, background 0.3s ease;
  padding: 1rem;
  display: block; /* Show by default - JavaScript will control visibility */
}

.basket-sticky-cta.is-at-top {
  background: rgba(255, 255, 255, 0.15); /* Same transparency always */
  backdrop-filter: blur(8px);
}

.basket-sticky-cta.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.basket-sticky-cta__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.basket-sticky-cta__text {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.875rem;
  color: #333;
  font-weight: 400;
  white-space: nowrap;
}

.basket-sticky-cta__text span {
  color: #333;
}

.basket-sticky-cta__text .muted {
  color: #666;
}

.basket-sticky-cta__btn {
  display: inline-block;
  padding: 0.85rem 1.5rem;
  background: var(--green);
  color: #ffffff !important;
  font-size: 1.125rem;
  font-weight: 800;
  text-decoration: none;
  border-radius: 12px;
  text-align: center;
  transition: background 0.3s ease, transform 0.2s ease, color 0.3s ease;
  cursor: pointer;
  border: none;
  white-space: nowrap;
  flex-shrink: 0;
}

.basket-sticky-cta__btn:hover,
.basket-sticky-cta__btn:active,
.basket-sticky-cta__btn:focus,
.basket-sticky-cta__btn:visited {
  background: var(--light-green);
  color: #ffffff !important;
  transform: translateY(-2px);
}

/* Show on mobile only */
@media (max-width: 767.98px) {
  .basket-sticky-cta {
    display: block !important; /* Always show on mobile */
    padding: 0.75rem 1rem;
  }
  
  .basket-sticky-cta__inner {
    gap: 0.75rem;
  }
  
  .basket-sticky-cta__text {
    font-size: 0.75rem;
  }
  
  .basket-sticky-cta__btn {
    padding: 0.7rem 1.25rem;
    font-size: 1rem;
  }
}

/* Hide on desktop - completely remove from DOM visibility */
@media (min-width: 768px) {
  .basket-sticky-cta {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
    position: absolute !important;
    left: -9999px !important;
  }
}

/* Trust badges on basket page - Single version for all devices */
.basket-trust-badges {
  margin-top: 2rem;
  padding: 1.5rem;
  width: 100%;
  background: #f8f9fa;
  border-radius: 12px;
}

.basket-trust-badges .trust-strip {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  max-width: 100%;
}

.basket-trust-badges .trust-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  background: #ffffff;
  border-radius: 8px;
  min-width: auto;
  max-width: 100%;
}

@media (max-width: 767.98px) {
  .basket-trust-badges {
    padding: 1.5rem 1rem;
  }
  
  .basket-trust-badges .trust-strip {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
  
  .basket-trust-badges .trust-item {
    width: 100%;
  }
}

/* Beautiful Basket Page Styling */
.basket-section {
  padding: 2rem 1.5rem;
  background: #EBF2F1;
  min-height: calc(100vh - 200px);
}

.basket-layout {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .basket-layout {
    grid-template-columns: 1fr 1.2fr; /* Form is wider on desktop */
    gap: 2.5rem;
  }
}

/* Alert */
.basket-alert {
  max-width: 1200px;
  margin: 0 auto 2rem;
  padding: 1rem 1.5rem;
  background: #fff5f5;
  border: 2px solid #dc3545;
  border-radius: 12px;
  color: #721c24;
}

/* Cart Card */
.basket-cart-card {
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

.basket-card-header {
  padding: 1.5rem;
  background: linear-gradient(135deg, #d2e4e1 0%, #ffffff 100%);
  border-bottom: 2px solid #e9ecef;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.basket-card-header .basket-card-title {
  flex: 1;
  margin: 0;
  display: flex;
  align-items: center;
}

.basket-card-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--dark);
  margin: 0;
}

.basket-card-subtitle {
  font-size: 0.9rem;
  color: #666;
  margin: 0.5rem 0 0 0;
}

.basket-cart-content {
  padding: 1.5rem;
}

.basket-item {
  display: flex;
  gap: 1rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid #e9ecef;
}

.basket-item:last-child {
  border-bottom: none;
}

.basket-item-image {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  border-radius: 8px;
  overflow: hidden;
  background: #f8f9fa;
}

.basket-item-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.basket-item-details {
  flex: 1;
  min-width: 0;
}

.basket-item-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark);
  margin: 0 0 0.25rem 0;
}

.basket-item-subtitle {
  font-size: 0.875rem;
  color: #666;
  margin: 0 0 0.5rem 0;
}

.basket-item-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.basket-item-quantity {
  font-size: 0.875rem;
  color: #666;
}

.basket-item-remove {
  background: none;
  border: none;
  color: #dc3545;
  cursor: pointer;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  transition: background 0.2s;
}

.basket-item-remove:hover {
  background: #fff5f5;
}

.basket-item-price {
  flex-shrink: 0;
  text-align: right;
  font-size: 1.125rem;
  color: var(--green);
}

.basket-empty {
  text-align: center;
  padding: 3rem 1rem;
  color: #666;
}

.basket-cart-summary {
  padding: 1.5rem;
  background: #f8f9fa;
  border-top: 2px solid #e9ecef;
}

.basket-summary-row {
  display: flex;
  justify-content: space-between;
  padding: 0.75rem 0;
  font-size: 0.95rem;
}

.basket-summary-total {
  border-top: 2px solid #dee2e6;
  margin-top: 0.5rem;
  padding-top: 1rem;
  font-size: 1.125rem;
}

.basket-summary-value {
  font-weight: 600;
  color: var(--green);
}

.basket-summary-note {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid #dee2e6;
}

/* Form Card */
.basket-form-card {
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

@media (min-width: 768px) {
  .basket-form-card {
    border: 2px solid #4a9b8e; /* Slight green border on desktop */
  }
}

.basket-form-subtitle-wrapper {
  padding: 0.75rem 1.5rem;
  border-bottom: 1px solid #e9ecef;
  background: #f8f9fa;
}

.basket-form-subtitle-wrapper .basket-card-subtitle {
  margin: 0;
  font-size: 0.875rem;
  color: #666;
}

.basket-form {
  padding: 1.5rem;
}

.basket-form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .basket-form-row {
    grid-template-columns: 1fr 1fr;
  }
}

.basket-form-group {
  margin-bottom: 1rem;
}

.basket-form-group-large {
  grid-column: span 2;
}

.basket-form-group-small {
  grid-column: span 1;
}

@media (min-width: 768px) {
  .basket-form-group-large {
    grid-column: span 1;
  }
}

.basket-form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 0.5rem;
}

.basket-form-control {
  width: 100%;
  padding: 0.875rem 1rem;
  font-size: 1rem;
  border: 2px solid #e9ecef;
  border-radius: 8px;
  background: #ffffff;
  transition: all 0.2s;
  font-family: inherit;
}

.basket-form-control:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(23, 138, 79, 0.1);
}

.basket-form-control.field-error {
  border-color: #dc3545;
  background-color: #fff5f5;
  box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.1);
}

.basket-form-error {
  color: #dc3545;
  font-size: 0.875rem;
  margin-top: 0.25rem;
}

.basket-form-checkbox {
  margin: 1.5rem 0;
}

.basket-checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
}

.basket-checkbox-label input[type="checkbox"] {
  margin-top: 0.25rem;
  flex-shrink: 0;
}

.basket-checkbox-text {
  font-size: 0.875rem;
  line-height: 1.5;
  color: #333;
}

.basket-checkbox-text a {
  color: var(--green);
  text-decoration: underline;
}

.basket-form-submit {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 2px solid #e9ecef;
}

.basket-form-submit .btn-dh {
  width: 100%;
  padding: 1rem 2rem;
  font-size: 1.125rem;
  font-weight: 600;
}

/* Mobile adjustments */
@media (max-width: 767.98px) {
  .basket-section {
    padding: 1rem;
  }
  
  .basket-card-header {
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
  }
  
  .basket-card-header .basket-card-title {
    flex: 1;
    min-width: 0;
  }
  
  .basket-ssl-badge-top {
    align-self: center;
    flex-shrink: 0;
  }
  
  .basket-item {
    flex-wrap: wrap;
  }
  
  .basket-item-price {
    width: 100%;
    text-align: left;
    margin-top: 0.5rem;
  }
}
}

/* WP4: Make sticky CTA transparent at top of page */
/* IMPORTANT: This must come AFTER the base .sticky-cta rule for proper specificity */
/* Higher specificity: .sticky-cta.is-at-top overrides base .sticky-cta */
.sticky-cta.is-at-top {
  background: rgba(255, 255, 255, 0.3) !important;
  backdrop-filter: blur(5px) !important;
  box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.05) !important;
  border-top: 1px solid rgba(0, 0, 0, 0.03) !important;
  opacity: 1 !important;
  visibility: visible !important;
}

/* Ensure transparency works on mobile */
@media (max-width: 991.98px) {
.sticky-cta.is-at-top {
  background: rgba(255, 255, 255, 0.3) !important;
  backdrop-filter: blur(5px) !important;
  box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.05) !important;
  border-top: 1px solid rgba(0, 0, 0, 0.03) !important;
  }
}

/* Ensure transparency works on desktop */
@media (min-width: 992px) {
  .sticky-cta.is-at-top {
    background: rgba(255, 255, 255, 0.3) !important;
    backdrop-filter: blur(5px) !important;
    box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.05) !important;
    border-top: 1px solid rgba(0, 0, 0, 0.03) !important;
  }
}

/* Beautiful Basket Page Styling */
.basket-section {
  padding: 2rem 1.5rem;
  background: #EBF2F1;
  min-height: calc(100vh - 200px);
}

.basket-layout {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .basket-layout {
    grid-template-columns: 1fr 1.2fr; /* Form is wider on desktop */
    gap: 2.5rem;
  }
}

/* Alert */
.basket-alert {
  max-width: 1200px;
  margin: 0 auto 2rem;
  padding: 1rem 1.5rem;
  background: #fff5f5;
  border: 2px solid #dc3545;
  border-radius: 12px;
  color: #721c24;
}

/* Cart Card */
.basket-cart-card {
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

.basket-card-header {
  padding: 1.5rem;
  background: linear-gradient(135deg, #d2e4e1 0%, #ffffff 100%);
  border-bottom: 2px solid #e9ecef;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.basket-card-header .basket-card-title {
  flex: 1;
  margin: 0;
  display: flex;
  align-items: center;
}

.basket-card-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--dark);
  margin: 0;
}

.basket-card-subtitle {
  font-size: 0.9rem;
  color: #666;
  margin: 0.5rem 0 0 0;
}

.basket-cart-content {
  padding: 1.5rem;
}

.basket-item {
  display: flex;
  gap: 1rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid #e9ecef;
}

.basket-item:last-child {
  border-bottom: none;
}

.basket-item-image {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  border-radius: 8px;
  overflow: hidden;
  background: #f8f9fa;
}

.basket-item-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.basket-item-details {
  flex: 1;
  min-width: 0;
}

.basket-item-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark);
  margin: 0 0 0.25rem 0;
}

.basket-item-subtitle {
  font-size: 0.875rem;
  color: #666;
  margin: 0 0 0.5rem 0;
}

.basket-item-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.basket-item-quantity {
  font-size: 0.875rem;
  color: #666;
}

.basket-item-remove {
  background: none;
  border: none;
  color: #dc3545;
  cursor: pointer;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  transition: background 0.2s;
}

.basket-item-remove:hover {
  background: #fff5f5;
}

.basket-item-price {
  flex-shrink: 0;
  text-align: right;
  font-size: 1.125rem;
  color: var(--green);
}

.basket-empty {
  text-align: center;
  padding: 3rem 1rem;
  color: #666;
}

.basket-cart-summary {
  padding: 1.5rem;
  background: #f8f9fa;
  border-top: 2px solid #e9ecef;
}

.basket-summary-row {
  display: flex;
  justify-content: space-between;
  padding: 0.75rem 0;
  font-size: 0.95rem;
}

.basket-summary-total {
  border-top: 2px solid #dee2e6;
  margin-top: 0.5rem;
  padding-top: 1rem;
  font-size: 1.125rem;
}

.basket-summary-value {
  font-weight: 600;
  color: var(--green);
}

.basket-summary-note {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid #dee2e6;
}

/* Form Card */
.basket-form-card {
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

@media (min-width: 768px) {
  .basket-form-card {
    border: 2px solid #4a9b8e; /* Slight green border on desktop */
  }
}

.basket-form-subtitle-wrapper {
  padding: 0.75rem 1.5rem;
  border-bottom: 1px solid #e9ecef;
  background: #f8f9fa;
}

.basket-form-subtitle-wrapper .basket-card-subtitle {
  margin: 0;
  font-size: 0.875rem;
  color: #666;
}

.basket-form {
  padding: 1.5rem;
}

.basket-form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .basket-form-row {
    grid-template-columns: 1fr 1fr;
  }
}

.basket-form-group {
  margin-bottom: 1rem;
}

.basket-form-group-large {
  grid-column: span 2;
}

.basket-form-group-small {
  grid-column: span 1;
}

@media (min-width: 768px) {
  .basket-form-group-large {
    grid-column: span 1;
  }
}

.basket-form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 0.5rem;
}

.basket-form-control {
  width: 100%;
  padding: 0.875rem 1rem;
  font-size: 1rem;
  border: 2px solid #e9ecef;
  border-radius: 8px;
  background: #ffffff;
  transition: all 0.2s;
  font-family: inherit;
}

.basket-form-control:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(23, 138, 79, 0.1);
}

.basket-form-control.field-error {
  border-color: #dc3545;
  background-color: #fff5f5;
  box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.1);
}

.basket-form-error {
  color: #dc3545;
  font-size: 0.875rem;
  margin-top: 0.25rem;
}

.basket-form-checkbox {
  margin: 1.5rem 0;
}

.basket-checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
}

.basket-checkbox-label input[type="checkbox"] {
  margin-top: 0.25rem;
  flex-shrink: 0;
}

.basket-checkbox-text {
  font-size: 0.875rem;
  line-height: 1.5;
  color: #333;
}

.basket-checkbox-text a {
  color: var(--green);
  text-decoration: underline;
}

.basket-form-submit {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 2px solid #e9ecef;
}

.basket-form-submit .btn-dh {
  width: 100%;
  padding: 1rem 2rem;
  font-size: 1.125rem;
  font-weight: 600;
}

/* Mobile adjustments */
@media (max-width: 767.98px) {
  .basket-section {
    padding: 1rem;
  }
  
  .basket-card-header {
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
  }
  
  .basket-card-header .basket-card-title {
    flex: 1;
    min-width: 0;
  }
  
  .basket-ssl-badge-top {
    align-self: center;
    flex-shrink: 0;
  }
  
  .basket-item {
    flex-wrap: wrap;
  }
  
  .basket-item-price {
    width: 100%;
    text-align: left;
    margin-top: 0.5rem;
  }
}

.header-intro h1 sup {
  top: -1.5em;
  font-size: 0.3em;
}