

.slider {
  position: relative;
  width: 100%;
  height: 400px;
  overflow: hidden;
}

.slides {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.5s ease-in-out;
}

.slide {
  min-width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end; /* Align content to the bottom */
  justify-content: center;
  color: white;
  text-align: center;
}

.slide-content {
  background: rgba(0, 0, 0, 0.293);
  padding: 20px;
  border-radius: 10px;
  width: 40%; /* Make content span full width */
  text-align: center; /* Center text */
  margin-bottom: 20px; /* Add some space from the bottom */
}

.slide-content h2 {
  font-size: 2.5rem;
  color: white;
  margin: 0;
}

.slide-content p {
  font-size: 1.2rem;
  color: white;
  margin: 10px 0;
}

.slide-content .btn {
  display: inline-block;
  padding: 10px 20px;
  background: #038ca1;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  margin-top: 10px;
}

.prev, .next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  padding: 15px;
  cursor: pointer;
  font-size: 1.5rem;
}

.prev {
  left: 10px;
}

.next {
  right: 10px;
}

.prev:hover, .next:hover {
  background: rgba(0, 0, 0, 0.8);
}

.product.product-11 .btn-product {
    
    margin-left: 0.8rem;
    margin-right: 0.8rem;
}

.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
  transition: transform 0.3s ease-in-out;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}


@media (max-width: 480px) {
  .slider {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
  }
  .slide-content {
    padding: 10px; /* Reduce padding for mobile screens */
    margin-bottom: 10px; /* Reduce margin for mobile screens */
    width: 80%; /* Increase width for better use of space */
  }

  .slide-content h2 {
    font-size: 1.5rem; /* Smaller font size for mobile screens */
  }

  .slide-content p {
    font-size: 0.9rem; /* Smaller font size for mobile screens */
  }

  .slide-content .btn {
    padding: 6px 12px; /* Smaller button for mobile screens */
  }

  .prev, .next {
    padding: 10px; /* Smaller navigation buttons for mobile screens */
    font-size: 1.2rem;
  }

  .header-4 .header-search-extended .btn {
    max-width: 40px;
    margin-left: 1rem;
    height: 46px;
    font-size: 2.2rem;
    background-color: #038ca100;
}




}