.product-contanier {
    margin: 40px 20px;
    box-shadow: 0 2px 6px 0 rgb(218 218 253 / 65%), 0 2px 6px 0 rgb(206 206 238 / 54%);
    border-radius: 5px;
    padding: 20px;
    background-color: #fff;
}

.product-group-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.product-title {
    font-size: 30px;
    color: #79b6c8;
    text-align: center;
}

.group-title {
    background-color: #303030;
    padding: 20px;
    border-radius: 5px;
}

.product-group {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(4, 1fr);
}

.product-item {
    display: flex;
    flex-direction: column;
    box-shadow: 0 2px 6px 0 rgb(218 218 253 / 65%), 0 2px 6px 0 rgb(206 206 238 / 54%);
    width: 100%;
    border-radius: 5px;
}

.product-item:hover {
    transform: scale(1.05);
    box-shadow: rgba(50, 50, 93, 0.25) 0px 30px 60px -12px, rgba(0, 0, 0, 0.3) 0px 18px 36px -18px;
}

.product-name {
    padding: 20px;
}

.product-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}


@media (max-width: 1200px) {
    .product-group {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .product-group {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 580px) {
    .product-group {
        grid-template-columns: 1fr;
    }
}