/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  background: #fff7fb;
  color: #333;
}

/* HEADER */
header {
  background: linear-gradient(to right, #e60073, #b30059);
  color: white;
  padding: 25px;
  text-align: center;
}

header h1 {
  margin-bottom: 5px;
}

/* NAVIGATION */
nav {
  background: #e60073;
  padding: 12px;
  text-align: center;
}

nav input {
  width: 60%;
  padding: 10px;
  border-radius: 25px;
  border: none;
  outline: none;
  font-size: 16px;
}

nav input:focus {
  border: 2px solid white;
}

/* HERO BANNER */
.hero {
  background: url('images/banner.jpg') center/cover no-repeat;
  height: 350px;
  border-radius: 12px;
  margin: 20px auto;
  width: 92%;
}

/* MAIN CONTENT AREA */
.container {
  width: 92%;
  max-width: 1200px;
  margin: auto;
}

.products {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
}

/* PRODUCT CARD */
.product {
  background: white;
  padding: 15px;
  border-radius: 12px;
  box-shadow: 0 3px 8px rgba(0,0,0,0.1);
  text-align: center;
  transition: 0.3s;
}

.product:hover {
  transform: translateY(-5px);
}

.product img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: 10px;
}

/* RATINGS */
.stars {
  color: gold;
  font-size: 18px;
  margin: 8px 0;
}

/* PRODUCT BUTTON */
.product button {
  background: #e60073;
  color: white;
  padding: 10px 18px;
  border: none;
  border-radius: 5px;
  margin-top: 10px;
  cursor: pointer;
  transition: 0.3s;
}

.product button:hover {
  background: #b30059;
}

/* RESPONSIVE */
@media(max-width: 700px) {
  nav input {
    width: 90%;
  }
}
form {
  padding: 20px;
  background: white;
  border-radius: 10px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

form input, textarea {
  width: 100%;
  padding: 12px;
  margin: 10px 0;
  border-radius: 5px;
  border: 1px solid #aaa;
}

form button {
  background: #e60073;
  color: white;
  padding: 12px 20px;
  border: none;
  font-size: 18px;
  border-radius: 5px;
  cursor: pointer;
}

form button:hover {
  background: #b30059;
}