/* ================= STAGE 2 – COMPACT PRODUCT CARDS (MOBILE ONLY) ================= */
@media (max-width: 480px) {

    /* Lock 2 products per row */
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    /* Reduce image height */
    .product-image,
    .product-image-container {
        height: 120px;
        font-size: 1.7rem;
    }

    /* Reduce title size */
    .product-card h3,
    .product-title {
        font-size: 0.85rem;
        line-height: 1.2;
    }

    /* Clamp text to 2 lines */
    .product-card p,
    .product-description {
        font-size: 0.70rem;
        line-height: 1.3;

        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    /* Reduce padding (hidden height fix) */
    .product-card h3 {
        padding: 10px 10px 4px;
    }

    .product-card p {
        padding: 0 10px 10px;
    }
}



