body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #f3f3f3;
}

.container {
  width: 90%;
  max-width: 1400px;
  margin: auto;
}

/* HEADER */
.amazon-header {
  background: #232f3e;
  color: white;
  text-align: center;
  padding: 40px 20px;
}

/* CATEGORY TITLES */
.category-section h2 {
  font-size: 28px;
  margin-top: 50px;
  margin-bottom: 20px;
  color: #111;
  border-bottom: 2px solid #ffa41c;
  display: inline-block;
  padding-bottom: 5px;
}

/* PRODUCT GRID */
.product-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.product-card {
  background: white;
  width: 30%;
  min-width: 260px;
  margin-bottom: 35px;
  padding: 15px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
  text-align: center;
  transition: transform 0.2s;
}

.product-card:hover {
  transform: translateY(-5px);
}

.product-card img {
  width: 100%;
  height: 220px;
  object-fit: contain;
  border-radius: 8px;
}

/* PRICES */
.price {
  font-size: 18px;
  margin-top: 10px;
}

.old {
  text-decoration: line-through;
  color: #777;
  margin-right: 8px;
}

.discount {
  color: #b12704;
  font-weight: bold;
}

/* BUY BUTTON */
.amazon-buy-btn {
  display: inline-block;
  background: #ffa41c;
  padding: 10px 20px;
  border-radius: 5px;
  color: #111;
  font-weight: bold;
  margin-top: 12px;
  text-decoration: none;
}

.amazon-buy-btn:hover {
  background: #f09000;
}

/* FOOTER */
.amazon-footer {
  background: #232f3e;
  color: white;
  padding: 20px;
  text-align: center;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .product-card {
    width: 45%;
  }
}

@media (max-width: 768px) {
