.products-box{
    margin: 0 auto;
    width: 75%;
    padding-top: 90px;
}

.products-count{
    font-family: Assistant;
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 20px;
    letter-spacing: 0.1px;
    color: black;

    margin-bottom: 30px;
}

.products-container{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    row-gap: 45px;
    margin-bottom: 45px;
}

.product{
    width: 329px;
    overflow: hidden;
    border: 1px solid #EDF2F7;
    border-radius: 5px;
}

.product:hover {
    border: 1px solid #FFB200;
}

.product-image-wrapper {
    background-color: white;
    width: 100%;
    height: 223px;
    display: block;
    border-top: 1px solid #EDF2F7;
    border-left: 1px solid #EDF2F7;
    border-right: 1px solid #EDF2F7;
}

.product-image-wrapper img{
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.product-panel{
    width: 100%;
    height: 161px;
    background: #F7FAFC;
    padding-left: 23px;
    padding-top: 23px;
    position: relative;
}

.product-name{
    font-family: Assistant-Regular;
    font-weight: 600;
    font-size: 17px;
    line-height: 14px;
    color: #4f4f4f;
    text-transform: uppercase;
    margin-bottom: 25px;
}

.product-number{
    font-family: Assistant-Regular;
    font-weight: 400;
    font-size: 14px;
    line-height: 10px;
    color: #7a7a7a;
}

.product-cart{
    position: absolute;
    bottom: 16px;
    height: 40px;
    width: calc(100% - 23px);
}

.product-cart-menu{
    position: absolute;
    right: 20px;
    width: 140px;
    justify-content: space-between;
    height: 40px;
    background-color: white;
}

.product-cost{
    color:rgba(45, 55, 72, 1);
    font-family: Assistant-Regular;
    font-weight: 600;
    font-size: 24px;
    line-height: 31px;
    position: absolute;
    left: 0;
}

.product-count-value{
    width: 100%;
    border: none;
    text-align: center;
}

.product-count-value:focus{
    outline: none;
}

.product-count-selector{
    height: 100%;
    width: 84px;
    border: 1px solid #FFB200;
    border-radius: 5px;
    display: flex;
    align-items: center;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
}

.product-count-selector__selector{
   width: 28px;
   height: 100%;
   position: relative;
   cursor: pointer;
}

.product-count-selector__selector-line{
   position: absolute;
   transform: translate(-50%, -50%);
   top: 50%;
   left: 50%;
   background-color: rgba(74, 85, 104, 1);;
}

.product-count-selector__selector-hline{
   width: 8px;
   height: 1px;
}

.product-count-selector__selector-vline {
    width: 1px;
    height: 8px;
}

.product-count-selector__border{
   background-color: rgba(113, 128, 150, 0.17);
   width: 1px;
   height: 20px;
}

.product-count-selector__count-value{
   width: 28px;
   text-align: center;
}


.quantity {
    display: flex;
    gap: 19px;
    color: #2D3748;
}

.quantity>label {
    font-weight: 600;
    font-size: 16px;
    align-self: center;
}

.quantity-picker {
    border: 1px solid #FFB200;
    border-radius: 5px;
    font-weight: 600;
    font-size: 16px;
    width: 84px;
    height: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.quantity-value {
    color: #4A5568;
    border-left: 1px solid rgba(113, 128, 150, 0.17);
    border-right: 1px solid rgba(113, 128, 150, 0.17);
}

.qty-btn {
    padding: 10px 14px;
    cursor: pointer;
}

.qty-btn.qtyReduce{
    background: url(../images/minus.svg) center no-repeat;
    background-size: 12px;
}

.qty-btn.qtyIncrease{
    background: url(../images/plus.svg) center no-repeat;
    background-size: 12px;
}

.add-to-cart-btn {
    width: 48px;
    height: 100%;
    background: #FFB200;
    border-radius: 5px;
    position: absolute;
    cursor: pointer;
    right: 0;
    top: 0;
}

.add-to-cart-icon{
    width: 24px;
    position: absolute;
    transform: translate(-50%, -50%);
    top: 50%;
    left: 50%;
    height: 21px;
    background: url('../images/cart-white.png');
}

.products-wrapper {
    margin-bottom: 20px;
    padding-bottom: 20px;
    height: fit-content;
    min-height: calc(100vh - 130px);
}

#show-more-results{
    border: 1px solid #FFB200;
    height: 48px;
    background-color: white;
    width: 206px;
    border-radius: 5px;
    font-family: Assistant;
    font-style: normal;
    font-weight: 600;
    font-size: 14px;
    line-height: 16px;
    color: black;
    display: block;
    margin: 0 auto 100px auto;
    cursor: pointer;
}