.artwork-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.artwork-card {
  background-color: #fff;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
  cursor: pointer;
  width: 320px; /* largeur fixe pour les cartes */
  display: flex;
  flex-direction: column;
}

.artwork-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.artwork-image {
  width: 100%;
  aspect-ratio: 1 / 1; /* carré parfait */
  overflow: hidden;
  background-color: #fdfdfd;
}

.artwork-image img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* remplit le carré proprement */
  display: block;
  transition: transform 0.4s ease;
}

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

.artwork-info {
  padding: 15px 20px;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.artwork-info h3 {
  font-size: 1.2rem;
  margin: 0;
  color: #222;
  font-weight: 600;
}

.artwork-card .description {
  font-size: 0.95rem;
  color: #555;
  margin: 0;
  line-height: 1.4;
}

.price {
  font-weight: 600;
  font-size: 1.15rem;
  color: #21a7c9;
  margin-top: 8px;
}

@media (max-width: 992px) {
  .artwork-grid {
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .artwork-card {
    width: 90%; /* prend presque toute la largeur sur mobile */
  }
}


/* Introduction boutique */
.boutique-intro {
  padding: 60px 0;
  background-color: #f9f9f9;
  text-align: center;
}

.boutique-intro h1 {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.boutique-intro p {
  font-family: 'Roboto', sans-serif;
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto;
  color: #555;
}

/* Section Mes Tableaux */
.featured h2 {
  text-align: center;
  margin-bottom: 40px;
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: #333;
}

.artwork-card .description {
  font-size: 0.9rem;
  color: #777;
  margin-bottom: 8px;
}

/* Section À propos */
.boutique-info {
  padding: 60px 0;
  background-color: #fff;
  text-align: center;
}

.boutique-info h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  margin-bottom: 20px;
}

.boutique-info p {
  font-size: 1rem;
  color: #555;
  max-width: 700px;
  margin: 0 auto 30px auto;
}

.features-list {
  list-style: none;
  padding: 0;
}

.features-list li {
  font-size: 1rem;
  margin-bottom: 15px;
  color: #444;
}

.features-list i {
  color: #21a7c9;
  margin-right: 10px;
}

/* Responsive */
@media (max-width: 992px) {
  .artwork-grid {
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .artwork-grid {
    justify-content: center;
  }
}