/* Header */
.wrapper {
    /* overflow: hidden; */
}
.header {
    height: var(--header-height);
    background-image: var(--signature-gradient);
    /* position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 99; */
}
.navbar {
    height: var(--navbar-height);
    display: flex;
}
.navbar .navbar-list {
    list-style: none;
    display: flex;
    margin: .8rem 0;
    align-items: center;
}
.navbar .navbar-list:last-child {
    justify-content: flex-end;
}
.navbar-list .navbar-item {
    position: relative;
}
.navbar-list .navbar-separate::after {
    content: "";
    display: block;
    position: absolute;
    border-left: 1px solid rgba(255, 255, 255, .5);
    height: 1.8rem;
    left: -1.2rem;
    top: 50%;
    transform: translateY(-50%);
}
.navbar-list .navbar-item,
.navbar-list .navbar-item .navbar-link,
.navbar-list .navbar-item .navbar-link-icon {
    color: rgba(255,255,255,1);
    text-decoration: none;
    font-size: 1.4rem;
}
.navbar-list .navbar-item:hover,
.navbar-list .navbar-item .navbar-link:hover,
.navbar-list .navbar-item .navbar-link-icon:hover {
    color: rgba(255,255,255,.6);
    cursor: pointer;
}
.navbar-list .navbar-item +.navbar-item {
    margin-left: 2.4rem;
}
.navbar i {
    padding: 0 .2rem;
}

/* User */
.navbar-item.navbar__user {
    /* display: flex; */
    display: none;
    align-items: center;
}
.navbar__user:hover .navbar-user__menu {
    display: block;
}
.navbar-user__avatar {
    width: 2.2rem;
    border-radius: 50%;
    border: .1rem solid rgba(0, 0, 0, .1);
}
.navbar-user__userName {
    margin-left: .8rem;
    font-weight: 600;
    font-size: 1.4rem;
}

.navbar-user__menu {
    position: absolute;
    width: 18rem;
    top: 150%;
    right: 0;
    background-color: white;
    z-index: 2;
    border-radius: .4rem;
    box-shadow: var(--box-shadow);
    transform-origin: calc(100% - 2.8rem) -2rem;
    animation: zoomGrowth ease .2s, fadeIn linear .2s;
    display: none;
}
.navbar-user__menu::before {
    content: "";
    position: absolute;
    top: -2rem;
    right: 2.8rem;
    border-width: 1rem;
    border-style: solid;
    border-color: transparent transparent white transparent;
}
.navbar-user__menu::after {
    content: "";
    position: absolute;
    top: -2rem;
    right: 0;
    /* background-color: red; */
    width: 50%;
    height: 2rem;
}
.navbar-user-menu__list {
    list-style: none;
    padding: 0;
}
.navbar-user-menu-list__item {

}
.navbar-user-menu-list-item__link {
    text-decoration: none;
    color: #333;
    display: block;
    width: 100%;
    padding: 1.2rem;
}
.navbar-user-menu-list-item__link:hover {
    background-color: #fafafa;
    color: var(--primary-color);
    border-radius: .4rem;
}
/* Navbar QR-Code */
.navbar__qr--show:hover .qr-code {
    display: block;
}
.qr-code {
    background-color: #fff;
    width: 18rem;
    position: absolute;
    z-index: 2;
    left: 0;
    top: 150%;
    border-radius: .4rem;
    box-shadow: var(--box-shadow);
    display: none;
    animation: fadeIn ease .2s;
}
.qr-code::before {
    content: "";
    /* display: block; */
    position: absolute;
    width: 54%;
    height: 3rem;
    /* background-color: red; */
    top: -2.5rem;
}
.qr-code__img {
    width: 100%;
    padding: .4rem;
    
}
.qr-code__apps {
    display: flex;
    margin: 0 2rem;
}
.qr-apps__link {
    width: 50%;
}
.qr-apps__img {
    width: 100%;
}

/* navbar notification */
.navbar__notify--show:hover .notification {
    display: block;
}
.notification {
    position: absolute;
    z-index: 2;
    top: 150%;
    right: 0;
    width: 36rem;
    background-color: white;
    border-radius: .4rem;
    box-shadow: var(--box-shadow);
    display: none;
    transform-origin: calc(100% - 4.5rem) -1.5rem;
    animation: zoomGrowth ease .2s, fadeIn linear .2s;
}
.notification::before {
    content: "";
    border-width: 2rem 2.5rem;
    border-style: solid;
    border-color: transparent transparent white transparent;
    position: absolute;
    right: 2rem;
    top: -2.8rem;
}
.notification::after {
    content: "";
    display: block;
    position: absolute;
    width: 60%;
    height: 3rem;
    /* background-color: red; */
    top: -2.5rem;
    right: 0;
}
.notify__header {
    height: 4rem;
}
.notify__header h3 {
    margin: 0;
    font-size: 1.4rem;
    line-height: 4rem;
    padding-left: .8rem;
}
.notify__list {
    padding: 0;
}
.notify-list__item {
    padding: .8rem;
    list-style: none;
    background-image: linear-gradient(45deg, rgba(168, 144, 254, .2),  rgba(234, 141, 141, .2));
}
.notify-list__item:hover {
    background-image: linear-gradient(180deg, rgba(0 , 0, 0, .05),  rgba(255, 255, 255, 1));
}
.notify-list__item--viewed {
    background-image: none;
}
.notify-item__link {
    display: flex;
    text-decoration: none;
}
.notify-link__img {
    width: 15%;
}
.notify-img__desc {
    width: 100%;
}
.notify-link__info {
    flex: 1;
    display: flex;
    flex-direction: column;
    color: #222;
    text-align: justify;
}
.notify-info__header {
    font-size: 1.3rem;
    font-weight: 600;
}
.notify-info__desc {
    font-size: 1.1rem;
    margin-top: .4rem;
    color: #666;
}

.notify-footer__desc {
    display: block;
    width: 100%;
    font-size: 1.4rem;
    font-weight: 600;
    text-decoration: none;
    color: #222;
    text-align: center;
    padding: 1.2rem 0;
}
.notify__footer:hover {
    background-color: #fafafa;
}

/* Language */
.navbar__language--show:hover .language {
    display: block;
}
.language{
    position: absolute;
    z-index: 2;
    background-color: white;
    top: 150%;
    right: 0;
    width: 16rem;
    border-radius: .4rem;
    box-shadow: var(--box-shadow);
    animation: zoomGrowth ease .2s, fadeIn linear .2s;
    transform-origin: calc(100% - 3.5rem) -1.5rem;
    display: none;
}
.language::before {
    content: "";
    border-width: 1rem 1.5rem;
    border-style: solid;
    border-color: transparent transparent white transparent;
    position: absolute;
    right: 2rem;
    top: -2rem;
}
.language::after {
    content: "";
    display: block;
    position: absolute;
    width: 75%;
    height: 3rem;
    /* background-color: red; */
    top: -2.5rem;
    right: 0;
}
.language__list{
    padding: 0;
}
.language-list__item{
    list-style: none;
}
.language-list__item:hover{
    background-color: #fafafa;
    border-radius: .4rem;
}
.navbar-language__text {
    display: inline-block;
    width: 7rem;
}
.language-item__link{
    text-decoration: none;
    display: block;
    width: 100%;
    color: #222;
    padding: 1rem;
}
.language-item__link--active {
    color: var(--primary-color);
    font-weight: 600;
}

/* Authen Modal */
.auth-form {
    width: 50rem;

}
.register-form {
    display: none;
}
.login-form {
    display: none;
}
.btnModalForm {
    padding: 1rem 2rem;
}
.auth__container {
    padding: 2rem 3.2rem;
}
.auth__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 1.2rem;
}
.auth-header__title {
    font-size: 2rem;
    font-weight: 400;
    margin: 0;
    padding: 1.4rem 0;
}
.auth-header__switch-btn {
    font-size: 1.6rem;
    color: var(--primary-color);
    font-weight: 500;
    cursor: pointer;
    padding: 1.4rem 0;
}

.auth-body-group__input {
    width: 100%;
    height: 4rem;
    font-size: 1.3rem;
    padding: 0 .8rem;
    margin-top: 1.6rem;
    border: 1px solid #dbdbdb;
    border-radius: .4rem;
    outline: none;
}
.auth-body-group__input:focus {
    border-color: #666;
}
.auth-body__aside {
    margin: 2rem 0;
}
.auth-body-aside__policy-text {
    font-size: 1.3rem;
    text-align: center;
    padding: 0 .8rem;
}
.auth-body-aside__policy-link {
    text-decoration: none;
    color: var(--secondary-color);
}
.auth-body-aside__policy-link:hover {
    color: var(--primary-color);
}
.auth-body-aside__help {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    line-height: 1.6;
}
.auth-body-aside-help__link {
    text-decoration: none;
    font-size: 1.4rem;
}
.auth-body-aside-help-link__fogot {
    color: var(--primary-color);
    font-weight: 500;
}
.auth-body-aside-help__separate {
    display: block;
    height: 2rem;
    border: .05rem solid #eee;
    margin: 0 1.6rem;
}
.auth-body__controls-btn {
    margin-top: 8rem;
    display: flex;
    justify-content: flex-end;
}
.auth__social {
    background-image: var(--signature-gradient);
    display: flex;
    justify-content: space-between;
    padding: 1.4rem 3.2rem;
}
.auth-social__link {
    width: 48%;
    padding: 1.2rem 1rem;
    text-decoration: none;
    color: white;
    font-size: 1.4rem;
    border: .2rem solid white;
    border-radius: .4rem;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}
.auth-social__link:hover {
    background-color: #fff;
    color: #666;
}



/* Header with Search */
.header-withSearch {
    height: var(--header-withSearch-height);
    display: flex;
    align-items: center;
}
.header__mobileSearch {
    display: none;
}
.header-mobileSearch__icon {
    font-size: 2.4rem;
    color: white;
}
.header__logo {
    height: var(--header-withSearch-height);
    text-align: center;
    width: 20rem;
    -webkit-tap-highlight-color: transparent;

}
.header-logo__link {
    text-decoration: none;
    color: transparent;
    line-height: 0;
    display: block;
    height: var(--header-withSearch-height);
}
.header-logo-link__img {
    height: 100%;
    padding: .8rem;
    cursor: pointer;
}
.header__search {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}
.header-search__searchbar {
    background-color: white;
    display: flex;
    border-radius: .4rem;
}
.header-search-searchbar__input-wrap {
    flex: 1;
    position: relative;
}
.header-search-searchbar__input {
    width: 100%;
    margin: .4rem;
    border: none;
    font-size: 1.5rem;
    line-height: 2;
    outline: none;
    padding: .4rem;
}
.header-search-searchbar__input:focus ~ .header-search-searchbar-input__history {
    display: block;
}
.header-search-searchbar-input__history {
    position: absolute;
    left: 0;
    width: calc(100% - 1.6rem);
    background-color: white;
    top: calc(100% + .4rem);
    box-shadow: var(--box-shadow);
    border-radius: .4rem;
    display: none;
    overflow: hidden;
    z-index: 1;
}
.header-search-searchbar-input-history__heading {
    margin: 1rem 1.2rem;
    font-size: 1.4rem;
    font-weight: 400;
}
.header-search-searchbar-input-history__list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.header-search-searchbar-input-history-list__item {
    height: 3.8rem;
    padding: 0 1.2rem;
    cursor: pointer;
}
.header-search-searchbar-input-history-list__item:hover {
    background-color: #fafafa;
}
.header-search-searchbar-input-history-list__item a {
    text-decoration: none;
    color: #666;
    display: block;
    width: 100%;
    font-size: 1.3rem;
    line-height: 3.8rem;
}
.header-search-searchbar__button {
    margin: .4rem;
    background-color: var(--primary-color);
    color: white;
    padding: 0 2rem;
    font-size: 1.6rem;
}
.header-search__suggest {
    margin: .8rem 0;
}
.header-search-suggest__name {
    text-decoration: none;
    color: white;
    font-size: 1.2rem;
    margin-right: .8rem;
}
.header__cart {
    width: 20rem;
    text-align: center;
    margin: auto;
}
.header__cart-wrap {
    font-size: 2.4rem;
    color: white;
    position: relative;
    display: inline-block;
    padding: 1rem 1.2rem;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    display: none;
}
.header-cart__notice {
    position: absolute;
    top: 0;
    left: calc(100% - 2.2rem);
    padding: .1rem .6rem;
    background-color: white;
    color: var(--secondary-color);
    border-radius: 2rem;
    font-size: 1.3rem;
    border: .2rem solid var(--secondary-color);
}
.header__cart-wrap:hover .header-cart__product {
    display: block;
}
.header-cart__product {
    position: absolute;
    z-index: 1;
    right: -2.2rem;
    top: calc(100% + .8rem);
    background-color: white;
    width: 40rem;
    box-shadow: var(--box-shadow);
    border-radius: .4rem;
    transform-origin: calc(100% - 5rem) -1rem;
    animation: zoomGrowth ease .2s, fadeIn linear .2s;
    cursor: default;
    display: none;
}
.header-cart__product::before {
    content: "";
    position: absolute;
    right: 3.5rem;
    top: -1.8rem;
    border-width: 1rem 1.2rem;
    border-style: solid;
    border-color: transparent transparent white transparent;
}
.header-cart__product::after {
    content: "";
    position: absolute;
    right: 0;
    top: -2rem;
    width: 10.5rem;
    height: 2rem;
    cursor: pointer;
    /* background-color: red; */
}
.header-cart--noCart {
    padding: 1.6rem 0;
}
.header-cart--noCart .header-cart-noCart__img,
.header-cart--noCart .header-cart-noCart__msg {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.header-cart-noCart__img {
    width: 60%;
    margin: 7rem auto;
    display: none;
}

.header-cart-product__heading {
    margin: 0;
    padding: 1rem;
    text-align: start;
    font-size: 1.4rem;
    font-weight: 400;
}
.header-cart-product__list {
    padding: 0;
    margin: 0;
    height: 35vh;
    overflow-y: auto;
}
.header-cart-product-list__item {
    display: flex;
    padding: 1rem;
    cursor: pointer;
}
.header-cart-product-list__item:hover {
    background-color: #eee;
}
.header-cart-product-list-item__img {
    width: 15%;
    height: 100%;
    margin: 0;
    border: .1rem solid #eee;
}
.header-cart-product-list-item__img img {
    width: 100%;
}
.header-cart-product-list-item__info {
    display: flex;
    flex: 1;
    justify-content: space-between;
    text-align: start;
    font-size: 1.4rem;
    align-items: flex-start;
    margin-left: 1rem;
}
.header-cart-product-list-item-info__heading {
    font-weight: 400;
    color: #666;
    margin: 0;
    height: 2rem;
    line-height: 2rem;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
}
.header-cart-product-list-item-info__price {
    font-weight: 400;
    color: var(--primary-color);
    margin: 0;
}
.header-cart-product__footer {
    margin: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.header-cart-product-footer__quantity {
    margin: 0;
    font-size: 1.2rem;
}
.header-cart-product__footer .btn {
    padding: 1rem 2rem;
}
ul.header__sortBar {
    display: none;
    list-style: none;
    box-shadow: var(--product-shadow);
    position: fixed;
    top: var(--header-height);
    right: 0;
    left: 0;
    padding: 0 2rem;
    margin: 0;
    background-color: white;
}
.header-sortBar__item {
    width: 25%;
    height: var(--header-sortBar-height);
}
.header-sortBar__item:not(:first-child) {
    border-left: .1rem solid #dbdbdb;
}
.header-sortBar-item__link {
    color: #666;
    text-decoration: none;
    font-size: 1.4rem;
    line-height: var(--header-sortBar-height);
    text-align: center;
    display: block;
}
.header-sortBar__item--active .header-sortBar-item__link {
    color: var(--primary-color);
    border-bottom: .2rem solid var(--primary-color);

}
/* Container */
.container {
    /* position: relative;
    top: var(--header-height); */
    padding-top: 2.4rem;
    background-color: #f4f4f4;
}
/* Container__Category */
.category {

}
.category__heading {
    font-size: 1.4rem;
    margin: 0;
    border-bottom: .1rem solid #eaeaea;
    padding: 1.6rem 0;
}
.category__heading i {

}
.category-heading__content {
    margin: 0 1rem;
    display: inline-block;
    font-size: 1.6rem;
}
.category__list {
    list-style: none;
    margin: 0;
    padding: 0;
}
.category-list__item  {
    display: flex;
    font-size: .8rem;
}
.category-list-item__link {
    text-decoration: none;
    font-size: 1.4rem;
    color: #666;
    display: block;
    padding: .8rem 1rem;
    position: relative;
    right: 0;
    transition: right linear .1s;
}
.category-list-item__link:hover {
    color: var(--primary-color);
    right: -.4rem;
}
.category-list__item--selected .category-list-item__link {
    color: var(--primary-color);
    font-weight: 600;
}
.category-list__item--selected .category-list-item__link::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    border-width: .5rem;
    border-style: solid;
    border-color: transparent transparent transparent var(--primary-color);
}
/* tabletCategory */
.tabletCategory {
    display: none;
    width: 100%;
    overflow-x: auto;
    padding: 0 1rem;
}
.tabletCategory::-webkit-scrollbar {
    display: none;
}
.tabletCategory__list {
    display: flex;
    list-style: none;
    justify-content: flex-start;
    padding: 0;
}
.tabletCategory-list__item {
    flex-shrink: 0;
}
.tabletCategory-list__item:nth-of-type(3n +1) .tabletCategory-list-item__link {
    background-color: #4ec4aa;
}
.tabletCategory-list__item:nth-of-type(3n +2) .tabletCategory-list-item__link {
    background-color: #4ea3c4;
}
.tabletCategory-list__item:nth-of-type(3n +3) .tabletCategory-list-item__link {
    background-color: #4e77c4;
}
.tabletCategory-list-item__link {
    --line-height: 2rem;
    line-height: var(--line-height);
    height: calc(2 * var(--line-height));
    display: block;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    text-decoration: none;
    font-size: 1.4rem;
    width: 12rem;
    padding: 0 .6rem;
    color: white;
    border-radius: .4rem;
    margin-right: 1rem;
    font-weight: 300;
    text-align: center;
}
/* Container__Product */
/* Container-Product__sortBar */
.product {

}
.product__sortBar {
    background-color: #ededed;
    display: flex;
    padding: .6rem 1.2rem;
    align-items: center;
    align-items: center;
    margin-bottom: 1.6rem;
}
.product-sortBar__desc {
    font-size: 1.4rem;
    margin-right: .4rem;
}
.product-sortBar__btn {
    margin: 0 .4rem;
    padding: 1rem 2rem;
}
.sortPrice {
    width: 20rem;
}
.product-sortBar__page {
    display: flex;
    align-items: center;
    margin-left: auto;
}
.product-sortBar-page__number {
    font-size: 1.5rem;
    color: #333;
    margin-right: 1rem;
}
.product-sortBar-page-number__curPage {
    color: var(--primary-color);
}
.product-sortBar-page-number__allPage {

}
.product-sortBar-page__btn {
    padding: 1rem 1.4rem;
}

/* Container-Product__Main */
.product__main {

}
.product-main__wrap {
    position: relative;
}
.product-main__unit {
    display: block;
    text-decoration: none;
    background-color: white;
    margin-bottom: 2.4rem;
    border-radius: .2rem;
    box-shadow: var(--product-shadow);
    transition: transform ease .1s;
    will-change: transform;
}
.product-main__unit:hover {
    box-shadow: var(--box-shadow);
    transform: translateY(-.1rem);
}
.product-main-unit__img {
    padding-top: 100%;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: top center;
}
.product-main-unit__content {
    padding:  1rem;
}
.product-main-unit-content__title {
    font-size: 1.2rem;
    font-weight: 500;
    line-height: 1.4rem;
    height: 2.8rem;
    margin: 0;
    overflow: hidden;
    display: block;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}
.product-main-unit-content__coupon {
    height: 2rem;
    margin: .8rem 0;
    overflow: hidden;
}
.product-main-unit-content-coupon__wrap {
    display: flex;
    align-items: center;
}
.product-main-unit-content-coupon__wrap span{
    font-size: 1rem;
    padding: 0 .4rem;
}
.coupon__ticket {
    margin-right: .6rem;
    color: white;
    background-color: var(--primary-color);
}
.coupon__discount {
    color: var(--primary-color);
    border: .1rem solid var(--primary-color);

}
.disable--discount .coupon__discount {
    display: none;
}
.disable--ticket .coupon__ticket {
    display: none;
}
.product-main-unit-content__price {
    color: var(--primary-color);
    font-size: 1.6rem;
    font-weight: 400;
    display: flex;
    justify-content: flex-end;
    align-items: baseline;
    flex-wrap: wrap;
}
.priceUnit {
    font-size: 1rem;
    margin-left: .4rem;
}
.priceFrom {
    margin-right: .4rem;
}
.price--disable {
    color: #aaa;
    text-decoration: line-through;
    font-size: 1.3rem;
    margin-right: .4rem;
}
.product-main-unit-content__vote {
    display: flex;
    align-items: center;
    margin: 1.4rem 0;
}
.product-main-unit-content-vote__star{
    color: #dbdbdb;
    font-size: .8rem;
}
.vote-star--enable {
    color: var(--star--enable);
}
.product-main-unit-content-vote__sold {
    color: var(--gray8);
    font-size: 1.3rem;
    font-weight: 300;
    margin: 0 .4rem;
}
.product-main-unit-content-vote__soldQuantity {
    font-size: 1.3rem;
    font-weight: 300;
}
.product-main-unit-content-vote__heart {
    color: var(--gray8);
    margin-left: auto;
    font-size: 1.2rem;
    cursor: pointer;
}
i.heart__icon--fill {
    color: rgb(219, 15, 15);
    display: none;
}
.heart--enable .heart__icon--fill {
    display: inline-block;
}
.heart--enable .heart__icon--empty {
    display: none;
}
.product-main-unit-content__origin {
    font-size: 1rem;
    font-weight: 300;
}
.product-main-unit__ratingShop {

}
.product-main-unit-ratingShop__lable {
    font-size: 1.2rem;
    color: white;
    margin: 0;
}
.ratingShop--favourite {
    position: absolute;
    top: 1rem;
    left: -.6rem;
    padding: .2rem .8rem;
    border-radius: 0 .2rem .2rem 0;
    color: var(--primary-color);
    background-color: currentColor;
}
.ratingShop--favourite::after {
    content: "";
    position: absolute;
    bottom: -.6rem;
    left: 0;
    border-top: .6rem solid currentColor;
    border-left: .6rem solid transparent;
    filter: brightness(60%);
}
.ratingShop--mall {
    position: absolute;
    top: 1rem;
    left: -.6rem;
    padding: .2rem .8rem;
    border-radius: 0 .2rem .2rem 0;
    color: rgb(182, 0, 0);
    background-color: currentColor;
    display: none;
}
.ratingShop--mall::after {
    content: "";
    position: absolute;
    bottom: -.6rem;
    left: 0;
    border-top: .6rem solid currentColor;
    border-left: .6rem solid transparent;
    filter: brightness(60%);
}
.ratingShop--enable-mall .ratingShop--favourite {
    display: none;
}
.ratingShop--enable-mall .ratingShop--mall {
    display: block;
}
.ratingShop--disable .ratingShop--favourite {
    display: none;
}
.ratingShop--disable .ratingShop--mall {
    display: none;
}

.product-main-unit__discount {
    position: absolute;
    right: 0;
    top: 0;
    background-color: rgba(255, 203, 32, 0.85);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 4rem;
    width: 4rem;
    font-size: 1.2rem;
    font-weight: 600;
}
.product-main-unit__discount.discount--disable {
    display: none;
}
.product-main-unit__discount::after {
    content: "";
    position: absolute;
    top: 100%;
    right: 0;
    border-style: solid;
    border-color: transparent rgba(255, 203, 32, 0.85) transparent;
    border-width: 0 2rem .4rem;
}
.product-main-unit-discount__value {
    color: rgb(206, 0, 0);
}
.product-main-unit-discount__lable {
    color: white;
}

.product__pagination{
    margin-top: 4rem;
    margin-bottom: 3rem;
}

/* Footer */
.footer {
    border-top: .3rem solid var(--primary-color);
    background-color: #fafafa;
}
.footer__heading {
    text-transform: uppercase;
    margin: 4rem 0 2rem;
    color: var(--gray8);
    font-size: 1.4rem;
}
.footer__list {
    list-style: none;
    padding: 0;
}

.footer__list--wrap {
    display: flex;
    flex-wrap: wrap;
}
.footer__list--wrap .footer-list__item {
    display: block;
    width: 6rem;
    height: 3rem;
    margin: 0 .8rem .8rem 0;
    background-color: white;
    padding: .4rem;
    margin-bottom: 1rem;
    border-radius: .4rem;
    box-shadow: var(--product-shadow);
}
.footer__list--block .footer-list__item {
    font-size: 1.4rem;
    padding: 1rem 0;
    display: flex;
}
.footer-list__item i {
    font-size: 1.5rem;
    margin-right: .6rem;
}
.footer-list-item__link {
    text-decoration: none;
    color: #777;
    display: block;
    width: 100%;
}
.footer-list__item:hover * {
    /* đấu * là chọn tất cả phần tử con của __item */
    color: var(--primary-color);
}
.footer__list--block:hover i 
.foter-list-item-link__img {
    width: 100%;
}
.footer__copyright {
    border-top: .1rem solid #ddd;
    display: block;
    text-align: center;
    background-image: linear-gradient(90deg, #fafafa, white, #fafafa);
}
.footer-copyright__img {
    margin: 2rem auto 0;
    width: 16rem;
    height: 6rem;
    display: flex;
}
.footer-copyright__img img {
    width: 80%;
    margin: auto;
}
.footer-copyright__text {
    font-size: 1rem;
    line-height: 5rem;
}