.break-words {
    overflow-wrap: break-word;
    word-wrap: break-word;
    word-break: break-word;
}

.wrap-text {
    overflow-wrap: break-word;
    word-wrap: break-word;
    white-space: normal;
}

.overflow-hidden {
    overflow: hidden;
}

.desktop-only {
    display: none;
}

.mobile-only {
    display: block;
}
.width-500 {
    min-width: 500px !important;
}

@media (min-width: 768px) {
    .desktop-only {
        display: block;
    }

    .mobile-only {
        display: none;
    }
}

/* Product Card for mobile */
@media (max-width: 768px) {
    .card-product {
        min-height: 250px !important;
        /* padding: 20px !important; */
    }

    .card-product-container {
        margin: 20px 0px 30px 0px !important;
    }

    .card-product-description {
        font-size: 14px !important; 
    }

    .card-product-stock-container {
        margin-left: -10px !important;
        margin-top: 5px !important;
    }

    .card-product-price-container{
        margin-top: 5px !important;
    }

    .card-product-price, .card-product-stock, .card-product-soldout {
        font-size: 12px !important;
    }
}

.cards-4 {
display: block;
}
.cards-2 {
display: none;
}


@media (max-width: 550px) {
    .cards-4 {
        display: none !important;
    }
    .cards-2 {
        display: block !important;
    }
}