/** Shopify CDN: Minification failed

Line 86:2 Unexpected "}"
Line 162:12 Expected identifier but found whitespace
Line 162:14 Unexpected "{"
Line 162:23 Expected ":"
Line 162:54 Expected ":"

**/
/* SHOPIFY_STYLESHEETS_VERSION: 1.0 */


/* CSS from section stylesheet tags */
/* START_SECTION:main-product (INDEX:43) */
.container-sticky1 {
    display: flex;
    width: 100%;
    margin-top: -5.5vh;
  }

  .main-content-sticky1 {
    flex: 1;
    width: 50%;
    padding: 0;
  }

  .sidebar-sticky1 {
    width: 50%;
    position: sticky;
    /* top: 70px; */
    top: 60px;
    height: 100vh;
    padding: 20px;
    background-color: #f9f9f9;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    /* align-items: center; */
    /* justify-content: flex-start; */
    justify-content: center;
    padding-top: 20px;
    
  }
  .title-price-row1{
    display: flex; /* Align items in a row */
    justify-content: space-between; /* Optional: adds space between title and price */
    align-items: center; 
  }
  .product-image-sticky1 {
    width: 100%;
    margin: 0;
    padding: 0;
    display: block;
  }

  /* Styles specific to Swiper container */
  .swiper-container {
    width: 100%;
    position: relative; /* Needed to position pagination absolutely */
    overflow: hidden;
  }

  .swiper-slide {
    text-align: center;
    background: #fff;
    position: relative; /* Needed to position elements within the slide */
  }

  /* Position the pagination at the bottom of the image */
  .swiper-pagination {
    position: absolute;
    bottom: 10px; /* Adjust this value to position it further from the bottom if necessary */
    left: 0;
    right: 0;
    text-align: center;
    z-index: 10; /* Ensure it's above other elements */
    
  }
  .swiper-pagination-bullet-active{
    background: white;
    border: 1px solid;
  }
  /* Responsive styling */

  
  }
  @media (min-height: 900px) {
  .container-sticky1 {
    margin-top: -6.5vh;
  }
}

  /* Medium screens */
  @media (max-height: 899px) and (min-height: 600px) {
    .container-sticky1 {
      margin-top: -8vh;
    }
  }
  @media (max-width: 768px) {
    .container-sticky1 {
      flex-direction: column;
      margin-top: -6vw;
    
  
    }

    .sidebar-sticky1,
    .main-content-sticky1 {
      width: 100%;
      height: auto;
    }
  }
  .discounted-price {
  font-size: 1.2rem;
  color: black;
  
}

/* .original-price {
  font-size: 1.2rem;
  color: #777;
  margin-left: 10px;
  text-decoration: line-through;
} */

.discount-value {
  font-size: 1rem;
  color: #4caf50;
  margin-left: 10px;
}
/* END_SECTION:main-product */

/* START_SECTION:product-card (INDEX:54) */
.product-gallery1 {
  display: flex;
  justify-content: center;
  align-items: center;
}

.product-grid1 {
  display: grid;
  gap: 10px;
  margin-top: 50px;
  /* grid-template-columns: repeat({section.settings.pro}}, 1fr); */
}

@media (max-width: 768px) {
  .product-grid1 {
    display: flex; /* Force single column on mobile */
    flex-direction: column;
  }
}

.product-card1 {
  text-align: center;
}

.product-image1 {
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: {{ section.settings.image_size_width }}px;
  height: auto;
  aspect-ratio: 3/4;
}

.product-image1 img {
  width: 100%;
  height: auto;
  transition: opacity 0.3s ease;
}

.primary-image1 {
  opacity: 1;
}

.secondary-image1 {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
}

.product-card1:hover .primary-image1 {
  opacity: 0;
}

.product-card1:hover .secondary-image1 {
  opacity: 1;
}

.product-info {
  padding-top: 2px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items:flex-start;
  margin-bottom: 15px;
}

.product-info h3 {
  font: inherit;
  font-size: 14px;
  font-weight: bolder;
}

.product-info span {
  font: inherit;
  margin-top: -15px;
  font-size: 12px;
  color: #525150;
}


/* CSS FOR PRODUCT OUT OF STICK*/
.product-card1.non-clickable {
  pointer-events: none; /* Make the card non-clickable */
}

  /* .out-of-stock-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: rgba(0, 0, 0, 0.6);
  color: #fff;
  padding: 10px 20px;
  font-size: 16px;
  font-weight: bold;
  border-radius: 5px;
  text-align: center;
} */
 .out-of-stock-badge {
  position: absolute;
  top: 8px;
  right: 8px;
  background-color: rgba(0, 0, 0, 0.65);
  color: #fff;
  padding: 4px 10px;
  font-size: 12px;
  font-weight: bold;
  border-radius: 3px;
  pointer-events: none;
}
  .product-grid1 .outofstock-Message {
  display: flex;
  justify-content: center;
}
  .product-image1.blurred img {
  filter: blur(5px);
  opacity: 0.7;
}

.price-container1 {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3px;
  flex-wrap: wrap;
}

/* Discounted original price */
.price-container1 .price__was {
  text-decoration: line-through;
  color: gray;
  font-size: 0.9em;
}

/* Discounted current price */
.price-container1 .price__current {
  font-weight: bold;
}

/* Sale label (optional) */
.price-container1 .price-label--sale {
  color: green;
  font-size: 0.9em;
  margin-left: 4px;
}
/* END_SECTION:product-card */

/* START_SECTION:test (INDEX:65) */
.container-sticky {
  display: flex;
  width: 100%;
}

.main-content-sticky {
  flex: 1;
  width: 50%;
  padding: 0;
  overflow: hidden; /* Prevent overflow for carousel */
}

.sidebar-sticky {
  width: 50%;
  position: sticky;
  top: 0;
  height: 100vh;
  padding: 20px;
  background-color: #f9f9f9;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.product-image-sticky {
  width: 100%;
  height: auto;
  display: block;
}

.carousel-container {
  display: flex;
  transition: transform 0.3s ease;
}

@media (max-width: 768px) {
  .container-sticky {
    flex-direction: column;
  }

  .sidebar-sticky,
  .main-content-sticky {
    width: 100%;
    height: auto;
  }

  .carousel-container {
    overflow: hidden;
    width: 100%;
  }

  .product-image-sticky {
    min-width: 100%;
  }
}
/* END_SECTION:test */