.hero-search {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
    gap: 0.5rem;
  }
  
  .hero-search input, .hero-search select {
    padding: 0.6rem 1rem;
    border-radius: 30px;
    border: none;
    font-size: 1rem;
  }
  
  .hero-search button {
    padding: 0.6rem 1.5rem;
    border-radius: 30px;
    border: none;
    background: #FFD700;
    color: #1E3A8A;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.3s;
  }
  
  .hero-search button:hover {
    transform: scale(1.05);
  }


  @media (max-width: 768px){
    .scroll-track img {
      height: 80px;
    }
  }


  .hero-icon {
    position: absolute;
    font-size: 1.5rem;
    color: #FFD700;
    animation: float 4s ease-in-out infinite;
  }
  
  @keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
  }







  /* ===== TEXT SLIDER ===== */
.text-slider-wrapper {
  overflow: hidden;
  background: #1E3A8A;
  padding: 1rem 0;
}

.text-slider-track {
  display: flex;
  gap: 2rem;
  animation: slide-left 25s linear infinite;
}

.text-slide {
  flex-shrink: 0;
  color: #FFD700;
  font-weight: bold;
  font-size: 1.2rem;
  white-space: nowrap;
}

/* Animation */
@keyframes slide-left {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Pause on hover */
.text-slider-wrapper:hover .text-slider-track {
  animation-play-state: paused;
}

/* ===== IMAGE SCROLL ===== */
.image-scroll-wrapper {
  margin: 2rem 0;
  overflow: hidden;
  background: #111;
  padding: 10px 0;
}
.scroll-bar {
  display: flex;
  overflow: hidden;
}
.scroll-track {
  display: flex;
  width: max-content;
}
.scroll-track img {
  height: 100px;
  width: auto;
  margin: 0 15px;
  border-radius: 10px;
}
.scroll-left {
  animation: scrollLeft 40s linear infinite;
}
.scroll-right {
  animation: scrollRight 40s linear infinite;
}
@keyframes scrollLeft { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
@keyframes scrollRight { 0% { transform: translateX(-50%); } 100% { transform: translateX(0); } }

/* Pause on hover */
.scroll-bar:hover .scroll-track { animation-play-state: paused; }

/* ===== PRODUCT STORE ===== */
.product-store {
  padding: 2rem 1rem;
}
.section-title {
  text-align: center;
  margin-bottom: 1.5rem;
  color: #1E3A8A;
  font-size: 1.8rem;
}
.product-scroll-wrapper {
  overflow-x: auto;
  display: flex;
  gap: 1rem;
  padding-bottom: 1rem;
}
.product-scroll-wrapper::-webkit-scrollbar { display: none; } /* hide scrollbar */
.product-card {
  background: #fff;
  min-width: 160px;
  border-radius: 15px;
  padding: 1rem;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}
.product-card img {
  width: 140px;
  height: 180px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 0.5rem;
}
.product-card h3 {
  font-size: 1rem;
  margin: 0.5rem 0;
}
.product-card .price {
  color: #1E3A8A;
  font-weight: bold;
  margin-bottom: 0.5rem;
}
.product-card button {
  background: #FFD700;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-weight: bold;
  cursor: pointer;
}
.product-card:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

/* ===== CATEGORY CARDS ===== */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
  padding: 2rem;
}
.card {
  background: linear-gradient(135deg, #FF6B6B, #FFD93D);
  color: white;
  padding: 2rem 1rem;
  border-radius: 20px;
  text-align: center;
  font-weight: bold;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.card i { font-size: 2rem; margin-bottom: 0.5rem; }
.card:hover { transform: translateY(-5px) scale(1.05); box-shadow: 0 10px 20px rgba(0,0,0,0.2); }