body {
  font-family: Arial, sans-serif;
  margin: 0;
  background: #f6e0e0;
  color: #333;
}

header {
  background-image: url('images/wmn_bckgrnd.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: white;
  padding: 40px 20px;
  text-align: center;
  padding: 20px 10px;
}

header h1 {
  margin: 0;
  font-size: 2em;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  padding: 20px;
}

.product {
  transition: transform 0.3s ease;
  background: #fff;
  border-radius: 10px;
  padding: 15px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  text-align: center;
}

.product:hover {
  transform: translateY(-5px);
}

.product img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 10px;
}

.btn {
  display: inline-block;
  margin-top: 10px;
  padding: 10px 15px;
  background: #e91e63;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  transition: background 0.3s ease;
}

.btn:hover {
  background: #c2185b;
  cursor: pointer;
  transform: translateY(-2px);
}

footer {
  text-align: center;
  padding: 15px;
  background: #ffb8ce;
  font-size: 0.9em;
}
