body {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  background: #faf7f3;
  color: #333;
}
header {
  background: linear-gradient(135deg, #b5651d, #e8c547);
  color: white;
  text-align: center;
  padding: 2rem 1rem;
  position: relative;
}
header h1 {
  margin: 0;
  font-size: 2.5rem;
  font-family: 'Georgia', serif;
}
#cart-btn {
  position: absolute;
  right: 20px;
  top: 20px;
  cursor: pointer;
  font-size: 1.2rem;
  background: #333;
  padding: 8px 12px;
  border-radius: 6px;
}
nav {
  background: #333;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
nav a {
  color: white;
  text-decoration: none;
  margin: 10px 15px;
}
nav a:hover {
  color: #e8c547;
}
section {
  padding: 2rem 1rem;
  max-width: 1000px;
  margin: auto;
}
h2 {
  text-align: center;
  color: #b5651d;
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}
.card {
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  overflow: hidden;
  text-align: center;
  transition: transform 0.3s;
}
.card:hover {
  transform: scale(1.05);
}
.card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}
.card h3 {
  margin: 0;
  padding: 10px;
}
.card p {
  color: #555;
}
.card button {
  margin: 10px;
  padding: 8px 12px;
  background: #b5651d;
  border: none;
  color: white;
  border-radius: 5px;
  cursor: pointer;
}
.card button:hover {
  background: #e8c547;
  color: #333;
}
#cart-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
}
.cart-content {
  background: white;
  padding: 20px;
  border-radius: 10px;
  width: 300px;
}
.hidden {
  display: none;
}
footer {
  background: #333;
  color: white;
  text-align: center;
  padding: 1rem;
  margin-top: 2rem;
}
