/** Shopify CDN: Minification failed

Line 6:31 Unexpected "/"

**/
* WAS IST DEIN ZIEL ABSCHNITT */
.interest-section {
  text-align: center;
  padding: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.interest-section h2 {
  font-size: 32px;
  margin-bottom: 40px;
  font-family: 'Arial', sans-serif;
}

.interest-options {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

.interest-item {
  flex: 1 1 calc(25% - 20px);
  /* Vier Elemente pro Reihe auf großen Bildschirmen */
  max-width: 100%;
  position: relative;
}

.interest-item img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.interest-item img:hover {
  transform: scale(1.05);
  box-shadow: 0px 8px 25px rgba(0, 0, 0, 0.3);
}

.interest-item p {
  font-size: 18px;
  margin-top: 10px;
  font-weight: bold;
  color: #333;
}

@media (max-width: 768px) {
  .interest-item {
    flex: 1 1 calc(50% - 10px);
    /* Zwei Elemente pro Reihe auf mobilen Bildschirmen */
    margin-bottom: 20px;
  }

  .interest-section h2 {
    font-size: 28px;
  }
}

@media (max-width: 480px) {
  .interest-item p {
    font-size: 16px;
  }

  .interest-section h2 {
    font-size: 24px;
    margin-bottom: 15px;
  }
}
.custom-categories-section {
  text-align: center;
  letter-spacing: 0;
  line-height: 1.375;
  padding: 40px 20px;
  max-width: 1400px;
  margin: 0 auto;
}

.custom-categories-section h2 {
  font-size: 28px;
  margin-bottom: 30px;
  font-weight: 600;
}

.categories-options {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.category-item {
  flex: 0 0 150px;
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.category-item .image-container {
  width: 100%;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
}

.category-item img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.category-item p {
  font-size: 16px;
  font-weight: 500;
  margin: 0;
  color: #333;
}

.category-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

.category-item:hover img {
  transform: scale(1.05);
}

@media (max-width: 1200px) {
  .category-item {
    flex: 0 0 140px;
  }
}

@media (max-width: 992px) {
  .categories-options {
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 20px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
  }

  .category-item {
    flex: 0 0 130px;
  }
}

@media (max-width: 768px) {
  .custom-categories-section h2 {
    font-size: 24px;
  }

  .category-item {
    flex: 0 0 120px;
  }
}

@media (max-width: 480px) {
  .custom-categories-section {
    padding: 30px 15px;
  }

  .custom-categories-section h2 {
    font-size: 22px;
    margin-bottom: 20px;
  }

  .category-item {
    flex: 0 0 110px;
    padding: 15px;
  }

  .category-item .image-container {
    height: 80px;
  }

  .category-item p {
    font-size: 14px;
  }
}

@media (max-width: 800px) {
  .custom-categories-section {
    padding: 20px 10px;
  }

  .custom-categories-section h2 {
    font-size: 20px;
    margin-bottom: 15px;
  }

  .categories-options {
    gap: 16px;
  }

  .category-item {
    flex: 0 0 100px;
    padding: 10px;
  }

  .category-item .image-container {
    height: 70px;
  }

  .category-item img {
    max-height: 70px;
  }

  .category-item p {
    font-size: 12px;
    text-align: center;
  }
}

/* USP Sektion */
        .usp-container {
            position: relative;
            width: 100%;
            height: 180px; /* Etwas erhöht für größere Icons */
            background-color: #f7f7f7;
            overflow: hidden;
        }

        .usp-item {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 10px;
            transition: opacity 0.5s ease;
            opacity: 0;
        }

        .usp-item.active {
            opacity: 1;
        }

        /* Größere Icons */
        .usp-item i {
            font-size: 80px; /* Von 50px auf 80px erhöht */
            color: #73A63F;
            margin-bottom: 10px;
        }

        .usp-item p {
            font-size: 1em;
            color: #333;
            margin: 0;
        }

        @media (min-width: 601px) {
            .usp-container {
                display: flex;
                justify-content: space-around;
                height: auto;
                padding: 20px 0;
            }

            .usp-item {
                position: static;
                opacity: 1;
                flex: 1;
                padding: 20px 10px;
            }
        }

        
/* UNIQUE FEATURES */
/* Desktop-Ansicht */
#unique-features {
  display: flex;
  justify-content: space-around;
  /* Ensures icons are evenly distributed */
  align-items: center;
  /* Aligns items vertically in the center */
  flex-wrap: nowrap;
  /* Ensures icons stay in one row */
  gap: 10px;
  /* Adds space between icons */
}

/* Style for individual features */
.feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin: 10px;
  flex: 1;
  /* Allow even space distribution */
  min-width: 120px;
  /* Minimum width for each feature */
}

.feature i {
  font-size: 36px;
  color: #79AD38;
  margin-bottom: 8px;
}

.feature p {
  margin: 0;
  font-size: 14px;
  color: #4a4a4a;
}

/* Mobile Anpassungen */
@media (max-width: 768px) {
  #unique-features {
    flex-direction: row;
    flex-wrap: wrap;
    /* Allow wrapping for smaller screens */
    justify-content: center;
    /* Center items on smaller screens */
  }

  .feature {
    flex: 1 1 50%;
    /* Allow two columns on smaller screens */
    margin-bottom: 15px;
  }
}
/* Bundle Form Styles für BodyPlanet Gewürzmischungen */

.bundle-form {
  display: inline-block;
  margin-top: 10px;
  width: 100%;
}

.bundle-form-inline {
  display: inline-block;
  margin-left: 10px;
}

.bundle-btn {
  background: linear-gradient(135deg, #ff6b35, #ff8c42);
  color: white;
  border: none;
  padding: 12px 20px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
  width: 100%;
  justify-content: center;
  margin-bottom: 8px;
}

.bundle-btn:hover {
  background: linear-gradient(135deg, #e55a2b, #e67e35);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
  color: white;
  text-decoration: none;
}

.bundle-link {
  background: linear-gradient(135deg, #28a745, #34ce57);
  color: white;
  border: none;
  padding: 8px 16px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  box-shadow: 0 3px 10px rgba(40, 167, 69, 0.3);
}

.bundle-link:hover {
  background: linear-gradient(135deg, #218838, #2fb344);
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(40, 167, 69, 0.4);
  color: white;
  text-decoration: none;
}

.bundle-save {
  background: linear-gradient(135deg, #dc3545, #e74c3c);
  color: white;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 700;
  display: inline-block;
  margin-left: 10px;
  animation: pulse 2s infinite;
}

.bundle-discount {
  background: linear-gradient(135deg, #ffc107, #ffcd39);
  color: #212529;
  padding: 3px 6px;
  border-radius: 4px;
  font-size: 10px;
  font-weight: 700;
  display: inline-block;
  margin-right: 8px;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { opacity: 1; }
  50% { opacity: 0.7; }
  100% { opacity: 1; }
}

/* Responsive Design */
@media (max-width: 768px) {
  .bundle-btn {
    padding: 10px 16px;
    font-size: 13px;
  }
  
  .bundle-link {
    padding: 6px 12px;
    font-size: 11px;
  }
  
  .bundle-form-inline {
    display: block;
    margin-left: 0;
    margin-top: 8px;
  }
}

/* Bundle Item Layout */
.bundle-item {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 15px;
  padding: 15px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.bundle-item strong {
  flex: 1;
  margin-right: 10px;
  min-width: 200px;
}

/* Stack Items Layout */
.stack-products {
  margin-bottom: 15px;
}

.product-combo {
  background: rgba(255, 255, 255, 0.03);
  padding: 15px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 10px;
}

.product-combo strong {
  color: #ff6b35;
  font-weight: 700;
}

.product-combo a {
  color: #007bff;
  text-decoration: none;
  font-weight: 600;
}

.product-combo a:hover {
  color: #0056b3;
  text-decoration: underline;
}

/* Loading State für Forms */
.bundle-form.loading .bundle-btn {
  opacity: 0.7;
  pointer-events: none;
}

.bundle-form.loading .bundle-btn::after {
  content: "";
  width: 16px;
  height: 16px;
  border: 2px solid transparent;
  border-top: 2px solid #fff;
  border-radius: 50%;
  display: inline-block;
  animation: spin 1s linear infinite;
  margin-left: 8px;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}