/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Arial', sans-serif;
}

/* Header */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 30px;
  background-color: #1a1a1a;
  color: white;
}

.logo img {
  height: 50px;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 25px;
}

nav a {
  color: white;
  text-decoration: none;
  font-size: 16px;
}

nav a:hover {
  color: #ff5722;
}

/* Hero Section */
.hero {
  background: linear-gradient(to right, #ff9a9e, #fad0c4);
  padding: 100px 20px;
  text-align: center;
  color: #333;
}

.hero h1 {
  font-size: 48px;
  margin-bottom: 15px;
}

.hero p {
  font-size: 20px;
  margin-bottom: 30px;
}

.btn {
  background-color: #e91e63;
  color: white;
  padding: 12px 24px;
  text-decoration: none;
  border-radius: 30px;
  font-weight: bold;
}

.btn:hover {
  background-color: #d81b60;
}

/* Product Section */
.products {
  padding: 40px 20px;
  background-color: #f9f9f9;
  text-align: center;
}

.products h2 {
  font-size: 28px;
  margin-bottom: 30px;
}

.product-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.product-card {
  background-color: #fff;
  border-radius: 10px;
  padding: 15px;
  width: 250px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.product-card:hover {
  transform: translateY(-5px);
}

.product-card img {
  width: 100%;
  border-radius: 8px;
}

.product-card h3 {
  font-size: 20px;
  margin-top: 15px;
}

.product-card p {
  font-size: 14px;
  color: #555;
}

.price {
  font-weight: bold;
  color: #e91e63;
  font-size: 16px;
  margin-top: 10px;
}

/* About + Contact */
.about, .contact {
  padding: 40px 20px;
  text-align: center;
}

.about h2, .contact h2 {
  font-size: 28px;
  margin-bottom: 20px;
}

.about p, .contact p {
  font-size: 16px;
  line-height: 1.6;
  color: #444;
}

/* Footer */
footer {
  background-color: #222;
  color: white;
  text-align: center;
  padding: 15px 0;
  font-size: 14px;
}
