.wp-block-group.woocommerce.product {
  /* Styles pour le conteneur principal du produit */
  background-color: transparent;
  padding: 20px;
  border-radius: 8px;
}

.woocommerce-breadcrumb {
  /* Styles pour le fil d'Ariane */
  font-size: 0.9rem;
  color: #555;
}

.wc-block-components-notice-banner {
  /* Styles pour les bannières de notification */
  background-color: #e0f7fa; /* Couleur de fond bleu clair */
  border-left: 4px solid #00796b; /* Bordure verte */
  padding: 10px;
  margin-bottom: 10px;
}

.wp-block-woocommerce-product-price {
  /* Styles pour le prix du produit */
  font-size: 1.5rem;
  font-weight: bold;
}

.wp-block-post-excerpt__excerpt {
  /* Styles pour l'extrait de description */
  font-size: 1rem;
  color: #333;
  margin-top: 10px;
}

/* Styles pour personnaliser le menu déroulant de quantité WooCommerce */
.custom-quantity-wrapper {
  margin: 1rem 0;
  font-family: "Open Sans", sans-serif;
  display: inline-block;
  position: relative;
}

.quantity-label {
  font-weight: bold;
  margin-bottom: 0.5rem;
  display: block;
  color: #8b4513; /* Marron Clair */
}

.styled-select {
  position: relative;
  display: inline-block;
  background: transparent; /* Fond transparent */
  border-radius: 4px;
  padding: 4px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2); /* Ombre portée */
}

.custom-quantity-select {
  appearance: none;
  background-color: #fff;
  border: 2px solid #8b4513; /* Bordure marron clair */
  border-radius: 4px;
  padding: 0.5rem 2rem 0.5rem 0.75rem;
  font-size: 1rem;
  font-weight: 600;
  color: #8b4513; /* Marron Clair */
  cursor: pointer;
  transition: all 0.3s ease;
  outline: none;
  min-width: 120px;
}

.styled-select::after {
  content: "\f107";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  right: 10px;
  top: 50%;
  color: #daa520; /* Doré */
  transform: translateY(-50%);
  pointer-events: none;
}

.custom-quantity-select:hover {
  background-color: #f8f8f8;
}

.custom-quantity-select:focus {
  box-shadow: 0 0 0 2px #f0e68c55; /* Lueur Beige Clair */
}
