/** Shopify CDN: Minification failed

Line 82:2 Unexpected "{"
Line 82:3 Expected identifier but found "%"
Line 87:2 Unexpected "{"
Line 87:3 Expected identifier but found "%"

**/
@media screen and (max-width: 768px) {
  .cart-bar{
    bottom: 55px!important;
  }
  .site-footer-wrapper.section-padding{
      margin-bottom: 25px !important; 
  }
  .drawer__foot{
      margin-bottom: 60px; 
    }
}
/* Product slider navigation */
.product-slider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.8);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
}

.product-slider-nav:hover {
  background: rgba(255, 255, 255, 1);
}

.product-slider-prev {
  left: 15px;
}

.product-slider-next {
  right: 15px;
}

.product-slider-dots {
  position: absolute;
  bottom: 20px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 8px;
  z-index: 10;
}

.product-slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: all 0.3s ease;
}

.product-slider-dot.active {
  background: rgba(255, 255, 255, 1);
  transform: scale(1.2);
}
.product-slider-nav,
    .product-slider-dots {
      display: none !important;
    }
/* Hide navigation on mobile if thumbnails are enabled */
@media screen and (max-width: 749px) {
  {% if enable_thumbs_mobile %}
    .product-slider-nav,
    .product-slider-dots {
      display: block !important;
    }
  {% endif %}
}