.wcp-products-container {
    border: 1px solid #e0e0e0;
    padding: 20px;
    background-color: #eaeaea;
    border-radius: 6px;
    margin-bottom:20px;
}

.wcp-products-title {
    font-size: 24px;
    margin-bottom: 20px;
    text-align: center;
    color: #333;
}

.wcp-products-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-evenly;
}

.wcp-product-card {
    width: 200px;
    border: 1px solid #ddd;
    padding: 10px;
    text-align: center;
    transition: box-shadow 0.3s;
    background: #ffffff;
}

.wcp-product-card:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.wcp-product-card img {
    max-width: 100%;
    height: auto;
}

.wcp-product-card h3 {
    font-size: 16px;
    margin: 10px 0;
}

.wcp-product-card h3 a {
    text-decoration: none;
    color: #585858 !important;
    display: block;
    height: 55px;
    font-size: 0.95em;
}

.wcp-product-card .wcp-price {
    color: #e74c3c;
    font-weight: bold;
}