* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', sans-serif;
}

body {
  background: #dd2097;
  padding: 10px;
}

header {
  background: #111;
  color: rgb(222, 47, 47);
  text-align: center;
  padding: 20px 10px;
  border-radius: 12px;
  margin-bottom: 20px;
}

header h1 {
  font-size: 22px;
}

.section {
  margin-bottom: 30px;
}

.section h2 {
  font-size: 18px;
  margin-bottom: 15px;
  color: #333;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 15px;
}

.product-card {
  background: rgb(48, 161, 199);
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  padding: 12px;
  text-align: center;
}

.product-card img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 10px;
}

.product-card h3 {
  font-size: 15px;
  margin-bottom: 5px;
}
.product-card p {
  color: #666;
  font-size: 14px;
  margin-bottom: 10px;
}

.product-card a {
  background: #ff4d30;
  color: white;
  text-decoration: none;
  padding: 7px 12px;
  border-radius: 6px;
  display: inline-block;
  font-weight: bold;
}

footer {
  text-align: center;
  padding: 20px 10px;
  font-size: 14px;
  color: #777;
}

