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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Open Sans", sans-serif;
  font-size: clamp(16px, 1.3vw, 20px);
  font-weight: 400;
  line-height: 1.7;
  color: #262626;
  background: #fbf9ef;
}

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

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

h1 {
  font-family: "Lora", sans-serif;
  font-size: clamp(38px, 4.3vw, 64px);
  font-weight: 700;
  line-height: 1.1;
  color: #262626;
}

h2 {
  font-family: "Lora", sans-serif;
  font-size: clamp(25px, 2.4vw, 36px);
  font-weight: 700;
  line-height: 1.2;
  color: #262626;
}

h3 {
  font-family: "Lora", sans-serif;
  font-size: clamp(18px, 1.6vw, 24px);
  font-weight: 700;
  line-height: 1.3;
  color: #262626;
}

.lead {
  font-family: "Lora", sans-serif;
  font-size: clamp(24px, 1.9vw, 28px);
  font-weight: 700;
  line-height: 1.5;
  color: #262626;
}
.lead__text {
  margin-bottom: 32px;
  margin-top: 10px;
}

.body-text {
  font-family: "Open Sans", sans-serif;
  font-size: clamp(16px, 1.3vw, 20px);
  font-weight: 400;
  line-height: 1.7;
  color: #262626;
  margin-bottom: 24px;
}

.body-lg {
  font-family: "Open Sans", sans-serif;
  font-size: clamp(18px, 1.5vw, 22px);
  font-weight: 400;
  line-height: 1.7;
  color: #262626;
}

.section-wrapper {
  width: 100%;
  background: #fbf9ef;
}

.content-container {
  max-width: 896px;
  width: 100%;
  margin: 0 auto;
  padding: 0 16px;
}

.header-wrapper {
  position: relative;
  width: 100%;
  background: #f4edd1;
}
@media (max-width: 1070px) {
  .header-wrapper {
    background: none;
  }
}

.header {
  width: 100%;
  background: #f4edd1;
  height: 87px;
  display: flex;
  align-items: center;
}
@media (max-width: 1070px) {
  .header {
    display: none;
  }
}
.header__container {
  max-width: 1718px;
  width: 100%;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  justify-content: flex-end;
}
@media (max-width: 1460px) {
  .header__container {
    display: block;
  }
}
@media (max-width: 860px) {
  .header__container {
    display: none;
  }
}
.header__nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
@media (max-width: 1460px) {
  .header__nav {
    justify-content: space-between;
  }
}
.header__nav-link {
  font-family: "Open Sans", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.55;
  color: #5d5d5d;
  transition: color 0.3s ease;
  white-space: nowrap;
}
.header__nav-link:hover {
  color: #6e8f56;
}

.nav-right {
  display: flex;
  gap: 20px;
  justify-content: flex-end;
}

.nav-left {
  display: flex;
  gap: 20px;
}

.highlight {
  background: linear-gradient(to top, #b0cb7a 40%, transparent 40%);
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}
@media (max-width: 1070px) {
  .highlight {
    background: none;
  }
}

.hero {
  width: 100%;
  background: url("../img/61851e630bf33f8854f08a59d89238447d84a773.png") no-repeat center center;
  background-size: cover;
  position: relative;
  height: 780px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
@media (min-width: 1780px) {
  .hero {
    background-size: contain;
  }
}
@media (max-width: 1355px) {
  .hero {
    height: 600px;
  }
}
@media (max-width: 1070px) {
  .hero {
    background-image: none;
    flex-direction: column;
  }
}
.hero__mobile-img {
  display: none;
}
@media (max-width: 1070px) {
  .hero__mobile-img {
    display: block;
    margin-top: 60px;
  }
}
@media (max-width: 606px) {
  .hero__mobile-img {
    width: 602px;
    height: 450px;
  }
}
.hero__mobile-img2 {
  display: none;
}
@media (max-width: 1070px) {
  .hero__mobile-img2 {
    display: flex;
    justify-content: center;
  }
}
.hero__container {
  max-width: 1850px;
  width: 100%;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  align-items: center;
  left: calc(50vw - 560px);
  gap: 269px;
  height: 100%;
  position: relative;
}
@media (min-width: 1880px) {
  .hero__container {
    left: calc(50vw - 620px);
  }
}
@media (min-width: 2000px) {
  .hero__container {
    left: calc(50vw - 660px);
  }
}
@media (max-width: 1355px) {
  .hero__container {
    left: calc(50vw - 440px);
  }
}
@media (max-width: 1070px) {
  .hero__container {
    width: unset;
    display: block;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    max-width: 100%;
    gap: 0;
    position: absolute;
    height: unset;
  }
}
@media (max-width: 480px) {
  .hero__container {
    width: 100%;
    max-width: 350px;
    left: calc(50vw + 20px);
  }
}
.hero__content {
  max-width: 560px;
  position: relative;
}
.hero__heading {
  font-family: "Lora", sans-serif;
  font-size: clamp(42px, 4.3vw, 64px);
  font-weight: 700;
  line-height: 1.1;
  color: #000000;
  position: relative;
  z-index: 2;
}
@media (max-width: 1355px) {
  .hero__heading {
    font-size: 48px;
    max-width: 400px;
  }
}
@media (max-width: 865px) {
  .hero__heading {
    font-size: 42px;
    max-width: 100%;
  }
}
@media (max-width: 768px) {
  .hero__heading {
    font-size: 38px;
  }
}
@media (max-width: 600px) {
  .hero__heading {
    font-size: 32px;
  }
}
@media (max-width: 480px) {
  .hero__heading {
    font-size: 28px;
  }
}
.hero__highlight {
  position: absolute;
  background: #b0cb7a;
  height: 25px;
  z-index: 1;
}
@media (max-width: 1070px) {
  .hero__highlight {
    background: none;
  }
}
.hero__caption-mobile {
  display: none;
  background: rgba(31, 22, 14, 0.8);
  padding: 4px 24px;
  width: 100%;
  margin-bottom: 24px;
}
@media (max-width: 1070px) {
  .hero__caption-mobile {
    display: block;
  }
}
.hero__caption-mobile-text {
  font-family: "Open Sans", sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.55;
  color: #f1e0c1;
  margin: 0;
  text-align: center;
}
@media (max-width: 600px) {
  .hero__caption-mobile-text {
    text-align: left;
  }
}
.hero__caption {
  position: absolute;
  right: calc(50vw - 763px);
  max-width: 600px;
  bottom: 16%;
  background: rgba(31, 22, 14, 0.8);
  padding: 4px 24px;
  width: 100%;
}
@media (max-width: 1355px) {
  .hero__caption {
    right: calc(50vw - 590px);
    max-width: 460px;
  }
}
@media (max-width: 1070px) {
  .hero__caption {
    display: none;
  }
}
.hero__caption-text {
  font-family: "Open Sans", sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.55;
  color: #f1e0c1;
  margin: 0;
}
@media (max-width: 1355px) {
  .hero__caption-text {
    font-size: 16px;
  }
}

.logo-wrap {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 389px;
  height: 175px;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10;
}
@media (max-width: 1580px) {
  .logo-wrap {
    max-width: 280px;
    width: 100%;
    height: auto;
  }
}
@media (max-width: 1070px) {
  .logo-wrap {
    max-width: 320px;
  }
}
.logo-wrap__image {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.page {
  width: 100%;
  background: #fbf9ef;
}
.page__container {
  max-width: 896px;
  width: 100%;
  margin: 0 auto;
  padding: 0 16px;
}

.diary {
  margin: 24px 0;
  border-left: 4px solid #e7e7e7;
  padding-left: 40px;
}
.diary__quote {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.diary__text {
  font-family: "Open Sans", sans-serif;
  font-size: clamp(16px, 1.3vw, 20px);
  font-weight: 400;
  line-height: 1.7;
  color: #262626;
  font-style: italic;
  margin: 0;
}
.diary__image-wrap {
  width: 100%;
  margin: 24px 0;
}
.diary__image {
  width: 100%;
  height: auto;
  border-radius: 8px;
}
@media (max-width: 500px) {
  .diary__image {
    display: none;
  }
}
.diary__image-mobile {
  display: none;
}
@media (max-width: 500px) {
  .diary__image-mobile {
    display: block;
  }
}

.jitka-history {
  width: 100%;
  background: #fbf9ef;
}
.jitka-history__container {
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  padding: 0 16px;
}
.jitka-history__image {
  width: 100%;
  height: auto;
}
@media (max-width: 500px) {
  .jitka-history__image {
    display: none;
  }
}
.jitka-history__image-mobile {
  display: none;
}
@media (max-width: 500px) {
  .jitka-history__image-mobile {
    display: block;
  }
}

.story {
  width: 100%;
  background: #fbf9ef;
}
.story__container {
  max-width: 896px;
  width: 100%;
  margin: 0 auto;
  padding: 0 16px;
}
.story__heading {
  margin-bottom: 32px;
  margin-top: 48px;
  color: #6e8f56;
}
.story__heading:first-child {
  margin-top: 0;
}
.story__image-wrap {
  width: 100%;
  margin: 40px 0;
}
.story__image {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.testimonials {
  width: 100%;
  background: #fbf9ef;
  padding: 64px 0;
}
.testimonials__container {
  max-width: 896px;
  width: 100%;
  margin: 0 auto;
  padding: 0 16px;
}
.testimonials__divider {
  height: 2px;
  background: #e1cb87;
  margin: 48px 0;
}

.testimonial {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media (min-width: 1070px) {
  .testimonial {
    flex-direction: row;
  }
}
.testimonial__person {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-direction: column;
}
.testimonial__image-wrap {
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  width: 180px;
  height: 180px;
}
.testimonial__image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.testimonial__name {
  font-family: "Open Sans", sans-serif;
  font-size: clamp(14px, 1.1vw, 18px);
  font-weight: 600;
  color: #262626;
  margin: 0;
  text-align: center;
}
.testimonial__content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.testimonial__title {
  color: #6e8f56;
}
.testimonial__text {
  font-family: "Open Sans", sans-serif;
  font-size: clamp(16px, 1.3vw, 20px);
  font-weight: 400;
  line-height: 1.7;
  color: #262626;
  margin: 0;
}

.benefits {
  width: 100%;
  background: url("../img/7922fc5195d9952426b4f18696092c157e8ab2dc.png") no-repeat center center;
  background-size: cover;
  padding: 32px 0;
}
.benefits__container {
  max-width: 896px;
  width: 100%;
  margin: 0 auto;
  padding: 0 8px;
}
.benefits__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: #463421;
  border-radius: 24px;
  padding: 32px 52px;
  max-width: 730px;
}
@media (max-width: 768px) {
  .benefits__list {
    padding: 24px 24px;
    border-radius: 16px;
  }
}
.benefits__intro {
  font-family: "Open Sans", sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.3;
  color: #ffffff;
  margin: 0;
}
@media (max-width: 768px) {
  .benefits__intro {
    font-size: 18px;
  }
}
.benefits__heading {
  font-family: "Lora", sans-serif;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.2;
  color: #e1cb87;
  margin: 0;
}
@media (max-width: 768px) {
  .benefits__heading {
    font-size: 24px;
  }
}
.benefits__items {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.benefits__item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.benefits__icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  margin-top: 6px;
}
.benefits__text {
  font-family: "Open Sans", sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.7;
  color: #ffffff;
  margin: 0;
}
@media (max-width: 768px) {
  .benefits__text {
    font-size: 16px;
  }
}

.product-comments {
  width: 100%;
  background: #fbf9ef;
  padding: 64px 0;
}
.product-comments__container {
  max-width: 896px;
  width: 100%;
  margin: 0 auto;
  padding: 0 16px;
}

.product {
  margin: 48px 0;
}
.product__video-wrap {
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
}
.product__video {
  width: 100%;
  height: auto;
  display: block;
}
.product__video::-webkit-media-controls {
  display: none !important;
}
.product__video::-webkit-media-controls-enclosure {
  display: none !important;
}
.product__video::-webkit-media-controls-panel {
  display: none !important;
}
.product__video::-webkit-media-controls-play-button {
  display: none !important;
}
.product__video::-webkit-media-controls-start-playback-button {
  display: none !important;
}
.product__info {
  text-align: center;
  background-color: #e7d8a0;
  padding: 10px 0;
}
.product__info-text {
  font-family: "Open Sans", sans-serif;
  font-size: clamp(14px, 1.1vw, 18px);
  font-weight: 500;
  color: #262626;
  margin: 0;
}

.button-wrap {
  display: flex;
  justify-content: center;
  margin: 48px 0;
}

.button {
  display: inline-block;
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
  text-align: center;
  border-radius: 8px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}
.button--xl {
  font-size: clamp(18px, 1.5vw, 22px);
  padding: 20px 48px;
  background: linear-gradient(135deg, #fe8615 0%, #ffb900 100%);
  color: #ffffff;
  box-shadow: 0 4px 16px rgba(254, 134, 21, 0.3);
}
.button--xl:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(254, 134, 21, 0.4);
}
.button--md {
  font-size: clamp(16px, 1.3vw, 20px);
  padding: 16px 40px;
  background: linear-gradient(135deg, #fe8615 0%, #ffb900 100%);
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(254, 134, 21, 0.3);
}
.button--md:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(254, 134, 21, 0.4);
}

.comments {
  margin-top: 64px;
}
.comments__heading {
  margin-bottom: 48px;
  text-align: center;
}
.comments__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.comments__column {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.comment {
  background: #fbf9ef;
  padding: 24px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  gap: 16px;
  border: 2px solid #e7d8a0;
  text-align: center;
}
.comment__top {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 12px;
  justify-content: center;
}
.comment__avatar {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}
.comment__avatar-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.comment__header {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.comment__name {
  font-family: "Open Sans", sans-serif;
  font-size: clamp(14px, 1.1vw, 16px);
  font-weight: 600;
  color: #262626;
  margin: 0;
}
.comment__date {
  font-family: "Open Sans", sans-serif;
  font-size: clamp(12px, 0.9vw, 14px);
  font-weight: 400;
  color: #888888;
  margin: 0;
  text-align: center;
}
.comment__stars {
  display: flex;
  gap: 0;
  justify-content: center;
}
.comment__star {
  width: 16px;
  height: 16px;
}
.comment__text {
  font-family: "Open Sans", sans-serif;
  font-size: clamp(14px, 1.1vw, 16px);
  font-weight: 400;
  line-height: 1.6;
  color: #262626;
  margin: 0;
  text-align: center;
}

.sticky-button-wrap {
  width: 100%;
  background: rgba(251, 249, 239, 0.95);
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.15);
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.sticky-button-wrap.visible {
  opacity: 1;
  visibility: visible;
}
.sticky-button-wrap .button {
  box-shadow: 0 4px 20px rgba(254, 134, 21, 0.4);
}
@media (max-width: 768px) {
  .sticky-button-wrap {
    width: auto;
    margin: 0 auto;
    padding: 16px;
  }
}

@media (max-width: 1024px) {
  .comments__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}
@media (max-width: 768px) {
  .hero {
    height: auto;
  }
  .diary {
    padding: 24px;
    margin: 32px 0;
  }
  .story {
    padding: 0;
  }
  .story__heading {
    margin-top: 32px;
  }
  .story__image-wrap {
    margin: 32px 0;
  }
  .testimonials {
    padding: 0;
  }
  .testimonials__divider {
    margin: 32px 0;
  }
  .testimonial {
    gap: 20px;
  }
  .testimonial__person {
    gap: 12px;
  }
  .testimonial__image-wrap {
    width: 180px;
    height: 180px;
  }
  .benefits {
    padding: 48px 0;
  }
  .benefits__list {
    gap: 24px;
  }
  .benefits__items {
    gap: 16px;
  }
  .product-comments {
    padding: 48px 0;
  }
  .product {
    margin: 32px 0;
  }
  .button-wrap {
    margin: 32px 0;
  }
  .comments {
    margin-top: 48px;
  }
  .comments__heading {
    margin-bottom: 32px;
  }
  .comments__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .comments__column {
    gap: 20px;
  }
  .comment {
    padding: 20px;
    gap: 12px;
  }
}
@media (max-width: 480px) {
  .hero {
    min-height: auto;
  }
  .hero__heading {
    font-size: 36px;
  }
  .diary {
    padding: 20px;
  }
  .button--xl, .button--md {
    padding: 16px 32px;
  }
}
.congrats {
  width: 100%;
  background: #fbf9ef;
  padding: 120px 8px 120px;
}
@media (max-width: 1580px) {
  .congrats {
    padding-top: 80px;
  }
}
@media (max-width: 1070px) {
  .congrats {
    padding-top: 160px;
  }
}
.congrats__container {
  max-width: 896px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.congrats__heading {
  font-family: "Lora", sans-serif;
  font-size: clamp(42px, 4.3vw, 64px);
  font-weight: 700;
  line-height: 1.1;
  color: #fe8615;
  text-align: center;
  margin: 0;
}
.congrats__text {
  font-family: "Open Sans", sans-serif;
  font-size: clamp(18px, 1.3vw, 20px);
  font-weight: 400;
  line-height: 1.7;
  color: #262626;
  text-align: center;
  margin: 0;
}
.congrats__text--bold {
  font-weight: 700;
  font-size: clamp(18px, 1.5vw, 22px);
}
.congrats__highlight {
  color: #19ae30;
  font-weight: 700;
}
.congrats__orange {
  color: #ff8800;
  font-weight: 700;
}
.congrats__cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  padding: 24px 0;
  width: 100%;
}
.congrats__cta-text {
  font-family: "Open Sans", sans-serif;
  font-size: clamp(16px, 1.2vw, 18px);
  font-weight: 700;
  line-height: 1.55;
  color: #262626;
  text-align: center;
  margin: 0;
}
.congrats__phone-reveal-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 507px;
  width: 100%;
  padding: 12px 24px;
  background: #19ae30;
  color: #ffffff;
  border: 2px solid #19ae30;
  border-radius: 8px;
  box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: "Open Sans", sans-serif;
  font-size: clamp(18px, 1.5vw, 24px);
  font-weight: 700;
  line-height: 1.19;
  text-align: center;
}
.congrats__phone-reveal-btn:active {
  background: #ffffff;
  color: #19ae30;
  border-color: #19ae30;
}
.congrats__phone-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  max-width: 507px;
  width: 100%;
  padding: 12px 24px;
  background: #ffffff;
  color: #19ae30;
  border: 2px solid #19ae30;
  border-radius: 8px;
  box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: "Open Sans", sans-serif;
  font-size: clamp(28px, 3.2vw, 48px);
  font-weight: 700;
  line-height: 1.19;
  text-align: center;
  letter-spacing: 1px;
  text-decoration: none;
}
.congrats__phone-link-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}
.congrats__hours {
  font-family: "Open Sans", sans-serif;
  font-size: clamp(16px, 1.3vw, 20px);
  font-weight: 700;
  line-height: 1.7;
  color: #262626;
  text-align: center;
  margin: 0;
}
.congrats__warning {
  font-family: "Open Sans", sans-serif;
  font-size: clamp(16px, 1.2vw, 18px);
  font-weight: 400;
  line-height: 1.55;
  color: #ff2626;
  text-align: center;
  margin: 0;
}

@media (max-width: 576px) {
  .congrats__phone-reveal-btn {
    padding: 16px;
    font-size: 18px;
  }
  .congrats__phone-link {
    padding: 16px;
    font-size: 28px;
  }
}
.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%;
}

.disclaimer {
  font-size: 14px;
  line-height: 20px;
  color: #7f919e;
  margin-bottom: 24px;
}/*# sourceMappingURL=styles.css.map */