/* ========================================
   STORE PAGE STYLES
   ======================================== */

.store-page {
  padding: var(--space-xl) 0;
}

.store-page h1 {
  text-align: center;
  font-size: 1.8rem;
  color: var(--black);
  margin-bottom: 0.25rem;
}

.store-intro {
  text-align: center;
  opacity: 0.7;
  margin-bottom: var(--space-lg);
}

/* Product Grid */
.product-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}

.product-card {
  background: var(--white);
  border: 1px solid rgba(234, 185, 101, 0.15);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s;
}

.product-card:hover {
  border-color: rgba(234, 185, 101, 0.4);
}

.product-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--gray);
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.product-card:hover .product-image img {
  transform: scale(1.03);
}

.product-info {
  padding: var(--space-sm);
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-info h3 {
  font-size: 1.1rem;
  color: var(--black);
  margin-bottom: 0.25rem;
}

.product-info p {
  font-size: 0.9rem;
  opacity: 0.8;
  margin-bottom: var(--space-xs);
  flex-grow: 1;
}

.product-price {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: var(--space-xs);
}

/* Tablet: 2 columns */
@media (min-width: 600px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Desktop: 3 columns */
@media (min-width: 900px) {
  .product-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}