.custom-product-card {
    text-align: center;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    margin-bottom: 20px;
}

.custom-product-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.custom-product-title {
    font-size: 1.5em;
    font-weight: bold;
    margin-top: 10px;
    color: #333;
}

.custom-product-price {
    color: red;
    font-size: 1.2em;
    font-weight: bold;
    margin: 10px 0;
    background: #fff;
    padding: 5px 10px;
    display: inline-block;
    border-radius: 5px;
}

.custom-explore-button {
    display: inline-block;
    padding: 10px 20px;
    background: red;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background 0.3s ease-in-out;
}

.custom-explore-button:hover {
    background: darkred;
}
