#wcrp-recommended-list {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
    padding: 10px;
    background: white;
    min-height: 100px;
    height: 100%;
    border: 1px solid #ddd;
    list-style: none;
}

#wcrp-recommended-list li {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 5px;
    border: 1px solid #ccc;
    background: #f9f9f9;
    cursor: grab;
    position: relative;
}

.wcrp-remove-product {
    margin-left: auto;
    background: red;
    color: white;
    border: none;
    padding: 5px 10px;
    cursor: pointer;
    border-radius: 3px;
}

.wcrp-remove-product:hover {
    background: darkred;
}


.wcrp-recommended-products {
    margin-top: 40px;
    padding: 20px;
    background: #f9f9f9;
}

.wcrp-recommended-products h2 {
    text-align: center;
    margin-bottom: 20px;
}

.wcrp-product-grid {
    display: grid;
    grid-gap: 15px;
    justify-content: center;
}

@media (max-width: 600px) {
    .wcrp-product-grid {
        grid-template-columns: repeat(3, 1fr); /* 3 columns on mobile */
    }
}

@media (min-width: 601px) and (max-width: 1024px) {
    .wcrp-product-grid {
        grid-template-columns: repeat(4, 1fr); /* 4 columns on tablets */
    }
}

@media (min-width: 1025px) {
    .wcrp-product-grid {
        grid-template-columns: repeat(6, 1fr); /* 6 columns on desktops */
    }
}

.wcrp-product {
    background: white;
    padding: 10px;
    text-align: center;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.wcrp-product img {
    width: 100%;
    max-height: 150px;
    object-fit: contain;
}

.wcrp-product p {
    margin-top: 10px;
    font-size: 14px;
}



