* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background: #ffffff;
  color: #111;
}

/* NAVBAR */
.navbar {
  position: sticky;
  top: 0;
  width: 100%;
  padding: 15px 40px;
  background: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #eee;
  z-index: 1000;
}

.logo {
  font-size: 26px;
  font-weight: 900;
  letter-spacing: 4px;
  text-transform: uppercase;
}

.navbar nav a {
  text-decoration: none;
  margin: 0 15px;
  color: #111;
  font-weight: 500;
  transition: 0.3s;
}

.navbar nav a:hover {
  color: #777;
}

.nav-icons a {
  text-decoration: none;
  margin-left: 15px;
  color: #111;
  font-weight: 500;
}

/* HERO SLIDER */
.hero {
  position: relative;
  height: 80vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slider {
  position: absolute;
  width: 100%;
  height: 100%;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.slide.active {
  opacity: 1;
}

.hero h1 {
  position: relative;
  color: white;
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: 2px;
  z-index: 2;
}

/* PRODUCTS */
.products {
  padding: 60px 40px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.product-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  transition: 0.3s ease;
  box-shadow: 0 4px 15px rgba(0,0,0,0.06);
}

.product-card:hover {
  transform: translateY(-6px);
}

.product-card img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  cursor: pointer;
}

.product-info {
  padding: 15px;
}

.product-info h4 {
  font-size: 16px;
  margin-bottom: 10px;
}

.old-price {
  text-decoration: line-through;
  color: #888;
  font-size: 14px;
}

.price {
  font-size: 16px;
  font-weight: 600;
  margin-top: 4px;
}

button {
  margin-top: 12px;
  padding: 10px;
  width: 100%;
  border: none;
  background: black;
  color: white;
  cursor: pointer;
  font-weight: 500;
  transition: 0.3s;
}

button:hover {
  background: #333;
}

.loader {
  text-align: center;
  padding: 30px;
  font-weight: 500;
  display: none;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .product-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero h1 {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .product-grid {
    grid-template-columns: 1fr;
  }

  .navbar {
    flex-direction: column;
    gap: 10
.load-more-container {
  text-align: center;
  margin-top: 40px;
}

#load-more-btn {
  padding: 12px 30px;
  background: black;
  color: white;
  border: none;
  cursor: pointer;
  font-size: 16px;
  border-radius: 6px;
  transition: 0.3s;
}

#load-more-btn:hover {
  background: #333;
}
