.container{
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
}
.product__container {
    position: relative;
    width: 350px;
    height: 500px;
    padding: 20px;
    border: 2px solid;
    border-radius: 20px;    
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    transition: 0.5s;
    box-sizing: border-box;
    gap: 10px;
}
.product__container:hover {
    border: 2px solid #810002;
    color: #810002;
}
.modal__card__wrapper{
    top: 0;
    position: fixed;
    width: 100%;
    height: 100%;
    display: none;
    align-items: center;
    justify-content: center;
}
.modal__card{
    border-radius: 20px;
    width: 700px;
    height: 450px;
    border: 2px solid #810002;
    background-color: #ffffff;
    padding: 20px;
    box-sizing: border-box;
}
.product__img__wrapper{
    width: 100%;
    display: flex;
    justify-content: center;
}



.product__img-wrapper{
    width: 100%;
    display: flex;
    justify-content: center;
}
.product__name{
    font-size: 30px;
    font-weight: 700;
    cursor: pointer;
}
.product__category{
    font-size: 24px;
    font-weight: 400;
    cursor: pointer;
}
.product__disc{
    font-size: 24px;
    font-weight: 400;
}
.modal__disc{
    margin-top: 15px;
    width: 50%;
}
.product__price{
    font-size: 24px;
    font-weight: 400;
    cursor: pointer;
}

#productsContainer {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;    
}

.hidden__section{
    display: none;
}
.modal__catalog{
    background-color: #ffffff;
    height: 1000px;
    width: 31%;
    position: absolute;
    top: 0;
    z-index: 10;
    border-right: 4px solid #810002;
}
.modal__title{
    width: 308px;
    height: 48px;
    background-color: #810002;
    border-radius: 0 0 10px 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: none;
    font-size: 25px;
    font-weight: 500;
    color: #ffffff;
    cursor: pointer;
    transition: 0.5s;
}
.modal__title:hover{
    background-color: #F7F8FA;
    color: #8F090B;
    border: 3px solid #8F090B;
}
.title__wrapper{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.catalog__place{
    display: flex;
}
.place__list{
    width: 324px;
    margin: 0 0 0 34px;
    list-style: none;
}
.place__list__item{
    margin-top: 11px;
}
.place__list__item a{
    text-decoration: none;
    color: #333333;
    font-size: 17px;
    font-weight: 600;
    transition: 0.65s;
}
.place__list__item a:hover{
    color: #810002;
}
.line{
    height: 1100px;
    width: 3px;
    background-color: #810002;
    margin-left: 25px;
}
.modal__cross{
    width: 30px;
    cursor: pointer;
    position: relative;
    left: 30px;
}
.fone{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 7;
}

.product__img{
    width: 200px;
}
.modal__img{
    margin-top: 25px;
    margin-bottom: 25px;
}

.product__cart-btn {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    right: 10px;
    top: 10px;
    width: 50px;
    height: 50px;
    background: none;
    border: none;
}

.product__cart-btn-icon {
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.product__cart-quantity {
    width: 100%;
    display: flex;
    justify-content: space-around;
}

.product__cart-quantity-plus, .product__cart-quantity-min{
    background: transparent;
    border: none;
    width: 20px;
    height: 20px;
    font-size: 18px;
    color: #810002;
    cursor: pointer;
}
