/** Shopify CDN: Minification failed

Line 20:20 Unexpected "{"
Line 20:29 Expected ":"
Line 27:20 Unexpected "{"
Line 27:29 Expected ":"
Line 96:22 Unexpected "{"
Line 96:31 Expected ":"
Line 102:20 Unexpected "{"
Line 102:29 Expected ":"
Line 109:22 Unexpected "{"
Line 109:31 Expected ":"
... and 24 more hidden warnings

**/


/* CSS from section stylesheet tags */
/* Ensure the image container takes the full space */
#collection-slider-{{ section.id }} .single-image .image-container {
  position: relative;
  width: 100%;
  padding-top: 100%; /* Maintains 1:1 aspect ratio */
  overflow: hidden;
}

#collection-slider-{{ section.id }} .single-image .image-container img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; /* Makes the image cover the entire div */
  object-position: center;
}
/* Style for product cards to match the screenshot */
.item-area {
  background-color: #ffffff; /* White background */
  border-radius: 10px; /* Rounded corners */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow */
  padding: 10px; /* Increased top padding to 15px, others remain 10px */
  margin: 10px;
}

/* Remove hover shadow for product cards */
.item.product:hover {
  box-shadow: none !important;
}

/* Style for Add to Cart button */
.add-to-cart-form {
  margin-top: 10px;
  text-align: center;
  display: block !important; /* Ensure the form is visible */
}
.add-to-cart-btn {
  display: inline-block !important; /* Ensure the button is visible */
  padding: 8px 16px;
  background-color: #023047; /* Dark blue color from screenshot */
  color: #FFFFFA; /* White text */
  text-decoration: none;
  border-radius: 5px;
  font-size: 14px;
  border: none;
  cursor: pointer;
}
.add-to-cart-btn:hover {
  background-color: #229FBF;
  color: #FFFFFA;
  box-shadow: none !important; /* Remove any hover shadow */
}

/* Hide any existing hover-triggered actions */
.item-area:hover .action-list.addtocart {
  display: none !important;
}

/* Debug styling to ensure visibility */
.details-area {
  min-height: 150px; /* Ensure there's enough space for the button */
}

/* Optimize image loading */
.product-image img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

/* Hide data-carousel div to prevent attribute display */
.data-carousel {
  display: none !important; /* Forcefully hide the data-carousel div */
}
/* REMOVED THE DEAL OF THE WEEK SECTION FOR THE TAB VIEW AND FOR THE DESKTOP VIEW  */
  @media (max-width: 991px) {
  #collection-filter-{{ section.id }} .main-deal {
    display: none !important;
  }
}
  /* Styles for Deal of the Day carousel */
  /* Center align "Deals of the week" */
#collection-filter-{{ section.id }} .main-deal .title-widget {
    width: 100%;
    text-align: center !important;
    margin: 0 auto 20px auto;
}
  

  #collection-filter-{{ section.id }} .main-deal .item.product {
    margin: 0; /* Remove margins to allow natural stretching */
    padding: 0; /* Remove padding for full container use */
  }

  /* Ensure the content inside Deal of the Day cards stretches naturally */
  #collection-filter-{{ section.id }} .main-deal .single-product-deal {
    width: 100%;
    padding: 15px; /* Consistent internal padding */
    box-sizing: border-box; /* Include padding in width */
  }

  /* Optimize images in Deal of the Day */
  #collection-filter-{{ section.id }} .main-deal .single-product-deal img {
    width: 100%;
    height: auto;
    object-fit: contain; /* Fit image without distortion */
  }

  /* Ensure carousel container stretches to full width */
  #collection-filter-{{ section.id }} .main-deal .products-grid.owl-carousel {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: stretch; /* Align carousel items */
  }

  /* Ensure carousel items take full width */
  #collection-filter-{{ section.id }} .main-deal .owl-carousel .owl-item {
    display: flex;
    justify-content: center;
  }

  /*
  REMOVE THE TAGS FROM ALL THE PRODUCT CARDS
  #collection-filter-{{ section.id }} .save-price-badge,
#collection-filter-{{ section.id }} .product-label {
  display: none !important;
} */
  
  /* Hide "Save ₹" and "Sold Out" badges only in Deal of the Day section */
#collection-filter-{{ section.id }} .main-deal .save-price-badge,
#collection-filter-{{ section.id }} .main-deal .product-label {
  display: none !important;
}
/* Hide "Availability" label only in Deal of the Day */
#collection-filter-{{ section.id }} .main-deal .product-content .stock,
#collection-filter-{{ section.id }} .main-deal .product-content .availability,
#collection-filter-{{ section.id }} .main-deal .product-content .product-availability {
  display: none !important;
}

/* Remove the rounded grey line under Deal of the Day cards */
#collection-filter-{{ section.id }} .main-deal .single-product-deal > div:last-child {
  display: none !important;
  height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  border: none !important;
  background: transparent !important;
}

  /* Styles for tabbed product sections (preserving existing card styles) */
  .products-tab-deal .item.product {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
  }
  .products-tab-deal .products-grid {
    margin-bottom: 0 !important;
  }
  .products-tab-deal .product-content,
  .products-tab-deal .single-product-deal {
    margin-bottom: 0 !important;
  }
  .view-all-container {
    text-align: center;
    margin-top: 20px;
  }
  .view-all-btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #229FBF;
    color: #FFFFFA;
    text-decoration: none;
    border-radius: 5px;
    font-size: 14px;
  }
  .view-all-btn:hover {
    background-color: #229FBF;
    color: #FFFFFA;
    box-shadow: none !important;
  }
  .item.product:hover {
    box-shadow: none !important;
    background-color: inherit !important;
  }
  .price {
    text-align: center;
    margin: 5px 0;
  }
  .price .special-price {
    font-size: 16px;
    color: #000;
    font-weight: bold;
  }
  .price .compare-price {
    font-size: 14px;
    color: #999;
    text-decoration: line-through;
    margin-top: 2px;
  }

  .products-grid .item.product img,
.products-grid .item.product .product-image img,
.products-grid .item.product .product-image-area img,
.products-grid .item.product .product-image-area .img-responsive,
.products-grid .item.product .product-image-area .owl-lazy {
  border-radius: 8px !important;
}
  /* Responsive adjustments for Deal of the Day */
  @media (max-width: 768px) {
    #collection-filter-{{ section.id }} .main-deal .single-product-deal {
      padding: 10px; /* Slightly less padding on mobile */
    }
    #collection-filter-{{ section.id }} .main-deal .single-product-deal img {
      max-height: 300px; /* Smaller images on mobile */
    }
  }