/***** Debug image gallery mobile *****/
@media (max-width: 768px) {
  /* 1. Force l'affichage de la grande image principale */
  .product_image_gallery .product-cover {
    display: block !important;
    margin-bottom: 15px !important;
  }
  
  .product_image_gallery .product-cover img {
    width: 100% !important;
    height: auto !important;
  }

  /* 2. Force l'affichage en ligne avec scroll horizontal pour les miniatures */
  .product_image_gallery #thumb-gallery {
    display: flex !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch;
    gap: 10px;
    padding-bottom: 15px;
    scrollbar-width: none; /* Cache la barre sur Firefox */
  }
  
  /* Cache la barre de défilement sur Chrome/Safari pour un effet app native */
  .product_image_gallery #thumb-gallery::-webkit-scrollbar {
    display: none;
  }
  
  /* Calibre la taille des miniatures */
  .product_image_gallery #thumb-gallery .thumb-container {
    flex: 0 0 80px !important;
    width: 80px !important;
    min-width: 80px !important;
    display: block !important;
    margin: 0 !important;
  }
  
  /* Masque les fausses flèches inactives du thème */
  .product_image_gallery .arrows-product-fake {
    display: none !important;
  }
}