:root {
  --green-deep: #0b2b21;
  --green-dark: #123c2f;
  --green-main: #1f7a63;
  --green-fresh: #2ea985;
  --green-soft: #e8f4ef;
  --green-light: #f4faf7;

  --cream: #fbfaf7;
  --cream-dark: #f4efe6;
  --sand: #f3dfbf;
  --gold: #f2bf67;
  --gold-light: #ffe0a1;

  --white: #ffffff;
  --black: #17221f;
  --muted: #63736e;

  --border: rgba(31, 122, 99, 0.18);
  --border-light: rgba(255, 255, 255, 0.28);

  --shadow-soft: 0 24px 70px rgba(18, 60, 47, 0.18);
  --shadow-card: 0 16px 38px rgba(18, 60, 47, 0.12);
  --shadow-strong: 0 32px 90px rgba(0, 0, 0, 0.26);

  --radius-sm: 14px;
  --radius-md: 24px;
  --radius-lg: 36px;
  --radius-xl: 48px;

  --container: 1180px;
}

/* Basis */

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--black);
  line-height: 1.6;
  background: var(--cream);
  overflow-x: hidden;
}

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

button,
input {
  font: inherit;
}

button {
  border: none;
}

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

.container {
  width: min(100% - 40px, var(--container));
  margin: 0 auto;
}

/* Header */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 50;
  background: rgba(11, 43, 33, 0.50);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.header-content {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
  color: var(--white);
}

.logo-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  color: var(--white);
  font-size: 0.88rem;
  border: 1px solid rgba(255, 255, 255, 0.28);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.14);
}

.logo-text {
  font-size: 1.25rem;
  letter-spacing: -0.03em;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.main-nav a {
  padding: 10px 17px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.84);
  font-weight: 800;
  font-size: 0.95rem;
  transition: 0.22s ease;
}

.main-nav a:hover,
.main-nav a.active {
  background: rgba(255, 255, 255, 0.20);
  color: var(--white);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.28);
  cursor: pointer;
}

/* Hero */

.hero {
  position: relative;
  min-height: 940px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--cream);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url("../images/jungle-hero.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: saturate(1.22) contrast(1.08) brightness(1.04);
  transform: scale(1.025);
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 310px;
  z-index: 2;
  background: linear-gradient(
    to bottom,
    rgba(251, 250, 247, 0),
    rgba(251, 250, 247, 0.62) 48%,
    var(--cream) 100%
  );
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(
      90deg,
      rgba(5, 30, 23, 0.88) 0%,
      rgba(5, 30, 23, 0.74) 36%,
      rgba(5, 30, 23, 0.36) 68%,
      rgba(5, 30, 23, 0.08) 100%
    ),
    radial-gradient(circle at 78% 20%, rgba(242, 191, 103, 0.24), transparent 28%),
    radial-gradient(circle at 18% 82%, rgba(46, 169, 133, 0.32), transparent 36%);
}

.hero-content {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  align-items: center;
  gap: 72px;
  padding-top: 110px;
}

.hero-text {
  max-width: 880px;
}

.eyebrow {
  margin-bottom: 18px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 880px;
  margin-bottom: 28px;
  color: var(--white);
  font-size: clamp(3.5rem, 6.4vw, 7rem);
  line-height: 0.94;
  letter-spacing: -0.08em;
  text-shadow: 0 28px 74px rgba(0, 0, 0, 0.46);
}

.hero-lead {
  max-width: 710px;
  margin-bottom: 38px;
  color: rgba(255, 255, 255, 0.91);
  font-size: 1.24rem;
  line-height: 1.72;
  text-shadow: 0 14px 34px rgba(0, 0, 0, 0.32);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 30px;
}

.btn {
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 30px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 900;
  cursor: pointer;
  transition: 0.22s ease;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #173528;
  box-shadow: 0 18px 36px rgba(242, 191, 103, 0.38);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 48px rgba(242, 191, 103, 0.48);
}

.btn-secondary,
.btn-glass {
  background: rgba(255, 255, 255, 0.18);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.34);
  backdrop-filter: blur(16px);
}

.btn-secondary:hover,
.btn-glass:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.26);
}

.hero-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-benefits span {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 17px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.92);
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(16px);
  font-size: 0.94rem;
  font-weight: 800;
}

/* Hero Verkaufskarte */

.hero-shop-card {
  align-self: end;
  margin-bottom: 82px;
  padding: 30px;
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.91);
  border: 1px solid rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-strong);
}

.shop-label {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 7px 14px;
  border-radius: 999px;
  background: var(--green-soft);
  color: var(--green-dark);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.09em;
}

.hero-shop-card h2 {
  margin-bottom: 12px;
  color: var(--green-dark);
  font-size: 1.65rem;
  line-height: 1.15;
}

.hero-shop-card p {
  margin-bottom: 24px;
  color: var(--muted);
}

.shop-card-line {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 15px 0;
  border-top: 1px solid rgba(31, 122, 99, 0.14);
}

.shop-card-line span {
  color: var(--muted);
}

.shop-card-line strong {
  color: var(--green-dark);
}

.shop-card-link {
  min-height: 50px;
  margin-top: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--green-main), var(--green-dark));
  color: var(--white);
  font-weight: 900;
  transition: 0.22s ease;
}

.shop-card-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(31, 122, 99, 0.30);
}

/* Alte Hero-Card aus vorheriger Version ausblenden, falls noch im HTML vorhanden */

.hero-card,
.health-circle,
.hero-card-content,
.mini-stats {
  display: none;
}

/* Abschnitte */

.categories,
.featured-products,
.trust-section,
.newsletter-section {
  padding: 86px 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 44px;
}

.section-heading .eyebrow,
.trust-grid .eyebrow,
.newsletter-box .eyebrow {
  color: var(--green-main);
}

.section-heading h2,
.trust-grid h2,
.newsletter-box h2 {
  margin-bottom: 16px;
  color: var(--green-dark);
  font-size: clamp(2.1rem, 3.2vw, 3.35rem);
  line-height: 1.06;
  letter-spacing: -0.05em;
}

.section-heading p,
.trust-grid p,
.newsletter-box p {
  color: var(--muted);
  font-size: 1.06rem;
}

/* Kategorien */

.categories {
  position: relative;
  background:
    radial-gradient(circle at 10% 10%, rgba(46, 169, 133, 0.08), transparent 26%),
    var(--cream);
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.category-card {
  position: relative;
  min-height: 255px;
  padding: 30px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.97), rgba(244, 250, 247, 0.94));
  box-shadow: var(--shadow-card);
  transition: 0.24s ease;
  overflow: hidden;
}

.category-card::after {
  content: "";
  position: absolute;
  width: 150px;
  height: 150px;
  right: -60px;
  bottom: -70px;
  border-radius: 50%;
  background: rgba(31, 122, 99, 0.08);
}

.category-card:hover {
  transform: translateY(-8px);
  border-color: rgba(31, 122, 99, 0.36);
  box-shadow: 0 22px 50px rgba(18, 60, 47, 0.14);
}

.category-icon {
  width: 60px;
  height: 60px;
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  border-radius: 20px;
  background: var(--green-soft);
  font-size: 1.75rem;
}

.category-card h3 {
  margin-bottom: 10px;
  color: var(--green-dark);
  font-size: 1.22rem;
}

.category-card p {
  color: var(--muted);
  font-size: 0.98rem;
}

/* Produkte */

.featured-products {
  background:
    radial-gradient(circle at 90% 15%, rgba(242, 191, 103, 0.13), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(232, 244, 239, 0.66));
}

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

.product-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  transition: 0.24s ease;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 26px 56px rgba(18, 60, 47, 0.16);
}

.product-image {
  min-height: 235px;
  background-size: cover;
  background-position: center;
}

.product-image-one {
  background:
    linear-gradient(135deg, rgba(31, 122, 99, 0.70), rgba(31, 122, 99, 0.08)),
    url("../images/jungle-hero.png");
}

.product-image-two {
  background:
    linear-gradient(135deg, rgba(18, 60, 47, 0.76), rgba(18, 60, 47, 0.08)),
    url("../images/jungle-hero.png");
}

.product-image-three {
  background:
    linear-gradient(135deg, rgba(242, 191, 103, 0.72), rgba(242, 191, 103, 0.08)),
    url("../images/jungle-hero.png");
}

.product-content {
  padding: 28px;
}

.product-tag {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--green-soft);
  color: var(--green-dark);
  font-size: 0.78rem;
  font-weight: 900;
}

.product-content h3 {
  margin-bottom: 10px;
  color: var(--green-dark);
  font-size: 1.32rem;
}

.product-content p {
  margin-bottom: 22px;
  color: var(--muted);
}

.product-link {
  display: inline-flex;
  align-items: center;
  color: var(--green-dark);
  font-weight: 900;
}

.product-link::after {
  content: "â†’";
  margin-left: 8px;
  transition: 0.2s ease;
}

.product-link:hover::after {
  transform: translateX(4px);
}

/* Vertrauen */

.trust-section {
  background:
    radial-gradient(circle at 10% 20%, rgba(242, 191, 103, 0.14), transparent 28%),
    linear-gradient(135deg, rgba(232, 244, 239, 0.96), rgba(246, 231, 207, 0.60));
}

.trust-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 70px;
}

.trust-list {
  display: grid;
  gap: 18px;
}

.trust-item {
  padding: 26px;
  border: 1px solid rgba(31, 122, 99, 0.14);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow-card);
}

.trust-item strong {
  display: block;
  margin-bottom: 6px;
  color: var(--green-dark);
  font-size: 1.1rem;
}

.trust-item span {
  color: var(--muted);
}

/* Newsletter */

.newsletter-box {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  align-items: center;
  gap: 50px;
  padding: 52px;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, rgba(18, 60, 47, 0.98), rgba(31, 122, 99, 0.94));
  color: var(--white);
  box-shadow: var(--shadow-soft);
}

.newsletter-box h2 {
  color: var(--white);
}

.newsletter-box .eyebrow {
  color: var(--gold);
}

.newsletter-box p {
  color: rgba(255, 255, 255, 0.75);
}

.newsletter-form {
  display: flex;
  gap: 12px;
  padding: 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
}

.newsletter-form input {
  flex: 1;
  min-width: 0;
  min-height: 52px;
  padding: 0 18px;
  border: none;
  border-radius: 999px;
  outline: none;
  background: var(--white);
  color: var(--black);
}

/* Footer */

.site-footer {
  padding: 64px 0 24px;
  background: var(--green-dark);
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr;
  gap: 44px;
  padding-bottom: 42px;
}

.footer-logo {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--white);
  font-size: 1.4rem;
  font-weight: 900;
}

.site-footer p,
.site-footer a {
  color: rgba(255, 255, 255, 0.72);
}

.site-footer h3 {
  margin-bottom: 14px;
  color: var(--white);
  font-size: 1rem;
}

.site-footer a {
  display: block;
  margin-bottom: 8px;
  transition: 0.2s ease;
}

.site-footer a:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 0.9rem;
}

/* Formular-Fallback */

.affiliate-note {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
}

/* Responsive */

@media (max-width: 1020px) {
  .hero {
    min-height: auto;
    padding: 170px 0 120px;
  }

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

  .hero-shop-card {
    max-width: 540px;
    margin-bottom: 0;
  }

  .trust-grid,
  .newsletter-box {
    grid-template-columns: 1fr;
  }

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

  .product-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(100% - 28px, var(--container));
  }

  .header-content {
    min-height: 72px;
  }

  .logo-icon {
    width: 42px;
    height: 42px;
  }

  .logo-text {
    font-size: 1.12rem;
  }

  .main-nav {
    position: absolute;
    top: 72px;
    left: 14px;
    right: 14px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 14px;
    border-radius: 22px;
    background: rgba(11, 43, 33, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.22);
    box-shadow: var(--shadow-card);
  }

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

  .main-nav a {
    border-radius: 14px;
  }

  .nav-toggle {
    display: grid;
    place-items: center;
  }

  .hero {
    padding: 140px 0 95px;
    background-position: center;
  }

  .hero::after {
    height: 230px;
  }

  .hero h1 {
    font-size: 3.05rem;
    letter-spacing: -0.065em;
  }

  .hero-lead {
    font-size: 1.06rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }

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

  .hero-shop-card {
    padding: 24px;
    border-radius: 28px;
  }

  .categories,
  .featured-products,
  .trust-section,
  .newsletter-section {
    padding: 62px 0;
  }

  .category-grid {
    grid-template-columns: 1fr;
  }

  .newsletter-box {
    padding: 30px;
    border-radius: 28px;
  }

  .newsletter-form {
    flex-direction: column;
    border-radius: 22px;
  }

  .newsletter-form input {
    min-height: 50px;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

@media (max-width: 430px) {
  .hero h1 {
    font-size: 2.65rem;
  }

  .hero-shop-card h2 {
    font-size: 1.38rem;
  }

  .section-heading h2,
  .trust-grid h2,
  .newsletter-box h2 {
    font-size: 2rem;
  }
}
/* Unterseiten Hero */

.page-hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  padding: 150px 0 90px;
  overflow: hidden;
  background: var(--green-dark);
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(
      90deg,
      rgba(5, 30, 23, 0.86),
      rgba(5, 30, 23, 0.52),
      rgba(5, 30, 23, 0.20)
    ),
    url("../images/jungle-hero.png");
  background-size: cover;
  background-position: center;
  filter: saturate(1.18) contrast(1.06);
}

.page-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 180px;
  background: linear-gradient(
    to bottom,
    rgba(251, 250, 247, 0),
    var(--cream)
  );
}

.page-hero-content {
  position: relative;
  z-index: 2;
  max-width: 850px;
}

.page-hero h1 {
  margin-bottom: 22px;
  color: var(--white);
  font-size: clamp(2.8rem, 5vw, 5.4rem);
  line-height: 0.98;
  letter-spacing: -0.07em;
  text-shadow: 0 24px 70px rgba(0, 0, 0, 0.38);
}

.page-hero p {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.18rem;
}

/* Produkte-Seite */

.products-section {
  padding: 86px 0;
  background: var(--cream);
}

.products-toolbar {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 42px;
}

.products-toolbar h2 {
  color: var(--green-dark);
  font-size: clamp(2rem, 3vw, 3.2rem);
  line-height: 1.06;
  letter-spacing: -0.05em;
}

.filter-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.filter-btn {
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid var(--border);
  color: var(--green-dark);
  font-weight: 800;
  cursor: pointer;
  transition: 0.2s ease;
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--green-dark);
  color: var(--white);
  border-color: var(--green-dark);
}

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

.shop-product-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  transition: 0.24s ease;
}

.shop-product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 26px 56px rgba(18, 60, 47, 0.16);
}

.shop-product-card.hide {
  display: none;
}

.shop-product-image {
  min-height: 245px;
  background-size: cover;
  background-position: center;
}

.image-energy {
  background:
    linear-gradient(135deg, rgba(31, 122, 99, 0.68), rgba(31, 122, 99, 0.10)),
    url("../images/jungle-hero.png");
}

.image-sleep {
  background:
    linear-gradient(135deg, rgba(14, 47, 37, 0.72), rgba(14, 47, 37, 0.10)),
    url("../images/jungle-hero.png");
}

.image-balance {
  background:
    linear-gradient(135deg, rgba(242, 191, 103, 0.72), rgba(31, 122, 99, 0.12)),
    url("../images/jungle-hero.png");
}

.image-wellbeing {
  background:
    linear-gradient(135deg, rgba(46, 169, 133, 0.70), rgba(242, 191, 103, 0.14)),
    url("../images/jungle-hero.png");
}

.image-focus {
  background:
    linear-gradient(135deg, rgba(11, 43, 33, 0.68), rgba(242, 191, 103, 0.14)),
    url("../images/jungle-hero.png");
}

.image-nature {
  background:
    linear-gradient(135deg, rgba(31, 122, 99, 0.64), rgba(255, 255, 255, 0.10)),
    url("../images/jungle-hero.png");
}

.shop-product-content {
  padding: 28px;
}

.shop-product-content h3 {
  margin-bottom: 10px;
  color: var(--green-dark);
  font-size: 1.34rem;
  line-height: 1.2;
}

.shop-product-content p {
  margin-bottom: 22px;
  color: var(--muted);
}

.product-meta {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 13px 0;
  border-top: 1px solid rgba(31, 122, 99, 0.12);
}

.product-meta span {
  color: var(--muted);
}

.product-meta strong {
  color: var(--green-dark);
}

.product-cta {
  min-height: 50px;
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--green-main), var(--green-dark));
  color: var(--white);
  font-weight: 900;
  transition: 0.22s ease;
}

.product-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(31, 122, 99, 0.28);
}

.affiliate-box {
  margin-top: 54px;
  padding: 34px;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, rgba(232, 244, 239, 0.96), rgba(246, 231, 207, 0.72));
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
}

.affiliate-box h2 {
  margin-bottom: 10px;
  color: var(--green-dark);
  font-size: 1.6rem;
}

.affiliate-box p {
  max-width: 850px;
  color: var(--muted);
}

/* Responsive Produkte-Seite */

@media (max-width: 1020px) {
  .products-toolbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .filter-buttons {
    justify-content: flex-start;
  }

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

@media (max-width: 760px) {
  .page-hero {
    min-height: auto;
    padding: 140px 0 82px;
  }

  .page-hero h1 {
    font-size: 3rem;
  }

  .page-hero p {
    font-size: 1.05rem;
  }

  .shop-grid {
    grid-template-columns: 1fr;
  }

  .affiliate-box {
    padding: 26px;
  }
}
/* Wissen / Blog */

.blog-section {
  padding: 86px 0;
  background:
    radial-gradient(circle at 88% 8%, rgba(242, 191, 103, 0.13), transparent 25%),
    var(--cream);
}

.blog-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr;
  gap: 26px;
}

.blog-card {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  transition: 0.24s ease;
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 26px 56px rgba(18, 60, 47, 0.16);
}

.blog-featured {
  grid-row: span 1;
}

.blog-image {
  min-height: 245px;
  background-size: cover;
  background-position: center;
}

.blog-image-energy {
  background:
    linear-gradient(135deg, rgba(31, 122, 99, 0.62), rgba(31, 122, 99, 0.08)),
    url("../images/jungle-hero.png");
}

.blog-image-sleep {
  background:
    linear-gradient(135deg, rgba(11, 43, 33, 0.72), rgba(11, 43, 33, 0.08)),
    url("../images/jungle-hero.png");
}

.blog-image-balance {
  background:
    linear-gradient(135deg, rgba(242, 191, 103, 0.72), rgba(31, 122, 99, 0.10)),
    url("../images/jungle-hero.png");
}

.blog-content {
  padding: 28px;
}

.blog-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 16px;
}

.blog-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 11px;
  border-radius: 999px;
  background: var(--green-soft);
  color: var(--green-dark);
  font-size: 0.76rem;
  font-weight: 900;
}

.blog-content h3 {
  margin-bottom: 12px;
  color: var(--green-dark);
  font-size: 1.45rem;
  line-height: 1.18;
}

.blog-content p {
  margin-bottom: 22px;
  color: var(--muted);
}

.rating-row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 15px 0;
  margin-bottom: 18px;
  border-top: 1px solid rgba(31, 122, 99, 0.12);
  border-bottom: 1px solid rgba(31, 122, 99, 0.12);
}

.rating-row span {
  color: var(--muted);
}

.rating-row strong {
  color: var(--green-dark);
}

.blog-link {
  display: inline-flex;
  align-items: center;
  color: var(--green-dark);
  font-weight: 900;
}

.blog-link::after {
  content: "â†’";
  margin-left: 8px;
  transition: 0.2s ease;
}

.blog-link:hover::after {
  transform: translateX(4px);
}

/* Bewertungsmethode */

.review-method-section {
  padding: 86px 0;
  background:
    radial-gradient(circle at 12% 20%, rgba(242, 191, 103, 0.13), transparent 27%),
    linear-gradient(135deg, rgba(232, 244, 239, 0.96), rgba(246, 231, 207, 0.62));
}

.review-method-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 70px;
}

.review-method-grid h2 {
  margin-bottom: 16px;
  color: var(--green-dark);
  font-size: clamp(2.1rem, 3.2vw, 3.35rem);
  line-height: 1.06;
  letter-spacing: -0.05em;
}

.review-method-grid p {
  color: var(--muted);
  font-size: 1.06rem;
}

.method-list {
  display: grid;
  gap: 18px;
}

.method-item {
  padding: 26px;
  border: 1px solid rgba(31, 122, 99, 0.14);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow-card);
}

.method-item strong {
  display: block;
  margin-bottom: 6px;
  color: var(--green-dark);
  font-size: 1.1rem;
}

.method-item span {
  color: var(--muted);
}

/* Artikel */

.article-section {
  padding: 86px 0;
  background: var(--cream);
}

.article-layout {
  display: grid;
  gap: 34px;
}

.article-card {
  max-width: 920px;
  padding: 42px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.97);
  box-shadow: var(--shadow-card);
}

.article-category {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 7px 14px;
  border-radius: 999px;
  background: var(--green-soft);
  color: var(--green-dark);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.09em;
}

.article-card h2 {
  margin-bottom: 20px;
  color: var(--green-dark);
  font-size: clamp(2rem, 3vw, 3.2rem);
  line-height: 1.08;
  letter-spacing: -0.05em;
}

.article-card h3 {
  margin: 28px 0 10px;
  color: var(--green-dark);
  font-size: 1.32rem;
}

.article-card p {
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 1.04rem;
}

.article-verdict {
  margin: 30px 0;
  padding: 24px;
  border-radius: var(--radius-md);
  background:
    linear-gradient(135deg, rgba(232, 244, 239, 0.96), rgba(246, 231, 207, 0.70));
  border: 1px solid rgba(31, 122, 99, 0.14);
}

.article-verdict strong {
  display: block;
  margin-bottom: 8px;
  color: var(--green-dark);
  font-size: 1.1rem;
}

.article-verdict p {
  margin-bottom: 0;
}

/* Responsive Wissen */

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

  .review-method-grid {
    grid-template-columns: 1fr;
  }

  .article-card {
    max-width: 100%;
  }
}

@media (max-width: 760px) {
  .blog-section,
  .review-method-section,
  .article-section {
    padding: 62px 0;
  }

  .article-card {
    padding: 28px;
    border-radius: 28px;
  }

  .blog-content {
    padding: 24px;
  }
}
/* Ãœber uns */

.about-intro-section {
  padding: 86px 0;
  background: var(--cream);
}

.about-intro-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 70px;
  align-items: start;
}

.about-intro-grid h2 {
  color: var(--green-dark);
  font-size: clamp(2.1rem, 3.2vw, 3.35rem);
  line-height: 1.06;
  letter-spacing: -0.05em;
}

.about-intro-grid p {
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 1.07rem;
}

.about-values-section {
  padding: 86px 0;
  background:
    radial-gradient(circle at 90% 12%, rgba(242, 191, 103, 0.13), transparent 25%),
    linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(232, 244, 239, 0.66));
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.value-card {
  min-height: 260px;
  padding: 30px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow-card);
  transition: 0.24s ease;
}

.value-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 26px 56px rgba(18, 60, 47, 0.16);
}

.value-icon {
  width: 60px;
  height: 60px;
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  border-radius: 20px;
  background: var(--green-soft);
  font-size: 1.75rem;
}

.value-card h3 {
  margin-bottom: 10px;
  color: var(--green-dark);
  font-size: 1.22rem;
}

.value-card p {
  color: var(--muted);
  font-size: 0.98rem;
}

.about-process-section {
  padding: 86px 0;
  background:
    radial-gradient(circle at 12% 20%, rgba(242, 191, 103, 0.13), transparent 27%),
    linear-gradient(135deg, rgba(232, 244, 239, 0.96), rgba(246, 231, 207, 0.62));
}

.process-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 70px;
}

.process-grid h2 {
  margin-bottom: 16px;
  color: var(--green-dark);
  font-size: clamp(2.1rem, 3.2vw, 3.35rem);
  line-height: 1.06;
  letter-spacing: -0.05em;
}

.process-grid p {
  color: var(--muted);
  font-size: 1.06rem;
}

.process-list {
  display: grid;
  gap: 18px;
}

.process-item {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 18px;
  padding: 24px;
  border: 1px solid rgba(31, 122, 99, 0.14);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.90);
  box-shadow: var(--shadow-card);
}

.process-item > span {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green-main), var(--green-dark));
  color: var(--white);
  font-weight: 900;
}

.process-item strong {
  display: block;
  margin-bottom: 6px;
  color: var(--green-dark);
  font-size: 1.08rem;
}

.process-item p {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
}

.affiliate-info-section {
  padding: 86px 0;
  background: var(--cream);
}

.affiliate-info-box {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 42px;
  padding: 44px;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, rgba(18, 60, 47, 0.98), rgba(31, 122, 99, 0.94));
  color: var(--white);
  box-shadow: var(--shadow-soft);
}

.affiliate-info-box h2 {
  margin-bottom: 14px;
  color: var(--white);
  font-size: clamp(2rem, 3vw, 3.2rem);
  line-height: 1.08;
  letter-spacing: -0.05em;
}

.affiliate-info-box .eyebrow {
  color: var(--gold);
}

.affiliate-info-box p {
  max-width: 850px;
  margin-bottom: 14px;
  color: rgba(255, 255, 255, 0.76);
}

.affiliate-info-box p:last-child {
  margin-bottom: 0;
}

/* Responsive Ãœber uns */

@media (max-width: 1020px) {
  .about-intro-grid,
  .process-grid,
  .affiliate-info-box {
    grid-template-columns: 1fr;
  }

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

  .affiliate-info-box .btn {
    justify-self: start;
  }
}

@media (max-width: 760px) {
  .about-intro-section,
  .about-values-section,
  .about-process-section,
  .affiliate-info-section {
    padding: 62px 0;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }

  .affiliate-info-box {
    padding: 30px;
    border-radius: 28px;
  }

  .process-item {
    grid-template-columns: 1fr;
  }
}
/* Dynamische Testprodukte */

.products-intro {
  max-width: 700px;
  margin-top: 10px;
  color: var(--muted);
}

.product-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 14px;
}

.product-rating {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 11px;
  border-radius: 999px;
  background: rgba(242, 191, 103, 0.22);
  color: var(--green-dark);
  font-size: 0.82rem;
  font-weight: 900;
}

.product-badge {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 13px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--green-dark);
  font-size: 0.76rem;
  font-weight: 900;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.14);
}

.shop-product-image {
  position: relative;
}

.product-price-row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 0 0;
  margin-top: 4px;
  border-top: 1px solid rgba(31, 122, 99, 0.12);
}

.product-price-row span {
  color: var(--muted);
}

.product-price-row strong {
  color: var(--green-dark);
  font-size: 1.18rem;
}

/* ZusÃ¤tzliche Demo-Bilder */

.image-beauty {
  background:
    linear-gradient(135deg, rgba(242, 191, 103, 0.70), rgba(31, 122, 99, 0.10)),
    url("../images/jungle-hero.png");
}

.image-digestion {
  background:
    linear-gradient(135deg, rgba(31, 122, 99, 0.72), rgba(242, 191, 103, 0.12)),
    url("../images/jungle-hero.png");
}

.image-serum {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.20), rgba(31, 122, 99, 0.72)),
    url("../images/jungle-hero.png");
}

.image-greens {
  background:
    linear-gradient(135deg, rgba(46, 169, 133, 0.76), rgba(11, 43, 33, 0.12)),
    url("../images/jungle-hero.png");
}

.image-relax {
  background:
    linear-gradient(135deg, rgba(11, 43, 33, 0.68), rgba(242, 191, 103, 0.16)),
    url("../images/jungle-hero.png");
}
.products-error {
  grid-column: 1 / -1;
  padding: 34px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow-card);
}

.products-error h3 {
  margin-bottom: 10px;
  color: var(--green-dark);
  font-size: 1.4rem;
}

.products-error p {
  color: var(--muted);
}
/* Optimierte ProduktÃ¼bersicht */

.compact-product-card {
  min-height: auto;
}

.compact-product-content {
  padding: 26px;
}

.compact-product-content h3 {
  margin: 12px 0 10px;
}

.product-teaser {
  min-height: 76px;
  margin-bottom: 22px;
  color: var(--muted);
}

.compact-product-card .product-cta {
  margin-top: 0;
}

.compact-product-card .product-meta,
.compact-product-card .product-price-row,
.compact-product-card .product-rating,
.compact-product-card .product-topline {
  display: none;
}

/* Produktdetailseite */

.product-detail-section {
  padding: 86px 0;
  background: var(--cream);
}

.product-detail-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 36px;
  align-items: stretch;
  margin-bottom: 46px;
}

.product-detail-image {
  position: relative;
  min-height: 620px;
  border-radius: var(--radius-lg);
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow-card);
  overflow: hidden;
}

.product-detail-card {
  padding: 42px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.97);
  box-shadow: var(--shadow-card);
}

.product-detail-card h2 {
  margin: 16px 0 16px;
  color: var(--green-dark);
  font-size: clamp(2.2rem, 3.6vw, 4rem);
  line-height: 1.02;
  letter-spacing: -0.06em;
}

.product-detail-lead {
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 1.08rem;
}

.product-detail-price {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
  padding: 26px;
  border-radius: var(--radius-md);
  background:
    linear-gradient(135deg, rgba(232, 244, 239, 0.96), rgba(246, 231, 207, 0.70));
  border: 1px solid rgba(31, 122, 99, 0.14);
}

.product-detail-price span {
  color: var(--muted);
  font-weight: 800;
}

.product-detail-price strong {
  color: var(--green-dark);
  font-size: 2rem;
  line-height: 1;
}

.detail-meta-list {
  margin-bottom: 28px;
}

.product-detail-actions {
  display: grid;
  gap: 14px;
}

.detail-secondary-link {
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid var(--border);
  color: var(--green-dark);
  font-weight: 900;
  transition: 0.22s ease;
}

.detail-secondary-link:hover {
  background: var(--green-soft);
}

.product-detail-text {
  max-width: 920px;
  padding: 42px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.97);
  box-shadow: var(--shadow-card);
}

.product-detail-text .eyebrow {
  color: var(--green-main);
}

.product-detail-text h2 {
  margin-bottom: 16px;
  color: var(--green-dark);
  font-size: clamp(2rem, 3vw, 3.2rem);
  line-height: 1.08;
  letter-spacing: -0.05em;
}

.product-detail-text p {
  color: var(--muted);
  font-size: 1.05rem;
}

/* Responsive Produktdetailseite */

@media (max-width: 1020px) {
  .product-detail-grid {
    grid-template-columns: 1fr;
  }

  .product-detail-image {
    min-height: 420px;
  }
}

@media (max-width: 760px) {
  .product-detail-section {
    padding: 62px 0;
  }

  .product-detail-card,
  .product-detail-text {
    padding: 28px;
    border-radius: 28px;
  }

  .product-detail-image {
    min-height: 340px;
    border-radius: 28px;
  }

  .product-detail-price {
    align-items: flex-start;
    flex-direction: column;
  }
}
/* Neue Wissen-Seite / Erfahrungs-Funnel */

.experience-intro-section {
  padding: 86px 0;
  background: var(--cream);
}

.experience-intro-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 70px;
  align-items: start;
}

.experience-intro-grid h2 {
  color: var(--green-dark);
  font-size: clamp(2.1rem, 3.2vw, 3.35rem);
  line-height: 1.06;
  letter-spacing: -0.05em;
}

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

.flow-step {
  padding: 26px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow-card);
}

.flow-step span {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green-main), var(--green-dark));
  color: var(--white);
  font-weight: 900;
}

.flow-step strong {
  display: block;
  margin-bottom: 8px;
  color: var(--green-dark);
  font-size: 1.08rem;
}

.flow-step p {
  color: var(--muted);
  font-size: 0.96rem;
}

.experience-section {
  padding: 86px 0;
  background:
    radial-gradient(circle at 88% 8%, rgba(242, 191, 103, 0.13), transparent 25%),
    linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(232, 244, 239, 0.62));
}

.experience-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr;
  gap: 26px;
}

.experience-card {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  transition: 0.24s ease;
}

.experience-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 26px 56px rgba(18, 60, 47, 0.16);
}

.experience-card-featured {
  grid-row: span 1;
}

.experience-image {
  min-height: 245px;
  background-size: cover;
  background-position: center;
}

.experience-image-energy {
  background:
    linear-gradient(135deg, rgba(31, 122, 99, 0.62), rgba(31, 122, 99, 0.08)),
    url("../images/jungle-hero.png");
}

.experience-image-sleep {
  background:
    linear-gradient(135deg, rgba(11, 43, 33, 0.72), rgba(11, 43, 33, 0.08)),
    url("../images/jungle-hero.png");
}

.experience-image-balance {
  background:
    linear-gradient(135deg, rgba(242, 191, 103, 0.72), rgba(31, 122, 99, 0.10)),
    url("../images/jungle-hero.png");
}

.experience-image-beauty {
  background:
    linear-gradient(135deg, rgba(242, 191, 103, 0.70), rgba(31, 122, 99, 0.12)),
    url("../images/jungle-hero.png");
}

.experience-content {
  padding: 28px;
}

.experience-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 16px;
}

.experience-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 11px;
  border-radius: 999px;
  background: var(--green-soft);
  color: var(--green-dark);
  font-size: 0.76rem;
  font-weight: 900;
}

.experience-content h3 {
  margin-bottom: 12px;
  color: var(--green-dark);
  font-size: 1.42rem;
  line-height: 1.18;
}

.experience-content p {
  margin-bottom: 22px;
  color: var(--muted);
}

.experience-highlight {
  display: grid;
  gap: 4px;
  margin-bottom: 20px;
  padding: 16px;
  border-radius: var(--radius-sm);
  background:
    linear-gradient(135deg, rgba(232, 244, 239, 0.96), rgba(246, 231, 207, 0.62));
  border: 1px solid rgba(31, 122, 99, 0.12);
}

.experience-highlight strong {
  color: var(--green-dark);
  font-size: 0.92rem;
}

.experience-highlight span {
  color: var(--muted);
}

.article-topline {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.article-date {
  display: inline-flex;
  align-items: center;
  min-height: 31px;
  padding: 0 13px;
  border-radius: 999px;
  background: rgba(242, 191, 103, 0.20);
  color: var(--green-dark);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.article-lead {
  font-size: 1.1rem;
}

.article-insight-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin: 30px 0;
}

.article-insight-grid > div {
  padding: 24px;
  border-radius: var(--radius-md);
  background:
    linear-gradient(135deg, rgba(232, 244, 239, 0.96), rgba(246, 231, 207, 0.62));
  border: 1px solid rgba(31, 122, 99, 0.12);
}

.article-insight-grid strong {
  display: block;
  margin-bottom: 8px;
  color: var(--green-dark);
  font-size: 1.05rem;
}

.article-insight-grid p {
  margin-bottom: 0;
}

.article-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.article-actions .detail-secondary-link {
  padding: 0 24px;
}

.experience-cta-section {
  padding: 86px 0;
  background: var(--cream);
}

.experience-cta-box {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 42px;
  padding: 46px;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, rgba(18, 60, 47, 0.98), rgba(31, 122, 99, 0.94));
  color: var(--white);
  box-shadow: var(--shadow-soft);
}

.experience-cta-box h2 {
  margin-bottom: 14px;
  color: var(--white);
  font-size: clamp(2rem, 3vw, 3.2rem);
  line-height: 1.08;
  letter-spacing: -0.05em;
}

.experience-cta-box .eyebrow {
  color: var(--gold);
}

.experience-cta-box p {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.76);
}

@media (max-width: 1020px) {
  .experience-intro-grid,
  .experience-cta-box {
    grid-template-columns: 1fr;
  }

  .experience-flow {
    grid-template-columns: 1fr;
  }

  .experience-grid {
    grid-template-columns: 1fr;
  }

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

  .experience-cta-box .btn {
    justify-self: start;
  }
}

@media (max-width: 760px) {
  .experience-intro-section,
  .experience-section,
  .experience-cta-section {
    padding: 62px 0;
  }

  .experience-content {
    padding: 24px;
  }

  .experience-cta-box {
    padding: 30px;
    border-radius: 28px;
  }

  .article-actions {
    flex-direction: column;
    align-items: stretch;
  }
}
/* Optimierte Startseite */

.home-hero {
  min-height: 960px;
}

.home-hero::before {
  background-image: url("../images/jungle-hero.png");
  background-position: center 42%;
  filter: saturate(1.28) contrast(1.08) brightness(1.05);
  transform: scale(1.03);
}

.home-hero .hero-overlay {
  background:
    linear-gradient(
      90deg,
      rgba(5, 30, 23, 0.90) 0%,
      rgba(5, 30, 23, 0.76) 35%,
      rgba(5, 30, 23, 0.34) 68%,
      rgba(5, 30, 23, 0.06) 100%
    ),
    radial-gradient(circle at 78% 20%, rgba(242, 191, 103, 0.25), transparent 28%),
    radial-gradient(circle at 18% 82%, rgba(46, 169, 133, 0.34), transparent 36%);
}

.home-hero-content {
  grid-template-columns: minmax(0, 1fr) 410px;
}

.home-hero h1 {
  max-width: 920px;
}

.home-shop-card {
  margin-bottom: 90px;
}

.home-funnel-section {
  padding: 86px 0;
  background: var(--cream);
}

.home-funnel-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.home-funnel-card {
  position: relative;
  min-height: 255px;
  padding: 30px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.97), rgba(244, 250, 247, 0.94));
  box-shadow: var(--shadow-card);
  transition: 0.24s ease;
  overflow: hidden;
}

.home-funnel-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 26px 56px rgba(18, 60, 47, 0.16);
}

.home-funnel-card span {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green-main), var(--green-dark));
  color: var(--white);
  font-weight: 900;
}

.home-funnel-card h3 {
  margin-bottom: 10px;
  color: var(--green-dark);
  font-size: 1.22rem;
}

.home-funnel-card p {
  color: var(--muted);
  font-size: 0.98rem;
}

.home-experience-section {
  padding: 86px 0;
  background:
    radial-gradient(circle at 90% 12%, rgba(242, 191, 103, 0.13), transparent 25%),
    linear-gradient(135deg, rgba(232, 244, 239, 0.96), rgba(246, 231, 207, 0.62));
}

.home-experience-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 70px;
  align-items: center;
}

.home-experience-grid h2 {
  margin-bottom: 18px;
  color: var(--green-dark);
  font-size: clamp(2.1rem, 3.2vw, 3.35rem);
  line-height: 1.06;
  letter-spacing: -0.05em;
}

.home-experience-grid p {
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 1.06rem;
}

.experience-preview-list {
  display: grid;
  gap: 18px;
}

.experience-preview-item {
  display: grid;
  gap: 6px;
  padding: 24px;
  border: 1px solid rgba(31, 122, 99, 0.14);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.90);
  box-shadow: var(--shadow-card);
  transition: 0.24s ease;
}

.experience-preview-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 48px rgba(18, 60, 47, 0.14);
}

.experience-preview-item span {
  color: var(--green-main);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.experience-preview-item strong {
  color: var(--green-dark);
  font-size: 1.14rem;
}

.experience-preview-item p {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
}

.home-products-preview-section {
  padding: 86px 0;
  background:
    radial-gradient(circle at 12% 18%, rgba(46, 169, 133, 0.08), transparent 28%),
    var(--cream);
}

.home-product-world-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.home-product-world-card {
  min-height: 250px;
  padding: 30px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow-card);
  transition: 0.24s ease;
}

.home-product-world-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 26px 56px rgba(18, 60, 47, 0.16);
}

.world-icon {
  width: 60px;
  height: 60px;
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  border-radius: 20px;
  background: var(--green-soft);
  font-size: 1.75rem;
}

.home-product-world-card h3 {
  margin-bottom: 10px;
  color: var(--green-dark);
  font-size: 1.22rem;
}

.home-product-world-card p {
  color: var(--muted);
  font-size: 0.98rem;
}

.home-data-section {
  padding: 86px 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(232, 244, 239, 0.66));
}

.home-data-box {
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  align-items: center;
  gap: 50px;
  padding: 52px;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, rgba(18, 60, 47, 0.98), rgba(31, 122, 99, 0.94));
  color: var(--white);
  box-shadow: var(--shadow-soft);
}

.home-data-box h2 {
  margin-bottom: 16px;
  color: var(--white);
  font-size: clamp(2rem, 3vw, 3.2rem);
  line-height: 1.08;
  letter-spacing: -0.05em;
}

.home-data-box .eyebrow {
  color: var(--gold);
}

.home-data-box p {
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.05rem;
}

.data-points {
  display: grid;
  gap: 16px;
}

.data-points div {
  padding: 22px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.data-points strong {
  display: block;
  margin-bottom: 4px;
  color: var(--white);
  font-size: 1.08rem;
}

.data-points span {
  color: rgba(255, 255, 255, 0.72);
}

.home-final-cta-section {
  padding: 86px 0;
  background: var(--cream);
}

.home-final-cta-box {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 42px;
  padding: 46px;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, rgba(232, 244, 239, 0.96), rgba(246, 231, 207, 0.72));
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
}

.home-final-cta-box h2 {
  margin-bottom: 14px;
  color: var(--green-dark);
  font-size: clamp(2rem, 3vw, 3.2rem);
  line-height: 1.08;
  letter-spacing: -0.05em;
}

.home-final-cta-box p {
  color: var(--muted);
  font-size: 1.05rem;
}

@media (max-width: 1020px) {
  .home-hero {
    min-height: auto;
    padding: 170px 0 120px;
  }

  .home-hero-content,
  .home-experience-grid,
  .home-data-box,
  .home-final-cta-box {
    grid-template-columns: 1fr;
  }

  .home-shop-card {
    max-width: 540px;
    margin-bottom: 0;
  }

  .home-funnel-grid,
  .home-product-world-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .home-final-cta-box .btn {
    justify-self: start;
  }
}

@media (max-width: 760px) {
  .home-hero {
    padding: 140px 0 95px;
  }

  .home-hero h1 {
    font-size: 3.05rem;
  }

  .home-funnel-section,
  .home-experience-section,
  .home-products-preview-section,
  .home-data-section,
  .home-final-cta-section {
    padding: 62px 0;
  }

  .home-funnel-grid,
  .home-product-world-grid {
    grid-template-columns: 1fr;
  }

  .home-data-box,
  .home-final-cta-box {
    padding: 30px;
    border-radius: 28px;
  }
}
/* Startseite final optimiert */

.home-hero {
  min-height: 900px;
}

.home-hero::before {
  background-image: url("../images/jungle-hero.png");
  background-position: center 45%;
  filter: saturate(1.22) contrast(1.08) brightness(1.02);
  transform: scale(1.025);
}

.home-hero .hero-overlay {
  background:
    linear-gradient(
      90deg,
      rgba(5, 30, 23, 0.94) 0%,
      rgba(5, 30, 23, 0.82) 34%,
      rgba(5, 30, 23, 0.42) 66%,
      rgba(5, 30, 23, 0.12) 100%
    ),
    linear-gradient(
      to bottom,
      rgba(5, 30, 23, 0.28),
      rgba(5, 30, 23, 0.10) 48%,
      rgba(251, 250, 247, 0.16) 100%
    ),
    radial-gradient(circle at 78% 18%, rgba(242, 191, 103, 0.20), transparent 28%),
    radial-gradient(circle at 18% 82%, rgba(46, 169, 133, 0.30), transparent 36%);
}

.home-hero-content {
  grid-template-columns: minmax(0, 1fr) 400px;
  gap: 76px;
}

.home-hero .hero-text {
  max-width: 850px;
}

.home-hero h1 {
  max-width: 900px;
  font-size: clamp(3.2rem, 5.7vw, 6.25rem);
  line-height: 0.96;
  letter-spacing: -0.075em;
}

.home-hero .hero-lead {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.93);
  font-weight: 600;
}

.home-hero .hero-actions {
  gap: 16px;
}

.btn-light {
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 30px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--green-dark);
  border: 1px solid rgba(255, 255, 255, 0.86);
  font-weight: 900;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.18);
  transition: 0.22s ease;
}

.btn-light:hover {
  transform: translateY(-3px);
  background: var(--white);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.22);
}

.home-hero .hero-benefits span {
  color: var(--white);
  background: rgba(7, 39, 30, 0.54);
  border-color: rgba(255, 255, 255, 0.20);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.14);
}

/* Neue rechte Hero-Karte */

.home-path-card {
  align-self: end;
  margin-bottom: 78px;
  padding: 32px;
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(20px);
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.26);
}

.home-path-label {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 7px 14px;
  border-radius: 999px;
  background: var(--green-soft);
  color: var(--green-dark);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.09em;
}

.home-path-card h2 {
  margin-bottom: 12px;
  color: var(--green-dark);
  font-size: 1.72rem;
  line-height: 1.13;
  letter-spacing: -0.035em;
}

.home-path-card p {
  margin-bottom: 24px;
  color: var(--muted);
}

.home-path-steps {
  display: grid;
  gap: 12px;
  margin-bottom: 24px;
}

.home-path-steps div {
  display: grid;
  grid-template-columns: 42px 1fr;
  align-items: center;
  gap: 14px;
  padding: 13px;
  border-radius: 18px;
  background: rgba(232, 244, 239, 0.78);
  border: 1px solid rgba(31, 122, 99, 0.10);
}

.home-path-steps span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green-main), var(--green-dark));
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 900;
}

.home-path-steps strong {
  color: var(--green-dark);
  font-size: 0.98rem;
}

.home-path-button {
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--green-main), var(--green-dark));
  color: var(--white);
  font-weight: 900;
  transition: 0.22s ease;
}

.home-path-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(31, 122, 99, 0.30);
}

/* Restliche Startseite */

.home-funnel-section {
  padding: 86px 0;
  background: var(--cream);
}

.home-funnel-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.home-funnel-card {
  min-height: 255px;
  padding: 30px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(244, 250, 247, 0.94));
  box-shadow: var(--shadow-card);
  transition: 0.24s ease;
}

.home-funnel-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 26px 56px rgba(18, 60, 47, 0.16);
}

.home-funnel-card span {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green-main), var(--green-dark));
  color: var(--white);
  font-weight: 900;
}

.home-funnel-card h3 {
  margin-bottom: 10px;
  color: var(--green-dark);
  font-size: 1.22rem;
}

.home-funnel-card p {
  color: var(--muted);
  font-size: 0.98rem;
}

.home-experience-section {
  padding: 86px 0;
  background:
    radial-gradient(circle at 90% 12%, rgba(242, 191, 103, 0.13), transparent 25%),
    linear-gradient(135deg, rgba(232, 244, 239, 0.96), rgba(246, 231, 207, 0.62));
}

.home-experience-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 70px;
  align-items: center;
}

.home-experience-grid h2 {
  margin-bottom: 18px;
  color: var(--green-dark);
  font-size: clamp(2.1rem, 3.2vw, 3.35rem);
  line-height: 1.06;
  letter-spacing: -0.05em;
}

.home-experience-grid p {
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 1.06rem;
}

.experience-preview-list {
  display: grid;
  gap: 18px;
}

.experience-preview-item {
  display: grid;
  gap: 6px;
  padding: 24px;
  border: 1px solid rgba(31, 122, 99, 0.14);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-card);
  transition: 0.24s ease;
}

.experience-preview-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 48px rgba(18, 60, 47, 0.14);
}

.experience-preview-item span {
  color: var(--green-main);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.experience-preview-item strong {
  color: var(--green-dark);
  font-size: 1.14rem;
}

.experience-preview-item p {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
}

.home-products-preview-section {
  padding: 86px 0;
  background:
    radial-gradient(circle at 12% 18%, rgba(46, 169, 133, 0.08), transparent 28%),
    var(--cream);
}

.home-product-world-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.home-product-world-card {
  min-height: 250px;
  padding: 30px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow-card);
  transition: 0.24s ease;
}

.home-product-world-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 26px 56px rgba(18, 60, 47, 0.16);
}

.world-icon {
  width: 60px;
  height: 60px;
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  border-radius: 20px;
  background: var(--green-soft);
  font-size: 1.75rem;
}

.home-product-world-card h3 {
  margin-bottom: 10px;
  color: var(--green-dark);
  font-size: 1.22rem;
}

.home-product-world-card p {
  color: var(--muted);
  font-size: 0.98rem;
}

.home-data-section {
  padding: 86px 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(232, 244, 239, 0.66));
}

.home-data-box {
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  align-items: center;
  gap: 50px;
  padding: 52px;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, rgba(18, 60, 47, 0.98), rgba(31, 122, 99, 0.94));
  color: var(--white);
  box-shadow: var(--shadow-soft);
}

.home-data-box h2 {
  margin-bottom: 16px;
  color: var(--white);
  font-size: clamp(2rem, 3vw, 3.2rem);
  line-height: 1.08;
  letter-spacing: -0.05em;
}

.home-data-box .eyebrow {
  color: var(--gold);
}

.home-data-box p {
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.05rem;
}

.data-points {
  display: grid;
  gap: 16px;
}

.data-points div {
  padding: 22px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.data-points strong {
  display: block;
  margin-bottom: 4px;
  color: var(--white);
  font-size: 1.08rem;
}

.data-points span {
  color: rgba(255, 255, 255, 0.72);
}

.home-final-cta-section {
  padding: 86px 0;
  background: var(--cream);
}

.home-final-cta-box {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 42px;
  padding: 46px;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, rgba(232, 244, 239, 0.96), rgba(246, 231, 207, 0.72));
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
}

.home-final-cta-box h2 {
  margin-bottom: 14px;
  color: var(--green-dark);
  font-size: clamp(2rem, 3vw, 3.2rem);
  line-height: 1.08;
  letter-spacing: -0.05em;
}

.home-final-cta-box p {
  color: var(--muted);
  font-size: 1.05rem;
}

@media (max-width: 1020px) {
  .home-hero {
    min-height: auto;
    padding: 165px 0 120px;
  }

  .home-hero-content,
  .home-experience-grid,
  .home-data-box,
  .home-final-cta-box {
    grid-template-columns: 1fr;
  }

  .home-path-card {
    max-width: 540px;
    margin-bottom: 0;
  }

  .home-funnel-grid,
  .home-product-world-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .home-final-cta-box .btn {
    justify-self: start;
  }
}

@media (max-width: 760px) {
  .home-hero {
    padding: 140px 0 95px;
  }

  .home-hero h1 {
    font-size: 3rem;
  }

  .home-funnel-section,
  .home-experience-section,
  .home-products-preview-section,
  .home-data-section,
  .home-final-cta-section {
    padding: 62px 0;
  }

  .home-funnel-grid,
  .home-product-world-grid {
    grid-template-columns: 1fr;
  }

  .home-data-box,
  .home-final-cta-box {
    padding: 30px;
    border-radius: 28px;
  }
}
/* Startseite ohne rechte Hero-Kachel */

.home-hero {
  min-height: 820px;
}

.home-hero-content {
  grid-template-columns: minmax(0, 900px);
  justify-content: start;
}

.home-hero .hero-text {
  max-width: 900px;
}

.home-hero h1 {
  max-width: 920px;
}

.home-path-card {
  display: none;
}

/* CTA im Bereich "So funktioniert Jung Leben" */

.home-funnel-cta {
  margin-top: 36px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 36px;
  padding: 34px;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, rgba(18, 60, 47, 0.98), rgba(31, 122, 99, 0.94));
  color: var(--white);
  box-shadow: var(--shadow-soft);
}

.home-funnel-cta .eyebrow {
  color: var(--gold);
  margin-bottom: 10px;
}

.home-funnel-cta h3 {
  margin-bottom: 10px;
  color: var(--white);
  font-size: clamp(1.7rem, 2.6vw, 2.6rem);
  line-height: 1.08;
  letter-spacing: -0.045em;
}

.home-funnel-cta p {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.76);
}

.home-funnel-cta .btn-primary {
  white-space: nowrap;
}

/* Hero etwas ruhiger, damit kein leerer Bereich entsteht */

.home-hero .hero-overlay {
  background:
    linear-gradient(
      90deg,
      rgba(5, 30, 23, 0.94) 0%,
      rgba(5, 30, 23, 0.80) 38%,
      rgba(5, 30, 23, 0.40) 72%,
      rgba(5, 30, 23, 0.14) 100%
    ),
    linear-gradient(
      to bottom,
      rgba(5, 30, 23, 0.20),
      rgba(5, 30, 23, 0.08) 48%,
      rgba(251, 250, 247, 0.16) 100%
    ),
    radial-gradient(circle at 78% 18%, rgba(242, 191, 103, 0.18), transparent 28%),
    radial-gradient(circle at 18% 82%, rgba(46, 169, 133, 0.28), transparent 36%);
}

@media (max-width: 1020px) {
  .home-hero-content {
    grid-template-columns: 1fr;
  }

  .home-funnel-cta {
    grid-template-columns: 1fr;
  }

  .home-funnel-cta .btn {
    justify-self: start;
  }
}

@media (max-width: 760px) {
  .home-hero {
    min-height: auto;
    padding: 140px 0 95px;
  }

  .home-funnel-cta {
    padding: 30px;
    border-radius: 28px;
  }

  .home-funnel-cta .btn {
    width: 100%;
  }
}
/* Wissen-Seite Roberto / Longevity Curator */

.lc-blog-intro-section {
  padding: 86px 0;
  background: var(--cream);
}

.lc-blog-intro-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 70px;
  align-items: start;
}

.lc-blog-intro-grid h2 {
  color: var(--green-dark);
  font-size: clamp(2.1rem, 3.2vw, 3.35rem);
  line-height: 1.06;
  letter-spacing: -0.05em;
}

.lc-blog-intro-grid p {
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 1.07rem;
}

.lc-featured-blogs-section {
  padding: 86px 0;
  background:
    radial-gradient(circle at 88% 8%, rgba(242, 191, 103, 0.13), transparent 25%),
    linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(232, 244, 239, 0.62));
}

.lc-blog-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 26px;
}

.lc-blog-card {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  transition: 0.24s ease;
}

.lc-blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 26px 56px rgba(18, 60, 47, 0.16);
}

.lc-blog-card-large {
  grid-row: span 1;
}

.lc-blog-image {
  min-height: 245px;
  background-size: cover;
  background-position: center;
}

.lc-blog-image-omega {
  background:
    linear-gradient(135deg, rgba(31, 122, 99, 0.62), rgba(31, 122, 99, 0.08)),
    url("../images/jungle-hero.png");
}

.lc-blog-image-deo {
  background:
    linear-gradient(135deg, rgba(242, 191, 103, 0.70), rgba(31, 122, 99, 0.12)),
    url("../images/jungle-hero.png");
}

.lc-blog-image-toothpaste {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.20), rgba(31, 122, 99, 0.72)),
    url("../images/jungle-hero.png");
}

.lc-blog-image-tryptophan {
  background:
    linear-gradient(135deg, rgba(11, 43, 33, 0.72), rgba(11, 43, 33, 0.08)),
    url("../images/jungle-hero.png");
}

.lc-blog-image-shilajit {
  background:
    linear-gradient(135deg, rgba(46, 169, 133, 0.76), rgba(11, 43, 33, 0.12)),
    url("../images/jungle-hero.png");
}

.lc-blog-content {
  padding: 28px;
}

.lc-blog-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 16px;
}

.lc-blog-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 11px;
  border-radius: 999px;
  background: var(--green-soft);
  color: var(--green-dark);
  font-size: 0.76rem;
  font-weight: 900;
}

.lc-blog-content h3 {
  margin-bottom: 12px;
  color: var(--green-dark);
  font-size: 1.42rem;
  line-height: 1.18;
}

.lc-blog-content p {
  margin-bottom: 22px;
  color: var(--muted);
}

.lc-article {
  position: relative;
}

.lc-article .article-lead {
  font-size: 1.1rem;
  color: var(--muted);
}

.lc-blog-cta-section {
  padding: 86px 0;
  background: var(--cream);
}

.lc-blog-cta-box {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 42px;
  padding: 46px;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, rgba(18, 60, 47, 0.98), rgba(31, 122, 99, 0.94));
  color: var(--white);
  box-shadow: var(--shadow-soft);
}

.lc-blog-cta-box h2 {
  margin-bottom: 14px;
  color: var(--white);
  font-size: clamp(2rem, 3vw, 3.2rem);
  line-height: 1.08;
  letter-spacing: -0.05em;
}

.lc-blog-cta-box .eyebrow {
  color: var(--gold);
}

.lc-blog-cta-box p {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.76);
}

@media (max-width: 1020px) {
  .lc-blog-intro-grid,
  .lc-blog-cta-box {
    grid-template-columns: 1fr;
  }

  .lc-blog-grid {
    grid-template-columns: 1fr;
  }

  .lc-blog-cta-box .btn {
    justify-self: start;
  }
}

@media (max-width: 760px) {
  .lc-blog-intro-section,
  .lc-featured-blogs-section,
  .lc-blog-cta-section {
    padding: 62px 0;
  }

  .lc-blog-content {
    padding: 24px;
  }

  .lc-blog-cta-box {
    padding: 30px;
    border-radius: 28px;
  }

  .lc-blog-cta-box .btn {
    width: 100%;
  }
}
/* Ãœber mich / Roberto / Longevity Curator */

.roberto-intro-section {
  padding: 86px 0;
  background: var(--cream);
}

.roberto-intro-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 70px;
  align-items: center;
}

.roberto-profile-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.97);
  box-shadow: var(--shadow-card);
  overflow: hidden;
}

.roberto-image-placeholder {
  min-height: 360px;
  display: grid;
  place-items: center;
  background:
    linear-gradient(135deg, rgba(11, 43, 33, 0.62), rgba(31, 122, 99, 0.18)),
    url("../images/jungle-hero.png");
  background-size: cover;
  background-position: center;
}

.roberto-image-placeholder span {
  width: 160px;
  height: 160px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.88);
  color: var(--green-dark);
  font-size: 1.3rem;
  font-weight: 900;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.24);
}

.roberto-profile-content {
  padding: 32px;
}

.profile-label {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 7px 14px;
  border-radius: 999px;
  background: var(--green-soft);
  color: var(--green-dark);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.09em;
}

.roberto-profile-content h2 {
  margin-bottom: 8px;
  color: var(--green-dark);
  font-size: 2.4rem;
  line-height: 1;
  letter-spacing: -0.055em;
}

.roberto-profile-content p {
  margin-bottom: 24px;
  color: var(--muted);
}

.profile-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.profile-facts div {
  padding: 16px 12px;
  border-radius: 18px;
  background: var(--green-soft);
  text-align: center;
}

.profile-facts strong {
  display: block;
  color: var(--green-dark);
  font-size: 1.6rem;
  line-height: 1;
}

.profile-facts span {
  display: block;
  margin-top: 7px;
  color: var(--muted);
  font-size: 0.82rem;
}

.roberto-intro-text h2,
.roberto-mission-grid h2,
.story-text h2 {
  margin-bottom: 18px;
  color: var(--green-dark);
  font-size: clamp(2.1rem, 3.2vw, 3.35rem);
  line-height: 1.06;
  letter-spacing: -0.05em;
}

.roberto-intro-text p,
.roberto-mission-grid p,
.story-text p {
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 1.07rem;
}

/* Mission */

.roberto-mission-section {
  padding: 86px 0;
  background:
    radial-gradient(circle at 90% 12%, rgba(242, 191, 103, 0.13), transparent 25%),
    linear-gradient(135deg, rgba(232, 244, 239, 0.96), rgba(246, 231, 207, 0.62));
}

.roberto-mission-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 70px;
  align-items: center;
}

.mission-card-list {
  display: grid;
  gap: 18px;
}

.mission-card {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 18px;
  padding: 24px;
  border: 1px solid rgba(31, 122, 99, 0.14);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.90);
  box-shadow: var(--shadow-card);
}

.mission-card > span {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green-main), var(--green-dark));
  color: var(--white);
  font-weight: 900;
}

.mission-card strong {
  display: block;
  margin-bottom: 6px;
  color: var(--green-dark);
  font-size: 1.08rem;
}

.mission-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
}

/* Story */

.roberto-story-section {
  padding: 86px 0;
  background: var(--cream);
}

.roberto-story-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 70px;
  align-items: center;
}

.story-quote-card {
  padding: 42px;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, rgba(18, 60, 47, 0.98), rgba(31, 122, 99, 0.94));
  box-shadow: var(--shadow-soft);
}

.story-quote-card p {
  color: var(--white);
  font-size: clamp(1.55rem, 2.5vw, 2.35rem);
  line-height: 1.18;
  letter-spacing: -0.04em;
  font-weight: 900;
}

/* Werte */

.roberto-values-section {
  padding: 86px 0;
  background:
    radial-gradient(circle at 12% 18%, rgba(46, 169, 133, 0.08), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(232, 244, 239, 0.66));
}

.roberto-values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.roberto-value-card {
  min-height: 260px;
  padding: 30px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow-card);
  transition: 0.24s ease;
}

.roberto-value-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 26px 56px rgba(18, 60, 47, 0.16);
}

.roberto-value-card h3 {
  margin-bottom: 10px;
  color: var(--green-dark);
  font-size: 1.22rem;
}

.roberto-value-card p {
  color: var(--muted);
  font-size: 0.98rem;
}

/* Funnel CTA */

.roberto-funnel-section {
  padding: 86px 0;
  background: var(--cream);
}

.roberto-funnel-box {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 42px;
  padding: 46px;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, rgba(18, 60, 47, 0.98), rgba(31, 122, 99, 0.94));
  color: var(--white);
  box-shadow: var(--shadow-soft);
}

.roberto-funnel-box h2 {
  margin-bottom: 14px;
  color: var(--white);
  font-size: clamp(2rem, 3vw, 3.2rem);
  line-height: 1.08;
  letter-spacing: -0.05em;
}

.roberto-funnel-box .eyebrow {
  color: var(--gold);
}

.roberto-funnel-box p {
  max-width: 800px;
  color: rgba(255, 255, 255, 0.76);
}

/* Responsive Ãœber mich */

@media (max-width: 1020px) {
  .roberto-intro-grid,
  .roberto-mission-grid,
  .roberto-story-grid,
  .roberto-funnel-box {
    grid-template-columns: 1fr;
  }

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

  .roberto-funnel-box .btn {
    justify-self: start;
  }
}

@media (max-width: 760px) {
  .roberto-intro-section,
  .roberto-mission-section,
  .roberto-story-section,
  .roberto-values-section,
  .roberto-funnel-section {
    padding: 62px 0;
  }

  .roberto-profile-content,
  .story-quote-card,
  .roberto-funnel-box {
    padding: 30px;
    border-radius: 28px;
  }

  .profile-facts {
    grid-template-columns: 1fr;
  }

  .mission-card {
    grid-template-columns: 1fr;
  }

  .roberto-values-grid {
    grid-template-columns: 1fr;
  }

  .roberto-funnel-box .btn {
    width: 100%;
  }
}
/* Roberto Profilbild */

.roberto-image-placeholder {
  display: none;
}

.roberto-image-wrap {
  min-height: 420px;
  overflow: hidden;
  background: var(--green-soft);
}

.roberto-image-wrap img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  display: block;
  object-fit: cover;
  object-position: center;
}
/* Mission Abschnitt optisch vereinheitlicht */

.roberto-mission-section {
  padding: 86px 0;
  background:
    radial-gradient(circle at 12% 18%, rgba(46, 169, 133, 0.08), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(232, 244, 239, 0.66));
}

.roberto-mission-section .section-heading {
  max-width: 850px;
  margin-bottom: 44px;
}

.roberto-mission-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.roberto-mission-card {
  min-height: 260px;
  padding: 30px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow-card);
  transition: 0.24s ease;
}

.roberto-mission-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 26px 56px rgba(18, 60, 47, 0.16);
}

.roberto-mission-card .mission-icon {
  width: 60px;
  height: 60px;
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  border-radius: 20px;
  background: var(--green-soft);
  font-size: 1.75rem;
}

.roberto-mission-card h3 {
  margin-bottom: 10px;
  color: var(--green-dark);
  font-size: 1.22rem;
  line-height: 1.18;
}

.roberto-mission-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.65;
}

@media (max-width: 1020px) {
  .roberto-mission-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 760px) {
  .roberto-mission-section {
    padding: 62px 0;
  }

  .roberto-mission-cards {
    grid-template-columns: 1fr;
  }

  .roberto-mission-card {
    min-height: auto;
    padding: 28px;
    border-radius: 28px;
  }

  .roberto-image-wrap,
  .roberto-image-wrap img {
    min-height: 340px;
  }
}
/* Startseite final â€“ Longevity Curator */

.home-hero {
  min-height: 820px;
}

.home-hero::before {
  background-image: url("../images/jungle-hero.png");
  background-position: center 45%;
  filter: saturate(1.22) contrast(1.08) brightness(1.02);
  transform: scale(1.025);
}

.home-hero .hero-overlay {
  background:
    linear-gradient(
      90deg,
      rgba(5, 30, 23, 0.94) 0%,
      rgba(5, 30, 23, 0.82) 36%,
      rgba(5, 30, 23, 0.42) 72%,
      rgba(5, 30, 23, 0.12) 100%
    ),
    linear-gradient(
      to bottom,
      rgba(5, 30, 23, 0.18),
      rgba(5, 30, 23, 0.08) 48%,
      rgba(251, 250, 247, 0.14) 100%
    );
}

.home-hero-content {
  grid-template-columns: minmax(0, 920px);
  justify-content: start;
}

.home-hero .hero-text {
  max-width: 920px;
}

.home-hero h1 {
  max-width: 920px;
  font-size: clamp(3.2rem, 5.8vw, 6.35rem);
  line-height: 0.96;
  letter-spacing: -0.075em;
}

.home-hero .hero-lead {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.94);
  font-weight: 600;
}

.home-hero .hero-benefits span {
  color: var(--white);
  background: rgba(7, 39, 30, 0.54);
  border-color: rgba(255, 255, 255, 0.20);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.14);
}

/* Roberto Teaser auf Startseite */

.home-curator-section {
  padding: 86px 0;
  background: var(--cream);
}

.home-curator-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 70px;
  align-items: center;
}

.home-curator-image {
  min-height: 520px;
  border-radius: var(--radius-lg);
  background-image:
    linear-gradient(135deg, rgba(11, 43, 33, 0.26), rgba(31, 122, 99, 0.08)),
    url("img/roberto.jpg"),
    url("../images/jungle-hero.png");
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border);
}

.home-curator-text h2 {
  margin-bottom: 18px;
  color: var(--green-dark);
  font-size: clamp(2.1rem, 3.2vw, 3.35rem);
  line-height: 1.06;
  letter-spacing: -0.05em;
}

.home-curator-text p {
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 1.07rem;
}

.home-curator-text .btn {
  margin-top: 10px;
}

/* Funnel CTA */

.home-funnel-cta {
  margin-top: 36px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 36px;
  padding: 34px;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, rgba(18, 60, 47, 0.98), rgba(31, 122, 99, 0.94));
  color: var(--white);
  box-shadow: var(--shadow-soft);
}

.home-funnel-cta .eyebrow {
  color: var(--gold);
  margin-bottom: 10px;
}

.home-funnel-cta h3 {
  margin-bottom: 10px;
  color: var(--white);
  font-size: clamp(1.7rem, 2.6vw, 2.6rem);
  line-height: 1.08;
  letter-spacing: -0.045em;
}

.home-funnel-cta p {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.76);
}

.home-funnel-cta .btn-primary {
  white-space: nowrap;
}

@media (max-width: 1020px) {
  .home-hero {
    min-height: auto;
    padding: 150px 0 105px;
  }

  .home-hero-content,
  .home-curator-grid,
  .home-funnel-cta {
    grid-template-columns: 1fr;
  }

  .home-curator-image {
    min-height: 440px;
  }

  .home-funnel-cta .btn {
    justify-self: start;
  }
}

@media (max-width: 760px) {
  .home-hero {
    padding: 135px 0 90px;
  }

  .home-hero h1 {
    font-size: 3rem;
  }

  .home-curator-section {
    padding: 62px 0;
  }

  .home-curator-image {
    min-height: 360px;
    border-radius: 28px;
  }

  .home-funnel-cta {
    padding: 30px;
    border-radius: 28px;
  }

  .home-funnel-cta .btn {
    width: 100%;
  }
}
/* Roberto Best-Case Routine */

.routine-section {
  padding: 86px 0;
  background:
    radial-gradient(circle at 88% 8%, rgba(242, 191, 103, 0.13), transparent 25%),
    linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(232, 244, 239, 0.62));
}

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

.routine-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  transition: 0.24s ease;
}

.routine-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 26px 56px rgba(18, 60, 47, 0.16);
}

.routine-card-header {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 26px;
  border-bottom: 1px solid var(--border);
}

.routine-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 20px;
  background: var(--green-soft);
  font-size: 1.9rem;
}

.routine-card-header h3 {
  margin: 0 0 4px;
  color: var(--green-dark);
  font-size: 1.35rem;
  line-height: 1.1;
}

.routine-card-header span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.routine-morning {
  background: linear-gradient(135deg, rgba(255, 221, 155, 0.32), rgba(255, 255, 255, 0.92));
}

.routine-midday {
  background: linear-gradient(135deg, rgba(232, 244, 239, 0.86), rgba(255, 255, 255, 0.94));
}

.routine-evening {
  background: linear-gradient(135deg, rgba(222, 229, 255, 0.44), rgba(255, 255, 255, 0.94));
}

.routine-list {
  display: grid;
  gap: 0;
  padding: 10px 26px 26px;
}

.routine-item {
  display: grid;
  gap: 5px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(31, 122, 99, 0.10);
  transition: 0.22s ease;
}

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

.routine-item:hover {
  padding-left: 8px;
}

.routine-item strong {
  color: var(--green-dark);
  font-size: 1.02rem;
}

.routine-item span {
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.45;
}

.routine-item-muted {
  opacity: 0.78;
}

.routine-note {
  margin-top: 30px;
  padding: 28px;
  border-radius: var(--radius-md);
  background:
    linear-gradient(135deg, rgba(18, 60, 47, 0.98), rgba(31, 122, 99, 0.94));
  color: var(--white);
  box-shadow: var(--shadow-soft);
}

.routine-note strong {
  display: block;
  margin-bottom: 8px;
  color: var(--gold);
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.routine-note p {
  max-width: 980px;
  color: rgba(255, 255, 255, 0.78);
}

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

@media (max-width: 760px) {
  .routine-section {
    padding: 62px 0;
  }

  .routine-card-header {
    padding: 24px;
  }

  .routine-list {
    padding: 8px 24px 24px;
  }

  .routine-note {
    padding: 24px;
    border-radius: 28px;
  }
}
/* Startseite â€“ Routine Preview */

.home-routine-preview-section {
  padding: 86px 0;
  background:
    radial-gradient(circle at 12% 18%, rgba(46, 169, 133, 0.08), transparent 28%),
    linear-gradient(135deg, rgba(232, 244, 239, 0.96), rgba(246, 231, 207, 0.62));
}

.home-routine-preview-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 70px;
  align-items: center;
}

.home-routine-preview-text h2 {
  margin-bottom: 18px;
  color: var(--green-dark);
  font-size: clamp(2.1rem, 3.2vw, 3.35rem);
  line-height: 1.06;
  letter-spacing: -0.05em;
}

.home-routine-preview-text p {
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 1.07rem;
}

.home-routine-preview-text .btn {
  margin-top: 10px;
}

.home-routine-preview-card {
  display: grid;
  gap: 18px;
  padding: 34px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow-card);
}

.routine-preview-column {
  display: grid;
  gap: 8px;
  padding: 24px;
  border-radius: var(--radius-md);
  background:
    linear-gradient(135deg, rgba(232, 244, 239, 0.96), rgba(246, 231, 207, 0.62));
  border: 1px solid rgba(31, 122, 99, 0.12);
}

.routine-preview-column span {
  color: var(--green-main);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.routine-preview-column strong {
  color: var(--green-dark);
  font-size: 1.08rem;
  line-height: 1.45;
}

@media (max-width: 1020px) {
  .home-routine-preview-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .home-routine-preview-section {
    padding: 62px 0;
  }

  .home-routine-preview-card {
    padding: 26px;
    border-radius: 28px;
  }

  .routine-preview-column {
    padding: 22px;
  }
}
/* Produktdetailseite â€“ Longevity Curator optimiert */

.product-detail-hero {
  background:
    linear-gradient(135deg, rgba(18, 60, 47, 0.94), rgba(31, 122, 99, 0.74)),
    url("../images/jungle-hero.png");
  background-size: cover;
  background-position: center;
}

.product-detail-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 36px;
  align-items: stretch;
  margin-bottom: 46px;
}

.product-detail-visual {
  display: grid;
  gap: 22px;
}

.product-detail-side-note {
  padding: 28px;
  border-radius: var(--radius-md);
  background:
    linear-gradient(135deg, rgba(18, 60, 47, 0.98), rgba(31, 122, 99, 0.94));
  color: var(--white);
  box-shadow: var(--shadow-soft);
}

.product-detail-side-note strong {
  display: block;
  margin-bottom: 8px;
  color: var(--gold);
  font-size: 0.88rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-detail-side-note p {
  color: rgba(255, 255, 255, 0.78);
}

.improved-detail-card {
  display: flex;
  flex-direction: column;
}

.detail-provider-box {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin: 28px 0;
}

.detail-provider-box div {
  padding: 22px;
  border-radius: var(--radius-md);
  background:
    linear-gradient(135deg, rgba(232, 244, 239, 0.96), rgba(246, 231, 207, 0.62));
  border: 1px solid rgba(31, 122, 99, 0.12);
}

.detail-provider-box span {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.detail-provider-box strong {
  color: var(--green-dark);
  font-size: 1.18rem;
}

.improved-meta-list {
  display: grid;
  gap: 12px;
  margin-bottom: 28px;
}

.improved-detail-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: auto;
}

.provider-hint {
  margin-top: 18px;
  color: var(--muted);
  font-size: 0.92rem;
}

.improved-detail-text {
  max-width: 980px;
}

.detail-trust-section {
  padding: 0 0 86px;
  background: var(--cream);
}

.detail-trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.detail-trust-card {
  min-height: 240px;
  padding: 30px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow-card);
}

.detail-trust-card h3 {
  margin-bottom: 10px;
  color: var(--green-dark);
  font-size: 1.22rem;
}

.detail-trust-card p {
  color: var(--muted);
  font-size: 0.98rem;
}

@media (max-width: 1020px) {
  .product-detail-layout,
  .detail-trust-grid {
    grid-template-columns: 1fr;
  }

  .detail-provider-box {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .detail-trust-section {
    padding-bottom: 62px;
  }

  .product-detail-side-note,
  .detail-trust-card {
    padding: 26px;
    border-radius: 28px;
  }
}
.product-card-actions {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.product-card-actions .detail-secondary-link {
  min-height: 46px;
  font-size: 0.94rem;
}
/* WordPress-Navigation */

.main-nav-list {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.main-nav .current-menu-item > a,
.main-nav .current_page_item > a {
  background: rgba(255, 255, 255, 0.2);
  color: var(--white);
}

@media (max-width: 760px) {
  .main-nav {
    width: auto;
  }

  .main-nav-list {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }

  .main-nav-list li {
    width: 100%;
  }

  .main-nav-list a {
    display: block;
    width: 100%;
  }
}
/* WordPress-Korrektur: Hero über die gesamte Bildschirmbreite */

.home-hero {
  width: 100%;
  max-width: none;
  margin: 0;
  padding-block: 0;
}

.home-hero .home-hero-content {
  width: min(100% - 40px, var(--container));
  max-width: var(--container);
  margin-inline: auto;
}
/* =========================================================
   Kundenanpassungen 2026: Header und Hero
   ========================================================= */

/* Header */

.site-header {
  position: relative;
  top: auto;
  width: 100%;
  background: #ffffff;
  border-bottom: 1px solid #edf0ec;
  box-shadow: none;
}

.header-content {
  min-height: 88px;
}

.logo {
  color: #073f19;
}

.logo:hover {
  color: #073f19;
}

.logo-icon {
  background: #073f19;
  color: #ffffff;
}

.logo-text {
  color: #073f19;
}

.main-nav-list {
  gap: 3px;
}

.main-nav-list a {
  display: block;
  padding: 8px 14px;
  background: #073f19;
  color: #ffffff;
  border-radius: 0;
  font-size: 0.82rem;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
}

.main-nav-list a:hover,
.main-nav .current-menu-item > a,
.main-nav .current_page_item > a {
  background: #0d5a26;
  color: #ffffff;
}

/* Neuer Hero */

.jl-home-hero {
  width: 100%;
  padding: clamp(5rem, 10vw, 9rem) 0 clamp(6rem, 12vw, 11rem);
  background: #ffffff;
}

.jl-home-hero__panel {
  width: min(100%, 720px);
  padding: clamp(2rem, 5vw, 4rem);
  background: #063f19;
  color: #ffffff;
}

.jl-home-hero__title {
  max-width: 650px;
  margin: 0;
  color: #ffffff;
  font-size: clamp(2.8rem, 6vw, 5.7rem);
  font-weight: 750;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.jl-home-hero__text {
  max-width: 650px;
  margin: 1.75rem 0 0;
  color: #ffffff;
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  line-height: 1.55;
}

.jl-home-hero__action {
  display: flex;
  justify-content: center;
  width: min(100%, 720px);
  margin-top: 1.6rem;
}

.jl-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0.8rem 1.7rem;
  border: 0;
  border-radius: 8px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease;
}

.jl-button--gold {
  background: #f5cf68;
  color: #073f19;
  box-shadow: 0 12px 30px rgba(84, 69, 20, 0.12);
}

.jl-button--gold:hover {
  background: #f8d979;
  color: #073f19;
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(84, 69, 20, 0.17);
}

@media (max-width: 760px) {
  .header-content {
    min-height: 72px;
  }

  .main-nav {
    background: #ffffff;
  }

  .main-nav-list {
    gap: 4px;
  }

  .main-nav-list a {
    padding: 12px 16px;
  }

  .jl-home-hero {
    padding: 3.5rem 0 5rem;
  }

  .jl-home-hero__panel {
    padding: 2rem 1.4rem;
  }

  .jl-home-hero__title {
    font-size: clamp(2.6rem, 13vw, 4rem);
  }

  .jl-home-hero__action {
    justify-content: flex-start;
  }
}
/* =========================================================
   Jung Leben – neuer Header
   ========================================================= */

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid rgba(7, 63, 29, 0.1);
  box-shadow: 0 8px 28px rgba(12, 52, 29, 0.06);
  backdrop-filter: blur(12px);
}

.admin-bar .site-header {
  top: 32px;
}

.header-content {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 108px;
  gap: 2rem;
}

/* Logo */

.site-branding {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  line-height: 0;
}

.custom-logo-link,
.site-logo-link {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.custom-logo,
.site-logo-image {
  display: block;
  width: clamp(210px, 22vw, 285px);
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

.site-title-link {
  color: #073f1d;
  font-size: 1.45rem;
  font-weight: 800;
  line-height: 1.2;
  text-decoration: none;
}

/* Navigation */

.main-nav {
  margin-left: auto;
}

.main-nav-list {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.main-nav-list li {
  margin: 0;
  padding: 0;
}

.main-nav-list a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.7rem 1.15rem;
  background: #f2f5f0;
  color: #073f1d;
  border: 1px solid rgba(7, 63, 29, 0.13);
  border-radius: 999px;
  box-shadow: 0 5px 14px rgba(7, 63, 29, 0.05);
  font-size: 0.94rem;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  transition:
    color 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.main-nav-list a:hover,
.main-nav-list a:focus-visible {
  background: #0a5227;
  color: #ffffff;
  border-color: #0a5227;
  box-shadow: 0 10px 22px rgba(7, 63, 29, 0.17);
  transform: translateY(-2px);
}

.main-nav .current-menu-item > a,
.main-nav .current_page_item > a,
.main-nav .current-menu-ancestor > a {
  background: #073f1d;
  color: #ffffff;
  border-color: #073f1d;
  box-shadow: 0 9px 20px rgba(7, 63, 29, 0.19);
}

/* Mobile Schaltfläche */

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  flex: 0 0 auto;
  width: 48px;
  height: 48px;
  gap: 5px;
  padding: 0;
  background: #073f1d;
  color: #ffffff;
  border: 0;
  border-radius: 50%;
  box-shadow: 0 8px 18px rgba(7, 63, 29, 0.18);
  cursor: pointer;
}

.nav-toggle__line {
  display: block;
  width: 20px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition:
    transform 180ms ease,
    opacity 180ms ease;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle__line:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Tablet und Mobile */

@media (max-width: 900px) {
  .header-content {
    min-height: 88px;
    gap: 1rem;
  }

  .custom-logo,
  .site-logo-image {
    width: clamp(185px, 48vw, 235px);
  }

  .nav-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .main-nav {
    position: absolute;
    top: calc(100% + 1px);
    right: 0;
    left: 0;
    display: none;
    width: 100%;
    margin: 0;
    padding: 1rem;
    background: #ffffff;
    border: 1px solid rgba(7, 63, 29, 0.1);
    border-radius: 0 0 18px 18px;
    box-shadow: 0 18px 35px rgba(7, 63, 29, 0.12);
  }

  .main-nav.open {
    display: block;
  }

  .main-nav-list {
    flex-direction: column;
    align-items: stretch;
    gap: 0.55rem;
  }

  .main-nav-list li {
    width: 100%;
  }

  .main-nav-list a {
    width: 100%;
    min-height: 48px;
    padding: 0.85rem 1.1rem;
    border-radius: 12px;
  }
}

@media (max-width: 782px) {
  .admin-bar .site-header {
    top: 46px;
  }
}

@media (max-width: 480px) {
  .header-content {
    min-height: 80px;
  }

  .custom-logo,
  .site-logo-image {
    width: 180px;
  }

  .nav-toggle {
    width: 44px;
    height: 44px;
  }
}
/* =========================================================
   Jung Leben – Ein Ort der Orientierung
   ========================================================= */

.home-orientation-section {
  position: relative;
  overflow: hidden;
  padding: clamp(5rem, 9vw, 8rem) 0;
  background:
    radial-gradient(
      circle at 90% 10%,
      rgba(245, 207, 104, 0.18),
      transparent 30%
    ),
    #f6f5ef;
}

.home-orientation-grid {
  display: grid;
  grid-template-columns:
    minmax(280px, 0.8fr)
    minmax(500px, 1.2fr);
  align-items: center;
  gap: clamp(3rem, 7vw, 7rem);
}

.home-orientation-copy {
  max-width: 490px;
}

.home-orientation-copy h2 {
  max-width: 440px;
  margin: 0.6rem 0 1.5rem;
  color: #073f1d;
  font-size: clamp(2.6rem, 5vw, 4.4rem);
  letter-spacing: -0.04em;
  line-height: 1;
}

.home-orientation-copy p {
  margin: 0 0 1.15rem;
  color: #52655a;
  font-size: 1.05rem;
  line-height: 1.7;
}

.home-orientation-copy .home-orientation-intro {
  color: #243c2e;
  font-size: 1.14rem;
  font-weight: 600;
}

/* Übersicht */

.orientation-map {
  position: relative;
  min-height: 520px;
}

.orientation-map__lines {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.orientation-map__lines line {
  stroke: rgba(7, 63, 29, 0.22);
  stroke-width: 2;
  stroke-dasharray: 7 8;
}

/* Zentrum */

.orientation-map__center {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 190px;
  height: 190px;
  padding: 1.5rem;
  background:
    linear-gradient(
      145deg,
      #073f1d,
      #0c5a2b
    );
  color: #ffffff;
  border: 10px solid rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  box-shadow:
    0 25px 50px rgba(7, 63, 29, 0.2),
    0 0 0 1px rgba(7, 63, 29, 0.08);
  text-align: center;
  transform: translate(-50%, -50%);
}

.orientation-map__brand {
  font-size: 1.55rem;
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.05;
}

.orientation-map__purpose {
  margin-top: 0.4rem;
  color: #f5cf68;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* Einstiegspunkte */

.orientation-map__node {
  position: absolute;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 165px;
  min-height: 54px;
  gap: 0.6rem;
  padding: 0.75rem 1.2rem;
  background: rgba(255, 255, 255, 0.96);
  color: #073f1d;
  border: 1px solid rgba(7, 63, 29, 0.12);
  border-radius: 999px;
  box-shadow: 0 13px 30px rgba(7, 63, 29, 0.09);
  font-size: 0.95rem;
  font-weight: 750;
  text-align: center;
}

.orientation-map__node > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
  background: #edf4eb;
  border-radius: 50%;
  font-size: 0.9rem;
}

.orientation-map__node--experiences {
  top: 2%;
  left: 50%;
  transform: translateX(-50%);
}

.orientation-map__node--recommendations {
  top: 23%;
  right: 0;
}

.orientation-map__node--products {
  right: 1%;
  bottom: 13%;
}

.orientation-map__node--routines {
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.orientation-map__node--knowledge {
  bottom: 13%;
  left: 1%;
}

.orientation-map__node--exchange {
  top: 23%;
  left: 0;
}

/* Tablet */

@media (max-width: 1050px) {
  .home-orientation-grid {
    grid-template-columns: 1fr;
  }

  .home-orientation-copy {
    max-width: 680px;
  }

  .orientation-map {
    width: min(100%, 700px);
    margin-inline: auto;
  }
}

/* Mobile */

@media (max-width: 700px) {
  .home-orientation-section {
    padding: 4.5rem 0;
  }

  .orientation-map {
    display: grid;
    grid-template-columns: 1fr;
    min-height: 0;
    gap: 0.75rem;
    margin-top: 1rem;
  }

  .orientation-map__lines {
    display: none;
  }

  .orientation-map__center,
  .orientation-map__node {
    position: static;
    width: 100%;
    min-width: 0;
    height: auto;
    transform: none;
  }

  .orientation-map__center {
    order: -1;
    min-height: 135px;
    padding: 1.8rem;
    border: 7px solid rgba(255, 255, 255, 0.9);
    border-radius: 24px;
  }

  .orientation-map__node {
    justify-content: flex-start;
    min-height: 58px;
    padding: 0.8rem 1rem;
    border-radius: 14px;
    text-align: left;
  }
}
/* =========================================================
   Jung Leben – Robertos Reise und Erfahrungen
   ========================================================= */

.home-journey-section {
  padding: clamp(5rem, 9vw, 8rem) 0;
  background: #ffffff;
}

.home-journey-layout {
  display: grid;
  grid-template-columns:
    minmax(320px, 0.9fr)
    minmax(520px, 1.35fr);
  align-items: stretch;
  gap: clamp(2rem, 4vw, 4rem);
}

/* Linker Einleitungsbereich */

.home-journey-heading {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  min-height: 470px;
  padding: clamp(2.3rem, 4vw, 3.5rem);
  background: #e2f6df;
  border: 1px solid rgba(7, 63, 29, 0.08);
  border-radius: 26px;
}

.home-journey-heading .eyebrow {
  margin: 0 0 1.1rem;
  color: #0a5227;
  font-size: 0.77rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  line-height: 1.4;
  text-transform: uppercase;
}

.home-journey-heading h2 {
  max-width: 10ch;
  margin: 0;
  color: #073f1d;
  font-size: clamp(2.5rem, 4vw, 3.8rem);
  font-weight: 750;
  letter-spacing: -0.04em;
  line-height: 1.02;
}

.home-journey-heading__text {
  max-width: 390px;
  margin: 1.5rem 0 0;
  color: #45604d;
  font-size: 1.03rem;
  line-height: 1.7;
}

.home-journey-heading .btn {
  margin-top: 2rem;
}

/* Slider */

.journey-slider {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  min-height: 470px;
  overflow: hidden;
  background:
    radial-gradient(
      circle at 92% 8%,
      rgba(245, 207, 104, 0.16),
      transparent 36%
    ),
    linear-gradient(
      145deg,
      #073f1d 0%,
      #0c572b 100%
    );
  color: #ffffff;
  border-radius: 26px;
  box-shadow: 0 24px 55px rgba(7, 63, 29, 0.16);
  outline: none;
}

.journey-slider:focus-visible {
  outline: 3px solid #f5cf68;
  outline-offset: 5px;
}

.journey-slider__viewport {
  position: relative;
  flex: 1;
  min-height: 380px;
}

/* Slides */

.journey-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  visibility: hidden;
  padding: clamp(2.7rem, 5vw, 5rem);
  opacity: 0;
  pointer-events: none;
  transform: translateX(22px);
  transition:
    opacity 360ms ease,
    transform 360ms ease,
    visibility 360ms ease;
}

.journey-slide.is-active {
  position: relative;
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
}

.journey-slide__content {
  width: 100%;
  max-width: 650px;
  margin-inline: auto;
}

.journey-slide__label {
  margin: 0 0 1rem;
  color: #f5cf68;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  line-height: 1.4;
  text-transform: uppercase;
}

.journey-slide h3 {
  max-width: 12ch;
  margin: 0;
  color: #ffffff;
  font-size: clamp(2.5rem, 4.5vw, 4.2rem);
  font-weight: 750;
  letter-spacing: -0.04em;
  line-height: 1.04;
}

.journey-slide__text {
  max-width: 620px;
  margin: 1.6rem 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1rem, 1.3vw, 1.1rem);
  line-height: 1.72;
}

.journey-slide__tag {
  display: inline-flex;
  align-items: center;
  min-height: 35px;
  margin-top: 1.8rem;
  padding: 0.45rem 0.95rem;
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
}

/* Slider-Footer */

.journey-slider__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 74px;
  padding: 0.9rem 1.4rem;
  background: rgba(0, 0, 0, 0.06);
  border-top: 1px solid rgba(255, 255, 255, 0.13);
}

.journey-slider__controls {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.journey-slider__arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  padding: 0;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.05rem;
  transition:
    background-color 180ms ease,
    color 180ms ease,
    border-color 180ms ease,
    transform 180ms ease;
}

.journey-slider__arrow:hover,
.journey-slider__arrow:focus-visible {
  background: #f5cf68;
  color: #073f1d;
  border-color: #f5cf68;
  transform: translateY(-2px);
}

.journey-slider__dots {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.journey-slider__dot {
  width: 9px;
  height: 9px;
  padding: 0;
  background: rgba(255, 255, 255, 0.33);
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  transition:
    width 180ms ease,
    background-color 180ms ease;
}

.journey-slider__dot.is-active {
  width: 26px;
  background: #f5cf68;
}

.journey-slider__status {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.83rem;
  font-variant-numeric: tabular-nums;
}

/* Tablet */

@media (max-width: 1050px) {
  .home-journey-layout {
    grid-template-columns: 1fr;
  }

  .home-journey-heading {
    min-height: auto;
  }

  .home-journey-heading h2 {
    max-width: 14ch;
  }
}

/* Mobile */

@media (max-width: 650px) {
  .home-journey-section {
    padding: 4.5rem 0;
  }

  .home-journey-heading,
  .journey-slider {
    border-radius: 20px;
  }

  .home-journey-heading {
    padding: 2.2rem 1.4rem;
  }

  .home-journey-heading h2 {
    max-width: none;
    font-size: clamp(2.4rem, 11vw, 3.3rem);
  }

  .journey-slider__viewport {
    min-height: 440px;
  }

  .journey-slide {
    padding: 2.5rem 1.5rem;
  }

  .journey-slide h3 {
    max-width: none;
    font-size: clamp(2.25rem, 10vw, 3.2rem);
  }

  .journey-slider__footer {
    min-height: 68px;
    padding: 0.8rem 1rem;
  }

  .journey-slider__status {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .journey-slide,
  .journey-slider__arrow,
  .journey-slider__dot {
    transition: none;
  }
}
/* =========================================================
   Jung Leben – mögliche Tagesroutinen
   ========================================================= */

.home-routines-section {
  position: relative;
  overflow: hidden;
  padding: clamp(5rem, 9vw, 8rem) 0;
  background:
    radial-gradient(
      circle at 8% 15%,
      rgba(189, 238, 209, 0.45),
      transparent 34%
    ),
    radial-gradient(
      circle at 90% 85%,
      rgba(245, 207, 104, 0.25),
      transparent 34%
    ),
    #f6f4ec;
}

.home-routines-layout {
  display: grid;
  grid-template-columns:
    minmax(300px, 0.9fr)
    minmax(480px, 1.1fr);
  align-items: center;
  gap: clamp(3rem, 7vw, 7rem);
}

/* Textbereich */

.home-routines-copy {
  max-width: 540px;
}

.home-routines-copy .eyebrow {
  margin: 0 0 1rem;
  color: #0a5227;
}

.home-routines-copy h2 {
  margin: 0;
  color: #073f1d;
  font-size: clamp(2.6rem, 5vw, 4.5rem);
  font-weight: 750;
  letter-spacing: -0.045em;
  line-height: 1;
}

.home-routines-copy > p {
  margin: 1.35rem 0 0;
  color: #52655a;
  font-size: 1.04rem;
  line-height: 1.72;
}

.home-routines-copy .btn {
  margin-top: 2rem;
}

/* Routinenkarte */

.home-routines-card {
  display: grid;
  gap: 0.85rem;
  padding: clamp(1.2rem, 3vw, 2rem);
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(7, 63, 29, 0.09);
  border-radius: 28px;
  box-shadow: 0 24px 55px rgba(7, 63, 29, 0.12);
  backdrop-filter: blur(12px);
}

.routine-time {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  min-height: 105px;
  padding: 1.25rem 1.4rem;
  background: #f5f1e5;
  border: 1px solid rgba(7, 63, 29, 0.07);
  border-radius: 18px;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.routine-time:hover {
  border-color: rgba(7, 63, 29, 0.18);
  box-shadow: 0 12px 25px rgba(7, 63, 29, 0.08);
  transform: translateY(-2px);
}

.routine-time__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 48px;
  height: 48px;
  background: #ffffff;
  color: #0a5227;
  border-radius: 50%;
  box-shadow: 0 7px 18px rgba(7, 63, 29, 0.08);
  font-size: 1.15rem;
}

.routine-time__content {
  min-width: 0;
}

.routine-time__label {
  margin: 0;
  color: #0a5227;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  line-height: 1.3;
  text-transform: uppercase;
}

.routine-time__products {
  margin: 0.35rem 0 0;
  color: #243c2e;
  font-size: 0.98rem;
  font-weight: 650;
  line-height: 1.5;
}

/* Informationshinweis */

.home-routines-notice {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: flex-start;
  gap: 0.85rem;
  margin-top: 0.35rem;
  padding: 1.15rem 1.25rem;
  background: #fff8df;
  color: #54491e;
  border: 1px solid rgba(168, 133, 25, 0.2);
  border-radius: 16px;
}

.home-routines-notice__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 27px;
  height: 27px;
  background: #f5cf68;
  color: #073f1d;
  border-radius: 50%;
  font-size: 0.83rem;
  font-weight: 800;
}

.home-routines-notice p {
  margin: 0;
  font-size: 0.87rem;
  line-height: 1.58;
}

/* Tablet */

@media (max-width: 1000px) {
  .home-routines-layout {
    grid-template-columns: 1fr;
  }

  .home-routines-copy {
    max-width: 680px;
  }
}

/* Mobile */

@media (max-width: 600px) {
  .home-routines-section {
    padding: 4.5rem 0;
  }

  .home-routines-card {
    padding: 1rem;
    border-radius: 21px;
  }

  .routine-time {
    align-items: flex-start;
    min-height: 0;
    padding: 1.1rem;
    border-radius: 15px;
  }

  .routine-time__icon {
    width: 42px;
    height: 42px;
  }

  .home-routines-notice {
    grid-template-columns: 1fr;
  }
}
/* =========================================================
   Jung Leben – Community und Kontakt
   ========================================================= */

.home-community-section {
  position: relative;
  overflow: hidden;
  padding: clamp(5rem, 9vw, 8rem) 0;
  background: #ffffff;
}

.home-community-section::before {
  position: absolute;
  top: -180px;
  right: -140px;
  width: 430px;
  height: 430px;
  background: rgba(210, 244, 207, 0.55);
  border-radius: 50%;
  content: "";
}

.home-community-card {
  position: relative;
  display: grid;
  grid-template-columns:
    minmax(0, 1.35fr)
    minmax(260px, 0.65fr);
  align-items: center;
  gap: clamp(2.5rem, 6vw, 6rem);
  overflow: hidden;
  padding: clamp(2.5rem, 6vw, 5.5rem);
  background:
    radial-gradient(
      circle at 90% 15%,
      rgba(245, 207, 104, 0.2),
      transparent 32%
    ),
    linear-gradient(
      135deg,
      #d9f8d5 0%,
      #edf9e9 58%,
      #f8f5ea 100%
    );
  border: 1px solid rgba(7, 63, 29, 0.08);
  border-radius: 30px;
  box-shadow: 0 26px 60px rgba(7, 63, 29, 0.11);
}

/* Textbereich */

.home-community-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
}

.home-community-content .eyebrow {
  margin: 0 0 1rem;
  color: #0a5227;
}

.home-community-content h2 {
  max-width: 16ch;
  margin: 0;
  color: #073f1d;
  font-size: clamp(2.7rem, 5.5vw, 5rem);
  font-weight: 750;
  letter-spacing: -0.045em;
  line-height: 1;
}

.home-community-content p {
  max-width: 680px;
  margin: 1.25rem 0 0;
  color: #52655a;
  font-size: 1.04rem;
  line-height: 1.72;
}

.home-community-content .home-community-lead {
  color: #294433;
  font-size: clamp(1.05rem, 1.5vw, 1.18rem);
  font-weight: 600;
}

/* Rechte Aktionsseite */

.home-community-action {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  min-height: 320px;
  text-align: center;
}

/* Symbol für Austausch und Community */

.home-community-symbol {
  position: relative;
  width: 155px;
  height: 155px;
  margin-bottom: 2rem;
}

.home-community-symbol::before,
.home-community-symbol::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 115px;
  height: 2px;
  background: rgba(7, 63, 29, 0.28);
  content: "";
  transform-origin: center;
}

.home-community-symbol::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.home-community-symbol::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.home-community-symbol__center {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 74px;
  height: 74px;
  background: #073f1d;
  color: #ffffff;
  border: 7px solid rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  box-shadow: 0 15px 30px rgba(7, 63, 29, 0.2);
  font-size: 1rem;
  font-weight: 800;
  transform: translate(-50%, -50%);
}

.home-community-symbol__point {
  position: absolute;
  z-index: 2;
  width: 26px;
  height: 26px;
  background: #f5cf68;
  border: 5px solid #ffffff;
  border-radius: 50%;
  box-shadow: 0 8px 18px rgba(7, 63, 29, 0.13);
}

.home-community-symbol__point--one {
  top: 5px;
  left: 5px;
}

.home-community-symbol__point--two {
  top: 5px;
  right: 5px;
}

.home-community-symbol__point--three {
  right: 5px;
  bottom: 5px;
}

.home-community-symbol__point--four {
  bottom: 5px;
  left: 5px;
}

/* Kontaktbutton */

.home-community-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  min-width: 190px;
}

.home-community-button span {
  font-size: 1.15rem;
  transition: transform 180ms ease;
}

.home-community-button:hover span {
  transform: translateX(4px);
}

.home-community-note {
  margin: 0.9rem 0 0;
  color: #597062;
  font-size: 0.85rem;
}

/* Tablet */

@media (max-width: 950px) {
  .home-community-card {
    grid-template-columns: 1fr;
  }

  .home-community-action {
    align-items: flex-start;
    min-height: auto;
    text-align: left;
  }

  .home-community-symbol {
    display: none;
  }
}

/* Mobile */

@media (max-width: 600px) {
  .home-community-section {
    padding: 4.5rem 0;
  }

  .home-community-card {
    gap: 2rem;
    padding: 2.4rem 1.4rem;
    border-radius: 22px;
  }

  .home-community-content h2 {
    max-width: none;
    font-size: clamp(2.5rem, 12vw, 3.6rem);
  }

  .home-community-button {
    width: 100%;
  }
}

/* =========================================================
   ACCESSIBILITY
   ========================================================= */

.screen-reader-text {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}


/* =========================================================
   PRODUKT – EINZELANSICHT
   ========================================================= */

.product-single {
  background: #f8faf7;
  color: #173c32;
}

/* Breadcrumb */

.product-breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-top: 30px;
  padding-bottom: 22px;
  color: #6f7e77;
  font-size: 0.84rem;
}

.product-breadcrumb a {
  color: #496a5f;
  font-weight: 650;
  text-decoration: none;
}

.product-breadcrumb a:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

/* Produkt Hero */

.product-hero {
  padding: 18px 0 86px;
}

.product-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(55px, 7vw, 105px);
  align-items: center;
}

.product-hero__media {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 54px;
  background: #ffffff;
  border: 1px solid rgba(23, 60, 50, 0.08);
  border-radius: 30px;
  box-shadow: 0 24px 70px rgba(28, 66, 55, 0.08);
}

.product-hero__image {
  display: block;
  width: 100%;
  height: 100%;
  max-height: 500px;
  object-fit: contain;
}

.product-hero__placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 180px;
  height: 180px;
  background: #eef4e9;
  border-radius: 50%;
  font-size: 4.5rem;
}

.product-hero__content {
  max-width: 680px;
}

.product-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 22px;
}

.product-badge {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 13px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.03em;
}

.product-badge--neutral {
  color: #51645c;
  background: #edf1ee;
}

.product-badge--interesting {
  color: #496233;
  background: #edf4df;
}

.product-badge--recommended {
  color: #254d3e;
  background: #dcebd3;
}

.product-badge--favorite {
  color: #ffffff;
  background: #315b49;
}

.product-badge--tested {
  color: #6a5626;
  background: #f5efd9;
}

.product-hero__brand {
  margin: 0 0 10px;
  color: #718078;
  font-size: 0.83rem;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.product-hero__title {
  max-width: 690px;
  margin: 0;
  color: #173c32;
  font-size: clamp(2.8rem, 5vw, 5rem);
  font-weight: 720;
  line-height: 0.99;
  letter-spacing: -0.055em;
}

.product-hero__excerpt {
  max-width: 630px;
  margin: 26px 0 0;
  color: #566a61;
  font-size: clamp(1.04rem, 1.4vw, 1.2rem);
  line-height: 1.68;
}

.product-hero__categories {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 25px;
}

.product-hero__categories span {
  padding: 8px 12px;
  color: #49665b;
  background: #eef3eb;
  border-radius: 999px;
  font-size: 0.77rem;
  font-weight: 650;
}

/* Kaufkarte */

.product-purchase-card {
  margin-top: 32px;
  padding: 25px;
  background: #ffffff;
  border: 1px solid rgba(23, 60, 50, 0.09);
  border-radius: 21px;
  box-shadow: 0 16px 46px rgba(30, 64, 54, 0.07);
}

.product-purchase-card__price {
  margin: 0;
  color: #173c32;
  font-size: 1.38rem;
  font-weight: 750;
}

.product-purchase-card__partner {
  margin: 7px 0 0;
  color: #738179;
  font-size: 0.86rem;
}

.product-purchase-card__partner strong {
  color: #435d53;
}

.product-purchase-card__discount {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 18px;
  padding: 11px 14px;
  background: #f3f7ee;
  border-radius: 10px;
  color: #5b6d62;
  font-size: 0.82rem;
}

.product-purchase-card__discount strong {
  color: #173c32;
  letter-spacing: 0.05em;
}

.product-purchase-card__button {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 20px;
}

/* Produktdetails */

.product-details {
  padding: 90px 0 110px;
  background: #ffffff;
}

.product-details__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: clamp(60px, 8vw, 115px);
  align-items: start;
}

.product-details__main {
  min-width: 0;
}

.product-section {
  max-width: 780px;
  padding: 0 0 70px;
}

.product-section + .product-section {
  padding-top: 10px;
  border-top: 1px solid rgba(23, 60, 50, 0.08);
}

.product-section .eyebrow {
  margin-top: 45px;
}

.product-section:first-child .eyebrow {
  margin-top: 0;
}

.product-section h2 {
  max-width: 700px;
  margin: 10px 0 24px;
  color: #173c32;
  font-size: clamp(2rem, 3.1vw, 3rem);
  line-height: 1.05;
  letter-spacing: -0.035em;
}

.product-rich-text {
  color: #52655c;
  font-size: 1.02rem;
  line-height: 1.78;
}

.product-rich-text p:last-child {
  margin-bottom: 0;
}

/* Persönliche Erfahrung */

.product-experience {
  position: relative;
  max-width: 820px;
  margin-bottom: 70px;
  padding: 42px 44px;
  color: #ffffff;
  background: #244f40;
  border-radius: 25px;
}

.product-experience .eyebrow {
  margin-top: 0;
  color: #cae1a0;
}

.product-experience h2 {
  color: #ffffff;
}

.product-experience__text {
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.04rem;
  line-height: 1.75;
}

.product-experience__text p:last-child {
  margin-bottom: 0;
}

/* Vorteile / Hinweise */

.product-pros-cons {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  max-width: 820px;
}

.product-pros-cons__card {
  padding: 28px;
  background: #f6f8f5;
  border: 1px solid rgba(23, 60, 50, 0.07);
  border-radius: 20px;
}

.product-pros-cons__card--positive {
  background: #f1f6e9;
}

.product-pros-cons__card h3 {
  margin: 0 0 17px;
  color: #244c3e;
  font-size: 1.05rem;
}

.product-pros-cons__card ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.product-pros-cons__card li {
  position: relative;
  margin-bottom: 11px;
  padding-left: 23px;
  color: #56675f;
  line-height: 1.5;
}

.product-pros-cons__card li:last-child {
  margin-bottom: 0;
}

.product-pros-cons__card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #6d9145;
  font-weight: 800;
}

.product-pros-cons__card p {
  color: #56675f;
  line-height: 1.65;
}

.product-pros-cons__card p:last-child {
  margin-bottom: 0;
}

/* Sidebar */

.product-details__sidebar {
  position: sticky;
  top: 120px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.product-info-card {
  padding: 22px;
  background: #f7f9f6;
  border: 1px solid rgba(23, 60, 50, 0.08);
  border-radius: 17px;
}

.product-info-card__label {
  margin: 0 0 11px;
  color: #78867e;
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-info-card strong {
  color: #294f42;
}

.product-info-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.product-info-card__tags span {
  padding: 7px 10px;
  color: #425f54;
  background: #e9f0e4;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 650;
}

.product-info-card--notice {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 12px;
  background: #fbfaf5;
}

.product-info-card__notice-icon {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #566c46;
  background: #e8efd9;
  border-radius: 50%;
  font-size: 0.8rem;
  font-weight: 800;
}

.product-info-card--notice p {
  margin: 0;
  color: #667269;
  font-size: 0.79rem;
  line-height: 1.58;
}

/* Affiliate-Hinweis */

.product-affiliate-notice {
  padding: 25px 0;
  background: #eef3eb;
  border-top: 1px solid rgba(23, 60, 50, 0.07);
}

.product-affiliate-notice p {
  max-width: 950px;
  margin: 0;
  color: #64736b;
  font-size: 0.78rem;
  line-height: 1.6;
}

/* Produkt – Tablet */

@media (max-width: 960px) {
  .product-hero__grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .product-hero__media {
    min-height: 460px;
  }

  .product-hero__content {
    max-width: 760px;
  }

  .product-details__grid {
    grid-template-columns: 1fr;
    gap: 55px;
  }

  .product-details__sidebar {
    position: static;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Produkt – Mobile */

@media (max-width: 620px) {
  .product-breadcrumb {
    padding-top: 22px;
    font-size: 0.76rem;
  }

  .product-hero {
    padding: 8px 0 58px;
  }

  .product-hero__grid {
    gap: 37px;
  }

  .product-hero__media {
    min-height: 320px;
    padding: 30px;
    border-radius: 22px;
  }

  .product-hero__image {
    max-height: 300px;
  }

  .product-hero__title {
    font-size: clamp(2.55rem, 12vw, 3.8rem);
  }

  .product-hero__excerpt {
    margin-top: 20px;
    font-size: 1rem;
  }

  .product-purchase-card {
    margin-top: 27px;
    padding: 20px;
    border-radius: 17px;
  }

  .product-details {
    padding: 65px 0 80px;
  }

  .product-section {
    padding-bottom: 50px;
  }

  .product-section h2 {
    font-size: clamp(1.8rem, 8vw, 2.5rem);
  }

  .product-experience {
    margin-bottom: 50px;
    padding: 30px 24px;
    border-radius: 20px;
  }

  .product-pros-cons {
    grid-template-columns: 1fr;
  }

  .product-details__sidebar {
    grid-template-columns: 1fr;
  }
}


/* =========================================================
   EMPFEHLUNGEN – ÜBERSICHT
   ========================================================= */

.recommendations-page {
  background: #f7f9f6;
  color: #173c32;
}

/* Hero */

.recommendations-hero {
  padding: 140px 0 70px;
  background: #ffffff;
}

.recommendations-hero__inner {
  max-width: 860px;
}

.recommendations-hero h1 {
  margin: 10px 0 0;
  color: #173c32;
  font-size: clamp(3.2rem, 6vw, 6rem);
  font-weight: 720;
  line-height: 0.97;
  letter-spacing: -0.055em;
}

.recommendations-hero__text {
  max-width: 700px;
  margin-top: 27px;
  color: #5b6d64;
  font-size: clamp(1.03rem, 1.4vw, 1.17rem);
  line-height: 1.72;
}

.recommendations-hero__text p:last-child {
  margin-bottom: 0;
}

/* Katalog */

.recommendations-catalogue {
  padding: 55px 0 110px;
}

/* Suche */

.recommendations-tools {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 24px;
}

.recommendations-search {
  width: min(100%, 480px);
}

.recommendations-search__field {
  position: relative;
}

.recommendations-search__icon {
  position: absolute;
  top: 50%;
  left: 17px;
  transform: translateY(-50%);
  color: #789087;
  font-size: 1.3rem;
  pointer-events: none;
}

.recommendations-search input {
  width: 100%;
  height: 54px;
  padding: 0 18px 0 48px;
  color: #173c32;
  background: #ffffff;
  border: 1px solid rgba(23, 60, 50, 0.12);
  border-radius: 999px;
  font: inherit;
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.recommendations-search input::placeholder {
  color: #8b9992;
}

.recommendations-search input:focus {
  border-color: rgba(66, 104, 90, 0.55);
  box-shadow: 0 0 0 4px rgba(76, 118, 101, 0.08);
}

.recommendations-count {
  margin: 0;
  color: #77847d;
  font-size: 0.88rem;
}

.recommendations-count strong {
  color: #31594a;
}

/* Kategorie-Filter */

.recommendations-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 43px;
}

.recommendations-filter {
  min-height: 39px;
  padding: 8px 15px;
  color: #50685e;
  background: transparent;
  border: 1px solid rgba(36, 77, 63, 0.16);
  border-radius: 999px;
  cursor: pointer;
  font: inherit;
  font-size: 0.8rem;
  font-weight: 650;
  transition: color 170ms ease, background 170ms ease, border-color 170ms ease, transform 170ms ease;
}

.recommendations-filter:hover {
  transform: translateY(-1px);
  border-color: rgba(36, 77, 63, 0.35);
}

.recommendations-filter.is-active {
  color: #ffffff;
  background: #315b49;
  border-color: #315b49;
}

/* Erweiterte Filter */

.recommendations-secondary-filters {
  display: flex;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 14px;
  margin: -20px 0 42px;
}

.recommendations-select {
  min-width: 210px;
}

.recommendations-select label {
  display: block;
  margin: 0 0 7px;
  color: #718078;
  font-size: 0.7rem;
  font-weight: 750;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.recommendations-select select {
  width: 100%;
  height: 46px;
  padding: 0 38px 0 14px;
  color: #315448;
  background: #ffffff;
  border: 1px solid rgba(23, 60, 50, 0.13);
  border-radius: 12px;
  font: inherit;
  font-size: 0.84rem;
  font-weight: 600;
  cursor: pointer;
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.recommendations-select select:focus {
  border-color: rgba(49, 91, 73, 0.48);
  box-shadow: 0 0 0 4px rgba(49, 91, 73, 0.07);
}

.recommendations-reset {
  min-height: 46px;
  padding: 0 16px;
  color: #63766c;
  background: transparent;
  border: 1px solid rgba(23, 60, 50, 0.13);
  border-radius: 12px;
  cursor: pointer;
  font: inherit;
  font-size: 0.78rem;
  font-weight: 650;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease;
}

.recommendations-reset:hover {
  color: #244c3e;
  background: #eef3eb;
  border-color: rgba(23, 60, 50, 0.22);
}

/* Produktgrid */

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

/* Produktkarte */

.recommendation-card {
  min-width: 0;
}

.recommendation-card[hidden] {
  display: none;
}

.recommendation-card__link {
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  color: inherit;
  background: #ffffff;
  border: 1px solid rgba(23, 60, 50, 0.08);
  border-radius: 23px;
  box-shadow: 0 14px 40px rgba(24, 62, 51, 0.055);
  text-decoration: none;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.recommendation-card__link:hover {
  transform: translateY(-5px);
  border-color: rgba(45, 89, 72, 0.16);
  box-shadow: 0 24px 58px rgba(24, 62, 51, 0.11);
}

/* Bild */

.recommendation-card__media {
  position: relative;
  aspect-ratio: 1 / 0.82;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px;
  background: linear-gradient(145deg, #f7f9f4, #eef3ea);
  overflow: hidden;
}

.recommendation-card__image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 260ms ease;
}

.recommendation-card__link:hover .recommendation-card__image {
  transform: scale(1.025);
}

.recommendation-card__placeholder {
  width: 105px;
  height: 105px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #e7efe0;
  border-radius: 50%;
  font-size: 3.1rem;
}

.recommendation-card__featured {
  position: absolute;
  top: 17px;
  left: 17px;
  padding: 7px 11px;
  color: #ffffff;
  background: #315b49;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 750;
  letter-spacing: 0.04em;
}

/* Inhalt */

.recommendation-card__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 25px 25px 23px;
}

.recommendation-card__brand {
  margin: 0 0 11px;
  color: #7b8982;
  font-size: 0.7rem;
  font-weight: 750;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.recommendation-card__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 15px;
}

.recommendation-card__badge {
  padding: 6px 9px;
  border-radius: 999px;
  font-size: 0.64rem;
  font-weight: 700;
  line-height: 1.1;
}

.recommendation-card__badge--neutral {
  color: #566960;
  background: #eef1ef;
}

.recommendation-card__badge--interesting {
  color: #526738;
  background: #edf4df;
}

.recommendation-card__badge--recommended {
  color: #28503f;
  background: #deead7;
}

.recommendation-card__badge--favorite {
  color: #ffffff;
  background: #315b49;
}

.recommendation-card__badge--tested {
  color: #715c25;
  background: #f5efd9;
}

.recommendation-card__title {
  margin: 0;
  color: #173c32;
  font-size: clamp(1.35rem, 2vw, 1.75rem);
  font-weight: 700;
  line-height: 1.13;
  letter-spacing: -0.025em;
}

.recommendation-card__excerpt {
  margin: 15px 0 0;
  color: #64756d;
  font-size: 0.89rem;
  line-height: 1.62;
}

.recommendation-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: auto;
  padding-top: 24px;
  color: #315b49;
  font-size: 0.84rem;
  font-weight: 700;
}

.recommendation-card__footer span:last-child {
  font-size: 1.1rem;
  transition: transform 180ms ease;
}

.recommendation-card__link:hover .recommendation-card__footer span:last-child {
  transform: translateX(4px);
}

/* Keine Treffer */

.recommendations-empty {
  max-width: 580px;
  margin: 65px auto 0;
  text-align: center;
}

.recommendations-empty[hidden] {
  display: none;
}

.recommendations-empty__icon {
  width: 58px;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  color: #5c795f;
  background: #e9f0e3;
  border-radius: 50%;
  font-size: 1.5rem;
}

.recommendations-empty h2 {
  margin: 0;
  color: #244c3e;
  font-size: clamp(1.5rem, 3vw, 2rem);
}

.recommendations-empty p {
  margin: 10px 0 0;
  color: #718078;
}

/* Empfehlungen – Tablet */

@media (max-width: 980px) {
  .recommendations-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Empfehlungen – Mobile */

@media (max-width: 620px) {
  .recommendations-hero {
    padding: 105px 0 50px;
  }

  .recommendations-hero h1 {
    font-size: clamp(2.9rem, 14vw, 4.4rem);
  }

  .recommendations-catalogue {
    padding: 40px 0 80px;
  }

  .recommendations-tools {
    align-items: flex-start;
    flex-direction: column;
    gap: 13px;
  }

  .recommendations-search {
    width: 100%;
  }

  .recommendations-filters {
    flex-wrap: nowrap;
    width: calc(100vw - 18px);
    margin-right: -18px;
    margin-bottom: 32px;
    padding-right: 18px;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .recommendations-filters::-webkit-scrollbar {
    display: none;
  }

  .recommendations-filter {
    flex: 0 0 auto;
    white-space: nowrap;
  }

  .recommendations-secondary-filters {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 11px;
    margin: -10px 0 32px;
  }

  .recommendations-select {
    min-width: 0;
  }

  .recommendations-reset {
    grid-column: 1 / -1;
    width: 100%;
  }

  .recommendations-grid {
    grid-template-columns: 1fr;
    gap: 19px;
  }

  .recommendation-card__media {
    aspect-ratio: 1 / 0.78;
  }
}

/* Empfehlungen – sehr kleine Geräte */

@media (max-width: 390px) {
  .recommendations-secondary-filters {
    grid-template-columns: 1fr;
  }

  .recommendations-reset {
    grid-column: auto;
  }
}

/* =========================================================
   STARTSEITE – ROUTINEN DIREKT MIT EMPFEHLUNGEN VERKNÜPFEN
   ========================================================= */

.routine-time--linkable {
  position: relative;
  padding-right: 4.25rem;
  cursor: pointer;
  outline: none;
}

.routine-time--linkable:hover {
  border-color: rgba(7, 63, 29, 0.25);
  box-shadow: 0 14px 30px rgba(7, 63, 29, 0.11);
}

.routine-time--linkable:focus-visible {
  border-color: rgba(7, 63, 29, 0.34);
  outline: 3px solid rgba(245, 207, 104, 0.9);
  outline-offset: 4px;
}

.routine-time__arrow {
  position: absolute;
  top: 50%;
  right: 1.35rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  color: #0a5227;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(7, 63, 29, 0.08);
  border-radius: 50%;
  box-shadow: 0 7px 18px rgba(7, 63, 29, 0.07);
  font-size: 1rem;
  font-weight: 800;
  transform: translateY(-50%);
  transition:
    transform 180ms ease,
    background 180ms ease,
    color 180ms ease;
}

.routine-time--linkable:hover .routine-time__arrow,
.routine-time--linkable:focus-visible .routine-time__arrow {
  color: #ffffff;
  background: #0a5227;
  transform: translate(3px, -50%);
}

@media (max-width: 600px) {
  .routine-time--linkable {
    padding-right: 3.65rem;
  }

  .routine-time__arrow {
    right: 1rem;
    width: 31px;
    height: 31px;
    font-size: 0.92rem;
  }
}

