/* Menu Search Section Styles */
.menu-search-section {
  margin: 4rem 0;
  padding: 3rem 0;
  background: linear-gradient(135deg, rgba(255, 107, 0, 0.1) 0%, rgba(255, 193, 7, 0.1) 100%);
  border-radius: 20px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.search-container {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 2rem;
}

.search-container h3 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.search-bar {
  position: relative;
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(15px);
  border-radius: 50px;
  padding: 1rem 2rem;
  margin: 2rem 0;
  border: 2px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.search-bar:hover {
  border-color: rgba(255, 107, 0, 0.5);
  box-shadow: 0 10px 30px rgba(255, 107, 0, 0.2);
}

.search-bar input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  font-size: 1.1rem;
  color: #fff;
  padding: 0.5rem 1rem;
}

.search-bar input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.search-btn, .voice-search-btn {
  background: linear-gradient(135deg, #ff6b00 0%, #ffc107 100%);
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-left: 0.5rem;
}

.search-btn:hover, .voice-search-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 5px 15px rgba(255, 107, 0, 0.4);
}

.quick-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-top: 2rem;
}

.filter-btn {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 25px;
  padding: 0.8rem 1.5rem;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.filter-btn:hover {
  background: linear-gradient(135deg, #ff6b00 0%, #ffc107 100%);
  border-color: transparent;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 107, 0, 0.3);
}

.filter-btn.active {
  background: linear-gradient(135deg, #ff6b00 0%, #ffc107 100%);
  border-color: transparent;
}

/* Featured Items Section */
.featured-items-section {
  margin: 4rem 0;
}

.featured-items-section h3 {
  font-size: 2.2rem;
  font-weight: 700;
  color: #fff;
  text-align: center;
  margin-bottom: 3rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.featured-items-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.featured-item {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(15px);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.featured-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  border-color: rgba(255, 107, 0, 0.3);
}

.item-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.featured-item:hover .item-image img {
  transform: scale(1.1);
}

.item-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: linear-gradient(135deg, #ff6b00 0%, #ffc107 100%);
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
}

.item-info {
  padding: 1.5rem;
}

.item-info h4 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.5rem;
}

.item-info p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  margin-bottom: 1rem;
  line-height: 1.5;
}

.item-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffc107;
  margin-bottom: 1rem;
}

.add-to-cart-btn {
  width: 100%;
  background: linear-gradient(135deg, #ff6b00 0%, #ffc107 100%);
  border: none;
  border-radius: 10px;
  padding: 0.8rem 1.5rem;
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.add-to-cart-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(255, 107, 0, 0.4);
}

/* Responsive Design */
@media (max-width: 768px) {
  .search-container h3 {
    font-size: 2rem;
  }
  
  .search-bar {
    flex-direction: column;
    gap: 1rem;
    padding: 1.5rem;
  }
  
  .search-bar input {
    text-align: center;
  }
  
  .quick-filters {
    flex-direction: column;
    align-items: center;
  }
  
  .featured-items-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .search-container {
    padding: 0 1rem;
  }
  
  .search-container h3 {
    font-size: 1.8rem;
  }
  
  .filter-btn {
    padding: 0.6rem 1.2rem;
    font-size: 0.8rem;
  }
}
