body {
  margin: 0;
  padding: 30px 20px;
  font-family: 'Fredoka One', cursive;
  background: linear-gradient(135deg, #c3bef0, #a1d8ff);
  color: #2d1e70;
  display: flex;
  justify-content: center;
  box-sizing: border-box;
}

.store-container {
  max-width: 1100px;
  width: 100%;
  background: #f0f0ff;
  border: 3px solid #635ca8;
  border-radius: 25px;
  padding: 40px 30px;
  box-shadow: 0 15px 30px rgba(90, 80, 160, 0.2);
}

.page-title {
  font-size: 3rem;
  text-align: center;
  color: #635ca8;
  margin-bottom: 10px;
}

.note {
  text-align: center;
  font-size: 1.2rem;
  color: #4a3e9e;
  margin-bottom: 30px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 25px;
}

.product-card {
  background: #e8e8ff;
  border: 2px solid #635ca8;
  border-radius: 20px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(99, 92, 168, 0.2);
  transition: transform 0.3s ease;
}

.product-card:hover {
  transform: translateY(-5px);
}

.product-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 15px;
}

.product-card h2 {
  font-size: 1.4rem;
  color: #4a3e9e;
  margin-bottom: 8px;
}

.price {
  font-size: 1.1rem;
  color: #2d1e70;
  margin-bottom: 8px;
}

.product-card p {
  font-size: 1rem;
  margin-bottom: 12px;
}

select {
  padding: 8px;
  margin-bottom: 12px;
  border-radius: 6px;
  border: 1px solid #aaa;
  font-family: 'Fredoka One', cursive;
}

.add-to-cart {
  background: #635ca8;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 30px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s ease;
}

.add-to-cart:hover {
  background: #4a3e9e;
}

.view-cart {
  text-align: center;
  margin-top: 40px;
}

.view-cart a {
  font-size: 1.2rem;
  text-decoration: none;
  color: #fff;
  background: #635ca8;
  padding: 12px 25px;
  border-radius: 25px;
  transition: background 0.3s ease;
}

.view-cart a:hover {
  background: #4a3e9e;
}

#popup {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #4a3e9e;
  color: white;
  padding: 12px 18px;
  border-radius: 10px;
  font-family: 'Fredoka One', cursive;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  display: none;
  z-index: 1000;
}

/* 📱 MOBILE STYLING */
@media (max-width: 600px) {
  body {
    padding: 10px;
  }
  .store-container {
    padding: 20px;
  }
  .product-card img {
    height: 140px;
  }
}