/** Shopify CDN: Minification failed

Line 119:15 Expected identifier but found whitespace
Line 119:16 Unexpected "0"

**/
.product__title__wrapper{
      align-items: start;
    flex-direction: column;
}
.product__price.accent-size-5 span{
  font-weight: 500;
}
.kicker-flourished:after{
  display: none;
}
@media only screen and (min-width: 768px) {
    .product-single .product__inner {
        max-width: 530px;
        margin-right: 0px;
    }
}
@media only screen and (min-width: 480px) {
    .collection-tabs .kicker-flourished {
        font-size: 32px;
      margin-bottom: 15px;
    }
}
.upsell__holder{
      display: flex;
    overflow: hidden;
    overflow-x: auto;
}
 /* .quickview{
      width: 33%;
    min-width: 32%;
} */
.product-clip__title{
  font-size: 14px;
    letter-spacing: 1px;
}
 /* [data-quickview-holder]{
        padding: 10px 10px 10px 0px;
  } */
.product-clip{

        padding: 10px 0px 0px 0px;
}
.upsell__holder {
    justify-content: space-between;
    gap: 10px;
}
.upsell__holder{
  border:none;
}
.quickview+.quickview .product-clip{
  padding-top:10px;
}
[data-button-price] {
display:none;
}
[data-add-to-cart-text]{
      font-size: 24px;
}
.product__inner .shopify-product-form{
  max-width: 100%;
}
.cta__dot{
  display: none;
}
.product__grid__info.text-center{
  display: none;
}




/* Bundle button css */
.gbbMixOfferRedirectButton{
      background-color: #fff2b2 !important;
    color: #793518 !important;
    border: 1px solid #793518 !important;
       border-radius: 0px !important;
    min-height: 55px !important;
      margin-bottom: 10px;
  font-weight: 400 !important;
      font-size: 24px;
      font-family: Paris-slant, sans-serif;
}
.product__rating__star:before{
      color: #ff8666;
}

.iska-product-icon-features-wrapper {
    display: flex;
    justify-content: center; /* Centers the items horizontally */
    align-items: flex-start; /* Aligns items to the top (useful if content height varies) */
    gap: 20px; /* Space between the feature items */
    flex-wrap: wrap; /* Allows items to wrap to the next line on smaller screens */
    padding: 20px;
    border-radius: 10px; /* Rounded corners for the block */
    margin: 20px auto; /* Center the block and add vertical margin */
    max-width: 1200px; 
  }

  /* Styling for each individual feature item container */
  .iska-feature-item {
    flex: 1 1 28%; /* Flex-basis for responsiveness: allows items to grow/shrink, max 3 items per row */
    max-width: 350px; /* Max width for each item to prevent excessive stretching */
    text-align: center; /* Center align text and images within the item */
    padding: 15px;
    border-radius: 8px; /* Rounded corners for individual items */
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Smooth transition for hover effects */
  }

  /* Hover effect for feature items */
  /* .iska-feature-item:hover {
    transform: translateY(-5px); /* Slightly lift the item on hover */
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15); /* Enhance shadow on hover */
  } */

  /* Content wrapper within each feature item, handling icon/text order */
  .iska-feature-content {
    display: flex;
    flex-direction: column; /* Default: icon above text */
    align-items: center; /* Center items horizontally within their column */
    gap: 10px; /* Space between the icon and the text */
  }

.iska-feature-content{
  text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}



  /* Styling for the feature icons */
  .iska-feature-icon {
    max-width: 70px; /* Adjust icon size as needed */
    height: auto; /* Maintain aspect ratio */
  }

  /* Styling for the feature text */
  .iska-feature-text {
    font-size:16px; /* Slightly larger font size for readability */
    color: #793518; /* Darker text color */
    font-weight: 500; /* Semi-bold text */
    line-height: 1.4; /* Improve line spacing */
    margin-top: 15px; /* Margin above text, especially for icons above text */
  }

  /* Responsive Adjustments */

  /* For tablets and smaller desktops */
  @media (max-width: 991px) {
    .iska-feature-item {
      flex: 1 1 45%; /* Two items per row */
      max-width: 45%;
    }
  }

  /* For mobile devices */
  @media (max-width: 767px) {
    .iska-product-icon-features-wrapper {
      /* Center items when stacked */
      padding: 0px;
              flex-wrap: nowrap;
              padding-bottom: 0px;
        margin-bottom: 0px;
      padding-top:0px;
    
    }
    /* === START: ADD THIS NEW CSS FOR EQUAL HEIGHT CARDS === */

/* 1. Ensure the flex container stretches its children */
.upsell__holder {
  align-items: stretch;
}

/* 2. Make the card's main wrappers flexible and able to grow */
.quickview,
[data-quickview-holder],
.product-clip {
  display: flex;
  flex-grow: 1;         /* Allow these elements to grow and fill the available space */
}

/* 3. Make the content area (title, price, button) fill the remaining space */
.product-clip__content {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}


/* 5. Push the button's form to the bottom of the card */
.product-clip__content .shopify-product-form {
  margin-top: auto;
  padding-top: 10px; /* Optional: Adds a little space above the button */
}

/* === END: NEW CSS === */

    .iska-feature-item {
      flex: 1 1 90%; /* One item per row */
      max-width: 90%; /* Occupy most of the screen width */
      margin-bottom: 20px; /* Space between stacked items */
    }

    .iska-feature-text {
      font-size: 14px; /* Slightly reduce font size for smaller screens */
    }

    .iska-feature-icon {
      max-width: 60px; /* Reduce icon size for mobile */
    }
    .iska-product-icon-features-wrapper{
      gap:5px;
    }
  }
/* Show only on mobile */
.show-on-mobile {
  display: block;
}
.hide-on-desktop {
  display: block;
}

/* Hide on desktop */
@media screen and (min-width: 768px) {
  .show-on-mobile {
    display: none;
  }
}

/* Show only on desktop */
.show-on-desktop {
  display: none;
}
.hide-on-mobile {
  display: none;
}
.iska-product-icon-features-wrapper:first-child{
  display: :none;
}

/* Hide on mobile */
@media screen and (min-width: 768px) {
  .show-on-desktop {
    display: block;
  }
  .hide-on-mobile {
    display: block;
  }
 .jdgm-carousel-title{
        font-size: 32px;
    margin-bottom: 15px !important;
  }
  .jdgm-carousel-wrapper{
    width: 100% !important;
  }
  .iska-text{
    font-size:16px;
  }
}

@media screen and (max-width: 767px) {
.product__align-left .radio__button label{
      min-width: 120px !important;
}
  .product-clip__image{
        min-width: 33% !important;
        width: calc(100% - 10px) !important;
  }
      .quickview {
        min-width: 30%;
    }
  .product-clip {
       flex-grow: 0;
    }
  .upsell__holder{
    gap: 0px;
  }
  .product-clip{
    width: 100%;
  }
}
/* Hide the mobile version when the desktop version is shown */


body .jdgm-carousel-title{
  text-align:center !important;
}
.jdgm-all-reviews-rating, .jdgm-carousel-number-of-reviews{
  text-align:center;
}
 .iska-section-container {
    padding: 25px; /* Adds space inside the border */
    border: 1px solid #e0e0e0; /* Adds a light grey border */
    border-radius: 8px; /* Adds rounded corners */
    margin-top: 20px;
    margin-bottom: 20px;
  }
  .iska-grid {
    display: flex;
    justify-content: flex-start; 
        padding: 15px 35px;
        align-items: center;
    justify-content: space-between;
        flex-wrap: wrap;
    gap:10px;
  }
    .iska-column{
      width: calc(50% - 10px);
         display: flex;
        align-items: center;
      gap: 10px;
    }
    .iska-image{
         max-width: 70px;
    }
    .iska-block-container{
          border: 1px solid #9a814f;
    background: #f5dc69;
    }
  .iska-image-wrapper {
    margin-bottom: 15px;
  }
  .iska-text {
    margin-top: 0;
    margin-bottom: 0;
        
    letter-spacing: -1px;
  }
   .iska-image-wrapper {
      /* margin: 0 auto;  */
      max-width: 35px;
    }
.upsell__holder__title__text{
      font-size: 16px !important;
    font-weight: 700 !important;
    padding-left: 0px !important;
}
@media screen and (max-width: 767px) {
  .hide-on-mobile {
    display: none;
  }
  .quickview{
        min-width: 33%;
  }
 
  .iska-grid{
        padding: 15px 25px;
  }
  .iska-text{
        font-size: 14px;
  }
  .iska-image-wrapper{
    max-width: 45px;
  }
  .iska-feature-icon{
        max-width: 80% !important;
  }
  .kicker-flourished, .custom-image-row__heading{
    font-size: 28px;
  }
  .custom-scrollbar{
    display :none !important;
  }
   .jdgm-carousel-title{
        font-size: 22px;
    margin-bottom: 15px !important;
  }
}
.product__block__text p {
  margin: 0;
  padding: 20px 0 !important;
  font-weight: 600;
  font-family: 'ApfelGrotezk-Regular' !important;
  font-size: 20px !important;
  text-align: center !important;
}

#shopify-section-template--19796039827685__main input[type=number] {
     min-height: 54px !important;
     color: #793518;
    border: 1px solid #793518; 
}

#shopify-section-template--19796039729381__main input[type=number] {
     min-height: 54px !important;
     color: #793518;
    border: 1px solid #793518; 
}

