.homeview .home-banner img {
    object-fit: cover;
    max-height: 400px;
    width: 100%;
}

.homeview .section-title {
    color: #0a01ff;
    font-weight: 700;
    text-transform: uppercase;
}

.homeview .product-card {
    border: none;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.homeview .product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.homeview .machine-img {
    width: 80%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    margin-top: 10px;
    border-radius: 10px;
}

.homeview .card-title {
    font-size: 1rem;
    font-weight: 600;
    margin-top: 10px;
    color: #000;
}

.homeview a {
    text-decoration: none;
    color: inherit;
}

/* Responsive max-width mobile */
@media (max-width: 480px) {
    .homeview .machine-img {
        max-height: 200px;
    }
}
