.woocommerce-wrapper {
  padding-top: 200px;
  padding-bottom: 80px;
  max-width: 1200px;
  margin: 0 auto;
  min-height: 600px;
}

.summary {
  .product_title {
    font-size: 40px;
    font-weight: 700;
    line-height: 1;
    color: #000;
    margin-bottom: 15px;
  }
  .price {
    font-size: 20px;
    font-weight: 700;
    line-height: 1;
    /* color: #d6defc; */
    margin-bottom: 20px;
  }
}

.reset_variations {
  display: none;
}

/* Product Images */
.woocommerce ul.products li.product .woocommerce-loop-product__link {
  display: block;
  text-decoration: none;
}

.woocommerce ul.products li.product img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

/* Product Info */
.woocommerce ul.products li.product .woocommerce-loop-product__title {
  padding: 1rem;
  margin: 0;
  font-size: 1.125rem;
  font-weight: 600;
  color: #1f2937;
}

.woocommerce ul.products li.product .price {
  padding: 0 1rem 1rem;
  color: #059669;
  font-weight: 600;
}

/* Buttons */
.woocommerce .button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit {
  /* background-color: #3b82f6; */
  background: linear-gradient(
    90deg,
    rgb(149, 39, 123) 0%,
    rgb(231, 43, 112) 30%,
    rgb(241, 128, 38) 50%,
    rgb(231, 43, 112) 100%
  );
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 3rem;
  border: none;
  font-weight: 500;
  text-decoration: none;
  display: inline-block;
  transition: background-color 0.2s ease;
}

.woocommerce .button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce #respond input#submit:hover {
  background-position: 100%;
}

/* Single Product */
.woocommerce div.product {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1rem;
}

.woocommerce div.product .product_title {
  font-size: 2rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 1rem;
}

.woocommerce div.product .price {
  font-size: 1.5rem;
  font-weight: 600;
  color: #059669;
  margin-bottom: 1rem;
}

/* Cart and Checkout */
/* .woocommerce-cart .woocommerce,
.woocommerce-checkout .woocommerce {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1rem;
} */

.woocommerce table.cart {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 2rem;
}

.woocommerce table.cart th,
.woocommerce table.cart td {
  padding: 1rem;
  text-align: left;
  border-bottom: 1px solid #e5e7eb;
}

.woocommerce table.cart th {
  background-color: #f9fafb;
  font-weight: 600;
}

/* Forms */
.woocommerce form .form-row {
  margin-bottom: 1rem;
}

.woocommerce form .form-row label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: #374151;
}

.woocommerce form .form-row input,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #d1d5db;
  border-radius: 0.375rem;
  font-size: 1rem;
}

.woocommerce form .form-row input:focus,
.woocommerce form .form-row textarea:focus,
.woocommerce form .form-row select:focus {
  outline: none;
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

/* Responsive */
@media (max-width: 768px) {
  .woocommerce ul.products {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
  }

  .woocommerce div.product .product_title {
    font-size: 1.5rem;
  }

  .woocommerce table.cart {
    font-size: 0.875rem;
  }

  .woocommerce table.cart th,
  .woocommerce table.cart td {
    padding: 0.5rem;
  }
}

/* ===== STYLES POUR LA GALERIE PRODUIT ===== */

/* Container principal de la galerie */
.woocommerce-product-gallery {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  background: white;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

/* Image principale */
.woocommerce-product-gallery__wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}

.woocommerce-product-gallery__image {
  margin: 0;
  padding: 0;
  position: relative;
  display: block;
}

.woocommerce-product-gallery__image img {
  width: 100%;
  height: auto;
  max-height: 500px;
  object-fit: cover;
  border-radius: 20px;
  /* Désactiver le zoom au survol */
  /* transition: transform 0.3s ease; */
}

/* Désactiver le zoom au survol */
/* .woocommerce-product-gallery__image:hover img {
  transform: scale(1.02);
} */

/* Vignettes de la galerie */
.flex-control-thumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
  padding: 0;
  list-style: none;
}

.flex-control-thumbs li {
  width: 80px;
  height: 80px;
  margin: 0;
  border-radius: 12px;
  overflow: hidden;
  border: 2px solid transparent;
  transition: all 0.2s ease;
  cursor: pointer;
}

.flex-control-thumbs li:hover {
  border-color: #3b82f6;
  box-shadow: 0 4px 8px rgba(59, 130, 246, 0.2);
}

.flex-control-thumbs li.flex-active-slide {
  border-color: #3b82f6;
  box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.3);
}

.flex-control-thumbs li img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.2s ease;
}

.flex-control-thumbs li:hover img {
  transform: scale(1.1);
}

/* Navigation de la galerie */
.flex-direction-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  pointer-events: none;
  z-index: 10;
}

.flex-direction-nav a {
  position: absolute;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #374151;
  font-size: 18px;
  font-weight: bold;
  transition: all 0.2s ease;
  pointer-events: all;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.flex-direction-nav a:hover {
  background: white;
  color: #3b82f6;
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.flex-direction-nav .flex-prev {
  left: 16px;
}

.flex-direction-nav .flex-next {
  right: 16px;
}

/* Indicateurs de navigation */
.flex-control-nav {
  position: absolute;
  width: 90%;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
  justify-content: center;
}

.flex-control-nav li {
  list-style: none;
  margin: 0;
}

.flex-control-nav li a {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.6);
  display: block;
  text-indent: -9999px;
  transition: all 0.2s ease;
  cursor: pointer;
}

.flex-control-nav li a:hover,
.flex-control-nav li a.flex-active {
  background: white;
  transform: scale(1.2);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* Animation de chargement */
.woocommerce-product-gallery.loading {
  position: relative;
}

.woocommerce-product-gallery.loading::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 40px;
  height: 40px;
  margin: -20px 0 0 -20px;
  border: 3px solid #f3f4f6;
  border-top: 3px solid #3b82f6;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  z-index: 20;
}

/* Badge de zoom */
.woocommerce-product-gallery__trigger {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #374151;
  text-decoration: none;
  transition: all 0.2s ease;
  z-index: 15;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.woocommerce-product-gallery__trigger:hover {
  background: white;
  color: #3b82f6;
}

/* Responsive pour la galerie */
@media (max-width: 768px) {
  .woocommerce-product-gallery__image img {
    max-height: 300px;
  }

  .flex-control-thumbs {
    gap: 6px;
    margin-top: 12px;
  }

  .flex-control-thumbs li {
    width: 60px;
    height: 60px;
  }

  .flex-direction-nav a {
    width: 36px;
    height: 36px;
    font-size: 16px;
  }

  .flex-direction-nav .flex-prev {
    left: 12px;
  }

  .flex-direction-nav .flex-next {
    right: 12px;
  }

  .flex-control-nav {
    bottom: 12px;
  }

  .flex-control-nav li a {
    width: 10px;
    height: 10px;
  }

  .woocommerce-product-gallery__trigger {
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
  }
}

/* Container pour la galerie avec position relative pour permettre le positionnement absolu */
.entry-images {
  position: relative;
}

/* La galerie reste toujours affichée normalement */
.woocommerce-product-gallery {
  /* Pas de modifications - reste toujours visible */
}

/* Image du variant en position absolue au-dessus de la galerie */
.variant-image-display {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 20px;
  overflow: hidden;
  background: white;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  z-index: 10;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.variant-image-display.active {
  opacity: 1;
  visibility: visible;
}

.variant-image-display img {
  width: 100%;
  height: 100%;
  max-height: none;
  object-fit: cover;
  border-radius: 20px;
}

/* Désactiver tous les effets de hover sur les images de galerie et variant */
.woocommerce-product-gallery__image img,
.variant-image-display img {
  transform: none !important;
  transition: none !important;
}

.woocommerce-product-gallery__image:hover img,
.variant-image-display:hover img {
  transform: none !important;
}

/* ===== DESCRIPTION COURTE PRODUIT ===== */

.product-short-description {
  /* padding: 1.25rem; */
  /* background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%); */
  /* border-radius: 16px; */
  /* border: 1px solid #e2e8f0; */
  /* box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05); */
}

.short-description-content {
  font-size: 1rem;
  line-height: 1.6;
  color: #4a5568;
  margin: 0;
}

.short-description-content p {
  margin: 0 0 0.75rem 0;
}

.short-description-content p:last-child {
  margin-bottom: 0;
}

.short-description-content strong {
  color: #2d3748;
  font-weight: 600;
}

/* ===== MÉTADONNÉES PRODUIT AMÉLIORÉES ===== */

.enhanced-product-meta {
  margin: 2rem 0;
  padding: 1.5rem;
  background: #ffffff;
  border-radius: 20px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.enhanced-product-meta .meta-item {
  display: flex;
  align-items: center;
  padding: 0.75rem 0;
  border-bottom: 1px solid #f1f5f9;
  transition: all 0.2s ease;
}

.enhanced-product-meta .meta-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.enhanced-product-meta .meta-item:first-child {
  padding-top: 0;
}

.enhanced-product-meta .meta-item:hover {
  background: #f8fafc;
  margin: 0 -1rem;
  padding-left: 1rem;
  padding-right: 1rem;
  border-radius: 8px;
}

.enhanced-product-meta .meta-label {
  font-weight: 600;
  color: #374151;
  min-width: 100px;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.enhanced-product-meta .meta-value {
  color: #6b7280;
  font-size: 0.95rem;
  margin-left: 1rem;
  flex: 1;
}

.enhanced-product-meta .meta-value a {
  color: #3b82f6;
  text-decoration: none;
  transition: color 0.2s ease;
}

.enhanced-product-meta .meta-value a:hover {
  color: #1d4ed8;
  text-decoration: underline;
}

/* Icônes pour chaque type de métadonnée */
.enhanced-product-meta .meta-sku .meta-label:before {
  content: "🔗 ";
  margin-right: 0.5rem;
}

/* Catégories désactivées temporairement - décommenter pour réactiver */
/*
.enhanced-product-meta .meta-categories .meta-label:before {
  content: "📁 ";
  margin-right: 0.5rem;
}
*/

.enhanced-product-meta .meta-tags .meta-label:before {
  content: "🏷️ ";
  margin-right: 0.5rem;
}

.enhanced-product-meta .meta-dimensions .meta-label:before {
  content: "📏 ";
  margin-right: 0.5rem;
}

.enhanced-product-meta .meta-weight .meta-label:before {
  content: "⚖️ ";
  margin-right: 0.5rem;
}

/* Responsive pour les métadonnées */
@media (max-width: 768px) {
  .enhanced-product-meta .meta-item {
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem 0;
  }

  .enhanced-product-meta .meta-label {
    min-width: auto;
    margin-bottom: 0.5rem;
  }

  .enhanced-product-meta .meta-value {
    margin-left: 0;
  }

  .product-short-description {
    padding: 1rem;
    margin: 1rem 0 1.5rem 0;
  }
}

/* ===== STYLES POUR LA QUANTITÉ ET BOUTON AJOUTER AU PANIER ===== */

/* Container du formulaire d'ajout au panier */
.cart {
  margin-top: 20px;
  padding: 0;
}

/* Style pour la quantité et le bouton - layout moderne */
.cart .quantity {
  display: inline-flex;
  align-items: center;
  background: #f8fafc;
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.2s ease;
  margin-right: 1rem;
  position: relative;
}

.cart .quantity:hover {
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.cart .quantity:focus-within {
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2);
}

/* Boutons de quantité stylisés */
.quantity-btn {
  background: linear-gradient(180deg, #151515 0%, #2e2d2d 100%);
  border: none;
  color: white;
  width: 40px;
  height: 48px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: bold;
  transition: all 0.2s ease;
  user-select: none;
}

.quantity-btn:hover {
  background: #2563eb;
  transform: scale(1.05);
}

.quantity-btn:active {
  transform: scale(0.95);
}

.quantity-btn.active {
  background: #1d4ed8;
  transform: scale(0.9);
}

.quantity-btn.minus {
  border-radius: 0;
}

.quantity-btn.plus {
  border-radius: 0;
}

/* États désactivés pour les boutons de quantité */
.quantity-btn:disabled {
  background: #9ca3af;
  cursor: not-allowed;
  transform: none;
  opacity: 0.6;
}

.quantity-btn:disabled:hover {
  background: #9ca3af;
  transform: none;
}

/* Input de quantité amélioré */
.cart .quantity .qty,
.cart .quantity input[type="number"] {
  border: none;
  background: transparent;
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  color: #1f2937;
  width: 60px;
  height: 48px;
  padding: 0;
  margin: 0;
  outline: none;
  -moz-appearance: textfield; /* Firefox */
}

/* Masquer les flèches pour Chrome, Safari, Edge */
.cart .quantity input[type="number"]::-webkit-outer-spin-button,
.cart .quantity input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Bouton "Ajouter au panier" moderne */
.cart .single_add_to_cart_button {
  background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
  border: none;
  color: white;
  padding: 12px 32px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  /* box-shadow: 0 4px 14px rgba(59, 130, 246, 0.3); */
  position: relative;
  overflow: hidden;
  min-width: 180px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* État de chargement */
.cart .single_add_to_cart_button.loading {
  pointer-events: none;
  opacity: 0.8;
}

.cart .single_add_to_cart_button.loading:after {
  content: "";
  width: 16px;
  height: 16px;
  margin-left: 8px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top: 2px solid white;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

/* Icône dans le bouton */
/* .cart .single_add_to_cart_button::after {
  content: "🛒";
  margin-left: 8px;
  font-size: 14px;
  order: 2;
} */

/* Container flex pour aligner quantité et bouton */
.cart form.cart {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

/* Style pour le container total */
.woocommerce-variation-add-to-cart {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 30px;
}

/* Message de stock */
.stock {
  font-size: 14px;
  color: #059669;
  font-weight: 500;
  margin-bottom: 1rem;
}

.stock.out-of-stock {
  color: #dc2626;
}

/* Animation d'ajout réussi */
@keyframes addedToCart {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

.cart .single_add_to_cart_button.added {
  animation: addedToCart 0.3s ease;
  background: linear-gradient(135deg, #059669 0%, #047857 100%);
}

/* Responsive */
@media (max-width: 768px) {
  .cart form.cart {
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
  }

  .cart .quantity {
    align-self: center;
    margin-right: 0;
  }

  .cart .single_add_to_cart_button {
    width: 100%;
    padding: 14px 32px;
    font-size: 16px;
  }

  .woocommerce-variation-add-to-cart {
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
  }
}

/* Style pour les variations */
.variations_form .variations {
  margin-bottom: 1.5rem;
}

.variations_form .woocommerce-variation-description {
  margin: 1rem 0;
  padding: 1rem;
  background: #f8fafc;
  border-radius: 8px;
  font-size: 14px;
  color: #64748b;
}

.variations_form .woocommerce-variation-price {
  margin: 1rem 0;
  font-size: 1.25rem;
  font-weight: 700;
  color: #059669;
}

.variations_form .woocommerce-variation-availability {
  margin: 0.5rem 0;
  font-size: 14px;
  font-weight: 500;
}

/* ===== STYLES POUR LES TAGS D'OPTIONS DE PRODUIT ===== */

/* Styles pour les tags d'options de produit */
.product-options-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  /* margin-top: 8px; */
}

.product-option-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background-color: #f3f4f6;
  border: 2px solid #e5e7eb;
  border-radius: 20px;
  color: #374151;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  user-select: none;
  position: relative;
  overflow: hidden;
}

/* Image miniature dans le tag */
.product-option-tag .option-thumbnail {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.3);
  flex-shrink: 0;
}

.product-option-tag .option-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.2s ease;
}

.product-option-tag:hover .option-thumbnail img {
  transform: scale(1.1);
}

.product-option-tag:hover {
  background-color: #e5e7eb;
  transform: translateY(-1px);
  box-shadow: none;
}

.product-option-tag.selected {
  background: linear-gradient(180deg, #f7a605 0%, #fac356 100%);
  color: black;
  border: 0px;
  box-shadow: none;
}

.product-option-tag.selected:hover {
  background-color: #2563eb;
  border-color: #2563eb;
  transform: translateY(-1px);
}

.product-option-tag:active {
  transform: translateY(0);
}

/* Animation pour les tags */
.product-option-tag {
  animation: fadeInUp 0.3s ease;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Style pour les labels des options */
.variations .label {
  text-align: left;
}
.variations .label,
.variations .value {
  padding-top: 10px;
}
.variations label {
  font-weight: 600;
  color: #1f2937;
  display: block;
  margin-right: 20px;
}

/* Amélioration de l'espacement */
.variations td {
  /* padding: 12px 0; */
}

.variations td.label {
  vertical-align: top;
}

/* Style pour les options désactivées */
.product-option-tag.disabled {
  opacity: 0.5;
  cursor: not-allowed;
  background-color: #f9fafb;
  border-color: #e5e7eb;
  color: #9ca3af;
}

.product-option-tag.disabled:hover {
  background-color: #f9fafb;
  border-color: #e5e7eb;
  transform: none;
  box-shadow: none;
}

/* Style pour les options verrouillées (une seule option disponible) */
.product-option-tag.locked {
  background: linear-gradient(180deg, #f7a605 0%, #fac356 100%);
  border: 0px;
  color: black;
  cursor: default;
  opacity: 0.8;
  box-shadow: none;
}

.product-option-tag.locked:hover {
  background: linear-gradient(180deg, #f7a605 0%, #fac356 100%);
  transform: none;
  box-shadow: none;
}

/* Indicateur de chargement */
.product-options-tags.loading {
  opacity: 0.7;
  pointer-events: none;
}

.product-options-tags.loading::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  margin: -10px 0 0 -10px;
  border: 2px solid #e5e7eb;
  border-top: 2px solid #3b82f6;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Amélioration de l'accessibilité */
.product-option-tag:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.3);
}

.product-option-tag:focus:not(.selected) {
  background-color: #e5e7eb;
  border-color: #3b82f6;
}

/* Style pour les variations non disponibles */
.product-option-tag.unavailable {
  opacity: 0.4;
  cursor: not-allowed;
  background-color: #fef2f2;
  border-color: #fecaca;
  color: #dc2626;
}

.product-option-tag.unavailable:hover {
  background-color: #fef2f2;
  border-color: #fecaca;
  transform: none;
  box-shadow: none;
}

/* Responsive pour les tags */
@media (max-width: 768px) {
  .product-options-tags {
    gap: 6px;
  }

  .product-option-tag {
    padding: 6px 12px;
    font-size: 13px;
    gap: 6px;
  }

  .product-option-tag .option-thumbnail {
    width: 20px;
    height: 20px;
  }

  .variations td.label {
    padding-right: 12px;
  }
}

/* Styles spécifiques pour les tableaux d'attributs */
.woocommerce-product-attributes {
  width: 100%;
  border-collapse: collapse;
  margin: 1rem 0;
}

.woocommerce-product-attributes th {
  background: #f9fafb;
  font-weight: 600;
  color: #374151;
  padding: 0.75rem;
  text-align: left;
  border-bottom: 1px solid #e5e7eb;
  width: 30%;
}

.woocommerce-product-attributes td {
  padding: 0.75rem;
  text-align: left;
  border-bottom: 1px solid #e5e7eb;
  color: #4b5563;
}

/* .wc-block-components-sidebar {
  background-color: white;
  padding: 20px;
  border-radius: 20px;
} */

/* account page */

.woocommerce-MyAccount-navigation {
  background: linear-gradient(180deg, #f7a605 0%, #fac356 100%);
  padding: 20px;
  border-radius: 20px;
}

.woocommerce-MyAccount-navigation ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.woocommerce-MyAccount-navigation ul li.is-active {
  font-weight: 600;
}

.woocommerce-MyAccount-content {
  background-color: white;
  padding: 20px;
  border-radius: 20px;
}

.wc-block-cart__empty-cart__title {
  background-color: white;
  text-align: center;
  border-radius: 20px;
  padding: 20px;
}

.wp-block-separator {
  margin-bottom: 60px;
}

.wp-block-heading {
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  color: #000;
  margin-bottom: 15px;
}

.wc-block-grid__product {
}

.wc-block-components-button {
  background: linear-gradient(
    90deg,
    rgb(149, 39, 123) 0%,
    rgb(231, 43, 112) 30%,
    rgb(241, 128, 38) 50%,
    rgb(231, 43, 112) 100%
  );
  color: white;
  border-radius: 20px;
  text-transform: uppercase;
  font-weight: 500;
}
