.app {
    overflow: hidden;
}

.open {
    display: block;

}

.close {
    display: none;
}




.header{
    height: 120px;
    background-image: linear-gradient(0,#ff6a25,#ff5100);
}

.header__navbar{
    display: flex;
    justify-content: space-between;
}
.header__navbar-list{
    list-style: none;
    padding-left: 0px;
    margin: 4px 0 0 0;
    display: flex;
    font-size: 1.2rem;
}

.header__navbar-items{
    margin: 0px 8px;
    position: relative;
    min-height: 26px;
}



.header__navbar-user{
    position: relative;
    display: flex;
    justify-items: center ;
    
}



.header__navbar-items-img{
    width: 22px;
    height: 22px;
    border-radius: 50%;
    margin: 0 8px;
    border: 1px solid rgb(146, 146, 146);
}

.header__navbar-items-span{
    font-size: 1.3rem;
    font-weight: bold;
}

.header__navbar-user-menu {
    position: absolute;
    padding:0;
    z-index: 1;
    list-style: none;
    top: calc(100% + 10px);
    right: 0;
    width: 140px;
    border-radius: 2px;
    background-color: var(--white-color);
    box-shadow: 0 2px 3px rgb(150, 149, 149);
    display: none;
    
}

.header__navbar-user:hover  .header__navbar-user-menu{
    display: block;
}

.header__navbar-user-menu::before {
    content: "";
    position: absolute;
    top: -29px;
    right: 0px;
    border-width: 15px 17px;
    border-style: solid;
    border-color: transparent transparent var(--white-color) transparent;
}

.header__navbar-user-menu::after {
    content: "";
    position: absolute;
    display: block;
    right: 0px;
    top: -12px;
    width: 60%;
    height: 12px;
}


    


.header__navbar-user-item--separate {
    border-top: 1px solid #67a6ee;
}



.header__navbar-user-item a {
    text-decoration: none;
    color: var(--text-color);
    font-size: 1.4rem;
    padding: 8px 8px;
    display: block;
}

.header__navbar-user-item:hover {
    background-color: #d8d8d8;
}



.header__navbar-items--Show:hover .header__qr{
    display: block;
}

.header__navbar-items--hoverTbao:hover .header__Thongbao{
    display: block;
}

.header__navbar-items,
.header__navbar-items-link{
    display: flex;
    font-size: 1.2rem;
    color: var(--white-color);
    text-decoration: none;
    font-weight: 300;
}

.header__navbar-items,
.header__navbar-items-link,
.header__navbar-link-icon{
    display: inline-flex;
    align-items: center;
}

.header__navbar-link-icon:nth-child(2) {
    margin-left: 3px;
}

.header__navbar-items:hover,
.header__navbar-icon:hover,
.header__navbar-items-link:hover{
    color: rgba(255, 255, 255, 0.774);
    cursor: pointer;
    z-index: 3;
}

.header__navbar-items--Bold{
    font-weight: 600;
}

.header__navbar-items--line::after{
    content: "";
    display: block;
    position: absolute;
    border-left: 1px solid #d6d6d6;
    height: 14px;
    right: -9px;
    top: 50%;
    transform: translateY(-50%);
    
}

.header__navbar-link-icon{
    color: var(--white-color);
    text-decoration: none;
}

.header__navbar-icon{
    font-size: 1.8rem;
    margin: 0 4px;
}


.header__navbar-lbl--no-poiter{
    cursor: text;
    color: var(--white-color);

}

/* Header QR code */

.header__qr{
    width: 145px;
    background-color: var(--white-color);
    position: absolute;
    left: 0;
    top: 118%;
    padding: 8px;
    border-radius: 2px;
    display: none;
    animation: showIn ease-in 2ms;
    box-shadow: 0 5px 12px 0 var(--border-color);
}

.header__qr::before{
    position: absolute;
    left: 0;
    top: -15px;
    width: 100%;
    height: 20px;
    content: "";
    display: block;
}

.header__qr-img{
    width: 100%;
}

.header__qr-app{
    display: flex;
    justify-content: space-between;
}

.header__qr-bank{
    height: 24px;


}
.header__qr-Name{
    margin-left: 2px;
    margin-top: 7px;
}
.header__qr-stk{
    margin-right: 10px;
    margin-top: 7px;
}


/* Header QR code */

/* Thanh thông báo */

.header__Thongbao{
    position: absolute;
    z-index: 1;
    top: 118%;
    right: 0;
    width: 404px;
    border-radius: 3px;
    box-shadow: 0 3px 2px #808080;
    border: 1px solid #D3D3D3;
    background-color: var(--white-color);
    transform-origin: calc(100% - 20px) top;
    animation: headerTB ease-in 0.40s;
    will-change: opacity,transfrom;
    display: none;
}

.header__Thongbao::before{
    content: "";
    border-width: 20px 27px;
    border-style: solid;
    border-color: transparent transparent var(--white-color) transparent;
    position: absolute;
    right: 4px;
    top: -29px;

}

.header__Thongbao::after{
    content: "";
    display: block;
    position: absolute;
    right: 0;
    top: -16px;
    width: 90px;
    height: 20px;
}


@keyframes headerTB{
    from{
        opacity: 0;
        transform: scale(0);
    }
    to{
        opacity: 1;
        transform: scale(1);
    }
}



.header__Thongbao-header{
    cursor: default;
    height: 40px;
    background-color: var(--white-color);
}

.header__Thongbao-header h3{
    color: #575656d3;
    margin: 0 0 0 12px;
    font-weight: 400;
    font-size: 1.4rem;
    line-height: 40px;
    user-select: none;

}
.header__Thongbao-list{
    padding-left: 0;
}
.header__Thongbao-item{
    display: flex;
    
}

.header__Thongbao-item--read{
    background-color:rgba(238,75,43, .12);
}

.header__Thongbao-item:hover{
    background-color: #e9e9e9;
}

.header__Thongbao-link{
    width: 100%;
    display: flex;
    padding: 12px;
    text-decoration: none;
    
}
.header__Thongbao-img{
    width: 48px;
    object-fit: contain;

}
.header__Thongbao-in4{
    margin-left: 12px;
}
.header__Thongbao-name{
    display: block;
    font-size: 1.4rem;
    color: var(--black-color);
    font-weight: 400;
    line-height: 1.8rem;
}

.header__Thongbao-note{
    display: block;
    font-size: 1.2rem;
    line-height: 1.6rem;
    color: #808080;
    margin-top: 4px;
}

/* button xem tat cả */


.header__Thongbao-footer{
    display: flex;

}
.header__Thongbao-footer-btn{
    
    text-decoration: none;
    color: var(--text-color);
    padding: 6px 0;
    width: 100%;
    font-size: 1.4rem;
    font-weight: 400;
    text-align: center;

}

/* Modal login */

.auth__form{
    width: 500px;
    background-color: rgb(255, 255, 255);
    border-radius: 5px;
    overflow: hidden;
    z-index: 1;
}
.auth__form-container{
    padding: 0 32px;
}

.auth__form-header{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 12px;
    margin-top: 12px;
}
.auth__form--heding{
    font-size: 2.2rem;
    font-weight: 400;
    color: var(--text-color);
}
.auth__form--switch-btn{
    font-size: 1.6rem;
    color: var(--primary-color);
    font-weight: 500;
    cursor: pointer;
}



.auth-form__inpup{
    margin-top: 16px;
    width: 100%;
    height: 40px;
    padding: 0 12px;
    font-size: 1.4rem;
    border: 1px solid var(--border-color);
    border-radius: 3px;
    outline: none;
}

.auth-form__inpup:focus{
    border-color: #3694ff;

}

.auth-form__aside{
    margin-top: 20px;
}


.auth-form__policy-text{
    font-size: 1.2rem;
    line-height: 1.8rem;
    text-align: center;
    padding: 0 12px;
}

.auth-form__text-link{
    text-decoration: none;
    color: var(--primary-color);
}

.auth-form__controls{
    margin-top: 80px;
    display: flex;
    justify-content: flex-end;
}

.auth-form__btn-back{
    margin-right: 33px;
    margin-left: 8px;
}
.auth-form__socials{
    background-color: #F5F5F5F5;
    padding: 16px 36px;
    display: flex;
    justify-content: space-between;
    margin-top: 25px;
}

.auth-form__socials-icon{
    font-size: 1.8rem;

}

.auth-form__socials--fb{
    background-color: #3A5A98;
    color: var(--white-color);

}
.auth-form__socials--fb
.auth-form__socials-icon{
    color: var(--white-color);
}


.auth-form__socials--GG{   
    background-color: var(--white-color);
    color: #474747;
}



.auth-form__socials--lable{
    margin: 0 24px;
}


/* Form Đăng nhập */

.auth-form__help{
    display: flex;
    justify-content: flex-end;
}

.auth-form__help-link{
     text-decoration: none;
     font-size: 1.4rem;
     color: #777777;

}
.auth-form__help-line{
    display: block;
    border-left: 1px solid #cccccc;
    height: 16px;
    margin: 2px 16px 0;
}

.auth-form__help-forgotPw{
    color: var(--primary-color);
}


/* Header with search */

.header-with-search {
    height: var(--header-with-search);
    display: flex;
    align-items: center;
}

.header__mobile-search {
    padding: 0 12px;
    display: none;
}

.header__mobile-search-icon {
    font-size: 2.6rem;
    color: var(--white-color);
}

.header__logo {
    width: 200px;
    padding: 0 8px;
}

.header__logo-link {
    background-color: transparent;
    display: block;
    color: transparent;
    line-height: 0;
    -webkit-tap-highlight-color: transparent;
}

.header__logo-img {
    width: 100%;
    height: 89px;
    background-repeat: no-repeat;
    -webkit-tap-highlight-color: transparent;
}

.header__search {
    flex: 1;
    height: 40px;
    border-radius: 2px;
    background-color: var(--white-color);
    display: flex;
    align-items: center;
}

.mobile-search-check-box:checked ~ .header__search {
    display: flex;
}


.header__search-input{
    width: 100%;
    height: 100%;
    color: var(--text-color);
    border: none;
    outline: none;
    border-radius: 3px;
    font-size: 1.4rem;
    padding: 0 16px;
}


.header__search-select {
    border-left: 1px solid #dfcfcf;
    padding: 8px;
    position: relative;
    cursor: pointer;
}

.header__search-option {
    position: absolute;
    right: 0;
    top: 92%;
    box-shadow: 0 0 3px var(--text-color);
    padding-left: 0;
    width: 120px;
    display: none;
}

.header__search-option::after {
    position: absolute;
    content: '';
    display: block;
    width: 100%;
    height: 20px;
    top: -30%;
    left: 0%;
    /* background-color: #3A5A98; */
}

.header__search-select:hover .header__search-option {
    display: block;
    z-index: 100;
}

.header__search-optine-item {
    background-color: var(--white-color);
    border-radius: 3px;
    padding: 8px 8px;
    list-style: none;
}


.header__search-optine-item span {
    font-size: 1.4rem;
    color: var(--text-color);
}

.header__search-optine-item i {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin: 0 4px 0 12px;
    display: none;

}

.header__search-optine-item--active i {
    display: inline-block;
}

.header__search-optine-item:hover {
    background-color: #e9e6e6;
}

.header__search-select-lbl {
    font-size: 1.4rem;
    color: var(--text-color);
}


.header__search-select-icon {
    font-size: 1.4rem;
    color: var(--text-color);
    margin: 0 16px 0 8px;
    position: relative;
    top: 1px;
}


.header__search-btn {
    background-color: var(--primary-color);
    border: none;
    height: 34px;
    width: 60px;
    border-radius: 3px;
    margin-right: 3px;
    outline: none;
}

.header__search-btn:hover {
    background-color: #ff7c3f;

}

.header__search-btn:active {
    background-color: #ff5100;
}
.header__search-btn-icon {
    font-size: 1.4rem;
    color: var(--white-color);
}

.header__search-warp {
    flex: 1;
    height: 100%;
    position: relative;
}

.header__search-history-child {
    position: absolute;
    width: calc(100% - 18px);
    top: calc(100% + 4px);
    left: 0;
    background-color: var(--white-color);
    box-shadow: 0 0 3px #999;
    display: none;
    z-index: 2;
}

.header__search-history-heading {
    color: #999;
    font-size: 1.4rem;
    font-weight: 400;
    margin: 8px 12px;
}

.header__search-history-list {
    padding: 0;
    list-style: none;
}

.header__search-history-item {
    height: 38px;
    padding: 0 12px;
}

.header__search-history-item:hover { 
    background-color: #e9e6e6;
}


.header__search-history-link {
    line-height: 38px;
    text-decoration: none;
    font-size: 1.4rem;
    color: var(--text-color);
    display: block;
}



.header__search-input:focus ~ .header__search-history-child{
    display: block;
}



.header__cart {
    width: 150px;
    text-align: center;
    margin-top: 4px;
}

.header__cart-hover-icon {
    position: relative;
    display: inline-block;
    padding: 0 12px;
    cursor: pointer;
    z-index: 1;
    -webkit-tap-highlight-color: transparent;
}

.header__cart-icon {
    color: var(--white-color);
    font-size: 2.2rem;

}

.header__cart-span {
    position: absolute;
    padding: 1px 8px;
    background-color: var(--white-color);
    color: var(--primary-color);
    font-size: 1.2rem;
    line-height: 1.4rem;
    border-radius: 10px;
    border: 2px solid #bd3c00;
    top: -45%;
    right: -8%;
}

.header__cart-list {
    position: absolute;
    top: calc(100% + 10px);
    right: 4px;
    background-color: var(--white-color);
    width: 400px;
    border-radius: 2px;
    box-shadow: 0 2px 10px #999;
    cursor: default;
    display: none;
}

/* Giỏ hàng */

.header__cart-heading {
    color: #575656d3;
    margin: 0 0 0 12px;
    font-weight: 400;
    font-size: 1.4rem;
    line-height: 40px;
    user-select: none;
    text-align: left;
}


.header__cart-list-item {
    /* ul */
    list-style: none;
    padding-left: 0;
    max-height: 56vh;
    overflow-y: auto;
}


.header__cart-item {
    /* li */
    display: flex;
    padding: 8px 0;
    align-items: center;
}   

.header__cart-item:hover {
    background-color: #e7dede;
}

.header__cart-item-img {
    width: 42px;
    height: 42px;
    margin: 8px 12px;
    border: 1px solid var(--border-color);

}
.header__cart-item-info {
    width: 100%;

}
.header__cart-item-head {
    display: flex;
    justify-content: space-between;
    justify-items: center;
}
.header__cart-item-heading {
    text-align: left;
    font-size: 1.4rem; 
    font-weight: 300;
    margin: 0;
    line-height: 2rem;
    max-height: 4rem;
    overflow: hidden;
    flex: 1;
    padding: 4px 10px;
    display: block;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.header__cart-item-warp {
    padding: 4px 10px;
    font-size: 1.2rem;
}



.header__cart-item-price {
    color: var(--primary-color);

}
.header__cart-item-multiply {
    color: #a09a9a;
    margin: 0 4px;

}
.header__cart-item-qnt {
    color: #a09a9a;



}
.header__cart-item-body {
    display: flex;
    justify-items: center;
    justify-content: space-between;
}
.header__cart-item-description {
    color: #a09a9a;
    padding: 4px 10px;
    font-size: 1.2rem;

}
.header__cart-item-remove {
    color: var(--black-color);
    padding: 4px 10px;
    font-size: 1.4rem;
    cursor: pointer;
    font-weight: bold;
}

.header__cart-item-remove:hover {
    color: var(--primary-color);
}


.header__cart-view {
    float: right;
    margin: 0 12px 12px 0;
}





.header__cart-list::after {
    cursor: pointer;
    content: "";
    position: absolute;
    top: -28px;
    right: 0px;
    border-width: 15px 19px;
    border-style: solid;
    border-color: transparent transparent var(--white-color) transparent;
}

.header__cart-list--no-cart {
    padding: 0 28px;
}

.header__cart-list--no-cart .header__cart-no-cart-img,
.header__cart-list--no-cart .header__cart-list--no-cart-span {
    display: block;
    margin: 0 auto;

}


.header__cart-no-cart-img {
    width: 60%;
    display: none;
}

.header__cart-list--no-cart-span {
    font-size: 1.4rem;
    margin-top: 8px;
    color: var(--text-color);
    display: none;
}


.header__cart-hover-icon:hover .header__cart-list {
    display: block;
}


/* Header sort bar */

.header__sort-bar {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    height: var(--header-sort-bar-height);
    background-color: var(--white-color);
    list-style: none;
    display: flex;
    padding-left: 0;
    margin: 0;
    border-top: 1px solid #e5e5e5;
    border-bottom: 1px solid #e5e5e5;
    display: none;
}
.header__sort-item {
    flex: 1;

}
.header__sort-bar-link {
    text-decoration: none;
    color: var(--text-color);
    font-size: 1.4rem;
    display: block;
    height: 100%;
    line-height: var(--header-sort-bar-height);
    text-align: center;
    position: relative;
    -webkit-tap-highlight-color: transparent;
}

.header__sort-bar-link::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    height: 60%;
    border-left: 1px solid #e5e5e5;
    transform: translateY(-50%);
}

.header__sort-item:first-child .header__sort-bar-link::before{
    display: none;
}

.header__sort-item--Active .header__sort-bar-link{
    color: var(--primary-color);
}









/* category mobile */

.mobile__category {
    display: none;
}
.mobile__category-list {
    display: flex;
    list-style: none;
    padding-left: 0;
    max-width: 100%;
    overflow-x: auto;
    
}

.mobile__category-list::-webkit-scrollbar {
    display: none;
}

.mobile__category-item {
    flex-shrink: 1;
}
.mobile__category-link {
    text-decoration: none;
    color: var(--white-color);
    font-size: 1.4rem;
    line-height: 2rem;
    text-align: center;
    display: block;
    width: 110px;
    height: 40px;
    border-radius: 3px;
    margin-right: 6px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    user-select: none;
    -webkit-user-select: none;
    -webkit-tap-highlight-color: transparent;
}

.mobile__category-item:nth-of-type(3n + 1) .mobile__category-link{
    background-color: #67a6ee;
}

.mobile__category-item:nth-of-type(3n + 2) .mobile__category-link{
    background-color: #eea867;
}

.mobile__category-item:nth-of-type(3n + 3) .mobile__category-link{
    background-color: #ee6767;
}




/* container */
.app__container {
    /* height: 100vh; */
    background-color: #F5F5F5;
    padding-top: 18px;
}

.category {
    border-radius: 2px;
    background-color: var(--white-color);
    box-shadow: 0.5px 2px #dad4d4;

}


.category__heading {
    font-size: 1.6rem;
    color: var(--text-color);
    padding: 16px 16px;
    margin: 0;
    border-bottom: 1px solid #d4cbcb;
    
}

.category__heading-icon {
    font-size: 1.5rem;
    margin-right: 8px;
}

.category-list {
    padding: 0 0 16px 0;
    list-style: none;
    margin-left: 9px;
}

.category-item--active .category-item__link {
    color: var(--primary-color);
    
}

.category-item--active .category-item__link::before {
    position: absolute;
    content: "";
    border: 4px solid;
    border-color: transparent transparent transparent var(--primary-color);
    left: 8px;
    top: 50%;
    transform: translateY(calc(-50% - 1px));
}

.category-item__link {
    text-decoration: none;
    font-size: 1.4rem;
    color: var(--text-color);
    display: block;
    padding: 4px 16px;
    position: relative;
    right: 0;
    transition: right linear 0.1s;
}

.category-item__link:hover {
    color: var(--primary-color);
    right: -10px;
}

.filter {
    background-color: #e4e4e4;
    display: flex;
    align-items: center;
    padding: 12px 22px;
    border-radius: 3px;
    box-shadow: 0 2px #dad4d4;

}

.filter__span {
    font-size: 1.4rem;
    color: var(--text-color);
    font-weight: 400;
    margin-right: 16px;
}

.filter__btn {
    min-width: 90px;
    margin-right: 12px;
}

.select-option {
    min-width: 200px;
    height: 34px;
    padding: 0 12px;
    border-radius: 2px;
    background-color: var(--white-color);
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 1.3rem;
    position: relative;
    /* z-index: 1; */
}

.select-option i {
    color: var(--text-color);
    top: 1px;
}

.select-option-list {
    position: absolute;
    left: 0;
    right: 0;
    top: 22px;
    border-radius: 2px;
    background-color: var(--white-color);
    padding-left: 0;
    display: none;
}


.select-option-item {
    list-style: none;
}

.select-option__link {
    display: block;
    text-decoration: none;
    color: var(--black-color);
    padding: 8px 12px;
    font-size: 1.4rem;
}

.select-option__link:hover {
    color: var(--primary-color);
}

.select-option:hover .select-option-list {
    display: block;
}

.filter-wrap {
    margin-left: auto;

}
.filter-wrap__span1 {
    font-size: 1.4rem;
    color: var(--text-color);
    margin-right: 22px;

}
.filter-wrap__spanN {
    color: var(--primary-color);

}

.filter-controls-page-num {
    border-radius: 3px;
    overflow: hidden;
    display: flex;
    width: 72px;
    height: 36px;
    box-shadow: 0 2px #dad4d4;
}

.filter-controls-page {
    width: 36px;
    height: 36px;
    line-height: 36px;
    text-align: center;
    text-decoration: none;
    font-size: 1.2rem;
    color: var(--text-color);
    background-color: var(--white-color);
    display: block;

}

.filter-controls-page:first-child {
    border-right: 1px solid #bbbbbb;
}
.filter-controls-page--disabled {
    background-color: #e9e9e9;
    color: #999;
    cursor: default;
}


/* San pham */

.product {
    height: calc(680px - 30px);
    margin-bottom: 20px;
}



.product-item {
    display: block;
    background-color: var(--white-color);
    margin-top: 10px;
    position: relative;
    border-bottom-right-radius: 3px;
    border-bottom-left-radius: 3px;
    box-shadow: 0 0.1rem 0.2rem 0 rgb(0,0,0,0.1);
    text-decoration: none;
    
}

.product-item:hover {
    box-shadow: 0 1px 8px rgb(0,0,0,0.5);

}

.product-item__img {
    padding-top: 100%;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    border: 1px solid var(--border-color);

}
.product-item__heading {
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--text-color);
    line-height: 1.8rem;
    height: 3.6rem;
    margin: 4px  10px;
    overflow: hidden;
    display: block;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;

    

}
.product-item__price {
    height: 30px;
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    margin: 4px;
}
.product-item__price-old {
    font-size: 1.1rem;
    color: #666;
    text-decoration: line-through;
    margin-left: 10px;


}
.product-item__price-new {
    font-size: 1.1rem;
    color: var(--primary-color);
    margin: 0 0 0 10px;

}
.product-item__active {
    display: flex;
    justify-content: space-between;
    margin: 4px 10px;
}
.product-item__active-like {
    font-size: 1.4rem;
    color: var(--text-color);
}



i.product-item__active-fill {
    display: none;
}

.product-item__active--liked  .product-item__active-fill{
    color: #f34553;
    display: inline-block;
}

.product-item__active--liked .product-item__active-empty {
    display: none;
}



.product-item__active-rating {
    font-size: 0.9rem;
    color: var(--border-color);
    margin: 4px 10px;
    margin-left: auto;
    margin-top: -1px;
}

.product-item__active-rating--gold-star {
    color: #eecb2e;
}

.product-item__sell {
    font-size: 1.2rem;
    color: var(--text-color);
    margin-left: 4px;
}



.product-item__ogirin {
    display: flex;
    justify-content: space-between;
    margin: 4px 10px;
    color: var(--text-color);
}

.product-item__favourite {
    position: absolute;
    top: 10px;
    left: -4px;
    color:var(--primary-color);
    background-color: currentColor;
    font-size: 1.2rem;
    padding-right: 4px;
    border-top-right-radius: 3px;
    border-bottom-right-radius: 3px;
    line-height: 24px;
}

.product-item__favourite::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -3px;
    border-top: 3px solid  currentColor;
    border-left: 3px solid transparent;
    filter: brightness(60%);
}
.product-item__favourite i {
    color: var(--white-color);
    font-size: 1rem;    
    margin: 0 4px 0 6px;
}

.product-item__favourite span {
    color: var(--white-color);
}


.product-item__sale {
    position: absolute;
    right: 0;
    top: 0;
    width: 40px;
    height: 36px;
    background-color: rgba(255, 216, 64, 0.753);
    text-align: center;
    padding: 3px 0;
}

.product-item__sale::after {
    position: absolute;
    content: "";
    left: 0;
    bottom: -5px;
    border-width: 0 20px 5px;
    border-style: solid;
    color: rgba(255, 216, 64, 0.753);
    border-color: transparent currentColor  transparent  currentColor;
}


.product-item__sale-percent {
    
    font-size: 1.3rem;
    color: #EE4D2D;
    font-weight: 600;
    line-height: 1.3rem;

}
.product-item__sale-lbl {
    font-size: 1.3rem;
    line-height: 1.3rem;
    color: var(--white-color);
}


.pagination__margin-top {
    margin: 48px 0 32px 0;
    padding-left: 0;
}


/* footer */

.footer {
    border-top: 4px solid var(--primary-color);
    padding-top: 16px;
    
}

.footer__heading {
    font-size: 1.4rem;
    margin: 6px 0;

}

.footer__list {
    list-style: none;
    padding: 0;
}

.footer__item {
    font-size: 1.2rem;
    padding: 4px 0;
}

.footer__item-link:hover {
    color: var(--primary-color);
    position: relative;
    right: -4px;
}

.footer__item-link {
    text-decoration: none;
    color: var(--text-color);
}

.footer-bottom {
    background-color:#bbbbbb ;
}

.footer__text {
    text-align: center;
    margin: 0;
    padding: 6px 4px;
}