/* General Styles */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  height: 100%;
  box-sizing: border-box;
  font-size: 16px;
  background-color: #fff; /* Default background */
  color: #465b52;
  line-height: 1.5;
}
.whatsapp-button{
  background-color: #33d325;
  height: 10vh;
  border-radius: 20px;
  width: 100px;
  color: white;
  padding: 18px;


}

/* Breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  font-size: 14px;
  margin: 20px 0;
  color: #0071e3;
}

.breadcrumb a {
  text-decoration: none;
  color: inherit;
  margin: 0 5px;
}

.breadcrumb span {
  margin: 0 5px;
}

/* Slider */
.slider-container {
  display: flex;
  align-items: center;
}

.slider {
  width: 100%;
  overflow: hidden;
}

.slide {
  display: flex;
  flex-direction: row-reverse;
  transition: transform 0.5s ease;
}

.nav-btn {
  padding: 10px;
  background-color: #007BFF;
  color: white;
  border: none;
  cursor: pointer;
}



/* Product Details */
#prodetails {
  width: 80%;
  background-color: whitesmoke;
  border-radius: 10px;
  border-bottom: 1px solid #1a1a1a;
  display: flex;
  margin: auto;
}

.product-image {
  border-radius: 4px;
  width: 50%;
  margin-right: 50px;
}

.single-pro-details {
  width: 50%;
  padding-top: 30px;
}

.single-pro-details h2 {
  font-size: 26px;
  color: #8CC63F;
}

.single-pro-details button {
  background-color: green;
  color: white;
  padding: 10px 20px;
  border-radius: 4px;
  cursor: pointer;
}

/* Features Section */
#feature {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

#feature .fe-box {
  width: 180px;
  text-align: center;
  padding: 24px 15px;
  border: 1px solid #cce7d0;
  border-radius: 4px;
  margin: 15px 0;
  transition: box-shadow 0.3s;
}

#feature .fe-box:hover {
  box-shadow: 10px 10px 54px rgba(70, 62, 221, 0.1);
}

/* Footer */
#footer {
  background-color: #E3E6F3;
  padding: 10px;
  text-align: center;
  height: 20vh;
  

}

.footer-section {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}
.footer-section .footer-banner {
  
  

 
  margin: 0px;
  background-image: url('img/logo 2.png');
  background-size: cover;
   background-repeat: no-repeat;
   background-position: calc(50% - 10px) calc(50% - 40px);
}

.footer-section-2 ul li{
  text-decoration: none;
  text-align: start;
}



  

#product-categories{
  width: 100%;

 
  margin-bottom: 50px;
  align-items: center;
  margin-top: 50px;
  display: flex;
 flex-wrap: nowrap;
  gap: 1px;
  height: 50vh;
  border-style: solid;

}
.audio{
  
  flex-direction: column;
  position: relative;
  margin-left: 20px;
  

 
}
  
.audio img{
  background-color: #E3E6F3;
}
 

.audio-title{
  position: absolute;
left: 10px;
size: 80px;
color: black;
 font-size: 20px;
 font-weight: 200;
 top: -40px;
}





.container {
    display: flex;
    gap: 20px;
}


.main-content {
    width: 100%;
}
h2 {
    color: #333;
    text-align: center;
}

  /* General styling for buttons */
  .contact-button {
    display: inline-block;
    background-color: #25D366; /* WhatsApp Green */
    color: white;
    
    border-radius: 5px;
    text-decoration: none;
    font-size: 18px;
    text-align: center;
    box-shadow:white ;
    transition: background-color 0.3s ease;
    width: 100%; /* Full width for mobile devices */
    margin-bottom: 10px; /* Space between buttons */
    text-align: center;
    margin-bottom: 0%;
  }

  .contact-button:hover {
    background-color: #128C7E; /* Darker Green for Hover */
  }

  /* Container to hold both buttons */
  .contact-buttons-container {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 10px;
    z-index: 1000; /* Ensure buttons are above other content */
    display: none;
    height: 5vh;

  }




     .product-info{
      display: flex;
      width: 100%;
      
     }
       /* General Styles */
       .product-gallery {
        margin-bottom: 20px;
      }
   
      
      
      .thumbnails-container {
        display: flex;
        gap: 10px;
        padding: 10px;
        overflow-x: auto; /*  scroll by default */
        max-width: 100%;
      }
      
      .thumbnails-container img {
        flex-shrink: 0;
        width: 80px; /* Thumbnail size for desktop */
        height: auto;
        border: 1px solid #ccc;
        border-radius: 5px;
        cursor: pointer;
        transition: transform 0.3s;

      }
      
      .thumbnails-container img.active {
        border-color: #007bff;
        transform: scale(1.1);
      }
      
      
      /* Main Product Display */
      .product-display {
        text-align: left;
        width: 100%;
       
        
      }
      .product-image-section{
        flex-basis: 50%;

      }
      #main-product-image{
        width: 70%;
        margin-left: 10px;
      

      }
      
      .product-display img {
        width: 100%;
        max-width:100%; /* Ensure the main image is responsive */
        height: auto;
        border-radius: 10px;
      }
      .dots-container{
        display: none;
      }
      
      /* Responsive Styling for Small Screens */
      @media (max-width: 480px) {
        .product-display{
          display: none;
        }
        .thumbnails-container {
          overflow-x: auto; /* Enable horizontal scrolling */
          white-space: nowrap; /* Prevent thumbnails from wrapping */
        }
      
        .thumbnails-container::-webkit-scrollbar {
          display: none; /* Hide scrollbar for cleaner UI */
        }
      
        /* Thumbnails */
        .thumbnails-container img {
            flex-shrink: 0;
            width: 60%;
            height: auto;
            border-radius: 5px;
            cursor: pointer;
            transition: transform 0.2s ease;
          }
      
          .thumbnails-container img.active {
            border: 2px solid green;
            transform: scale(1.1);
          }
      
          /* Dots */
          .dots-container {
            display: flex;
            justify-content: center;
            gap: 5px;
            padding: 10px 0;
          }
      
          .dots-container .dot {
            width: 10px;
            height: 10px;
            background-color: #ccc;
            border-radius: 50%;
            transition: background-color 0.2s ease;
            cursor: pointer;
          }
      
          .dots-container .dot.active {
            background-color: green;
          }
          .contact-buttons-container{
            display: flex;
          }
          .footer-section .footer-banner{
            display: none;
          }
      
      }

