body {
    font-family: 'Noto Sans Bengali', sans-serif;
    background-color: #f8f9fa;
}

.product-card {
    transition: transform .2s ease-in-out, box-shadow .2s ease-in-out;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.product-card img {
    height: 200px;
    object-fit: contain;
    padding: 10px;
}

.price {
    color: #0d6efd;
    font-weight: bold;
}

.discount-price {
    color: #6c757d;
    text-decoration: line-through;
    font-size: 0.9em;
}

.footer {
    background-color: #343a40;
    color: white;
}