/** Shopify CDN: Minification failed

Line 2482:0 Expected "}" to go with "{"

**/
/* ============================================== */
/* =============== IMAGE-WITH-TEXT ============== */
/* ============================================== */

.image-with-text {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.image-with-text.desktop_content_reverse {
  flex-direction: row-reverse;
}

.image-with-text-rounded-corners {
  border-radius: var(--border-radius);
}

.image-with-text-image {
  width: 40%;
  align-self: stretch;
}

.image-with-text-image img,
.image-with-text-image .icon-placeholder {
  display: flex;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-with-text-image .icon-placeholder {
  box-sizing: border-box;
}

.image-with-text-image-margin {
  box-sizing: border-box;
  padding: var(--mobile-horizontal-margin);
}

.image-with-text-image-rounded-corners img,
.image-with-text-image-rounded-corners iframe,
.image-with-text-image-rounded-corners video {
  border-radius: var(--border-radius);
}

.image-with-text-image-rounded-corners.image-with-text-image-rounded-corners-forced
  img,
.image-with-text-image-rounded-corners.image-with-text-image-rounded-corners-forced
  iframe,
.image-with-text-image-rounded-corners.image-with-text-image-rounded-corners-forced
  video {
  border-radius: var(--border-radius) !important;
}

.image-with-text-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: start;
}

.image-with-text-content-bottom-padding {
  padding-bottom: var(--mobile-horizontal-margin);
}

.image-with-text-content h2 {
  width: 100%;
}

.image-with-text-content h2 p {
  margin-top: 0px;
  margin-bottom: 0px;
}

.image-with-text-content .image-with-text-content-text {
  width: 100%;
}

.image-with-text-content-bullet-points {
  display: grid;
}

.image-with-text-content-bullet-points-two-columns {
  grid-template-columns: 50% 50%;
}

.image-with-text-content-bullet-points div {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.image-with-text-content-bullet-points div img {
  width: 32px;
  margin-right: 10px;
}

.image-with-text-content-bullet-points div p {
  margin: 0px;
}

@media (max-width: 767px) {
  .image-with-text {
    display: flex;
    flex-direction: column;
  }
  
  .image-with-text.desktop_content_reverse {
    flex-direction: column;
  }

  .image-with-text.mobile_image_below {
    flex-direction: column-reverse !important;
  }

  .image-with-text-content {
    width: 100%;
    box-sizing: border-box;
  }

  .image-with-text-image {
    width: 100%;
  }

  .image-with-text-image-margin {
    padding: var(--mobile-horizontal-margin) var(--mobile-horizontal-margin) 0px
      var(--mobile-horizontal-margin);
  }

  .image-with-text-image-rounded-corners img,
  .image-with-text-image-rounded-corners iframe,
  .image-with-text-image-rounded-corners video {
    border-radius: var(--border-radius) var(--border-radius) 0px 0px;
  }

  .image-with-text-image .slider-container{
    height: var(--before_after_slider_mobile_container_height) !important;
  }

  .image-with-text-image .before-after-slider-image{
    height: var(--before_after_slider_mobile_height) !important;
  }
}

@media (min-width: 768px) {
  .image-with-text-image-margin {
    padding: 0px;
  }

  .image-with-text-content {
    padding-left: 50px;
  }

  .image-with-text-content.image-with-text-content-bottom-padding {
    padding-left: 50px !important;
    padding-right: 50px;
    padding-top: 30px;
    padding-bottom: 30px !important;
  }

  .image-with-text-content.image-with-text-content-reverse {
    padding-right: 50px;
    padding-left: 0px;
  }

  .image-with-text-content-bottom-padding {
    padding-bottom: 0px;
  }
  
  .image-with-text-image-rounded-corners img, 
  .image-with-text-image-rounded-corners iframe, 
  .image-with-text-image-rounded-corners video{
      border-radius: var(--border-radius) 0px 0px var(--border-radius);
  }

  .image-with-text-image .slider-container{
      height: var(--before_after_slider_container_desktop_height) !important;
  }

  .image-with-text-image .before-after-slider-image{
      height: var(--before_after_slider_desktop_height) !important;
  }
}

.image-with-text-image .slider-container {
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    user-select: none;
}

.image-with-text-image .slider img {
    display: block;
    width: 100%;
    user-select: none;
}

.image-with-text-image .before-wrapper {
    position: absolute;
    top: 0;
    left: -1px;
    width: 100%;
    height: 100.1%;
    overflow: hidden;
}

.image-with-text-image .before {
    width: 100%;
    height: auto;
    position: absolute;
    top: 0;
    left: 0;
}

.image-with-text-image .after {
    width: 100%;
    height: auto;
}

.image-with-text-image .slider-handle {
    position: absolute;
    top: 0;
    left: 50%;
    width: 4px;
    height: 100%;
    z-index: 3;
    pointer-events: none;
    user-select: none;
    display: flex;
    align-content: space-between;
    flex-wrap: wrap;
}

.slider-handle-first{
    background-color: var(--handler-color);
    height: 45%;
    width: 100%;
}

.slider-handle-second{
    background-color: var(--handler-color);
    height: 45%;
    width: 100%;
}

.image-with-text-image .slider-grip {
    width: 50px;
    height: 50px;
    background-color: transparent;
    border: 3px solid var(--handler-color);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-47%, -50%);
    cursor: grab;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    z-index: 4;
    user-select: none;
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-with-text-image .slider-grip::before,
.image-with-text-image .slider-grip::after {
    content: '';
    display: block;
    width: 8px;
    height: 12px;
    background-color: var(--handler-color);
    clip-path: polygon(0 50%, 100% 0, 100% 100%);
    position: absolute;
}

.image-with-text-image .slider-grip::before {
    transform: translate(-15px, 0) rotate(0deg); 
}

.image-with-text-image .slider-grip::after {
    transform: translate(15px, 0) rotate(180deg);
}

.image-with-text-image .badge {
    position: absolute;
    bottom: 10px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 5px 10px;
    font-size: 14px;
    border-radius: 3px;
    user-select: none;
    pointer-events: none;
}

.image-with-text-image .before-wrapper .badge {
    left: 10px;
}

.image-with-text-image .after .badge {
    right: 10px;
}

/* ============================================== */
/* =============== VIDEO-WITH-TEXT ============== */
/* ============================================== */

.video-with-text-video video {
  width: 100%;
  height: auto;
}

.video-with-text-video video source {
  width: 100%;
  height: auto;
}

.video-with-text-youtube {
  position: relative;
  padding-bottom: 56.25%;
}

.video-with-text-youtube iframe {
  position: absolute;
  width: 100%;
  height: 100%;
}

@media (max-width: 767px) {
  .video-with-text-youtube.image-with-text-image-margin iframe {
    position: absolute;
    width: calc(100% - 2 * var(--mobile-horizontal-margin));
    height: calc(100% - var(--mobile-horizontal-margin));
  }
}

@media (min-width: 768px) {
  .video-with-text-youtube {
    padding-bottom: 22.5%;
  }
}

/* ================================================== */
/* =============== COLLAPSIBLE-CONTENT ============== */
/* ================================================== */

.collapsible-content-container {
  display: flex;
  flex-direction: column;

  border-radius: var(--border-radius);
  padding-left: var(--mobile-horizontal-margin);
  padding-right: var(--mobile-horizontal-margin);

  padding-top: calc(var(--mobile-horizontal-margin) * 0.3);
  padding-bottom: calc(var(--mobile-horizontal-margin) * 0.3);
}

.collapsible-content-row {
  cursor: pointer;
}

.collapsible-content-row-border {
  border-bottom: 1px solid var(--color-border);
}

.collapsible-content-row-border:last-child {
  border: none;
}

.collapsible-content-row-header {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}

.collapsible-content-row-header h3 {
  width: 100%;
  margin: 0px;
  display: flex;
  flex-direction: row;
  align-items: center;
}

.collapsible-content-row-header h3 span:first-child {
  flex: 1;
}

.collapsible-content-row-header h3 span:first-child p {
  margin: 0px;
}

.collapsible-content-row-header h3 span:last-child {
  display: block;
  margin-left: 20px;
  border-radius: 100%;
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  background-color: #d9d9d9;
}

.collapsible-content-row-header svg {
  width: 22px;
  transition: rotate 0.2s;
}

.collapsible-content-row-content {
  display: none;
  margin-top: calc(var(--size-font-body) * 0.75);
}

@media (min-width: 768px) {
  .collapsible-content-container {
    padding: 0px 20px;
  }
}

/* =========================================== */
/* =============== MULTI COLUMN ============== */
/* =========================================== */

.multi-column {
  margin-left: auto;
  margin-right: auto;
}

.multi-column h2 {
  margin-bottom: calc(var(--size-font-body) * 2);
}

.multi-column-container {
  display: grid;
}

.multi-column-entry {
  display: flex;
  flex-direction: column;
}

.multi-column-entry img,
.multi-column-entry .icon-placeholder {
  display: flex;
  height: 50px;
  margin-bottom: calc(var(--size-font-body) * 0.75);
}

.multi-column-entry svg {
  margin-bottom: 15px;
}
.multi-column-entry svg path {
  fill: var(--color-primary);
}

.multi-column-entry .icon-placeholder {
  box-sizing: border-box;
  width: 80%;
}

.multi-column-entry img.multi-column-entry-rounded-corners {
  border-radius: var(--border-radius);
}

.multi-column-entry h3 {
  margin-top: 0px;
}
.multi-column-entry h3 p {
  margin: 0px;
}

.multi-column-entry-text p {
  margin: 0px;
}

@media (max-width: 767px) {
  .multi-column-desktop {
    display: none;
  }

  .multi-column-mobile {
    display: block;
    padding-bottom: 10px;
  }

  .multi-column-mobile-grid {
    display: grid;
  }

  .multi-column-entry.force-mobile-max-width img {
    max-width: 100%;
    object-fit: contain;
  }

  .multi-column {
    width: 100% !important;
  }

  .multi-column-centered {
    text-align: center;
  }

  .multi-column-container-mobile-columns-1 {
    grid-template-columns: auto;
  }
  .multi-column-container-mobile-columns-2 {
    grid-template-columns: auto auto;
  }
  .multi-column-container-mobile-columns-3 {
    grid-template-columns: auto auto auto;
  }
  .multi-column-container-mobile-columns-4 {
    grid-template-columns: auto auto auto auto;
  }
  .multi-column-container-mobile-columns-5 {
    grid-template-columns: auto auto auto auto auto;
  }
  .multi-column-container-mobile-columns-6 {
    grid-template-columns: auto auto auto auto auto auto;
  }
  .multi-column-container-mobile-columns-7 {
    grid-template-columns: auto auto auto auto auto auto auto;
  }
  .multi-column-container-mobile-columns-8 {
    grid-template-columns: auto auto auto auto auto auto auto auto;
  }
  .multi-column-container-mobile-columns-9 {
    grid-template-columns: auto auto auto auto auto auto auto auto auto;
  }
  .multi-column-container-mobile-columns-10 {
    grid-template-columns: auto auto auto auto auto auto auto auto auto auto;
  }
}

@media (min-width: 768px) {
  .multi-column-desktop {
    display: grid;
  }

  .multi-column-mobile {
    display: none;
  }

  .multi-column-mobile-grid {
    display: none;
  }

  .multi-column-container-desktop-columns-1 {
    grid-template-columns: auto;
  }
  .multi-column-container-desktop-columns-2 {
    grid-template-columns: auto auto;
  }
  .multi-column-container-desktop-columns-3 {
    grid-template-columns: auto auto auto;
  }
  .multi-column-container-desktop-columns-4 {
    grid-template-columns: auto auto auto auto;
  }
  .multi-column-container-desktop-columns-5 {
    grid-template-columns: auto auto auto auto auto;
  }
  .multi-column-container-desktop-columns-6 {
    grid-template-columns: auto auto auto auto auto auto;
  }
  .multi-column-container-desktop-columns-7 {
    grid-template-columns: auto auto auto auto auto auto auto;
  }
  .multi-column-container-desktop-columns-8 {
    grid-template-columns: auto auto auto auto auto auto auto auto;
  }
  .multi-column-container-desktop-columns-9 {
    grid-template-columns: auto auto auto auto auto auto auto auto auto;
  }
  .multi-column-container-desktop-columns-10 {
    grid-template-columns: auto auto auto auto auto auto auto auto auto auto;
  }
}

.section-multi-column-slider .swiper-wrapper {
  padding-bottom: 25px;
}

/* =========================================== */
/* =============== IMAGE-BANNER ============== */
/* =========================================== */

.image-banner-container {
  position: relative;
}

.image-banner-container[onClick] {
  cursor: pointer;
}

.image-banner-container img,
.image-banner-container .icon-placeholder {
  display: flex;
  width: 100%;
  box-sizing: border-box;
}

.image-banner-container .icon-placeholder {
  opacity: 0.3;
}

.image-banner-container-image-mobile {
  display: none !important;
}

.image-banner-content {
  position: absolute;
  display: flex;
  flex-direction: column;
  padding-left: var(--mobile-horizontal-margin);
  padding-right: var(--mobile-horizontal-margin);
  width: 100%;
  box-sizing: border-box;
}

.image-banner-content.top {
  top: 0px;
}

.image-banner-content.middle {
  top: 50%;
  transform: translateY(-50%);
}

.image-banner-content.bottom {
  bottom: 0px;
}

.image-banner-content h2 p {
  margin: 0px;
}

@media (max-width: 767px) {
  .image-banner-container-image-mobile {
    display: flex !important;
  }

  .image-banner-container-image-desktop {
    display: none !important;
  }
}

@media (min-width: 768px) {
  .image-banner-container .icon-placeholder {
    height: 50vw;
  }
}

/* =========================================== */
/* =============== VIDEO-BANNER ============== */
/* =========================================== */

.video-banner {
  position: relative;
}

.video-banner-video {
  width: 100%;
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
}

.video-banner-video iframe,
.video-banner-video video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.video-banner-content h2 p {
  margin: 0px;
}

/* ========================================= */
/* =============== COLLECTION ============== */
/* ========================================= */

.section-collection {
  padding-top: 20px;
  padding-bottom: 20px;
}

div.section-collection-heading {
  margin-bottom: 18px;
}

.section-collection-button {
  text-align: center;
  margin-top: 20px;
}

.section-collection-button .btn {
  display: inline-flex;
}

.section-collection-cards-grid .swiper-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-gap: 30px 40px;
}

.section-collection-cards .swiper-button-prev,
.section-collection-cards .swiper-button-next {
  background-color: var(--color-primary);
  padding: 10px;
  border-radius: 5px;
  color: var(--color-primary-text);
  box-shadow: 0px 2px 4px 0px rgb(0 0 0 / 30%);
}

.section-collection .icon-placeholder {
  box-sizing: border-box;
  border-radius: var(--border-radius);
}

@media (max-width: 767px) {
  .section-collection-cards-grid .swiper-wrapper {
    grid-template-columns: 1fr 1fr;
    grid-gap: 20px 30px;
  }

  .section-collection-cards .swiper-button-prev,
  .section-collection-cards .swiper-button-next {
    display: none;
  }
}

/* ================================================= */
/* =============== PRODUCT-COLLECTION ============== */
/* ================================================= */

.product-collections {
  margin-left: auto;
  margin-right: auto;
}

.product-collections-cards {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  gap: 30px;
}

.product-collections-card {
  flex: 1;
  display: flex;
  position: relative;
}

.product-collections-card .icon-placeholder {
  box-sizing: border-box;
  border-radius: var(--border-radius);
}

.product-collections-card img {
  width: 100%;
  object-fit: cover;
  border-radius: var(--border-radius);
}

.product-collections-card h3 {
  position: absolute;
  bottom: 10%;
  left: 50%;
  transform: translateX(-50%);
  margin: 0px;
  color: #ffffff;
}

@media (max-width: 767px) {
  .product-collections {
    width: 100% !important;
  }

  .product-collections-cards {
    flex-direction: column;
  }
}

/* ============================================= */
/* =============== CUSTOM-REVIEWS ============== */
/* ============================================= */

.custom-reviews {
  padding-top: 20px;
  padding-bottom: 20px;
}

.custom-reviews h2 {
  margin-top: 0px;
}

.custom-reviews-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 10px;
}

.custom-reviews-card-image {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding-bottom: 60%;
  margin-bottom: 15px;
}

.custom-reviews-card-image img,
.custom-reviews-card-image .icon-placeholder {
  display: flex;
  top: 0;
  left: 20%;
  width: 60%;
  object-fit: cover;
  object-position: center center;
  position: absolute;
  height: 100%;
  border-radius: 50%;
}

.custom-reviews-card-image .icon-placeholder {
  border-radius: 0px !important;
  box-sizing: border-box;
}

.custom-reviews-card span {
  display: block;
  margin-bottom: 10px;
}

.custom-reviews-card span svg {
  width: 20px;
  height: 20px;
}

.custom-reviews-card p {
  text-align: center;
}

.custom-reviews-card p:empty {
  display: none;
}

/* ============================================ */
/* =============== BLOG-ARTICLES ============== */
/* ============================================ */

.section-blog-articles-button {
  display: flex;
  align-items: center;
  flex-direction: column;
  margin-top: 20px;
}

.section-blog-articles-content {
  display: flex;
  flex-direction: column;
}

.section-blog-articles-article {
  margin-bottom: 30px;
}

.section-blog-articles-article:last-child {
  margin-bottom: 0px;
}

.section-blog-articles-article img {
  display: flex;
  width: 100%;
  border-radius: var(--border-radius);
}

.section-blog-articles-article span {
  display: block;
  margin-top: -8px;
  margin-bottom: 10px;
  color: var(--color-text);
}

@media (min-width: 768px) {
  .section-blog-articles-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 30px;
  }

  .section-blog-articles-content-1 {
    grid-template-columns: 1fr;
  }

  .section-blog-articles-content-2 {
    grid-template-columns: 1fr 1fr;
  }

  .section-blog-articles-article {
    margin-bottom: 0px;
  }
}

/* =================================================== */
/* =============== SELLING-POINT-SLIDER ============== */
/* =================================================== */

.selling-point-slider-point {
  height: auto !important;
  display: flex;
  justify-content: center;
  align-items: center;
}

.selling-point-slider-point img {
  margin-right: 5px;
}

.selling-point-slider-point p {
  margin-top: 0px;
  margin-bottom: 0px;
}

/* ==================================================== */
/* =============== STICKY-ADD-TO-CART ================= */
/* ==================================================== */

#sticky-add-to-cart {
  position: fixed;
  left: 0px;
  bottom: 0px;
  z-index: 400;
  width: 100%;
  box-sizing: border-box;
  border-radius: 0px;

  display: none;

  background-color: #000000c0;
  backdrop-filter: saturate(180%) blur(10px);
  padding: 11px 25px;
}

#sticky-add-to-cart form {
  display: flex;
  flex-direction: row;
  align-items: center;
}

#sticky-add-to-cart h2 {
  color: #ffffff;
  margin-top: 0px;
  margin-bottom: 0px;
  margin-right: 20px;
  font-size: 15px;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}

#sticky-add-to-cart div {
  flex: 1;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: end;
  margin-right: 20px;
  gap: 15px;
}

#sticky-add-to-cart div select {
  padding: 3px 10px;
  cursor: pointer;
  border-radius: 15px;
  background-color: transparent;
  color: #ffffff;
  border: 1px solid #ffffff55;
}

#sticky-add-to-cart button {
  padding: 5px 12px;
}

@media (min-width: 768px) {
  #sticky-add-to-cart div select {
    width: 30% !important;
    flex: initial !important;
  }
}

@media (max-width: 360px) {
  #sticky-add-to-cart {
    padding: 11px 20px;
  }
}

@media (max-width: 330px) {
  #sticky-add-to-cart div {
    margin: 0px 10px;
    gap: 10px;
  }
}

@media (max-width: 315px) {
  #sticky-add-to-cart {
    padding: 11px 10px;
  }
}

/* ==================================================== */
/* ================= FORMATTED-TEXT =================== */
/* ==================================================== */

.formatted-text .image-with-text-content {
  padding-left: 0px;
  padding-right: 0px;
}

/* ==================================================== */
/* ====================== BUNDLE ====================== */
/* ==================================================== */

.bundle {
  display: flex;
  flex-direction: column;
  align-items: start;
}

.bundle-heading {
  margin-bottom: 23px;
}

.bundle-content {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
  width: 100%;
}

.bundle-product {
  align-self: start;

  display: flex;
  flex-direction: column;
  align-items: start;
}

.bundle-product-data {
  align-self: start;
  display: flex;
  flex-direction: column;
  align-items: start;
  width: 100%;
}

.bundle-product a {
  color: var(--color-text);
}

.bundle-product-image {
  border-radius: var(--border-radius);
  padding: 20px;
  width: 100%;
  box-sizing: border-box;
  text-align: center;
}

.bundle-product-image img {
  width: 100px;
  height: 100px;
  object-fit: contain;
}

.bundle-product-variants {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  width: 100%;
  margin-top: -4px;
  margin-bottom: 10px;
}

.bundle-product-variants select {
  flex: 1;
  width: 1px;
  border-radius: var(--border-radius);
  border: 1px solid var(--color-border);
  padding: 8px;
  color: var(--color-text);
  box-sizing: border-box;
}

.bundle-product .price {
  font-size: 16px;
}

.bundle-product-available {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-top: 9px;
}

.bundle-product-available span {
  border-radius: 50%;
  margin-right: 7px;

  min-height: calc(var(--size-font-body) * 0.75);
  height: calc(var(--size-font-body) * 0.75);
  max-height: calc(var(--size-font-body) * 0.75);
  min-width: calc(var(--size-font-body) * 0.75);
  width: calc(var(--size-font-body) * 0.75);
  max-width: calc(var(--size-font-body) * 0.75);
}

.bundle-product-available.in-stock {
  color: #409b07;
}
.bundle-product-available.in-stock span {
  background-color: #409b07;
}
.bundle-product-available.in-stock .in-stock {
  display: block;
}
.bundle-product-available.in-stock .out-of-stock {
  display: none;
}

.bundle-product-available.out-of-stock {
  color: #cccccc;
}
.bundle-product-available.out-of-stock span {
  background-color: #cccccc;
}
.bundle-product-available.out-of-stock .in-stock {
  display: none;
}
.bundle-product-available.out-of-stock .out-of-stock {
  display: block;
}

.bundle-add-to-cart {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 18%;
  margin-left: 20px;
}

.bundle-add-to-cart-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.bundle-add-to-cart-price {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin: 10px 0px 13px 0px;
  flex-wrap: wrap;
  width: 100%;
  justify-content: center;
}

.bundle-add-to-cart-price-saved {
  border-radius: var(--border-radius);
  background-color: var(--color-text);
  color: var(--color-body-background);
  font-size: calc(var(--size-font-body) * 0.8);
  font-weight: 700;
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 2px 5px;
  margin-left: 10px;
  margin-top: 1px;
}

.bundle-add-to-cart-price-saved svg {
  fill: var(--color-body-background);
  width: 14px;
  height: 14px;
  margin-right: 3px;
  margin-top: 1px;
}

.bundle-add-to-cart h4 {
  margin: 0px;
  font-size: 16px;
}

.bundle-add-to-cart button {
  width: 100%;
}

.bundle-add-to-cart-content label.long {
  display: none;
}

@media (max-width: 767px) {
  .bundle-content {
    flex-direction: column;
    align-items: start;
    gap: 20px;
  }

  .bundle-product {
    width: 100% !important;
    display: flex;
    flex-direction: row;
    align-items: center;
  }

  .bundle-product-image {
    width: auto;
    padding: 15px;
  }

  .bundle-product-data {
    align-self: center;
    width: auto;
    flex: 1;
    margin-left: 22px;
  }

  .bundle-product-data h4 {
    margin-top: 0px;
  }

  .bundle-product-variants {
    flex-wrap: wrap;
  }

  .bundle-product-variants select {
    font-size: 12px;
  }

  .bundle-product-plus {
    position: relative;
    width: 100%;
    text-align: center;
    margin: 0px;
  }

  .bundle-product-plus:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 3%;
    border-top: 1px solid #bababa;
    width: 40%;
    transform: translateY(-50%);
  }

  .bundle-product-plus:after {
    content: "";
    position: absolute;
    top: 50%;
    right: 3%;
    border-top: 1px solid #bababa;
    width: 40%;
    transform: translateY(-50%);
  }

  .bundle-add-to-cart {
    width: 100%;
    margin-left: 0px;
    margin-top: 15px;
  }

  .bundle-add-to-cart-content {
    flex-direction: row;
    align-items: center;
    margin-bottom: 15px;
    width: 100%;
  }

  .bundle-add-to-cart-content label {
    flex: 1;
    font-weight: 400;
    margin-right: 5px;
    display: none;
  }

  .bundle-add-to-cart-content label.long {
    display: block;
  }

  .bundle-add-to-cart-price {
    margin: 0px;
    width: auto;
    justify-content: right;
  }
}

/* ============================================= */
/* ================= REVIEWS =================== */
/* ============================================= */

.reviews-info {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  background-color: #faf5ea;
  padding: 120px 20%;
}

.reviews-info svg {
  height: 90px;
  margin-right: 10px;
}

.reviews-info span {
  flex: 1;
}

@media (max-width: 767px) {
  .reviews-info {
    flex-direction: column;
  }

  .reviews-info svg {
    margin-right: 0px;
    margin-bottom: 10px;
  }
}

/* ======================== HEADER ======================== */

.reviews-header {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 50px;
  margin-top: 0px;
  margin-bottom: 30px;
  background-color: #fcfcfc;
  padding: 25px 5px;
  border-radius: var(--border-radius);
}

.reviews-header-spacer {
  width: 1px;
  height: 90px;
  background-color: var(--color-border);
}

.reviews-header-block {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.reviews-header-block-average .reviews-header-block-big-number {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 3px;
}

.reviews-header-block-average svg {
  width: 20px;
  height: 20px;
  margin-top: 1px;
}
.reviews-header-block-average svg:first-child {
  margin-left: 10px;
}

.reviews-header-block-stars {
  width: 35%;
  flex: initial;
}

.reviews-header-block-headline {
  margin: 0px;
  font-weight: 600;
  font-size: 16px;
}

.reviews-header-block-big-number {
  font-size: 32px;
  margin: 10px 0px;
}

.reviews-header-block-info {
  opacity: 0.6;
  font-size: 14px;
}

.reviews-header-star-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 3px;
  width: 100%;
}

.reviews-header-star-row svg {
  width: 15px;
  height: 15px;
}

.reviews-header-star-row div {
  flex: 1;
  height: 15px;
  background-color: #00000022;
  margin: 0 20px 0 30px;
  border-radius: var(--border-radius);
}

.reviews-header-star-row div div {
  background-color: #000000;
  height: 100%;
  margin: 0px;
}

.reviews-header-star-row span {
  opacity: 0.9;
  width: 35px;
  text-align: right;
}

@media (max-width: 767px) {
  .reviews-header {
    flex-direction: column;
    gap: 25px;
    padding: 0px;
    background-color: transparent;
  }

  .reviews-header-spacer {
    display: none;
  }

  .reviews-header-block-count {
    display: none;
  }

  .reviews-header-block-stars {
    width: 100%;
    padding: 0px;
  }

  .reviews-header-block-average .reviews-header-block-big-number {
    margin: 0px;
  }
}

/* ======================== REVIEWS ======================== */

.reviews-list {
  display: flex;
  flex-direction: row;
  align-items: start;
  gap: 30px;
}

.reviews-column {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 30px;
}

.reviews-column-mobile {
  display: none;
}

.reviews-list-entry {
  background-color: #fcfcfc;
  box-sizing: border-box;
  border-radius: var(--border-radius);
  box-shadow: 0 1px 3px #0000001a;
  border: 1px solid #00000007;
}

.reviews-list-entry-break-chars h4,
.reviews-list-entry-break-chars .reviews-list-entry-text,
.reviews-list-entry-break-chars .reviews-list-entry-text p,
.reviews-list-entry-break-chars span,
.reviews-list-entry-break-chars span p {
  line-break: anywhere;
}

.reviews-list-entry img {
  width: 100%;
  border-radius: var(--border-radius) var(--border-radius) 0px 0px;
  padding-left: 0px;
  padding-right: 0px;
}

.reviews-list-entry > * {
  padding-left: 15px;
  padding-right: 15px;
}

.reviews-list-entry-header {
  display: flex;
  flex-direction: row;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 15px;
}

.reviews-list-entry-header-stars {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 3px;
}

.reviews-list-entry-header-stars svg {
  width: 18px;
  height: 18px;
}

.reviews-list-entry-header-verified {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 4px;
  opacity: 0.6;
  font-size: 14px;
}

.reviews-list-entry-header-verified svg {
  width: 14px;
  height: 14px;
}
.reviews-list-entry-header-verified svg path {
  fill: #000000 !important;
}

.reviews-list-entry span {
  display: block;
  opacity: 0.7;
  font-size: 14px;
  margin-top: 17px;
  padding-bottom: 13px;
  padding-top: 13px;
  background-color: #00000006;
}

.reviews-list-entry p {
  margin: 0px;
}

.reviews-list-entry h4 {
  margin: 15px 0px -5px 0px;
}

.reviews-list-entry-text {
  margin: 15px 0px;
}

.reviews-load-more-wrapper {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  margin-top: 50px;
}

.reviews-load-more-wrapper .btn {
  font-size: 13px;
}

@media (max-width: 1000px) {
  .reviews-list {
    gap: 25px;
  }

  .reviews-column {
    gap: 25px;
  }
}

@media (max-width: 767px) {
  .reviews-list {
    gap: 20px;
  }

  .reviews-column {
    gap: 20px;
  }

  .reviews-column-desktop {
    display: none;
  }
  .reviews-column-mobile {
    display: flex;
  }

  .reviews-list-entry-header-stars {
    gap: 2px;
  }

  .reviews-list-entry-header-stars svg {
    width: 16px;
    height: 16px;
  }

  .reviews-list-entry-header {
    gap: 6px;
  }

  .reviews-list-entry-header-verified svg {
    width: 13px;
    height: 13px;
  }

  .reviews-list-entry span {
    font-size: 13px;
    padding-bottom: 11px;
    padding-top: 11px;
  }
}

/* ================================================== */
/* ================= SEARCH POPUP =================== */
/* ================================================== */

#search-popup {
  visibility: hidden
  position: fixed;
  z-index: 2900;
  width: 100%;
  height: 100%;
}

#search-popup-overlay {
  position: fixed;
  z-index: 2901;
  top: 0px;
  width: 100%;
  height: 100%;
  background-color: #000000;
  opacity: 0;
  transition: opacity 0.2s;
}

.search-popup-content {
  position: fixed;
  z-index: 2901;
  top: 78px;
  right: 0px;
  width: 100%;
  height: 100%;
  background-color: var(--color-body-background);
  transition: transform 0.2s;
  transform: translateX(100%);
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
}

.search-popup-header {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
  padding: 10px;
  box-sizing: border-box;
  border-bottom: 1px solid var(--color-border);
}

.search-popup-header svg {
  width: 32px;
  height: 32px;
  fill: var(--color-text);
  opacity: 0.4;
}

.search-popup-header svg:last-child {
  width: 18px;
  height: 18px;
  cursor: pointer;
  opacity: 0.7;
}

.search-popup-header svg:last-child path {
  stroke: var(--color-text) !important;
}

.search-popup-header input {
  flex: 1;
  font-size: 17px;
  text-align: center;       /* Text zentriert im Feld */
  padding: 2px 0px;
  border: none;
  margin-top: 2px;
}

.search-popup-contents {
  flex: 1;
  overflow-y: auto;
  padding: 20px;
  box-sizing: border-box;
}

#shopify-section-search-predictive {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 30px;
  box-sizing: border-box;
}

.search-popup-result {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
  text-decoration: none;
  color: var(--color-text);
}

.search-popup-result img {
  width: 30%;
  border-radius: var(--border-radius);
}

.search-popup-result .search-popup-result-data {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 6px;
}

.search-popup-result-data > * {
  margin: 0px;
}

@media (max-width: 1024px) {
 .search-popup-content {
    top: 188px !important; /* falls nötig, sonst kannst du es weglassen */
    height: 100% !important;
  }
}


/* ========================================= */
/* =============== UGC-VIDEOS ============== */
/* ========================================= */

.ugc-videos .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.ugc-videos-wrapper {
  display: flex;
  flex-direction: row;
  align-items: stretch;
}

.ugc-videos-video {
  flex: 1;
  border-radius: var(--border-radius);
  position: relative;
  cursor: pointer;
}

.ugc-videos-video svg {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  fill: #ffffff;
  opacity: 0.8;
  pointer-events: none;
}

.ugc-videos-video-main {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--border-radius);
}

@media (max-width: 767px) {
  .ugc-videos-desktop-container {
    width: 100% !important;
  }

  .ugc-videos-wrapper {
    display: grid;
    grid-template-columns: auto auto;
  }
}

/* ============================================ */
/* =============== COMPARE-TABLE ============== */
/* ============================================ */

.compare-table {
  margin-left: auto;
  margin-right: auto;
  
  --compare-table-color-border: var(--color-border);
  --compare-table-color-primary: var(--color-primary);
}

.compare-table-row,
.compare-table-row-last,
.compare-table-row-headline {
  display: flex;
  flex-direction: row;
  align-items: stretch;
}
.compare-table-row div,
.compare-table-row-last div,
.compare-table-row-headline div {
  display: flex;
  align-items: center;
}

.compare-table-row-text {
  flex: 1;
  padding: 10px 15px 10px 15px;
  border-left: 2px solid var(--compare-table-color-border);
  border-top: 2px solid var(--compare-table-color-border);
}
.compare-table-row div p {
  margin: 0px;
}
.compare-table-row:last-child .compare-table-row-text {
  border-bottom: 2px solid var(--compare-table-color-border);
  border-radius: 0px 0px 0px var(--border-radius);
}
.compare-table-row:first-child .compare-table-row-text {
  border-radius: var(--border-radius) 0px 0px 0px;
}

.compare-table-row-first {
  text-align: center;
  padding: 7px 0px;
  width: 140px;
  border-top: 2px solid var(--compare-table-color-border);
}
.compare-table-row:last-child .compare-table-row-first {
  border-bottom: 2px solid var(--compare-table-color-border);
}

.compare-table-row-second {
  padding: 7px 0px;
  width: 140px;
  background-color: var(--compare-table-color-primary);
  border-right: 2px solid var(--compare-table-color-primary);
  border-top: 2px solid var(--compare-table-color-primary);
}
.compare-table-row:last-child .compare-table-row-second {
  border-bottom: 2px solid var(--compare-table-color-primary);
}

.compare-table-row-second img {
  width: 80px;
}

.compare-table-row svg {
  width: 18px;
  height: 18px;
  margin-left: auto;
  margin-right: auto;
}

.compare-table-row svg.icon-checkmark-circle {
  width: 40px;
  height: 40px;
}

.compare-table-row-last div,
.compare-table-row-headline div {
  border: none;
}

.compare-table-row-last .compare-table-row-second {
  width: 142px;
  border-radius: 0px 0px var(--border-radius) var(--border-radius);
}

.compare-table-row-headline .compare-table-row-first {
  border: none;
  padding: 15px 0px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.compare-table-row-headline .compare-table-row-second {
  text-align: center;
  width: 140px;
  border-radius: var(--border-radius) var(--border-radius) 0px 0px;
  padding: 15px 0px;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 767px) {
  .compare-table {
    width: 100% !important;
}
  .compare-table-row-first {
    width: 120px;
  }

  .compare-table-row-second {
    width: 120px;
  }

  .compare-table-row-second img {
    width: 70px;
  }

  .compare-table-row-last .compare-table-row-second {
    width: 122px;
  }

  .compare-table-row-headline .compare-table-row-second {
    width: 120px;
  }
}

@media (max-width: 400px) {
  .compare-table-row-first {
    width: 100px;
  }

  .compare-table-row-second {
    width: 100px;
  }

  .compare-table-row-second img {
    width: 60px;
  }

  .compare-table-row svg {
    transform: scale(0.8);
  }

  .compare-table-row-last .compare-table-row-second {
    width: 102px;
  }

  .compare-table-row-headline .compare-table-row-second {
    width: 100px;
  }
}

@media (max-width: 350px) {
  .compare-table-row-first {
    width: 80px;
  }

  .compare-table-row-second {
    width: 80px;
  }

  .compare-table-row-second img {
    width: 50px;
  }

  .compare-table-row-last .compare-table-row-second {
    width: 82px;
  }

  .compare-table-row-headline .compare-table-row-second {
    width: 80px;
  }
}

/* ======================================== */
/* =============== SEO-TEXTS ============== */
/* ======================================== */

.seo-texts {
  display: grid;
  grid-template-columns: auto auto;
  gap: 40px;
}

.seo-texts h3 {
  margin-top: 0px;
}

.seo-texts p {
  margin-bottom: 0px;
}

@media (max-width: 767px) {
  .seo-texts {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 30px;
  }
}

/* =========================================== */
/* =============== SOCIAL-PROOF ============== */
/* =========================================== */

.social-proof {
  display: flex;
  flex-direction: row;
  align-items: center;
}

@media (min-width: 768px) {
  .social-proof img {
    transform: scale(1.1);
  }

  .social-proof-desktop-centered {
    justify-content: center;
  }
}

.social-proof div {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.social-proof img {
  width: 20px;
  height: 20px;
  border-radius: 50%;
}

.social-proof img:last-child {
  position: relative;
  left: -5px;
}

.social-proof p {
  margin: 0px 0px 0px 2px;
  line-height: 1.1em;
}

.social-proof p img {
  position: initial !important;
  left: 0px !important;
  margin-bottom: -0.2em;
  width: 1.15em;
  height: 1.15em;
}

/* ======================================== */
/* =============== LINK-LIST ============== */
/* ======================================== */

.link-list {
  display: flex;
  flex-direction: row;
  align-items: start;
  justify-content: center;
  gap: 30px;
  overflow: scroll;
}

.link-list-entry {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.link-list-entry div {
  display: flex;
  justify-content: center;
  border-radius: 50%;
  padding: 18px;
  width: 75px;
  height: 75px;
  box-sizing: border-box;
}

.link-list-entry img,
.link-list-entry .icon-placeholder {
  width: 100%;
  background-color: transparent;
  padding: 0px !important;
}

.link-list-entry span {
  text-align: center;
}

@media (max-width: 767px) {
  .link-list {
    display: none;
    gap: 20px;
  }

  .link-list-force-mobile {
    display: flex !important;
  }

  .link-list-entry div {
    padding: 15px;
    width: 65px;
    height: 65px;
  }
}

@media (min-width: 768px) {
  .link-list-mobile {
    display: none !important;
  }
}

.link-list-mobile .swiper-slide {
  width: fit-content !important;
}

/* =============================================== */
/* =============== NEWSLETTER POPUP ============== */
/* =============================================== */

.newsletter-popup-overlay {
  display: none;
  position: fixed;
  z-index: 1000;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background-color: #000000;
  opacity: 0.6;
}

.newsletter-popup {
  display: none;
  position: fixed;
  z-index: 1001;
  top: 50%;
  left: 50%;
  width: 50%;
  max-width: 400px;
  transform: translate(-50%, -50%);
  background-color: var(--color-body-background);
  border-radius: var(--border-radius);
  box-shadow: 0px 2px 4px 0px rgb(0 0 0 / 30%);
}

.newsletter-popup img,
.newsletter-popup .icon-placeholder {
  box-sizing: border-box;
  width: 100%;
  border-radius: var(--border-radius) var(--border-radius) 0px 0px;
}

.newsletter-popup-content {
  padding: 20px;
}

.newsletter-popup-content h3 {
  margin-top: 0px;
  font-size: 20px;
  line-height: 23px;
  margin-bottom: 18px;
}

.newsletter-popup-error {
  display: none;
  background-color: #c1292e;
  color: #fff;
  border-radius: var(--border-radius);
  padding: 9px 14px;
  margin: 0px 0 15px 0;
}

.newsletter-popup-content .footer-column-newsletter-privacy-policy {
  margin-top: 8px;
  margin-bottom: 0px;
  font-size: 12px;
}

.newsletter-popup-close {
  position: absolute;
  right: 10px;
  top: 10px;
  width: 35px;
  height: 35px;
  background-color: #00000010;
  padding: 10px;
  border-radius: 50%;
  cursor: pointer;
  box-sizing: border-box;
}

.newsletter-popup-close svg {
  width: 100%;
  height: 100%;
}

@media (max-width: 767px) {
  .newsletter-popup {
    max-width: initial;
    width: 90%;
  }
}

/* ========================================= */
/* =============== REVIEW ROW ============== */
/* ========================================= */

.review-row {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  gap: 30px;
}

.review-row .reviews-header-block {
  justify-content: center;
  text-align: center;
}

.review-row .reviews-header-block .reviews-header-block-headline {
  font-size: 20px;
}

.review-row .reviews-header-block .reviews-header-block-info {
  width: 180px;
  opacity: 0.8;
}

.review-row .reviews-list-entry {
  position: initial;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.review-row .reviews-list-entry .reviews-list-entry-text {
  flex: 1;
}

.review-row .reviews-list-entry span {
  margin-top: 0px;
}

@media (max-width: 767px) {
  .review-row {
    flex-direction: column;
  }

  .review-row .reviews-header-block {
    margin-bottom: 10px;
  }

  .review-row .reviews-header-block .reviews-header-block-headline {
    font-size: 30px;
    line-height: 34px;
    font-weight: 600;
  }

  .review-row .reviews-header-block-average .reviews-header-block-big-number {
    margin: 15px 0 !important;
  }
}

/* =============================================== */
/* =============== NEWSLETTER POPUP ============== */
/* =============================================== */

.slideshow-swiper-height {
  height: 100% !important;
}

.slideshow-swiper-slide-height {
  height: auto !important;
}

.slideshow-content {
  height: 100%;
  object-fit: cover;
}

@media (min-width: 768px) {
  .section-slideshow[data-slideshow-desktop-navigation="false"]
    .swiper-button-prev,
  .section-slideshow[data-slideshow-desktop-navigation="false"]
    .swiper-button-next {
    display: none;
  }
}

@media (max-width: 767px) {
  .section-slideshow[data-slideshow-mobile-navigation="false"]
    .swiper-button-prev,
  .section-slideshow[data-slideshow-mobile-navigation="false"]
    .swiper-button-next {
    display: none;
  }
}

/* ============================================== */
/* =============== MARQUEE SLIDER ============== */
/* ============================================== */

.scrolling-image {
  color: var(--color-text-main);
  border: 0;
  width: 100%;
  height: fit-content;
  white-space: nowrap;
  overflow: hidden;
  box-sizing: border-box;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

@media (max-width: 767px) {
  .scrolling-image-desktop-container{
    background-color: transparent !important;
    padding-top: 20px !important;
    padding-bottom: 0px !important;
  }
}

@media (min-width: 768px) {
  .scrolling-image-mobile-container {
    background-color: transparent !important;
    padding-top: 0px !important;
    padding-bottom: 0px !important;
  }
}

.scrolling-image .scrolling-image__container {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.header-announcement-bar {
    position: relative;
    width: 100%;
    background-color: #333;
    color: white;
    padding: 5px 0;
    overflow: hidden;
    display: flex; 
    justify-content: center; 
    align-items: center; 
}

.announcement-scroll-container {
    width: 100%;
    overflow: hidden; 
}

.announcement-scroll-content {
    display: flex;
    white-space: nowrap;
    animation: scrollText 50s linear infinite; 
}

@keyframes scrollText {
    0% {
        transform: translateX(100%); 
    }
    100% {
        transform: translateX(-100%); 
    }
}

.announcement-text {
    margin-right: 50px; 
}

/* Container für die Header-Elemente */
.header-menu-links {
    display: flex;
    justify-content: flex-end; /* Positioniert die Symbole nach rechts */
    align-items: center;
    gap: 20px; /* Abstand zwischen den Symbolen */
    width: 100%; /* Stellt sicher, dass der Container die volle Breite hat */
}

@media (min-width: 1401px) {
/* Symbole für Kundenkonto und Warenkorb */
.header-menu-account svg,
.header-menu-cart-drawer svg {
    width: 25px;  /* Passe die Größe nach Bedarf an */
    height: 25px; /* Passe die Größe nach Bedarf an */
    font-size: 30px; /* Gleiche Größe für beide Icons */
    display: flex;
    align-items: center;
    justify-content: center;
    vertical-align: middle; /* Vertikale Ausrichtung der Icons */
}

/* Für das Kundenkonto-Icon */
.header-menu-account svg {
    width: 31px;  /* Größeres Kundenkonto-Icon */
    height: 31px; /* Größeres Kundenkonto-Icon */
    font-size: 50px; /* Größere Schriftgröße für das Kundenkonto-Icon */
}

/* Für das Warenkorb-Icon */
.header-menu-cart-drawer svg {
    width: 25px;  /* Kleineres Warenkorb-Icon */
    height: 25px; /* Kleineres Warenkorb-Icon */
    font-size: 25px; /* Kleinere Schriftgröße für das Warenkorb-Icon */
}

/* Zusätzliche Anpassungen für mobile Ansicht */
@media screen and (max-width: 699px) {
    .header-menu-links {
        gap: 10px; /* Weniger Abstand auf kleineren Bildschirmen */
    }
}

.header-menu-icon-right {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 30px; /* Abstand nach links */
    font-size: 60px;  /* Gleiche Größe wie das Warenkorb-Icon */
    color: #000; /* Falls du die Farbe ändern möchtest */
}

/* Container für den Branding-Schriftzug */
.header-menu-branding {
    width: 100%;                /* Setzt die Breite auf 100% */
    text-align: center;         /* Zentriert den Text horizontal */
    margin-bottom: 20px;        /* Abstand nach unten */
}

/* Branding-Text */
.branding-text {
    font-size: 30px;            /* Schriftgröße */
    font-weight: bold;          /* Fett gedruckt */
    color: #000000;             /* Textfarbe */
    text-transform: uppercase;  /* Text in Großbuchstaben */
}

.fillthespace-text {
    font-size: 24px;  /* Schriftgröße anpassen */
    font-weight: bold;
    text-align: center;
    color: #000;
    position: relative;
    top: -10px;  /* Der Text wird nach oben verschoben */
    margin-bottom: 40px; /* Erhöht den Abstand zu den Kategorien */
}



