.products .box-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    justify-content: center;
    padding: 20px;
}

.products .box {
    background: #fff;
    border-radius: 10px;
    padding: 15px;
    text-align: center;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
}

.products .box:hover {
    transform: translateY(-5px);
}

.products .box img {
    width: 100%;
    height: 200px;
    object-fit: contain;
    border-radius: 10px;
}

.products .box .name {
    font-size: 18px;
    font-weight: bold;
    margin: 10px 0;
}

.products .box .flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 10px 0;
}

.products .box .price {
    font-size: 16px;
    color: #73c32b;
    font-weight: bold;
}

.products .box .qty {
    width: 50px;
    text-align: center;
}

.products .box .btn {
    display: block;
    width: 100%;
    padding: 10px;
    background: #2c3e50;
    color: #fff;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease-in-out;
}

.products .box .btn:hover {
    background: #73c32b;
}
