.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;
}

.stock-status {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
}

.status-dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 0 1px rgba(0, 0, 0, .08);
    flex: 0 0 16px;
}

.range {
    display: flex;
    align-items: center;
    gap: 5px;
}

.range input {
    width: 80px;
    padding: 5px;
}

.shop-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    width: 100%;
    gap: 20px
}

.product-data {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    border: 1px solid #eee;
    padding: 10px;
    background: #fff;
}

@media (max-width: 1200px) {
    .product-group {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {

    .product-group,
    .shop-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 580px) {

    .product-group,
    .shop-grid {
        grid-template-columns: 1fr;
    }
}