/* Homepage Banner Carousel */
/* Banner and Search Widget Flex Container */
.banner-search-container {
  display: flex;
  gap: 20px;
  padding: 0 20px;
  margin: 20px 0;
  align-items: flex-start;
}

.banner-section {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.banner-carousel-container {
  position: relative;
  width: 100%;
  height: auto;
  overflow: hidden;
}

.banner-carousel {
  display: flex;
  height: 100%;
  transition: transform 0.5s ease-in-out;
}

.banner-slide {
  flex: 0 0 100%;
  padding: 0 20px;
  box-sizing: border-box;
  height: 100%;
}

.banner-slide img {
  width: 100%;
  height: auto;
}

/* Navigation Buttons */
.banner-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: none;
  padding: 15px;
  cursor: pointer;
  font-size: 24px;
  z-index: 2;
}

.banner-nav:hover {
  background: rgba(0, 0, 0, 0.7);
}

.banner-nav.prev {
  left: 0;
  border-radius: 0 5px 5px 0;
}

.banner-nav.next {
  right: 0;
  border-radius: 5px 0 0 5px;
}

/* Slide Dots (Indicators) */
.banner-indicators {
  position: static;
  width: 100%;
  text-align: center;
  padding: 10px 0;
  z-index: 3;
  margin-top: 5px;
}

.banner-indicators .dot {
  display: inline-block;
  height: 10px;
  width: 10px;
  margin: 0 5px;
  background-color: #f26722;
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.3s;
}

.banner-indicators .dot.active {
  background-color: #fff;
}

.search-container-show {
  display: flex;
  max-width: 400px;
  margin: 0 auto;
  border: 1px solid #ccc;
  border-radius: 25px;
  overflow: hidden;
}

.search-input-show {
  flex: 1;
  padding: 10px 15px;
  border: none;
  outline: none;
  font-size: 16px;
}

.search-button-show {
  background-color: var(--primary-color);
  color: white;
  border: none;
  padding: 10px 15px;
  cursor: pointer;
  font-size: 16px;
}

.search-button-show:hover {
  background-color: var(--border-color);
}

/* Responsive: full width on smaller screens */
@media (max-width: 768px) {
  .search-container-show {
    width: 90%;
  }
}

@media (min-width: 769px) {
    .search-container-show {
      display: none;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
  .banner-search-container {
    flex-direction: column;
    gap: 15px;
  }

  .banner-nav {
    padding: 10px;
    font-size: 20px;
  }

  .quick-search-widget {
        display: none;
    }
}

@media (max-width: 480px) {
  .banner-search-container {
  padding: 0 10px;
  margin: 10px 0;
}

  .banner-nav {
    padding: 5px;
    font-size: 18px;
  }

  .banner-indicators {
  padding: 5px 0;
  margin-top: 1px;
}

}

@media (min-width: 769px) {
  .banner-section {
    width: 60%;
  }
}
