/* getmirchi.com - Product Card Style (matches screenshot) */
.product-card {
    border: 1px solid #222;
    background: #fff;
    box-shadow: none;
    border-radius: 0;
    padding: 0;
    margin-bottom: 24px;
    display: flex;
    flex-direction: column;
    height: 100%;
}
.product-card img {
    width: 100%;
    height: 180px;
    object-fit: contain;
    background: #fff;
    margin: 24px 0 0 0;
}
.product-card-title {
    color: #7c2ae8;
    font-size: 18px;
    font-weight: 400;
    text-align: center;
    margin: 18px 0 0 0;
    line-height: 1.2;
}
.product-card-divider {
    width: 40px;
    height: 2px;
    background: #7c2ae8;
    margin: 12px auto 0 auto;
    opacity: 0.2;
}
.product-card-price {
    color: #222;
    font-size: 18px;
    text-align: center;
    margin: 12px 0 0 0;
    font-weight: 400;
}
.product-card-btn {
    background: #7c2ae8;
    color: #fff;
    border: none;
    border-radius: 0;
    font-size: 17px;
    font-weight: 400;
    padding: 14px 0;
    width: 100%;
    margin-top: auto;
    cursor: pointer;
    transition: background 0.2s;
    text-align: center;
    display: block;
}
.product-card-btn:hover {
    background: #2196f3;
}
