
/* ============================================================
   GEMEZU STORE — Mobile fixes appended by hotfix9
   Fixes: Buy Now button hidden/cut off on mobile product page
   ============================================================ */
@media (max-width: 767px) {
  .product-buy-actions {
    flex-direction: column;
    gap: 10px;
  }
  .product-buy-actions .btn-add-cart-lg,
  .product-buy-actions .btn-buy-now {
    flex: none;
    width: 100%;
    box-sizing: border-box;
  }
  .product-buy-actions .btn-wishlist {
    width: 100%;
    height: 46px;
  }
  .product-detail-grid {
    grid-template-columns: 1fr !important;
  }
}

/* Download / Service page card actions wrap properly on small screens */
@media (max-width: 420px) {
  .dl-btn { min-width: 100% !important; }
}
