/* 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;
  align-items: center;
  max-width: 500px;
  margin: 0 auto;
  background: white;
  border: 2px solid #e0e0e0;
  border-radius: 50px;
  overflow: visible;
  position: relative;
  transition: all 0.3s ease;
  padding: 12px 24px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.search-container-show:hover {
  border-color: #667eea;
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.2);
  transform: translateY(-2px);
}

.search-input-show {
  flex: 1;
  padding: 0;
  border: none;
  outline: none;
  font-size: 1rem;
  background: transparent;
  color: #333;
}

.search-input-show::placeholder {
  color: #999;
}



/* 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%;
  }
}
