/* -------------------------------
  Simple Product Page Layout
---------------------------------*/
.woocommerce .ast-article-single img{
  -webkit-box-shadow:none !important;
  box-shadow: none !important;
}
/* Image gallery section*/
.woocommerce #content 
.ast-child-woocommerce 
.product 
.product-gallery-wrapper 
.woocommerce-product-gallery{
  float:none;
  width: 100%;
}
.woocommerce #content 
.ast-child-woocommerce 
.product .product-gallery-wrapper 
.woocommerce-product-gallery 
.woocommerce-product-gallery__image{
  overflow: hidden;
  width: 100%;
}
.woocommerce #content .ast-child-woocommerce .product .woocommerce-product-gallery__image img{
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  display: block;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: none;
}

.example::-webkit-scrollbar {
  display: none;
}
.woocommerce #content .ast-child-woocommerce .product 
.woocommerce-product-gallery .flex-control-thumbs{
  display: flex ;
  gap: 8px ;
  justify-content: flex-start ;
  position:relative;
  overflow: auto;
}
.woocommerce #content .ast-child-woocommerce .product 
.woocommerce-product-gallery .flex-control-thumbs::-webkit-scrollbar{
  display: none;
}
.woocommerce #content .ast-child-woocommerce .product 
.woocommerce-product-gallery .flex-control-thumbs{
  -ms-overflow-style: none; 
  scrollbar-width: none;
}
.woocommerce .woocommerce-product-gallery .flex-control-thumbs li{
  flex: 0 0 100px;
  width: 100px;
  max-width: 100px;
  margin: 0 !important;
  padding: 0 !important;
  list-style: none;
}
.woocommerce #content .ast-child-woocommerce .product 
.woocommerce-product-gallery .flex-control-thumbs img{
  display: block;    
  width: 100%;    
  height: 100%;        
  aspect-ratio: 1/1;   
  object-fit: cover;
  border: 2px solid transparent;
  opacity: 0.85;
  transition: all 0.2s ease;
  cursor: pointer;
}
.woocommerce #content .ast-child-woocommerce .product 
.woocommerce-product-gallery .flex-control-thumbs img:hover,
.woocommerce #content .ast-child-woocommerce .product 
.woocommerce-product-gallery .flex-control-thumbs img.flex-active {
  border-color: #ddd;
  opacity: 1;
}
.gallery-scroll-btn{
  position: absolute;
  bottom: 5%;
  z-index: 10;
  display: inline-block;
  padding: 6px 16px;
  background-color: #5511f8;
  color: white;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s ease;
}
.scroll-prev{
  left:0;
}
.scroll-next{
  right: 0;
}
/* Product summary section*/
.woocommerce #content .ast-child-woocommerce .product-summary{
  width: 100%;
  float: none;
}
.woocommerce #content .ast-child-woocommerce .scroll-btn-quote-form{
  display: inline-block;
  background: #C9D63C;
  color: #0f172a;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease;
}
.woocommerce #content .ast-child-woocommerce .scroll-btn-quote-form:hover {
  background: #b2c22f;
}
.woocommerce #content .ast-child-woocommerce .product-summary .price{
  display: flex;
  gap:10px;
  align-items: center;
}
.woocommerce #content .button.single_add_to_cart_button{
  background-color: #5511f8;
  padding: 15px;
  font-size: 16px;
}
.woocommerce #content .button.single_add_to_cart_button:hover{
  color:white;
  background-color: #5511f8c7;
}
.woocommerce #content .ast-child-woocommerce .product-summary form{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.woocommerce #content .ast-child-woocommerce .product-summary form .single_add_to_cart_button{
  margin-bottom:unset;
}
/** Simple products tabs **/
.woocommerce #content .ast-child-woocommerce .woocommerce-tabs .tabs{
  display: flex;
  flex-direction: column;
}
.woocommerce #content .ast-child-woocommerce .woocommerce-tabs .tabs > li{
  border-bottom: 1px solid #80808030;
}
.woocommerce #content .ast-child-woocommerce .woocommerce-tabs ul.tabs li.active::before{
  display: none;
}
.woocommerce #content .ast-child-woocommerce .woocommerce-tabs ul.tabs li.active::after{
  display: block;
  content: ' ';
  position: absolute;
  width: 100%;
  height: 3px;
  box-shadow: none;
  bottom: 0;
  left: 0;
  border-radius: 0;
  background:#5511F8;
}
/** Responsive */
@media (min-width: 576px){
  .woocommerce #content .ast-child-woocommerce .woocommerce-tabs .tabs{
    gap:20px;
    flex-direction: unset;
    align-items: center;
  }
  .woocommerce #content .ast-child-woocommerce .woocommerce-tabs .tabs > li{
    border-bottom: none;
  }
  .woocommerce #content .ast-child-woocommerce .woocommerce-tabs ul.tabs li.active::before{
    display: block;
  }
  .woocommerce #content .ast-child-woocommerce .woocommerce-tabs ul.tabs li.active::after{
    display: none;
  }
}
@media (max-width: 375px){
  .woocommerce #content .ast-child-woocommerce .product-summary .price {
    font-size: 18px;
  }
}