.routine-results-message {
    font-weight: 600;
}

.routine-result-card {
    background-color: #ffffff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.routine-result-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.08);
}

.routine-result-product__thumb img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.routine-result-products {
    margin-top: 1rem;
    display: grid;
    gap: 1.5rem;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    justify-items: stretch;
    margin-left: auto;
    margin-right: auto;
}

.routine-result-products.count-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
}

.routine-result-products > * {
    width: 100% !important;
    max-width: 100% !important;
}

@media (min-width: 768px) {
    .routine-result-products.count-2,
    .routine-result-products.count-3 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 1200px) {
    .routine-result-products.count-3 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

.routine-result-product-entry {
    background-color: #f8f9fa;
    border-radius: 1rem;
    padding: 1.25rem;
}

.routine-result-product-entry .routine-result-product__thumb img {
    width: 90px;
    height: 90px;
    object-fit: cover;
}

.routine-result-product__stock {
    display: inline-block;
    margin-top: 0.25rem;
}
