/** Shopify CDN: Minification failed

Line 22:17 Unexpected "{"
Line 22:26 Expected ":"
Line 22:33 Unexpected "{"
Line 27:17 Unexpected "{"
Line 27:26 Expected ":"
Line 34:17 Unexpected "{"
Line 34:26 Expected ":"
Line 40:17 Unexpected "{"
Line 40:26 Expected ":"
Line 44:17 Unexpected "{"
... and 19 more hidden warnings

**/
/* Media Gallery */

  .main_media_gallery_sec .product__media-wrapper{
    padding-block: 36px !important;
  }

  #MediaGallery-{{ section.id }} {
    width: 100%;
    margin: 0 auto;
  }

  #MediaGallery-{{ section.id }} .product__media-list {
    display: flex;
    overflow: hidden;
    position: relative;
    width: 100%;
  }

  #MediaGallery-{{ section.id }} .product__media-item {
    display: none;
    flex: 0 0 100%;
    position: relative;
  }

  #MediaGallery-{{ section.id }} .product__media-item.is-active {
    display: block;
  }

  #MediaGallery-{{ section.id }} .product__media-item img {
    width: 100%;
    height: auto;
    object-fit: cover;
  }


  .main_media_gallery_sec .slider-buttons {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 1rem;
    width: 100% !important;
    max-width: 100% !important;
    padding-inline: 1rem;
    margin: 0;
    z-index: 2;
  }

  .main_media_gallery_sec .slider-button {
    visibility: visible !important;
    opacity: 1 !important;
    width: 40px !important;
    height: 40px !important;
    background: #dfd8d3 !important;
    border: 1px solid #ccc !important;
    border-radius: 50%;
    cursor: pointer !important;
    transition: background 0.3s;
  }

  .main_media_gallery_sec .slider-button:hover {
    background: #f0f0f0;
  }

  .main_media_gallery_sec .slider-button svg {
    width: 24px;
    height: 24px;
  }

  .main_media_gallery_sec .slider-counter {
    display: none !important;
    font-size: 1rem;
    color: #333;
  }

  #MediaGallery-{{ section.id }} .product__media-icon--lightbox {
    position: absolute;
    top: unset !important;
    left: unset !important;
    bottom: 10px;
    right: 10px;
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0.8;
    transition: opacity 0.3s;
  }

  #MediaGallery-{{ section.id }} .product__media-icon--lightbox:hover {
    opacity: 1;
  }

  #MediaGallery-{{ section.id }} .product__media-icon--lightbox svg {
    width: 24px;
    height: 24px;
  }

  #MediaGallery-{{ section.id }} .motion-reduce .product__media-icon--lightbox {
    animation: none !important;
  }

  /* #MediaGallery-{{ section.id }} media-gallery .quick-add-hidden {
      display: flex !important;
    } */

  .main_media_gallery_sec .product__info-wrapper {
    padding: 0px !important;
    border-left: .5px solid #A4A4A4;
  }
    
  /* Responsive Adjustments */
  @media (max-width: 749px) {
    #MediaGallery-{{ section.id }} .slider-buttons {
      gap: 0.5rem;
    }

    #MediaGallery-{{ section.id }} .slider-button {
      width: 32px;
      height: 32px;
    }

    #MediaGallery-{{ section.id }} .slider-button svg {
      width: 20px;
      height: 20px;
    }

    #MediaGallery-{{ section.id }} .product__media-icon--lightbox {
      width: 32px;
      height: 32px;
    }

    #MediaGallery-{{ section.id }} .product__media-icon--lightbox svg {
      width: 20px;
      height: 20px;
    }

    .main_media_gallery_sec .slider-mobile-gutter{
      position:relative;
    }

    .main_media_gallery_sec .thumbnail_next_arrow{
          position: absolute;
    bottom: -20px;
    right: 150px;
    width: 30px !important;
    height: 30px !important;
    }
    .main_media_gallery_sec .thumbnail_next_arrow .svg-wrapper,
    .main_media_gallery_sec .thumbnail_prev_arrow .svg-wrapper{
      width: 15px;
    }
    .main_media_gallery_sec .thumbnail_prev_arrow{
          position: absolute;
    bottom: -20px;
    left: 170px;
    width: 30px !important;
    height: 30px !important;
    }

  }