/** Shopify CDN: Minification failed

Line 16:2 Unexpected "<"
Line 18:24 Unexpected "{"
Line 18:33 Expected ":"
Line 18:43 Unexpected "-"
Line 18:45 Unexpected "{"
Line 18:52 Expected ":"
Line 18:56 Unexpected "{"
Line 19:21 Expected identifier but found whitespace
Line 19:23 Unexpected "{"
Line 19:32 Expected ":"
... and 1 more hidden warnings

**/
  <style>
/* in case we use product specific backdrops with class */
 .product-item__media--{{ product.handle }}-{{ index }} {
    background-color: {{ product.metafields.custom.item_background_color }}
  }
  
                    
/* with new bundle, product on desktop shall take more width!*/
  @media (min-width: 60em) {
    .product__meta {
        max-width: 100% !important; /* before: 38em*/
    }
}
                
.bundle-title-select {
  color: #333;
}
          /* Allgemeines Styling */
.product-bundle__container {
  margin: 0;
  margin-top: 10px;
  margin-bottom: 15px;
  display: block;
}

 .product-bundle-boxes__container {
    display: grid;
    grid-template-columns: repeat(auto-fill,minmax(115px,1fr));
    flex-wrap: wrap;
    gap: 16px;      
     }

  .product-option--button {
  border: 2px dashed #e9e9e0;
  background-color: #fff;
  width: 128px;
  height: 128px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 10px;
    padding: 4px;
}

.product-option--placeholder {
  text-align: center;
}

.product-option--placeholder p {
  font-size: 18px;
}  

.plus-icon {
  font-size: 38px;
  color: #aaa;
}

  @media only screen and (max-width: 700px){
    .product-option--placeholder p {
font-size: 16px;
      }

    .plus-icon {
  font-size: 24px;
    }
  }
                    
 @media only screen and (max-width: 1099px){
 .product-bundle-boxes__container { 
   grid-template-columns: repeat(auto-fill,minmax(100px,1fr));                         
   gap: 10px;
                  }

  .product-option--button { 
  width: 105px;
  height: 105px;}
 }
                    
  @media only screen and (max-width: 360px){
 .product-bundle-boxes__container { 
   grid-template-columns: repeat(auto-fill,minmax(80px,1fr));
                  }

   .product-option--button { width: 85px;
  height: 90px;}
    
         }
                    
          /* judge me sterne */
  .setmodal .jdgm-widget .jdgm-prev-badge {
        transform: translateY(0px) !important;
    }

/* setmodal Styling */
.setmodal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.setmodal.hidden {
  display: none;
}

.setmodal-content {
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  width: 80%;
  max-width: 900px;
  text-align: center;
  position: relative;
  height: 80%;
  overflow-y:scroll;
  overflow-x:hidden;
}

                    /* for oos note*/
  .setmodal-product{ position: relative;}
                    


  .setmodal-product-title {  
    font-family: 'Americana';  
    color: var(--heading-color);
    font-size: 25px;
    overflow-wrap: break-word; /* zu langer text in nächste zeile */
  }

  @media only screen and (max-width: 768px){
   .setmodal-product-title {
     font-size: 20px;
   }
  }

   @media only screen and (max-width: 499px){
   .setmodal-product-title {
     font-size: 17px;
   }
  }

    .setmodal-content h3 {
      color: #333;       
         }



  @media only screen and (max-width: 500px) {
      .setmodal-content {
    width: 100%;
    margin: 20px 12px;
      }
  }

/* hiding input buttons in modal, only click on products.. */
 .setmodal-content input { display: none;}


  /* bundle modal review stars in coll color.*/
  .bundle-badge-ab .jdgm-star {   color: #836a68!important; }               
                    
.setmodal-close {
    position: absolute;
    top: 3px;
    right: 60px;
    background: none;
    border: none;
    font-size: 78px;
    cursor: pointer;
    color: #b1afae;
}
    .setmodal-close:hover { color: #333;}
                    
  @media only screen and (max-width: 768px){
                    .setmodal-close { 
    top: -12px;
    right: 12px;
    font-size: 51px;

}
  }
.setmodal-product-grid {
  display: grid;
  gap: 10px;
   grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  justify-content: center;
}

/* mobile modal grid! */
@media only screen and (max-width: 500px) {
 .setmodal-product-grid {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
 }
}
                    
                    
.setmodal-product {
  border: 2px solid transparent;
  border-radius: 10px;
  padding: 10px;
  cursor: pointer;
  transition: border-color 0.3s ease;
  flex: 0 0 22%; /* Vier Produkte in einer Reihe */
  box-sizing: border-box;
  text-align: center;
}

.setmodal-product img {
  max-width: 100%;
  height: auto;
}

.setmodal-product:hover, .setmodal-product.selected {
  border-color: #996d69;
  border-radius: 10px;
}

.setmodal-product.selected {
  border-color: #8b4513; /* Brauner Rand */
}

/* product-container für visuelle darstellung. */
.selected-product-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    text-align: center;
  box-sizing: border-box;
  height: 100%;
}

.selected-product-content img {
    width: 100%;
    height: auto;
    min-height: 0;
    object-fit: contain; /* contain due to bug, was cover*/
    flex-grow: 1;
    border-radius: 10px;
}

                

.selected-product-title {
  flex-shrink: 0;
  color: #333;
  overflow-wrap: break-word;
  max-width: 100%;
  font-size: 17px;
  line-height: normal;
}

    @media only screen and (max-width: 768px) {
      .selected-product-content {
      justify-content: flex-start;
      }
      
      .selected-product-content img { 
      max-height: 75%;
      }
          .selected-product-title {
            font-size: 14px; /* 14px due to img bug, was 15px */
            line-height: normal;
          }

    }

                     @media only screen and (max-width: 500px) {
           .selected-product-content img { 
      max-height: 70%;
      }            

  }
                    
                    
/* X zum schließen */
.remove-product-ab {
  display: none;
  position: absolute; 
  top: 0px; 
  right: 5px; 
  background: none; 
  border: none; 
  font-size: 26px;  /* was 28px, feedback to make 2px smaller*/
  color: #333;
  cursor: pointer; 
}

.product-option--container.product-selected .remove-product-ab {
  display: block; /* Button wird sichtbar, wenn das Produkt ausgewählt ist */
}

.remove-product-ab:hover {
  color: #996d69; 
}

.product-option--container.product-selected .product-option--button  {
  border: 2px solid #E8E8E1;
}     

                .product-option--container.product-selected:hover, .product-option--button:hover { border-color: #888 !important;}


      /* special bundle desktop css so scrollbars no issue! (bundle modal) */
@media only screen and (min-width: 60em) {
body, #shopify-section-header, .setmodal { padding-left: calc(100vw - 100%);}
  #shopify-section-header { left: 0;}
}           
</style>