body {
    background: #f8f9fa;
}

.product-card {
    border-radius: 12px;
    transition: 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-img {
    height: 220px;
    object-fit: cover;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
}

footer {
    background: #111;
    color: white;
    padding: 15px 0;
    text-align: center;
}

.product-image-box {
    background: #fff;
    padding: 20px;
    border-radius: 15px;
    text-align: center;
}

.main-product-img {
    height: 350px;
    object-fit: contain;
    transition: 0.3s;
}

.main-product-img:hover {
    transform: scale(1.05);
}

input[type="number"] {
    border-radius: 8px;
}

.btn-danger {
    border-radius: 8px;
}

.btn-outline-dark {
    border-radius: 8px;
}

.navbar-brand img {
    transition: 0.3s ease;
}

.navbar-brand img:hover {
    transform: scale(1.05);
}