body {
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', sans-serif;
  background: linear-gradient(135deg, #ffe4ec 0%, #e0f7fa 100%);
  min-height: 100vh;
}

.container {
  max-width: 400px;
  margin: 0 auto;
  padding: 16px;
}

.logo {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 16px;
  margin-bottom: 24px;
}

.logo img {
  width: 100px;
  height: auto;
  border-radius: 50%;
  box-shadow: 0 4px 16px rgba(255, 182, 193, 0.2);
  background: #fff;
  padding: 8px;
}

.categories {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.category {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 90px;
  border-radius: 18px;
  background-size: cover;
  background-position: center;
  position: relative;
  box-shadow: 0 2px 8px rgba(173, 216, 230, 0.2);
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
  overflow: hidden;
  animation: fadeInUp 0.7s;
}

.category span {
  background: rgba(255,255,255,0.8);
  color: #e91e63;
  font-size: 1.3rem;
  font-weight: bold;
  padding: 8px 24px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(255, 182, 193, 0.2);
}

.category:hover {
  transform: scale(1.04);
  box-shadow: 0 4px 16px rgba(233, 30, 99, 0.15);
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px);}
  to { opacity: 1; transform: translateY(0);}
}

.category-title {
  text-align: center;
  color: #e91e63;
  margin-bottom: 18px;
  font-size: 1.5rem;
}

.products {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.product-card {
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 8px rgba(224, 247, 250, 0.2);
  padding: 10px;
  gap: 14px;
  animation: fadeInUp 0.7s;
}

.product-card img {
  width: 70px;
  height: 70px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(255, 182, 193, 0.1);
}

.product-card h3 {
  margin: 0 0 4px 0;
  color: #2196f3;
  font-size: 1.1rem;
}

.product-card p {
  margin: 0 0 4px 0;
  color: #555;
  font-size: 0.95rem;
}

.price {
  color: #e91e63;
  font-weight: bold;
  font-size: 1.1rem;
}

.back-btn {
  display: block;
  margin: 24px auto 0 auto;
  text-align: center;
  background: #e0f7fa;
  color: #e91e63;
  padding: 10px 24px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: bold;
  box-shadow: 0 2px 8px rgba(224, 247, 250, 0.2);
  transition: background 0.2s;
}

.back-btn:hover {
  background: #ffe4ec;
}