@font-face {
  font-family: "Inter";
  src: url(../fonts/Inter-VariableFont_opsz\,wght.ttf);
  font-display: swap;
}
@font-face {
  font-family: "Space Grotesk";
  src: url(../fonts/SpaceGrotesk-VariableFont_wght.ttf);
  font-display: swap;
}
:root {
  --color-bg: #f9f7f2;
  --color-surface: #ffffff;
  --color-primary: #2b5e3b;
  --color-accent: #c38e5d;
  --color-text: #2c2b28;
  --color-text-light: #6b6a65;
  --color-border: #e2ddd6;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-heading: 'Space Grotesk', sans-serif;
  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.06);
  --radius-card: 16px;
  --radius-btn: 40px;
  --transition: all 0.25s ease;
}
html {
  scroll-behavior: smooth;
}
textarea {
  resize: none;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  font-family: var(--font-body);
  background-color: var(--color-bg);
  color: var(--color-text);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.container--narrow {
  max-width: 880px;
}

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

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

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: var(--radius-btn);
  font-weight: 600;
  font-family: var(--font-heading);
  transition: var(--transition);
  border: none;
  cursor: pointer;
  background: transparent;
}

.btn--primary {
  background: var(--color-primary);
  color: white;
  box-shadow: 0 6px 14px rgba(43, 94, 59, 0.2);
}
.btn--primary:hover {
  background: #1f4a2d;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(43, 94, 59, 0.25);
}

.btn--full {
  width: 100%;
  justify-content: center;
}

.section-header {
  text-align: center;
  margin-bottom: 48px;
}
.overline {
  display: block;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--color-accent);
  margin-bottom: 12px;
  font-weight: 600;
}
h1,
h2,
h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
}
h1 {
  font-size: clamp(2.5rem, 5vw, 3.8rem);
  margin-bottom: 20px;
}
h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin-bottom: 16px;
}

.header {
  background: var(--color-surface);
  padding: 16px 0;
  border-bottom: 1px solid var(--color-border);
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(8px);
  background: rgba(255, 255, 255, 0.8);
}
.header__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo__link {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--color-primary);
}
.logo__link img {
  width: 32px;
  height: 32px;
}
.notice-badge {
  background: var(--color-accent);
  color: white;
  padding: 6px 16px;
  border-radius: 40px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}
.burger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 22px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
.burger__line {
  width: 100%;
  height: 3px;
  background: var(--color-primary);
  border-radius: 4px;
  transition: var(--transition);
}
.mobile-nav {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--color-surface);
  padding: 20px 24px;
  box-shadow: var(--shadow-md);
  transform: translateY(-10px);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  border-bottom: 1px solid var(--color-border);
}
.mobile-nav.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.mobile-nav__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.mobile-nav__list a {
  font-weight: 600;
  font-size: 1.2rem;
}
@media (max-width: 768px) {
  .burger {
    display: flex;
  }
  .header__notice {
    margin-left: auto;
    margin-right: 20px;
  }
}

.hero {
  padding: 60px 0 40px;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
}
.hero__title .accent {
  color: var(--color-accent);
}
.hero__subtitle {
  font-size: 1.2rem;
  margin-bottom: 24px;
  color: var(--color-text-light);
}
.hero__price {
  margin-bottom: 32px;
}
.price__current {
  font-size: 2.5rem;
  font-weight: 700;
  font-family: var(--font-heading);
  color: var(--color-primary);
}
.hero__cta {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.hero__note {
  color: var(--color-text-light);
}
.hero__image-wrapper {
  background: #e9e1d6;
  border-radius: 40% 60% 30% 70% / 50% 40% 60% 50%;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.hero__image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 768px) {
  .hero__grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero__cta {
    justify-content: center;
  }
}

.product-vorteile-merged {
  padding: 60px 0;
  background: var(--color-surface);
  border-radius: 48px 48px 0 0;
}
.merged__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: start;
}
.merged__gallery-main {
  border-radius: 24px;
  overflow: hidden;
  margin-bottom: 16px;
  box-shadow: var(--shadow-sm);
  aspect-ratio: 1/1;
  cursor: zoom-in;
}
.merged__gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.2s;
}
.merged__gallery-thumbs {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.merged__gallery-thumbs .thumb {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 12px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
}
.merged__gallery-thumbs .thumb.active {
  border-color: var(--color-accent);
}
.merged__info .overline {
  margin-bottom: 8px;
}
.feature-list {
  list-style: none;
  margin: 24px 0 28px;
}
.feature-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
  font-size: 1.1rem;
}
.feature-list i {
  color: var(--color-primary);
  font-size: 1.5rem;
  width: 28px;
}
.benefits-inline {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 20px;
}
.benefit-tag {
  background: var(--color-bg);
  padding: 12px 16px;
  border-radius: 60px;
  font-size: 0.95rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--color-border);
}
.benefit-tag i {
  color: var(--color-accent);
  width: 20px;
}
@media (max-width: 768px) {
  .merged__grid {
    grid-template-columns: 1fr;
  }
  .benefits-inline {
    grid-template-columns: 1fr;
  }
}

.testimonials {
  padding: 60px 0;
  background: var(--color-surface);
  border-radius: 48px;
  margin: 0 20px;
}
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: var(--color-bg);
  padding: 28px;
  border-radius: 24px;
}
.testimonial__stars {
  color: #e6b91e;
  margin-bottom: 16px;
}
.testimonial__text {
  font-style: italic;
  margin-bottom: 16px;
}
.testimonial__author {
  font-weight: 600;
}
@media (max-width: 768px) {
  .testimonials__grid {
    grid-template-columns: 1fr;
  }
}

.split-cta {
  padding: 60px 0;
}
.split-cta__wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  background: var(--color-primary);
  color: white;
  border-radius: 40px;
  padding: 40px;
  margin-bottom: 40px;
}
.split-cta__content h2 {
  color: white;
}
.split-cta__image {
  margin: 24px 0;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.split-cta__image img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
.split-cta__price .price__current {
  color: white;
  font-size: 2.8rem;
}
.split-cta__price .price__info {
  display: block;
  opacity: 0.8;
}
.order-form {
  background: white;
  padding: 32px;
  border-radius: 28px;
  color: var(--color-text);
}
.form__row {
  margin-bottom: 20px;
}
.form__row input,
.form__row textarea {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid var(--color-border);
  border-radius: 20px;
  font-family: var(--font-body);
  font-size: 1rem;
  transition: var(--transition);
}
.form__row input:focus,
.form__row textarea:focus {
  border-color: var(--color-primary);
  outline: none;
  box-shadow: 0 0 0 3px rgba(43, 94, 59, 0.1);
}
.form__row--inline {
  display: flex;
  align-items: center;
  gap: 16px;
}
.quantity-label {
  font-weight: 600;
}
.form__row--checkbox {
  margin: 24px 0;
}
.custom-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.custom-checkbox input {
  display: none;
}
.custom-checkbox label {
  position: relative;
  padding-left: 32px;
  cursor: pointer;
  font-size: 0.9rem;
}
.custom-checkbox label::before {
  content: '';
  position: absolute;
  left: 0;
  top: 2px;
  width: 20px;
  height: 20px;
  border: 2px solid var(--color-primary);
  border-radius: 6px;
  background: white;
  transition: var(--transition);
}
.custom-checkbox input:checked+label::after {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  left: 3px;
  top: 5px;
  color: var(--color-primary);
  font-size: 14px;
}
.form-feedback {
  margin-top: 16px;
  text-align: center;
  min-height: 24px;
}
.faq-side {
  background: var(--color-surface);
  border-radius: 32px;
  padding: 32px;
  box-shadow: var(--shadow-md);
}
.faq-side__title {
  font-size: 1.8rem;
  margin-bottom: 24px;
  color: var(--color-primary);
}
.faq-side__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.faq-side__item {
  border-bottom: 1px solid var(--color-border);
  padding: 8px 0;
}
.faq-side__item summary {
  padding: 16px 0;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-side__item summary::after {
  content: '\f078';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  transition: transform 0.2s;
}
.faq-side__item[open] summary::after {
  transform: rotate(180deg);
}
.faq-side__item p {
  padding-bottom: 18px;
  color: var(--color-text-light);
}
@media (max-width: 768px) {
  .split-cta__wrapper {
    grid-template-columns: 1fr;
  }
}

.lightbox {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  align-items: center;
  justify-content: center;
}
.lightbox.active {
  display: flex;
}
.lightbox__close {
  position: absolute;
  top: 30px;
  right: 40px;
  color: white;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
}
.lightbox img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 16px;
}

.back-to-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  border-radius: 30px;
  background: var(--color-primary);
  color: white;
  border: none;
  box-shadow: var(--shadow-md);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 40;
}
.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}
.back-to-top:hover {
  background: #1f4a2d;
}

.footer {
  margin-top: auto;
  background: #1e2e22;
  color: #e0ddd7;
  padding: 48px 0 24px;
  font-size: 0.95rem;
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer__disclaimer {
  margin-top: 20px;
  line-height: 1.6;
  opacity: 0.8;
  font-size: 0.9rem;
}
.footer__info {
  font-style: normal;
}
.footer__company {
  font-weight: 700;
  margin-bottom: 12px;
  color: white;
}
.footer__address {
  margin-bottom: 16px;
  line-height: 1.6;
}
.footer__contact-item {
  display: block;
  margin-top: 4px;
}
.footer__legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 24px;
  margin-top: 20px;
}
.footer__legal-links a {
  color: #e0ddd7;
  text-decoration: underline;
  text-underline-offset: 4px;
  font-weight: 500;
}
.footer__legal-links a:hover {
  color: white;
}
.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  text-align: center;
  font-size: 0.9rem;
}
.logo--footer .logo__link {
  color: white;
}
@media (max-width: 768px) {
  .footer__grid {
    grid-template-columns: 1fr;
  }
}

.document-page {
  word-break: break-word;
  padding: 60px 20px;
  background: var(--color-surface);
  border-radius: 32px;
  margin: 40px auto;
  max-width: 1000px;
}
.document-page h1 {
  color: var(--color-primary);
  font-size: 38px;
  margin-bottom: 32px;
}
.document-page p {
  margin-bottom: 20px;
}
.document-page a {
  color: var(--color-primary);
  text-decoration: underline;
}
#cookPopup {
  display: none;
  justify-content: space-between;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  position: fixed;
  bottom: 15px;
  left: 50%;
  width: 900px;
  max-width: 90%;
  transform: translateX(-50%);
  padding: 25px;
  background-color: #fff;
  border-radius: 20px;
  box-shadow: 2px 3px 10px rgb(0 0 0 / .4);
  z-index: 9999
}
#cookPopup p {
  margin: 0;
  text-align: center
}
@media(min-width:576px) {
  #cookPopup.show {
    display: flex;
    align-items: center
  }
}
@media(max-width:575px) {
  #cookPopup.show {
    display: block;
    text-align: left
  }
  .cookPopup_btn {
    margin: 10px 0 0 0
  }
  .feature-list li {
    flex-direction: column;
    align-items: flex-start;
  }
  .split-cta__wrapper {
    padding: 40px 16px;
  }
  .order-form {
    padding: 32px 16px;
  }
}
.cookPopup_title {
  font-size: 16px;
  font-weight: 700
}
.cookPopup_desc {
  font-size: 16px
}
.show {
  display: flex !important
}