body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #eaeded;
}

/* Navbar */
.navbar {
  background: #131921;
  color: white;
  display: flex;
  align-items: center;
  padding: 10px 20px;
  gap: 20px;
}

.logo {
  font-size: 20px;
  font-weight: bold;
}

.search-bar {
  flex: 1;
  padding: 8px;
  border-radius: 4px;
  border: none;
}

.nav-links span {
  margin-left: 15px;
  cursor: pointer;
}

.cart {
  font-weight: bold;
}

/* Section */
.section-title {
  padding: 20px;
  margin: 0;
}

/* Grid */
.product-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
  padding: 20px;
}

/* Card */
.product-card {
  background: white;
  border-radius: 6px;
  padding: 10px;
  transition: transform 0.2s ease;
}

.product-card:hover {
  transform: scale(1.02);
}

/* Image */
.product-image {
  width: 100%;
  height: 180px;
  object-fit: contain;
}

/* Title */
.product-title {
  font-size: 14px;
  margin: 10px 0;
  height: 40px;
  overflow: hidden;
}

/* Price */
.product-price {
  color: #b12704;
  font-weight: bold;
}

/* Button */
.buy-btn {
  margin-top: 10px;
  width: 100%;
  padding: 8px;
  background: #ffd814;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.buy-btn:hover {
  background: #f7ca00;
}