/* Custom styles for Computer Shop */
body {
    background-color: #f4f4f9;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.navbar-brand img {
    max-height: 50px;
}

.product-card {
    border-radius: 12px;
    transition: transform 0.2s;
}
.product-card:hover {
    transform: scale(1.03);
}

.product-img {
    max-width: 100%;
    height: 200px;
    object-fit: contain;
    background: #fff;
    padding: 10px;
    border-radius: 10px;
}

footer {
    background-color: #212529;
    color: #fff;
    padding: 20px 0;
    text-align: center;
}