style.css


/* Reset + Layout */
html, body {
  height: 100%;
  margin: 0;
  font-family: Arial, sans-serif;
}

.page-container {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

header, footer {
  background-color: #f8f8f8;
  padding: 15px;
  text-align: center;
}

nav a {
  margin: 0 10px;
  text-decoration: none;
  color: #333;
}

footer {
  background-color: #333;
  color: white;
  padding: 15px 0;
  margin-top: auto;
  text-align: center;
}

/* Banner */
.banner img {
  width: 100%;
  height: auto;
  max-height: 500px;
  object-fit: cover;
  display: block;
}

/* Intro Section */
.intro {
  flex: 1;
  padding: 20px;
  text-align: center;
}

.intro p {
  color: #d63384;
  font-size: 18px;
}

/* ✅ Product Grid Layout */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  padding: 20px;
}

/* ✅ Product Card */
.product-card {
  background: #ffffff;
  border: 1px solid #161515;
  border-radius: 10px;
  padding: 15px;
  text-align: center;
  transition: 0.3s ease;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.product-card:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
}

.product-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
}

.product-card h3 {
  font-size: 18px;
  margin: 10px 0 5px;
}

.product-card p {
  margin: 5px 0;
  color: #2e8b57;
  font-weight: bold;
}

.product-card button {
  padding: 8px 12px;
  background-color: #d63384;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  margin-top: 10px;
}

.product-card button:hover {
  background-color: #b0276b;
}
