body {
  font-family: 'Segoe UI', 'Roboto', system-ui, sans-serif;
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
  line-height: 1.6;
  background-color: #EEC3AC;
  color: #2c3e50;
}

.product-details {
  background: #fff;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

h1 {
  color: #2c3e50;
  border-bottom: 2px solid #3498db;
  padding-bottom: 10px;
  font-weight: 600;
  letter-spacing: -0.5px;
}

h2 {
  font-weight: 500;
  color: #34495e;
  margin-top: 1.5em;
}

.ingredients-list {
  list-style-type: none;
  padding: 0;
}

.ingredients-list li {
  padding: 10px 0;
  border-bottom: 1px solid #eee;
  font-size: 1.05em;
  line-height: 1.4;
}

.back-link {
  display: inline-block;
  margin-top: 25px;
  color: #3498db;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.2s ease;
}

.back-link:hover {
  text-decoration: none;
  transform: translateX(-5px);
  color: #2980b9;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin-top: 30px;
}

.product-card {
  border: none;
  border-radius: 12px;
  padding: 25px;
  background: #fff;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}

.product-card h2 {
  color: #2c3e50;
  margin-top: 0;
  font-size: 1.25em;
  font-weight: 600;
}

.product-card p {
  margin: 10px 0;
  color: #555;
  line-height: 1.5;
}

.ingredients {
  font-size: 0.95em;
  line-height: 1.5;
  color: #666;
}

.product-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.product-link:hover {
  transform: translateY(-3px);
  transition: transform 0.2s ease;
}

.product-link:hover .product-card {
  box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

@media (max-width: 600px) {
  body {
    padding: 15px;
  }
  
  .product-details {
    padding: 20px;
  }
  
  .ingredients-list li {
    font-size: 1em;
  }
}

.footer {
  margin-top: 40px;
  padding: 20px;
  border-top: 1px solid rgba(0,0,0,0.1);
  text-align: center;
  font-size: 0.9em;
  color: #666;
  line-height: 1.8;
}

.footer p {
  margin: 0;
}