    /* twinkling stars */
.stars,
.twinkling {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
}

.stars {
  background: #000
    url(https://www.holzkern.com/media/wysiwyg/img/blog_neu/collections/2023/04/Starforce/stars.png)
    repeat top center;
  z-index: -2;
}

.twinkling {
  background: transparent
    url(https://www.holzkern.com/media/wysiwyg/img/blog_neu/collections/2023/04/Starforce/twinkling.png)
    repeat top center;
  z-index: -1;
  animation: move-twink-back 200s linear infinite;
}

@keyframes move-twink-back {
  from {
    background-position: 0 0;
  }

  to {
    background-position: -10000px 5000px;
  }
}

@keyframes move-clouds-back {
  from {
    background-position: 0 0;
  }

  to {
    background-position: 10000px 0;
  }
}

.content-wrapper h1,
.content-wrapper h2 {
  color: #ffebc6;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: #dcc5ad;
  text-align: center;
}

.content-wrapper h1 {
  color: #ffebc6;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: #dcc5ad;
  text-align: center;
  font-weight: bold;
  font-size: 2.4em;
}

.content-wrapper h2 {
  font-size: 2em;
}
.content-wrapper p {
  color: #fff;
  text-align: center;
  font-size: 1.2em;
}

.product-image-wrapper {
  border-radius: 20px 20px 0px 0px;
}

.products-grid .product-item-info .product-item-details {
  border-radius: 0px 0px 20px 20px;
}

.products wrapper grid products-grid {
 padding: 16px;
}

.prod-embed-cont {
  border-radius: 30px;
  background-color: white;
  color: black;
  max-width: 1280px;
  margin: auto;
}

.faq-btn {
  color: #fff;
  border-radius: 100px;
  background-color: #5e5f3e;
  border: 2px solid #5e5f3e;
  cursor: pointer;
  transition: 0.2s ease;
  margin: auto;
  text-align: center;
  padding: 8px 22px;
}
.faq-btn:visited {
  color: #fff;
}
.faq-btn:hover {
  color: #5e5f3e;
  background: #fff;
  transition: 0.2s ease;
}

.green-bg {
  background-color: #eceae2;
  padding-bottom: 32px;
  margin-bottom: -32px;
}

.green-bg h2 {
  color: #5f5f3d;
  -webkit-text-stroke-width: 0px;
  -webkit-text-stroke-color: #fff ;
}

CarouselWidget-prefix
  .CarouselWidget
  .CarouselWidget__header
  .R-RatingStars
  .R-RatingStars__stars
  .stars__icon {
  --override-header-star-color: #b8814a;
}

.CarouselWidget-prefix .R-RatingStars .R-RatingStars__stars .stars__icon {
  color: #b8814a !important;
}

.CarouselWidget-prefix
  .R-BadgeElement
  .R-BadgeElement__icon
  .cssVar-badgeElement__icon {
  color: #b8814a !important;
}

.faq-section {
  max-width: 1200px;
  margin: 32px auto 48px auto;
  background-color: #ffffff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.faq {
  border-bottom: 1px solid #eaeaea;
  margin-bottom: 10px;
}

.faq:last-child {
  border-bottom: none;
}

.faq-question {
  font-size: 110%;
  width: 100%;
  text-align: left;
  background-color: #fff;
  border: none;
  padding: 15px;
  font-weight: 500;
  color: #333;
  cursor: pointer;
  outline: none;
  transition: background-color 0.3s;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question:hover {
  background-color: #f0f0f0;
}

.faq-answer {
  display: none;
  padding: 15px;
  background-color: #f9f9f9;
  color: #666;
}

.faq-answer p {
  margin: 0;
  text-align: center;
  font-size: 100%;
  padding: 0px;
  color: #333 !important;
  font-size: 1.2em;
}

.arrow-icon {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}

.faq-question.active .arrow-icon {
  transform: rotate(180deg);
}

.colored {
  background: #f4f2e9;
  padding-top: 32px;
  padding-bottom: 24px;
}