.piwc-product-card {
    display: flex;
    flex-direction: column;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    max-width: 300px;
    margin: 1em auto;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    transition: box-shadow 0.3s ease-in-out;
}

.piwc-product-card:hover {
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.piwc-product-card__image a {
    display: block;
}

.piwc-product-card__image img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
}

.piwc-product-card__content {
    padding: 15px;
    text-align: center;
}

.piwc-product-card__title {
    font-size: 1.1em;
    margin: 0 0 10px;
}

.piwc-product-card__title a {
    text-decoration: none;
    color: #333;
}

.piwc-product-card__price {
    font-size: 1.2em;
    font-weight: bold;
    color: #555;
    margin-bottom: 15px;
}

.piwc-product-card__price ins {
    background: none;
    text-decoration: none;
}

.piwc-product-card__button .button {
    background-color: #28a745;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none;
    font-size: 1em;
    transition: background-color 0.3s ease;
    display: inline-block;
}

.piwc-product-card__button .button:hover {
    background-color: #218838;
    color: #fff;
}

.piwc-product-card__button .added_to_cart {
    display: none;
}

/* Responsive Styles */
@media (min-width: 600px) {
    .piwc-product-card {
        flex-direction: row;
        max-width: 500px;
    }
    .piwc-product-card__image {
        flex: 0 0 40%;
    }
    .piwc-product-card__content {
        flex: 1 1 auto;
        text-align: left;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
}