/* GLightbox Mobile Description Fixes
 * Minimal CSS overrides to ensure add to cart button works on mobile
 */

/* Mobile-specific lightbox description styling */
@media screen and (max-width: 768px) {
  /* Ensure description area is visible on mobile */
  .gslide-description {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
  }
  
  /* Make sure buttons are visible and clickable on mobile */
  .gslide-description button {
    display: inline-block !important;
    visibility: visible !important;
    opacity: 1 !important;
  }
}
