.single_product_desc {
  font-family: 'Roboto', sans-serif;
  color: #333;
  padding: 20px;
  max-width: 900px;
  margin: 0 auto;
}

.single_product_desc h2 {
  color: #2c3e50;
  font-size: 28px;
  margin-bottom: 15px;
  font-weight: 600;
}

.single_product_desc > span {
  display: block;
  color: #555;
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 20px;
}

.product-desc {
  margin: 15px 0;
  font-size: 15px;
  color: #444;
}

.product-desc b {
  color: #2c3e50;
}

.product-desc img {
  width: 60px;
  height: auto;
  vertical-align: middle;
  margin-left: 8px;
}

hr {
  border: 0;
  height: 1px;
  background-color: #e0e0e0;
  margin: 15px 0;
}




.cart-fav-box {
  margin-top: 30px;
  justify-content: flex-start; /* Align buttons to left too */
  clear: both; /* Ensure it starts on new line */
}
.select-box > div {
  text-align: left; /* Align content to left */
  margin: 0 30px 15px 0; /* Right margin only between items */
  flex: 0 0 auto; /* Don't grow or shrink */
  width: auto; /* Let content determine width */
}

.select-box img {
  width: 150px; /* Slightly larger fixed width */
  height: auto;
  border: 1px solid #ddd;
  border-radius: 5px;
  transition: transform 0.3s ease;
  margin-bottom: 8px;
  display: block; /* Make image block-level */
}

.select-box span {
  display: block;
  font-size: 14px;
  color: #555;
  text-align: center; /* Keep text centered under image */
  width: 150px; /* Match image width */
}

.cart-fav-box {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap; /* Allows buttons to wrap on small screens */
  gap: 10px; /* Adds space between buttons */
}
/* Optional: Force full-width buttons on mobile */
@media (max-width: 768px) {
  .cart-fav-box a {
    width: 100%; /* Each button takes full width */
    text-align: center; /* Center-align text */
  }
}

@media (max-width: 768px) {
  .single_product_desc {
    padding: 15px;
  }
  
  .select-box > div {
    margin-right: 15px; /* Less spacing on mobile */
  }
  
  .select-box img {
    width: 120px; /* Slightly smaller on mobile */
  }
  
  .select-box span {
    width: 120px; /* Match smaller image */
  }
  
  .product-desc img {
    width: 60px;
  }
}


.image-container2 {

  position: relative;
  width: 80%;
  height: 24rem;
  perspective: 1000px;
  display: flex;
  justify-content: center;
}


 * {
            box-sizing: border-box;
            padding: 0;
            margin: 0;
        }
        
        .slider-container {
            max-width: 600px;
		
            margin: 0 auto;
            padding: 20px;
        }
        /* For mobile devices */
    @media (max-width: 768px) {
        .image-row {
            flex-direction: column;
            align-items: center;
        }
        .image-row img {
            max-width: 100% !important;
        }
    }    
 .img-display {
    width: 250px; /* Fixed width */
    height: 500px; /* Fixed height */
    margin: 0 auto; /* Center the slider */
    overflow: hidden;
}

.img-showcase {
    display: flex;
    width: 100%;
    height: 100%; /* Take full height of container */
}

.img-showcase img {
    width: 250px; /* Fixed width for images */
    height: 500px; /* Fixed height for images */
    object-fit: contain; /* Maintain aspect ratio without stretching */
    flex-shrink: 0; /* Prevent shrinking */
}
        
   
        
        .img-select {
            display: flex;
            justify-content: center;
            gap: 8px;
        }
        
        .img-item {
            width: 80px;
            height: 160px;
            border: 2px solid transparent;
            border-radius: 4px;
            overflow: hidden;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .img-item:hover {
            opacity: 0.8;
            border-color: #256eff;
        }
        
        .img-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
		
		 .check-list {
  margin: 0;
  padding-left: 1.2rem;

}

.check-list li {
  position: relative;
  list-style-type: none;
  padding-left: 2.5rem;
  margin-bottom: 0.5rem;
    font-size:16px;
}

.check-list li:before {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    top: -2px;
    width: 5px;
    height: 11px;
    border-width: 0 2px 2px 0;
    border-style: solid;
    border-color: #00a8a8;
    transform-origin: bottom left;
    transform: rotate(45deg);
}
.pdf-container {
  width: 100%;
  max-width: 800px;
  margin: 20px auto;
  border: 1px solid #ddd;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.pdf-embed {
  display: block;
  border: none;
}