/* 
  Estilos da Vitrine (shop.css)
*/

.shop-intro {
  text-align: center;
  margin-bottom: 4rem;
}

.shop-intro h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.shop-intro p {
  font-size: 1.1rem;
  opacity: 0.7;
  max-width: 600px;
  margin: 0 auto;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2.5rem;
}

.product-card {
  transition: var(--transition-smooth);
}

.product-image {
  position: relative;
  aspect-ratio: 1/1.2;
  background-color: var(--color-gray-light);
  overflow: hidden;
  border-radius: var(--radius-card);
}

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

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

.badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--color-text);
  color: white;
  padding: 4px 12px;
  font-size: 0.6rem;
  font-family: var(--font-heading);
  text-transform: uppercase;
  z-index: 5;
}

.product-hover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: 0.3s;
}

.product-card:hover .product-hover {
  opacity: 1;
}

.product-info {
  padding: 1.5rem 0;
}

.product-info h3 {
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
  color: var(--color-text);
}

.price {
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.availability {
  font-size: 0.65rem;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--color-accent);
  letter-spacing: 1px;
}

@media (max-width: 600px) {
  .product-grid { grid-template-columns: 1fr; }
}
