.main {
    overflow: hidden;
}

.header {
    height: var(--header-height);
    background-image: linear-gradient(0, var(--primary-light), var(--primary-color));
}

.header__navbar {
    display: flex;
    align-items: center;
    justify-content: space-between; 
    height: var(--navbar-height);
    line-height: 34px;
    padding: 0;
}

.header__navbar-list {
    /* height: 23px; */
    display: flex;
    list-style: none;
    padding-left: 0;
    padding-top: 4px;
    margin-top: 0;
    margin-bottom: 0;
}

.header__navbar-item {
    position: relative;
    margin: 0 8px;
    font-family: 'Roboto', sans-serif;
    color: var(--black-color);
}

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

.header__navbar-item,
.header__navbar-item-link {
    font-weight: 300;
    font-size: 1.5rem;
    color: var(--while-color);
    text-decoration: none;
    line-height: 16px;
    display: inline-block;
}

.header__navbar-item:hover,
.header__navbar-icon-link:hover,
.header__navbar-item-link:hover {
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
}

.header__navbar-item,
.header__navbar-icon-link,
.header__navbar-item-link {
    display: flex;
    align-items: center;
    justify-content: center;
}

.header__navbar-icon {
    margin: 0 4px;
}

.header__navbar-item--bold {
    font-weight: 400;
}

.header__navbar-item--separate::after {
    content: "";
    display: block;
    position: absolute;
    right: -10px;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 17px;
    background-color: #F86C5C;
}

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

.header__navbar-user-img {
    width: 22px;
    border-radius: 50%;
}

.header__navbar-user-name {
    padding-left: 4px;
    margin: 0;
}

.header__navbar-user-list {
    position: absolute;
    z-index: 1;
    top: calc(100% + 5px);
    right: 0;
    padding-left: 0;
    background-color: var(--while-color);
    border: 1px solid var(--border-color);
    border-radius: 3px;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.2);
    list-style: none;
    width: calc(100% + 50px);
    min-width: 100px;
    display: none;
}

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

.header__navbar-user-list:before {
    content: "";
    display: block;
    position: absolute;
    top: -1.9rem;
    right: 21%;
    border-width: 1.0rem 1.8rem;
    border-style: solid;
    border-color: transparent transparent var(--while-color);
}

.header__navbar-user-item {
    padding: 8px;
}

.header__navbar-user-item--separate {
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.header__navbar-user-item:first-child {
    border-top-right-radius: 3px;
    border-top-left-radius: 3px;
}

.header__navbar-user-item:last-child {
    border-bottom-right-radius: 3px;
    border-bottom-left-radius: 3px;
}

.header__navbar-user-item a {
    font-size: 1.4rem;
    text-decoration: none;
    color: var(--black-color);
}

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

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

.header__navbar-icon {
    font-size: 1.8rem;
}

.header__navbar-icon-s {
    font-size: 1.9rem;
}

.header__navbar-icon-check {
    padding: 1px;
    margin-left: 3px;
    font-size: 1rem;
    color: #0866FF;
    border: 0.5px solid #fff;
    border-radius: 50%;
}

.header__nav--no-pointer {
    color: var(--while-color);
    user-select: none;
    cursor: default;
}

/* header QR code */
.header__qr {
    display: none;
    width: 186px;
    background-color: var(--while-color);
    position: absolute;
    left: 0;
    top: 140%;
    padding: 8px;
    border-radius: 2px;
    animation: fadeIn ease .2s;
    z-index: 1;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.2);
}

.header__qr::before {
    position: absolute;
    top: -20px;
    left: 0;
    width: 100%;
    height: 20px;
    content: "";
    display: block;
    /* background-color: #000; */
}

.qr_img {
    width: 100%;
}

.qr_apps {
    display: flex;
}

.qr_download_img {
    width: 50%;
    padding: 0 8px;
    justify-content: space-around;
}

.header__navbar-item:hover .header__qr {
    display: block;
}

/* Header Notification */
.header__notify {
    display: none;
    position: absolute;
    right: 0;
    top: calc(100% + 5px);
    width: 404px;
    background-color: var(--while-color);
    cursor: default;
    border: 1px solid #D1D1D1;
    border-radius: 4px;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.2);
    font-size: 1.4rem;
    transform-origin: calc(100% - 40px) top ;
    -webkit-animation: headerNotifyGrowth ease-in 0.2s;
    -moz-animation: headerNotifyGrowth ease-in 0.2s;
    -o-animation: headerNotifyGrowth ease-in 0.2s;
    will-change: opacity transform;
    animation: headerNotifyGrowth ease-in .2s;
    z-index: 1;
}

.header__navbar-item:hover .header__notify {
    display: block;
}

.header__notify::before {
    content: "";
    display: block;
    position: absolute;
    top: -2.88rem;
    right: 1.2rem;
    border-width: 20px 33px;
    border-style: solid;
    border-color: transparent transparent #fff;
}

.header__notify::after {
    content: "";
    display: block;
    position: absolute;
    top: -12px;
    right: -1px;
    width: 94px;
    height: 24px;
}

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

.header__notify-new {
    color: rgba(0, 0, 0, .5);
    line-height: 40px;
    padding: 0 10px;
    user-select: none;
}

.body-notify {
    background-color: rgba(252, 85, 49, .2);
}

.body-cart {
    padding: 0;
    margin: 0;
    /* height: 50vh; */
    overflow-y: auto;
}

.body__notify-item {
    display: flex;
    padding: 10px;
    text-decoration: none;
    margin: 0;
}

.body__notify-item--viewed {
    background-color: #F3F3F3;
}

.header__navbar-user-item:hover,
.body__notify-item:hover {
    background-color: #f8f8f8;
}

.body__notify-img {
    min-width: 40px;
    height: 23px;
}

.body__notify-info {
    margin-left: 10px;
    color: #000;
    font-weight: 400;
}

.footer__notify {
    text-align: center;
}

.footer__notify-btn {
    display: block;
    padding: 12px;
    width: 100%;
    text-decoration: none;
    color: rgba(0, 0, 0, .8);
    font-weight: 400;
}

/* Authen modal */
.auth-form {
    width: 500px;
    border-radius: 5px;
    background-color: var(--while-color);
    overflow: hidden;
}

.auth-form__container {
    padding: 0 32px;
}

.auth-form__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 12px;
    margin-top: 10px;
}

.auth-form__heading {
    font-size: 2.2rem;
    font-weight: 400;
    color: var(--text-color);
}

.auth-form__switch-btn {
    font-weight: 500;
    font-size: 1.6rem;
    color: var(--primary-color);
    cursor: pointer;
}

.auth-form__group {
    margin-top: 16px;
}

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

.auth-form__input:focus {
    border-color: #888;
}

.auth-form__aside {
    margin-top: 18px;
    text-align: center;
}

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

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

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

.btn.auth-form__controls-back {
    margin-right: 8px;
}

.auth-form_socials {
    background-color: #f5f5f5;
    padding: 14px 36px;
    display: flex;
    justify-content: space-between;
    margin-top: 22px;
}

.btn--size-s {
    height: 32px;
    font-size: 1.2rem;
    margin: 0 8px;
}

.btn--with-icon {
    flex: 1;
}

.auth-form_socials-icon {
    font-size: 1.8rem;
    color: blue;
}

.auth-form_socials 
.auth-form_socials--facebook {
    color: var(--while-color);
    background-color: #3A5A98;
}

.auth-form_socials--facebook
.auth-form_socials-icon {
    color: var(--while-color);
}

.auth-form_socials-title {
    /* display: block; */
    margin: 0 20px;
}

.auth-form_socials--google {
    color: #666    
    background-color: var(--while-color);
}

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

.auth-form__help-link {
    line-height: 18px;
    padding: 0;
    font-size: 1.4rem;
    text-decoration: none;
    color: #939393;
}

.auth-form__help-separate {
    display: block;
    height: 18px;
    margin: 0 16px;
    border: 1px solid #EAEAEA;
}

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

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

.header__mobile-search {
    display: none;
}

.header__search-mobile {
    display: none;
}

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

.header-logo {
    width: 200px;
    cursor: pointer;
    /* display: flex;
    align-items: center; */
}

.header-logo-link {
    text-decoration: none;
    color: transparent;
}

.header-logo-icon {
    width: 160px;
    height: 100px;
    /* margin-top: 5px; */
    user-select: none;
}

.logo-img {
    width: 170px;
}

.header__search {
    display: flex;
    align-items: center;
    border-radius: 20px;
    background-color: var(--while-color);
    height: 40px;
    flex: 1;
    box-shadow: -2px 5px 5px rgba(0, 0, 0, 0.2), 2px 5px 5px rgba(0, 0, 0, 0.2), 0px 5px 10px rgba(0, 0, 0, 0.2);
}

.header__input-search-mobile {
    display: none;
}

.header-cart {
    width: 150px;
    text-align: center;
}

.header-cart-icon {
    text-decoration: none;
    position: relative;
    margin-top: 1px;
    font-size: 2.6rem;
    color: var(--while-color);
    cursor: pointer;
}

.fa-cart-shopping:before, .fa-shopping-cart:before {
    content: "";
}

.header-cart-icon__quatity {
    display: block;
    position: absolute;
    top: 8px;
    right: 4px;
    width: 20px;
    height: 15px;
    background-color: var(--while-color);
    color: var(--black-color);
    border-radius: 6px;
    border: 1px solid var(--primary-color);
    font-size: .8rem;
    margin: auto;
}

.header-cart-icon__quatity span {
    display: block;
    line-height: 15px;
}

.header-cart-icon:hover .header-no-cart {
    display: block;
}

.header-no-cart {
    position: absolute;
    right: -2px;
    top: calc(100% - 6px);
    width: 400px;
    background-color: var(--while-color);
    padding: 20px 0 ;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.2);
    border-radius: 4px;
    -webkit-animation: headerNotifyGrowth ease-in 0.2s;
    -moz-animation: headerNotifyGrowth ease-in 0.2s;
    -o-animation: headerNotifyGrowth ease-in 0.2s;
    will-change: opacity transform;
    transform-origin: calc(100% - 27px) top;
    animation: headerNotifyGrowth ease-in .2s;
    cursor: default;
    z-index: 1;
    text-align: center;
    display: none;
    /* display: block; */
}

.header-has-cart {
    position: absolute;
    right: -26px;
    top: calc(100% + 10px);
    width: 367px;
    /* min-height: 200px; */
    background-color: var(--while-color);
    border: 1px solid #D1D1D1;
    border-radius: 4px;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.2);
    -webkit-animation: headerNotifyGrowth ease-in 0.2s;
    -moz-animation: headerNotifyGrowth ease-in 0.2s;
    -o-animation: headerNotifyGrowth ease-in 0.2s;
    will-change: opacity transform;
    transform-origin: calc(100% - 12px) top ;
    animation: headerNotifyGrowth ease-in .2s;
    cursor: default;
    font-size: 1.4rem;
    z-index: 2;
    display: none;
    /* display: block; */
}

.header-no-cart::before {
    content: "";
    display: block;
    position: absolute;
    right: 10px;
    top: -20px;
    border-width: 14px 20px;
    border-style: solid;
    border-color: transparent transparent var(--while-color);
    cursor: pointer;
}

.header-has-cart::before {
    content: "";
    display: block;
    position: absolute;
    right: 10px;
    top: -20px;
    border-width: 14px 20px;
    border-style: solid;
    border-color: transparent transparent var(--while-color);
    cursor: pointer;
}

.header-has-cart::after {
    content: "";
    display: block;
    width: 130px;
    height: 13px;
    position: absolute;
    top: -13px;
    right: -26px;
    background-color: transparent;
}


.body__cart-img {
    min-width: 40px;
    height: 40px;
    border: 1px solid #ccc;
}

.header-cart-new {
    font-weight: 400;
    font-size: 1.4rem;
    font-family: 'Roboto', sans-serif;
    color: rgba(0, 0, 0, .3);
    background-color: rgba(242, 211, 211, 0.1);
    line-height: 40px;
    padding: 0 10px;
    user-select: none;
    cursor: default;
}

.body__cart-info-rate {
    font-size: 1.4rem;
    font-family: 'Roboto', sans-serif;
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.body__cart-info {
    width: 100%;
    margin-left: 10px;
    color: #000;
    font-weight: 400;
    font-family: 'Roboto', sans-serif;
    max-width: 250px;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}

.body__cart-rate {
    /* display: flex; */
    position: relative;
    color: var(--primary-color);
    font-weight: 500;
}

.body__cart-rate-curreny {
    font-size: .9rem;
    color: var(--primary-color);
    position: absolute;
    top: -2px;
    left: -7px;
}

.header__cart-list {
    text-align: start;
}

.footer__cart {
    background-color: rgba(242, 211, 211, 0.1);
    padding: 8px;
    display: flex;
    justify-content: end;
    cursor: default;
}

.header__cart-btn-view {
    display: block;
    width: 120px;
    line-height: 35px;
    height: 35px;
    text-align: center;
    text-decoration: none;
    background-color: var(--primary-color);
    color: var(--while-color);
    border-radius: 2px;
    border: none;
    outline: none;
    cursor: pointer;
}

.header-cart__no-cart-img {
    width: 200px;
}

.header-cart__text {
    font-family: 'Roboto', sans-serif;
    color: var(--text-color);
    font-weight: 500;
    font-size: 1.4rem;
    margin: 25px 0 0;
}

.header-cart-item {
    cursor: pointer;
}

.header-cart-icon:hover .header-has-cart {
    display: block;
}

.header__search-wrap {
    position: relative;
    flex: 1;
    width: 100%;
}

.header__search-input {
    height: 100%;
    width: 100%;
    padding: 0 16px;
    margin-top: 4px;
    font-size: 1.4rem;
    border: none;
    outline: none;
    border-radius: 20px;
}

.header__search__select {
    display: flex;
    align-items: center;
    font-size: 1.4rem;
    line-height: 40px;
    cursor: pointer;
}

.header__search__select:hover .header__search__option {
    display: block;
}

.header__search__select-border {
    height: 30px;
    border-left: 2px solid #E8E8E8;
    margin-right: 16px;
}

.header__search__select-label {
    position: relative;
    user-select: none;
    color: var(--text-color);
    cursor: pointer;
}

.header__search__option {
    position: absolute;
    background-color: var(--while-color);
    width: 130px;
    min-height: 50px;
    top: calc(100% - 10.9px);
    right: -38px;
    padding: 0;
    list-style: none;
    border-radius: 2px;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.2);
    animation: fadeIn ease-in 0.3s;
    /* margin: 0; */
    display: none;
    z-index: 1;
}

.header__search__option::before {
    content: "";
    display: block;
    position: absolute;
    top: -10px;
    width: 100%;
    height: 15px;
}

.header__search__option-item {
    margin-left: 8px;
    display: block;
    width: 100%;
    padding: 0;
}

.header__search__option-item span {
    margin: 0 8px;
    font-size: 1.4rem;
    color: var(--text-color);
}

.header__search__option-item i {
    font-size: 1.2rem;
    color: var(--primary-color);
}

.header__search__select-icon {
    padding: 0 16px 0 8px;
    cursor: pointer;
    color: #4A4A4A;
}

.header__search-btn-search {
    width: 60px;
    line-height: 34px;
    height: 36px;
    margin-right: 3px;
    text-align: center;
    background-color: var(--primary-color);
    border-radius: 20px;
    border: none;
    outline: none;
    cursor: pointer;
}

.header__cart-btn-view:hover,
.header__search-btn-search:hover {
    background-color: rgba(66, 198, 231, 0.5);
}

.header__search-btn-icon {
    color: var(--while-color);
    margin-bottom: 14px;
    font-size: 1.2rem;
}

.header__search__option-item {
    margin-left: 0;
    padding-left: 8px;
}

.header__search__option-item i {
    color: var(--primary-color);
    font-size: 1.6rem;
    margin-top: 10px;
    display: none;
}

.header__search__option-item:hover {
    background-color: #fafafa;
    border-radius: 2px;
}

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

/* Search History */
.header__search-history {
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    width: calc(100% - 16px);
    background-color: var(--while-color);
    border-radius: 12px;
    box-shadow: 0 1px 5px #dcdbdb;
    overflow: hidden;
    display: none;
    z-index: 2;
}

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

.header__search-history-heading {
    margin: 10px 14px;
    font-size: 1.6rem;
    color: #999;
    font-weight: 400;
    display: block;
}

.header__search-history-list {
    z-index: 1;
    padding-left: 0;
    margin: 6px 0 0;
    list-style: none;
    overflow: hidden;
}

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

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

.header__search-history-item a {
    display: block;
    /* width: 100%; */
    text-decoration: none;
    font-size: 1.4rem;
    color: var(--text-color);
    line-height: 38px;
}

/* Header Sort Bar */
.header__sort-bar {
    position: fixed;
    top: var(--header-height);
    right: 0;
    left: 0;
    list-style: none;
    height: var(--header-sort-bar-height);
    margin: 0;
    padding-left: 0;
    background-color: var(--while-color);
    display: none;
    z-index: 1;
}

.header__sort-item {
    flex: 1;
}

.header__sort-bar .header__sort-link-active {
    color: var(--primary-color);
    font-weight: 500;
}

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

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

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

/* App Container */
.app__container {
    background-color: #F5F5F5;
}

.app__content {
    padding-top: 36px;
}

.catagory {
    background-color: var(--while-color);
}

.catagory__heading {
    margin: 0;
    clear: var(--text-color);
    font-size: 1.5rem;
    font-weight: 500;
    padding: 16px 20px 0;
    display: flex;
    text-transform: uppercase;
}

.catagory-list {
    padding: 0 0 8px 0;
}

.catagory-item {
    list-style: none;
    position: relative;
}

.catagory-item:first-child::before {
    display: none;
}

.catagory-item::before {
    content: "";
    border-top: 1px solid #e1e1e1;
    position: absolute;
    top: 0;
    left: 20px;
    right: 20px;
}

.catagory-item--active .catagory-item__link {
}

.catagory-item__link {
    position: relative;
    display: block;
    text-decoration: none;
    color: var(--text-color);
    font-size: 1.4rem;
    padding: 6px 20px;
    transition: right linear 0.1s;

}

.catagory-item__link:hover {
    color: rgba(165, 42, 42, 1);
    font-weight: 500;
}

/* Home sort + filter */
.home-filter {
    display: flex;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.04);
    padding: 12px 22px;
    border-radius: 2px;
}

.home-filter__page {
    display: flex;
    align-items: center;
    margin-left: auto;
}

.home-filter__label {
    font-size: 1.4rem;
    color: #555;
    margin-right: 16px;
}

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

.btn.btn--primary:hover {
    background-color: rgba(66, 198, 231, 0.5);
}

.home-filter__page-control {
    align-items: flex-end;
}

.home-filter__page-num {
    font-size: 1.5rem;
    color: var(--text-color);
    margin-right: 22px;
}

.home-filter__page-current {
    color: var(--primary-color);
}

.home-filter__page-control {
    border-radius: 2px;
    overflow: hidden;
    display: flex;
    width: 72px;
    height: 32px;
    box-shadow: 0 1px 1px #ccc;
}

.home-filter__page-btn {
    text-decoration: none;
    font-size: 1.4rem;
    color: #555;
    flex: 1;
    display: flex;
    width: 36px;
    height: 36px;
    background-color: var(--while-color);
}

.home-filter__page-btn--disabled {
    background-color: #F9F9F9;
    cursor: default;
}

.home-filter__page-btn--disabled .home-filter__page-icon {
    color: #ccc;
}


.home-filter__page-btn:first-child {
    border-right: 1px solid #eee;
}

.home-filter__page-icon {
    margin: auto;
}

/* Product item */
.home-product {
    margin-bottom: 10px;
}

.home-product-item {
    display: block;
    position: relative;
    background-color: var(--while-color);
    margin-top: 10px;
    border-radius: 2px;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, .1);
    text-decoration: none;
}

.home-product-item:hover {
    transform: translateY(-2px);
    transition: transform linear 0.1s;
    will-change: transform;
    box-shadow: 0 1px 20px 0 rgba(0, 0, 0, .15);
}

.home-product-item__img {
    padding-top: 100%;
    background: top center / contain no-repeat;
    border-top-left-radius: 2px;
    border-top-right-radius: 2px;
}

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

.home-product-item__price {
    display: flex;
    /* ... */
    align-items: baseline; 
    /* ... */
    flex-wrap: wrap;
}

.home-product-item__price-old {
    margin-left: 10px;
    font-size: 1.4rem;
    color: #666;
    text-decoration: line-through;
}

.home-product-item__price-curent {
    font-size: 1.6rem;
    color: var(--primary-color);
    margin-left: 10px;
}

.home-product-item__action {
    display: flex;
    justify-content: space-between;
    margin: 6px 10px 0;
}

.home-product-item__like {
    font-size: 1.3rem;
}

i.home-product-item__like--icon-fill {
    padding-top: 2px;
    color: #F63D30;
    display: none;
}

.home-product-item__like--liked .home-product-item__like--icon-fill {
    display: block;
}

.home-product-item__like--liked .home-product-item__like--icon-empty {
    display: none;
}

.home-product-item__rating {
    margin: -1px 0 0 auto;
    font-size: .8rem;
    color: #D5D5D5;
}

.home-product-item__star-gold  {
    color: var(--star-gold-color);
}

.home-product-item__sold {
    margin-left: 6px;
    font-size: 1.2rem;
    color: var(--text-color);
}

.home-product-item__origin {
    display: flex;
    justify-content: space-between;
    margin: 3px 10px 0px;
    color: #595959;
    font-weight: 300;
    font-size: 1.2rem;
}

.home-product-item__brand {

}

.home-product-item__origin-name {

}

.home-product-item__favorite {
    position: absolute;
    top: 10px;
    left: -4px;
    color: rgba(165, 42, 42, 1);
    background-color: currentColor;
    line-height: 1.6rem;
    padding-right: 5px;
    border-top-right-radius: 2px;
    border-bottom-right-radius: 2px;
}

.home-product-item__favorite span {
    color: var(--while-color);
}

.home-product-item__favorite .home-product-item__favorite-icon {
    color: var(--while-color);
}

.home-product-item__favorite::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    border-top: 4px solid currentColor;
    border-left: 3.55px solid transparent;
    filter: brightness(60%);
    /* ... */ 
    /* làm giảm độ sáng của arrow tam giác 45 */
}

.home-product-item__favorite-icon {
    color: var(--while-color);
    padding: 0 3px 0 5px;
}

.home-product-item__sale-off {
    position: absolute;
    top: 0;
    right: 0;
    width: 40px;
    height: 36px;
    background-color: rgba(255, 216, 64, .95);
    text-align: center;
    border-top-right-radius: 2px;
}

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

/* .home-product-item__sale-off::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: -6px;
    border-top: 6px solid rgba(255, 216, 64, .95);
    border-left: 20px solid transparent;
}

.home-product-item__sale-off::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    border-top: 4px solid rgba(255, 216, 64, .95);
    border-right: 20px solid transparent;
} */

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

.home-product-item__sale-off-label {
    color: var(--while-color);
    font-size: 1.4rem;
    line-height: 1.4rem;
    font-weight: 600;
}

/* pagination */
.home-product__pagination {
    margin: 48px 0 32px;
    padding-left: 0;
}

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

.footer__heading {
    font-size: 1.4rem;
    text-transform: uppercase;
    color: var(--text-color);
}

.footer-list {
    padding-left: 0;
    list-style: none;
}

.footer-item__link {
    text-decoration: none;
    font-size: 1.2rem;
    color: #737373;
    padding: 2px 0;
    display: flex;
    align-items: center;
}

.footer-item__link:hover {
    color: var(--primary-color);
}

.footer-item__icon {
    font-size: 1.7rem;
}

.footer__fanpage-qr {
    width: 60%;
    border: 1px solid var(--border-color);
}

.footer_bottom {
    background-color: #f5f5f5;
    margin-top: 36px;
}

.footer__text {
    padding: 8px 0;
    margin: 0;
    font-size: 1.4rem;
    text-align: center;
    color: #737373;
}