/* ===== Store Section Styling ===== */
.store-section {
  background-color: rgba(10, 10, 10, 0.9);
  color: #fff;
  padding: 2rem clamp(1rem, 4vw, 3rem);
  border-radius: 12px;
  margin: 3rem auto;
  max-width: 100%;
  width: min(1200px, 90%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  opacity: 0;
  animation: fadeIn 1s ease 0.6s forwards;
}

.store-section h1 {
  text-align: center;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: 2rem;
  letter-spacing: 1px;
}

/* ===== Product Grid Layout ===== */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 2rem;
  width: 100%;
}

/* ===== Product Card Styling ===== */
.product-card {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  padding: 1.5rem;
  text-align: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.45);
}

.product-card img {
  width: 100%;
  max-height: 200px;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 1rem;
}

/* ===== Product Text ===== */
.product-card h2 {
  font-size: 1.2rem;
  margin: 0.5rem 0;
  font-weight: 600;
}

.product-card p {
  font-size: 1rem;
  color: #ccc;
  margin-bottom: 1rem;
}

/* ===== Buy Button Styling ===== */
.product-card button {
  background-color: #111;
  color: #fff;
  padding: 0.75rem 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 1px;
  cursor: pointer;
  transition: background-color 0.3s ease, border-color 0.3s ease;
}

.product-card button:hover {
  background-color: #222;
  border-color: rgba(255, 255, 255, 0.4);
}

.product-card button:disabled {
  cursor: not-allowed;
  background-color: #222;
  opacity: 0.6;
}

/* ===== Animation ===== */
@keyframes fadeIn {
  to {
    opacity: 1;
  }
}
