@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap");
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  line-height: 1.5;
  color: #323232;
  background-color: #f6f0ea;
  position: relative;
}

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

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

ul {
  list-style: none;
}

.page-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 24px 168px;
  background-color: #f6f0ea;
}

.header {
  width: 100%;
  max-width: 1080px;
  background-color: #ffffff;
  overflow: hidden;
}
.header__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 12px;
}
.header__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  max-height: 70px;
  overflow: hidden;
}
.header__logo-img {
  height: 70px;
  width: auto;
  flex-shrink: 0;
}
.header__logo-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 56px;
}
.header__logo-title {
  font-family: "Grenze", serif;
  font-weight: 800;
  font-size: clamp(22px, 2.5vw, 32px);
  line-height: 1;
  color: #1b483a;
}
.header__logo-slogan {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: clamp(10px, 1vw, 12px);
  line-height: 1;
  color: #5b4a45;
  text-transform: uppercase;
}
.header__partners {
  display: flex;
  align-items: center;
  gap: 12px;
  background-color: #88715c;
  border-radius: 50px;
  padding: 12px;
  overflow: hidden;
}
.header__partner-logo {
  height: 36px;
  width: auto;
  flex-shrink: 0;
}

.navigation {
  width: 100%;
  max-width: 1080px;
  background-color: #1b483a;
  border-top: 5px solid #88715c;
  overflow: hidden;
}
.navigation__container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 10px 12px;
}
.navigation__link {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: clamp(14px, 1.2vw, 16px);
  line-height: 1.5;
  color: #ffffff;
  white-space: nowrap;
  border-left: 1px solid #e5e5e5;
}
.navigation__link--home {
  border-left: none;
  gap: 8px;
}
.navigation__link--home svg {
  width: 20px;
  height: 19px;
  flex-shrink: 0;
}
.navigation__link:hover {
  opacity: 0.8;
}

.content-wrapper {
  width: 100%;
  max-width: 1080px;
  background-color: #ffffff;
  overflow: hidden;
}
.content-wrapper__container {
  display: flex;
  gap: 24px;
  padding: 24px;
}

.main-content {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.article-hero {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.article-hero__breadcrumbs {
  display: inline-block;
  background-color: #e6dfd7;
  border-radius: 50px;
  padding: 10px;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: clamp(10px, 1vw, 12px);
  line-height: 1.2;
  color: #5b4a45;
  text-transform: uppercase;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: -moz-fit-content;
  max-width: fit-content;
}
.article-hero__title {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: clamp(28px, 3.5vw, 40px);
  line-height: 1.2;
  color: #232225;
}
.article-hero__image-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 16px;
  background-color: #eff4f0;
  border-radius: 20px;
}
.article-hero__image {
  width: 100%;
  border-radius: 8px;
  -o-object-fit: cover;
     object-fit: cover;
}
.article-hero__caption {
  width: 100%;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: clamp(14px, 1.2vw, 16px);
  line-height: 1.5;
  color: #232225;
}

.article-body {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid #e5e5e5;
}
.article-body__paragraph {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: clamp(14px, 1.2vw, 16px);
  line-height: 1.5;
  color: #323232;
}
.article-body__paragraph strong {
  font-weight: 700;
}
.article-body__heading {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: clamp(20px, 2vw, 26px);
  line-height: 1.5;
  color: #1b483a;
}
.article-body__image {
  width: 100%;
  overflow: hidden;
}
.article-body__image img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

.widget {
  display: flex;
  flex-direction: column;
  background-color: #eff4f0;
  border: 1px solid #e5e5e5;
  border-radius: 20px;
  overflow: hidden;
}
.widget__header {
  background-color: #536b1e;
  border-bottom: 5px solid #88715c;
  padding: 24px;
  border-radius: 20px 20px 0 0;
}
.widget__title {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: clamp(20px, 2vw, 26px);
  line-height: 1.5;
  color: #ffffff;
}
.widget__content {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 24px 16px 0;
}
.widget__text {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: clamp(14px, 1.2vw, 16px);
  line-height: 1.5;
  color: #323232;
}
.widget__image {
  width: 100%;
  overflow: hidden;
  margin: 24px 0;
}
.widget__image img {
  width: 100%;
  height: 250px;
  -o-object-fit: cover;
     object-fit: cover;
}
.widget__benefits {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 0 16px 24px;
}
.widget__benefit {
  display: flex;
  align-items: center;
  gap: 10px;
}
.widget__benefit-icon {
  width: 21px;
  height: 21px;
  flex-shrink: 0;
}
.widget__benefit span {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: clamp(14px, 1.2vw, 16px);
  line-height: 1.5;
  color: #323232;
}

.testimonial {
  position: relative;
  display: flex;
  gap: 24px;
  align-items: flex-start;
  padding: 16px;
  background-color: #eff4f0;
  border-radius: 20px;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.15);
}
.testimonial__quote-icon {
  position: absolute;
  top: 26px;
  right: 16px;
  width: 116px;
  height: auto;
}
.testimonial__image {
  width: 226px;
  max-width: 226px;
  height: 301px;
  flex-shrink: 0;
  border-radius: 10px;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 1;
}
.testimonial__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
  z-index: 3;
}
.testimonial__title {
  font-family: "Noto Serif", serif;
  font-weight: 700;
  font-size: clamp(18px, 1.8vw, 22px);
  line-height: 1.5;
  color: #323232;
}
.testimonial__text {
  font-family: "Noto Serif", serif;
  font-weight: 400;
  font-size: clamp(14px, 1.2vw, 16px);
  line-height: 1.5;
  color: #323232;
}
.testimonial__author {
  font-family: "Noto Serif", serif;
  font-weight: 700;
  font-size: clamp(14px, 1.2vw, 16px);
  line-height: 1.5;
  color: #323232;
}

.product-offer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.product-offer__bar {
  width: 100%;
  background-color: #536b1e;
  border-radius: 50px;
  padding: 12px 68px;
  text-align: center;
}
.product-offer__title {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: clamp(20px, 2vw, 26px);
  line-height: 1.5;
  color: #ffffff;
}
.product-offer__text {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: clamp(14px, 1.2vw, 16px);
  line-height: 1.5;
  color: #323232;
  text-align: center;
}
.product-offer__text strong {
  font-weight: 700;
}
.product-offer__link {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: clamp(18px, 1.8vw, 22px);
  line-height: 1.5;
  color: #0000ff;
  text-decoration: underline;
  text-align: center;
}
.product-offer__link:hover {
  opacity: 0.8;
}

.comments-section {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 48px 0;
}
.comments-section__title {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: clamp(18px, 1.8vw, 22px);
  line-height: 1.5;
  color: #323232;
}
.comments-section__list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.comments-section__cta {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: clamp(18px, 1.8vw, 22px);
  line-height: 1.5;
  color: #0000ff;
  text-decoration: underline;
}
.comments-section__cta:hover {
  opacity: 0.8;
}

.comment {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  padding-bottom: 24px;
  border-bottom: 1px solid #e5e5e5;
}
.comment__avatar {
  width: 70px;
  height: 70px;
  flex-shrink: 0;
}
.comment__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.comment__author {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: clamp(14px, 1.2vw, 16px);
  line-height: 1.5;
  color: #232225;
}
.comment__text {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: clamp(12px, 1.1vw, 14px);
  line-height: 1.5;
  color: #323232;
}

.sidebar {
  width: 328px;
  max-width: 328px;
  flex-shrink: 0;
  border: 1px solid #e5e5e5;
  border-radius: 20px;
  padding: 12px;
  overflow: hidden;
  align-self: flex-start;
}
.sidebar__widget {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.sidebar__title {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: clamp(18px, 1.8vw, 22px);
  line-height: 1.5;
  color: #232225;
}
.sidebar__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.sidebar__item {
  display: flex;
  align-items: center;
  gap: 10px;
}
.sidebar__item:hover {
  opacity: 0.8;
}
.sidebar__thumbnail {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  flex-shrink: 0;
}
.sidebar__item-title {
  flex: 1;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: clamp(12px, 1.1vw, 14px);
  line-height: 1.5;
  color: #323232;
}

@media (max-width: 1024px) {
  .page-wrapper {
    padding: 24px 40px;
  }
  .header__partners {
    gap: 8px;
    padding: 10px;
  }
  .header__partner-logo {
    height: 30px;
  }
  .navigation__container {
    flex-wrap: wrap;
    gap: 8px;
  }
  .navigation__link {
    padding: 0 16px;
  }
  .sidebar {
    width: 280px;
    max-width: 280px;
  }
}
@media (max-width: 768px) {
  .page-wrapper {
    padding: 16px;
  }
  .header__container {
    flex-direction: column;
    gap: 16px;
  }
  .header__logo {
    max-height: none;
  }
  .header__partners {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
  }
  .navigation__container {
    flex-wrap: wrap;
    justify-content: center;
  }
  .navigation__link {
    padding: 8px 12px;
    border-left: none;
  }
  .content-wrapper__container {
    flex-direction: column;
    padding: 16px;
  }
  .sidebar {
    width: 100%;
    max-width: 100%;
  }
  .testimonial {
    flex-direction: column;
  }
  .testimonial__image {
    width: 100%;
    max-width: 100%;
    height: 250px;
  }
  .testimonial__quote-icon {
    top: 16px;
    right: 16px;
    width: 80px;
  }
  .product-offer__bar {
    padding: 12px 24px;
  }
}
@media (max-width: 480px) {
  .page-wrapper {
    padding: 12px;
  }
  .header__logo-img {
    height: 50px;
  }
  .header__partners {
    gap: 6px;
    padding: 8px;
  }
  .header__partner-logo {
    height: 24px;
  }
  .navigation {
    display: none;
  }
  .navigation__link {
    padding: 6px 10px;
    font-size: 14px;
  }
  .navigation__link--home span {
    display: none;
  }
  .content-wrapper__container {
    padding: 12px;
    gap: 16px;
  }
  .article-hero__breadcrumbs {
    font-size: 10px;
    padding: 8px;
  }
  .article-hero__image-wrapper {
    padding: 12px;
  }
  .widget__header {
    padding: 16px;
  }
  .widget__content {
    padding: 16px 12px 0;
  }
  .widget__benefits {
    padding: 0 12px 16px;
  }
  .testimonial {
    padding: 12px;
  }
  .testimonial__quote-icon {
    width: 60px;
  }
  .comment {
    gap: 12px;
  }
  .comment__avatar {
    width: 50px;
    height: 50px;
  }
  .sidebar {
    padding: 10px;
  }
  .sidebar__thumbnail {
    width: 36px;
    height: 36px;
  }
}
.disclaimer {
  font-size: 14px;
  line-height: 20px;
  color: #7f919e;
  margin-bottom: 10px;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #111111;
  color: white;
  padding: 20px;
  z-index: 10000;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
  transform: translateY(100%);
  transition: transform 0.3s ease-in-out;
  font-family: "Roboto", sans-serif;
}
.cookie-banner.show {
  transform: translateY(0);
}
.cookie-banner .cookie-banner-content {
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
@media (min-width: 768px) {
  .cookie-banner .cookie-banner-content {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}
.cookie-banner .cookie-banner-text {
  flex: 1;
  font-size: 14px;
  line-height: 20px;
}
.cookie-banner .cookie-banner-text p {
  margin: 0;
  color: white;
}
.cookie-banner .cookie-banner-text a {
  color: #85ccb1;
  text-decoration: underline;
}
.cookie-banner .cookie-banner-text a:hover {
  color: #85a9b3;
}
.cookie-banner .cookie-banner-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-start;
}
@media (min-width: 768px) {
  .cookie-banner .cookie-banner-buttons {
    justify-content: flex-end;
    flex-shrink: 0;
  }
}

.cookie-btn {
  padding: 10px 20px;
  border: none;
  border-radius: 3px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  font-family: "Roboto", sans-serif;
  display: inline-block;
  text-align: center;
  text-decoration: none;
}
.cookie-btn-accept {
  background-color: #19ae30;
  color: white;
}
.cookie-btn-accept:hover {
  background-color: #158026;
}
.cookie-btn-essential {
  background-color: transparent;
  border: 1px solid #ffffff;
  color: white;
}
.cookie-btn-essential:hover {
  background-color: rgba(255, 255, 255, 0.1);
}
.cookie-btn-settings {
  background-color: transparent;
  border: 1px solid #ffffff;
  color: white;
}
.cookie-btn-settings:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.cookie-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10001;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}
.cookie-modal-overlay.show {
  opacity: 1;
}

.cookie-modal {
  background-color: white;
  color: #333;
  width: 100%;
  max-width: 600px;
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  max-height: 90vh;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  font-family: "Roboto", sans-serif;
}
.cookie-modal-header {
  padding: 20px;
  border-bottom: 1px solid #eee;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cookie-modal-header h2 {
  margin: 0;
  font-size: 20px;
  color: #2e3641;
}
.cookie-modal-close {
  background: none;
  border: none;
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
  color: #999;
}
.cookie-modal-close:hover {
  color: #333;
}
.cookie-modal-body {
  padding: 20px;
  overflow-y: auto;
  flex: 1;
}
.cookie-modal-body p {
  margin-top: 0;
  margin-bottom: 20px;
  font-size: 14px;
  color: #666;
}
.cookie-modal-footer {
  padding: 20px;
  border-top: 1px solid #eee;
  display: flex;
  justify-content: flex-end;
}

.cookie-category {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #f5f5f5;
}
.cookie-category:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
.cookie-category-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 5px;
}
.cookie-category-title {
  font-weight: 700;
  font-size: 16px;
  color: #2e3641;
}
.cookie-category-desc {
  font-size: 13px;
  line-height: 18px;
  color: #777;
  margin: 0;
}

/* Switch Styles */
.cookie-switch {
  position: relative;
  display: inline-block;
  width: 44px;
  height: 24px;
}
.cookie-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.cookie-switch input:checked + .cookie-slider {
  background-color: #19ae30;
}
.cookie-switch input:focus + .cookie-slider {
  box-shadow: 0 0 1px #19ae30;
}
.cookie-switch input:checked + .cookie-slider:before {
  transform: translateX(20px);
}
.cookie-switch input:disabled + .cookie-slider {
  opacity: 0.5;
  cursor: not-allowed;
}

.cookie-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: 0.4s;
  border-radius: 24px;
}
.cookie-slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  transition: 0.4s;
  border-radius: 50%;
}/*# sourceMappingURL=styles.css.map */