﻿.home-product-card {
    border-radius: 0.5rem;
}

/* desktop / default */
.home-card-img {
    width: 100%;
    height: 180px;
    object-fit: contain;
    background-color: #fff;
    padding: 0.5rem;
}

.home-card-title {
    font-size: 0.9rem;
    line-height: 1.25;
    display: block;
    text-align: justify;
    text-justify: inter-word;
    word-break: break-word;
    overflow-wrap: anywhere;
    hyphens: auto;
}

.home-price-row {
    white-space: nowrap;
    overflow: hidden;
}

.home-price {
    font-size: 0.95rem;
}

.home-discount {
    font-size: 0.9rem;
}

/* ✅ Mobile: bigger “hero” image area */
@media (max-width: 575.98px) {
    .home-card-img {
        height: 340px; /* was 260px */
        padding: 0.25rem; /* was 0.75rem (padding makes image look smaller) */
    }

    .home-card-title {
        font-size: 1rem;
        line-height: 1.35;
    }

    .home-price {
        font-size: 1.05rem;
    }
}

/* Force 1 product per row up to 767px if you still use force-one-col */
@media (max-width: 767.98px) {
    .row.force-one-col > * {
        height: 260px; /* bigger image on mobile */
        padding: 0.75rem;
    }
}
@media (max-width: 575.98px) {
    .home-card-img {
        height: 260px; /* bigger image on mobile */
        padding: 0.75rem;
    }
}