body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #fdf3f5; /* Light pink background */
  color: #4b3832; /* Soft brown text */
}
header {
  background: #e6cfc3; /* Beige background */
  color: #4b3832;
  padding: 1rem;
  text-align: center;
}
nav a {
  margin: 0 1rem;
  color: #4b3832;
  text-decoration: none;
}
nav a:hover {
  text-decoration: underline;
}
.intro, .categories, main {
  padding: 2rem;
  text-align: center;
}
.grid {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 1rem;
}
.card, .product-card {
  border: 1px solid #d8b4a0;
  padding: 1rem;
  border-radius: 8px;
  text-align: center;
  max-width: 300px;
  transition: 0.3s ease;
  background: #fffafa;
}
.card img, .product-card img {
  width: 100%;
  height: auto;
  border-radius: 5px;
}
.card:hover, .product-card:hover {
  box-shadow: 0 4px 12px rgba(128, 70, 27, 0.2);
}
.product-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  padding: 2rem;
}
footer {
  text-align: center;
  padding: 1rem;
  background: #f8e8e0;
  color: #4b3832;
}

#cart-toggle {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #e6cfc3;
  border: none;
  padding: 10px 15px;
  font-size: 16px;
  border-radius: 5px;
  cursor: pointer;
}

#cart-container {
  display: none;
  position: fixed;
  bottom: 70px;
  right: 20px;
  background: #fffafa;
  border: 1px solid #d8b4a0;
  padding: 15px;
  width: 250px;
  max-height: 300px;
  overflow-y: auto;
  border-radius: 5px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

#cart-container.visible {
  display: block;
}

.add-to-cart {
  margin-top: 10px;
  padding: 6px 10px;
  background-color: #f2c2d1;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}
