body {
  margin: 0;
  font-family: 'Open Sans', sans-serif;
  background-color: #fff;
  color: #333;
}
/* ======= HERO SLIDER ======= */
.hero-slider {
  position: relative;
  width: 100%;
  height: 450px;
  overflow: hidden;
}
.slide { position: absolute; width: 100%; height: 100%; opacity: 0; transition: opacity 1s ease-in-out; }
.slide.active { opacity: 1; }
.slide img { width: 100%; height: 100%; object-fit: cover; }
.slide .hero-text {
  position: absolute;
  right: 60px;
  bottom: 80px;
  color: #fff;
  text-align: right;
  text-shadow: 2px 2px 5px rgba(0,0,0,0.5);
}
.slide .hero-text h2 { font-size: 50px; margin: 0; color: #ffc107; }
.slide .hero-text small { font-size: 20px; color: #fff; }

/* Slider Buttons */
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
  font-size: 28px;
  background: rgba(0,0,0,0.4);
  border: none;
  padding: 10px 15px;
  cursor: pointer;
  transition: background 0.3s;
  z-index: 10;
}
.slider-btn:hover { background: rgba(0,0,0,0.7); }
.prev-btn { left: 15px; }
.next-btn { right: 15px; }
.slider-dots { position: absolute; bottom: 20px; width: 100%; text-align: center; }
.slider-dots span { display: inline-block; width: 12px; height: 12px; margin: 0 4px; background: #fff; border-radius: 50%; opacity: 0.5; cursor: pointer; }
.slider-dots span.active { background: #ffc107; opacity: 1; }

/* ======= FILTER BAR ======= */
.filter-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #111;
  padding: 20px;
  gap: 10px;
  flex-wrap: wrap;
}
.filter-bar select { padding: 10px; border: none; border-radius: 4px; width: 200px; }
.filter-bar button {
  background: #ffc107;
  color: #000;
  border: none;
  padding: 10px 25px;
  border-radius: 4px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s;
}
.filter-bar button:hover { background: #e0a800; }

/* ======= PRODUCT CATEGORIES ======= */
.categories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 20px;
  padding: 40px 20px;
  background: #fff;
}
.category-card { text-align: center; border-radius: 12px; padding: 20px 10px; box-shadow: 0 4px 10px rgba(0,0,0,0.05); transition: all 0.3s ease; }
.category-card:hover { transform: translateY(-5px); box-shadow: 0 6px 15px rgba(0,0,0,0.1); }
.category-card img { width: 80px; height: 80px; object-fit: contain; margin-bottom: 15px; }
.category-card h4 { font-size: 14px; margin: 0; font-weight: 600; }
.category-card.active { background: #ffc107; }

/* ======= NEW ARRIVALS ======= */
.new-arrivals { text-align: center; padding: 40px 10px; background: #fff; }
.new-arrivals h2 { font-size: 2em; font-weight: 700; color: #222; margin-bottom: 10px; }
.new-arrivals p { color: #777; margin-bottom: 30px; font-size: 14px; }
.product-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 20px; }
.product-card { background: #fff; border: 1px solid #eee; border-radius: 8px; padding: 20px 10px; transition: all 0.3s ease; text-align: center; }
.product-card:hover { transform: translateY(-6px); box-shadow: 0 4px 15px rgba(0,0,0,0.1); }
.product-card img { width: 100%; height: auto; object-fit: contain; margin-bottom: 10px; }
.product-card h3 { font-size: 13px; color: #333; margin-bottom: 8px; min-height: 40px; }
.stars { color: #f9b400; font-size: 14px; margin-bottom: 10px; }
.price { font-weight: bold; color: #000; margin-bottom: 10px; }
.btn { background: #222; color: #fff; border: none; padding: 8px 15px; border-radius: 4px; cursor: pointer; font-size: 13px; transition: 0.3s; }
.btn:hover { background: #ff6a00; }

/* ======= MEDIA QUERIES FOR MOBILE ======= */
@media screen and (max-width: 768px) {
  
  .hero-slider { height: 300px; }
  .slide .hero-text { right: 20px; bottom: 30px; text-align: left; }
  .slide .hero-text h2 { font-size: 28px; }
  .slide .hero-text small { font-size: 14px; }
  .filter-bar { flex-direction: column; gap: 10px; padding: 15px; }
  .filter-bar select, .filter-bar button { width: 100%; }
  .categories { grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); padding: 20px 10px; }
  .new-arrivals h2 { font-size: 1.5em; }
  .product-grid { grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 15px; }
  .product-card h3 { font-size: 12px; }
  .btn { font-size: 12px; padding: 6px 12px; }
}