/* === Page Boutique === */
.shop-section {
  padding: 8rem 2rem 4rem;
  text-align: center;
}

.shop-section h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.shop-intro {
  font-size: 1.1rem;
  opacity: 0.85;
  margin-bottom: 3rem;
}

.shop-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.shop-item {
  padding: 1.5rem;
  border-radius: 14px;
  text-align: center;
  transition: transform 0.3s ease;
}

.shop-item:hover {
  transform: translateY(-6px);
}

.shop-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 1rem;
}

.price {
  font-size: 1.2rem;
  font-weight: bold;
  margin: 0.8rem 0 1.2rem;
  color: #4F9CF9;
}
