.app {
    overflow: hidden;
}

.header {
    /* ko cần xét width vì nó đã inherit từ thẻ div cha */
    height: var(--header-height);
    /* background-image: linear-gradient(direction, color-stop1, color-stop2, ...); 
    vd: driection: to right, 180deg,...)
    */
    background-image: linear-gradient(0, #fe6433, #f53e2d);
}

.header__navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: var(--header-navbar-height);
}

.header__navbar-list {
    list-style-type: none;
    padding-left: 0; /*default là 40px  */
    margin-top: 4px 0 0 0;
}

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

.header__navbar-item,
.header__navbar-item-link {
    display: inline-block; /*2 block sẽ ko nằm cùng 1 hàng*/
    font-size: 1.4rem;
    font-weight: 300;
    text-decoration: none;
    color: var(--white-color);
}

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

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

.header__navbar-item--strong {
    font-weight: 500;
}

.header__navbar-item--separate::after {
    content: "";
    display: block;
    position: absolute;
    border-left: 1px solid #fb9086;
    height: 14px;
    right: -8px;
    top: 50%;
    transform: translateY(-50%);
}

.header__navbar-icon-link {
    text-decoration: none;
    color: #fff;
}

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

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

.header__navbar-item--show-qr:hover .header__qr {
    /* Khi hover vào thang nay thì sẽ tác động lên thg kia */
    display: block;
}

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

.header__navbar-title--no-pointer {
    cursor: text;
    color: var(--white-color);
}

/* Header QR Code */

.header__qr {
    position: absolute;
    left: 0;
    top: 118%;
    width: 186px;
    background-color: var(--white-color);
    border-radius: 3px;
    padding: 8px;
    display: none;
    animation: fadeIn ease-in 0.4s;
    z-index: 1;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

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

.header__qr-img {
    width: 100%;
}

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

.header__qr-link {
}

.header__qr-link:nth-child(1) {
    margin-left: 11px;
}

.header__qr-link:nth-child(2) {
    margin-right: 11px;
}

.header__qr-download-img {
    height: 16px;
}

/* header notification */
.header__notify {
    position: absolute;
    top: 130%;
    right: 0;
    width: 404px;
    background-color: var(--white-color);
    color: #000;
    border: 1px solid #d3d3d3;
    transform-origin: 90% top;
    animation: headerNotifyScale ease-in 0.3s;
    will-change: opacity, transform; /*tối ưu 2 chuyển động 2 thuộc tính opacity&transform*/
    display: none;
    border-radius: 2px;
    z-index: 1;
}

.header__notify::before {
    content: "";
    display: block;
    border-width: 20px 27px;
    border-color: transparent transparent var(--white-color) transparent;
    border-style: solid;
    position: absolute;
    top: -32px;
    right: 14px;
}

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

.header__notify-header {
    height: 40px;
    background-color: var(--white-color);
    cursor: default;
}
.header__notify-header h4 {
    color: #757575;
    font-weight: 400;
    font-size: 1.4rem;
    line-height: 40px;
    margin: 0 12px;
}

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

.header__notify-item {
}

.header__notify-item:hover {
    background-color: #f1f1f1;
}

.header__notify-item--viewed {
    background-color: rgba(238, 75, 43, 0.04);
}

.header__notify-link {
    display: flex;
    padding: 12px;
    background-color: rgba(238, 75, 43, 0.06);
}

.header__notify-img {
    width: 50px;
    object-fit: contain;
}

.header__notify-info {
    padding-left: 8px;
}

.header__notify-name {
    display: block;
    font-size: 1.4rem;
    line-height: 1.6rem;
    color: var(--text-color);
}

.header__notify-description {
    display: block;
    font-size: 1.2rem;
    color: #656565;
    line-height: 1.4rem;
    margin-top: 4px;
}

.header__notify-footer {
    text-align: center;
}
.header__notify-footer-btn {
    display: inline-block;
    padding: 12px 0;
    width: 100%;
    font-size: 1.4rem;
    text-decoration: none;
    color: var(--text-color);
}

/* auth form */
.auth-form {
    width: 500px;
    background-color: var(--white-color);
    overflow: hidden; /*phần nào của thằng con bị vượt ra ngoài thằng cha thì hide nó đi*/
    border-radius: 5px;
}

.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__heading {
    font-size: 2rem;
    font-weight: 400;
}

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

.auth-form__form {
}

.auth-form__input {
    width: 100%;
    height: 40px;
    margin-top: 16px;
    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;
}

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

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

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

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

.auth-form__socials {
    background-color: #e6e3e3;
    padding: 14px 32px;
    display: flex;
    justify-content: space-between;
    /* align-items: center; */
    margin-top: 22px;
}

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

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

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

.auth-form__socials-title {
    padding: 0 28px;
}

.auth-form__socials-google {
    background-color: var(--white-color);
    color: #fe6433;
}

.auth-form__socials-google .auth-form__socials-icon {
    color: #f53e2d;
}

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

.auth-form__help-link {
    text-decoration: none;
    font-size: 1.2rem;
    color: #939393;
}

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

.auth-form__help-separate {
    border-left: solid 1px #eaeaea;
    margin: 0 16px;
    height: 22px;
}

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

.header__logo-link {
    width: 200px;
    display: block;
}

.header__logo-icon {
    width: 150px;
}

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

.header__mobile-search {
    display: none;
}

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

.header__cart {
    width: 150px;
    margin: 0 10px;
    text-align: center;
    position: relative;
}

.header__cart-list::after {
    content: "";
    position: absolute;
    top: -12px;
    right: 9px;
    width: 0;
    height: 0;
    border-left: 23px solid transparent;
    border-right: 23px solid transparent;
    border-bottom: 20px solid #fff;
}

.header__cart-icon {
    font-size: 2.6rem;
    color: var(--white-color);
    margin-top: 10px;
}

.header__cart-number-badge {
    content: "";
    display: block;
    background-color: var(--white-color);
    padding: 0 6px;
    position: absolute;
    right: 0;
    top: 0;
    line-height: 1.2;
    border-radius: 12px;
    border: 2px solid #f53e2d;
    color: var(--primary-color);
    font-weight: 500;
    font-size: 1.2rem;
}

.header__cart-icon-wrap {
    display: inline-block;
    /* z-index: 2; */
    position: relative;
    -webkit-tap-highlight-color: transparent; /* for removing the highlight */
}

.header__cart-icon-wrap:hover {
    cursor: pointer;
}

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

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

.header__cart-icon-with-badge {
    /* width: 100%; */
    display: inline-block;
    /* position: relative; */
    padding: 0 12px;
}

.header__cart-list-empty {
    width: 400px;
    position: absolute;
    top: calc(100% + 12px);
    right: -10px;
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);
    background-color: var(--white-color);
    border-radius: 3px;
    transform-origin: 90% top; /*quan trong*/
    animation: headerNotifyScale ease-in 0.3s;
    will-change: opacity, transform;
    display: none;
}

.header__cart-list-empty::before {
    content: "";
    display: block;
    width: 0;
    height: 0;
    border-left: 23px solid transparent;
    border-right: 23px solid transparent;
    border-bottom: 20px solid #fff;
    position: absolute;
    top: -11px;
    right: 11px;
}

.header__cart-img-empty {
    width: 40%;
    display: block;
    margin: auto; /*You can center a block-level element by giving it margin-left and margin-right of auto*/
    padding: 20px 0 10px;
}

.header__cart-empty-text {
    font-size: 1.4rem;
    color: var(--text-color);
    margin-bottom: 60px;
    display: block;
}

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

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

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

.header__search-select {
    border-left: 1px solid #e8e8e8;
    display: flex;
    align-items: center;
    height: 26px;
    position: relative;
    cursor: pointer;
}

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

.header__search-label {
    font-size: 1.4rem;
    color: var(--text-color);
    margin-left: 16px;
}

.header__search-icon {
    font-size: 1.6rem;
    color: rgb(165, 164, 164);
    margin: 0 8px;
}

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

.header__search-btn:hover {
    opacity: 0.9;
    cursor: pointer;
}

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

.header__search-select-option {
    position: absolute;
    top: 124%;
    right: 0;
    background-color: var(--white-color);
    color: var(--text-color);
    margin: 3px 0 0;
    width: 110%;
    font-size: 1.4rem;
    padding-left: 0;
    list-style-type: none;
    box-shadow: 0 1px 2px rgb(216, 216, 216);
    border-radius: 3px;
    display: none;
    z-index: 1;
}

.header__search-select-option::before {
    content: "";
    display: block;
    height: 24px;
    width: 100%;
    position: absolute;
    top: -15px;
    left: 0;
}

.header__search-select-item {
    padding: 10px;
    display: flex;
    justify-content: space-between;
    border-radius: 3px;
}

.header__search-select-item:hover {
    background-color: #f4f4f4;
}

.header__search-option-icon {
    margin-left: 6px;
    color: #555;
}

/* header search history */
.header__search-history {
    background-color: var(--white-color);
    box-shadow: 0 1px 2px rgb(216, 216, 216);
    border-radius: 3px;
    width: calc(100% - 12px);
    position: absolute;
    top: 110%;
    left: 0;
    display: none;
    z-index: 1;
}

.header__search-history-title {
    font-size: 1.4rem;
    font-weight: normal;
    color: #757575;
    padding: 10px;
    margin: 0;
}

.header__search-history-list {
    font-size: 1.4rem;
    list-style-type: none;
    padding-left: 0;
    width: 100%;
    margin: 0;
}

.header__search-history-item a {
    padding: 0 10px;
    display: flex;
    align-items: center;
    max-height: 34px;
    overflow: hidden;
    /* text-overflow: ellipsis;
    white-space: nowrap; */
    line-height: 34px;
    display: -webkit-box;
    -webkit-box-orient: vertical; /*orient: định hướng*/
    -webkit-line-clamp: 1; /*dòng 1*/
    color: var(--text-color);
    text-decoration: none;
}

.header__search-history-item a:hover {
    cursor: pointer;
    background-color: #fafafa;
}

/* header cart list show */
.header__cart-list {
    width: 400px;
    background-color: var(--white-color);
    position: absolute;
    top: calc(100% + 10px);
    right: -8px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    border-radius: 3px;
    cursor: default;
    display: none;
    transform-origin: 90% top;
    animation: headerNotifyScale ease-in 0.2s;
    z-index: 1;
}

.header__cart-list-item-wrap {
    /* max-height: 300px; */
    overflow: auto;
    max-height: 46vh; /*56% height*/
}

.header__cart-list-title {
    margin: 0;
    font-size: 1.4rem;
    text-align: left;
    padding: 12px 0 12px 12px;
    font-weight: normal;
    color: #757575;
    cursor: text;
}

.header__cart-list-item {
    display: flex;
    padding: 12px;
    align-items: center;
    /* width: 40px; */
}

.header__cart-list-item:hover {
    background-color: rgba(0, 0, 0, 0.03);
}

.header__cart-item-img {
    width: 40px;
    object-fit: contain;
    margin-right: 8px;
    border: 1px solid #f0f0f0;
}

.header__cart-item-content {
    flex: 1;
}

.header__cart-item-head {
    display: flex;
    align-items: center;
    /* justify-content: space-between; */
    margin-bottom: 4px;
}

.header__cart-item-name {
    font-size: 1.4rem;
    font-weight: normal;
    margin: 0;
    text-align: left;
    flex: 1;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical; /*orient: định hướng*/
    -webkit-line-clamp: 1; /*dòng 2*/
}

.header__cart-item-price-wrap {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-left: 30px;
}

.header__cart-item-price {
}

.header__cart-item-multiply {
}

.header__cart-item-qty {
}

.header__cart-item-body {
    display: flex;
    align-items: center;
}

.header__cart-item-description {
    font-size: 1.2rem;
    color: var(--text-color);
}

.header__cart-item-remove {
    font-size: 1.4rem;
    color: rgb(69, 69, 69);
    cursor: pointer;
    margin-left: auto;
}

/* 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;
    margin: 0;
    padding-left: 0;
    border-top: 1px solid #e5e5e5;
    border-bottom: 1px solid #e5e5e5;
    display: none;
}

.header__sort-item {
    flex: 1;
}

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

.header__sort-link::after {
    content: "";
    position: absolute;
    height: 60%;
    top: 50%; /*50% của thằng chứa nó*/
    transform: translateY(-50%); /*50% của chính nó*/
    left: 0;
    border-left: 1px solid #e5e5e5;
}

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

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

/* nav category left*/

.app__container {
    background-color: #f5f5f5;
}

.category {
    background-color: var(--white-color);
    border-radius: 2px;
}

.category__heading {
    padding: 10px 12px;
    display: flex;
    align-items: center;
    color: var(--text-color);
    border-bottom: 1px solid #e6e6e6;
}

.category__heading-title {
    font-size: 1.7rem;
    margin: 0;
}

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

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

.category-item {
}

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

.category-item--active .category-item__link::before {
    content: "";
    position: absolute;
    /* border-color: red black blue gray; */
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
    border-left: 4px solid var(--primary-color);
    top: 50%;
    transform: translateY(-50%);
    left: 3px;
}

.category-item__link {
    position: relative;
    text-decoration: none;
    color: var(--text-color);
    display: block;
    padding: 10px 10px 10px 12px;
    font-size: 1.5rem;
    transition: right linear 0.1s; /* định nghĩa 1 chuyển động sang phải*/
    right: 0;
    line-height: 1.4;
}

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

/* Home sort filter */
.home-filter {
    display: flex;
    align-items: center;
    background-color: #ededed;
    padding: 12px 20px;
    border-radius: 3px;
}

.home-filter__lable {
    font-size: 1.4rem;
    margin-right: 12px;
}

.home-filter__page {
    display: flex;
    align-items: center;
    font-size: 1.4rem;
    margin-left: auto; /*đẩy sang phải*/
}

.home-filter__btn {
    min-width: 90px;
    margin: 0 5px;
}

.home-filter__page-num {
    color: var(--text-color);
    padding-right: 20px;
}

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

.home-filter__page-control {
    border-radius: 3px;
    overflow: hidden;
    display: flex;
}

.home-filter__page-btn {
    text-decoration: none;
    color: var(--text-color);
    background-color: #fff;
    width: 36px;
    height: 36px;
    display: flex;
}

.home-filter__page-btn--dissable {
    cursor: default;
    background-color: #f9f9f9;
}

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

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

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

/* Mobile category nav */
.mobile-category {
    display: none;
}

.mobile-category__list {
    display: flex;
    padding-left: 0;
    min-width: 100%;
    overflow-x: auto;
}

.mobile-category__list::-webkit-scrollbar {
    display: none;
}

.mobile-category__item {
    list-style: none;
    flex-shrink: 0; /*ko để bị co lại*/
    margin-right: 10px;
}

.mobile-category__item:nth-of-type(3n -2) .mobile-category__link {
    background-color: #87afd8;
}

.mobile-category__item:nth-of-type(3n -1) .mobile-category__link {
    background-color: #76c9bd;
}

.mobile-category__item:nth-of-type(3n) .mobile-category__link {
    background-color: #88cf81;
}

.mobile-category__link {
    --line-height: 2rem;
    text-decoration: none;
    color: var(--white-color);
    font-size: 1.4rem;
    text-align: center;
    width: 110px;
    height: calc(var(--line-height) * 2);
    line-height: var(--line-height);
    border-radius: 5px;
    font-weight: 300;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    user-select: none;
    -webkit-user-select: none;
    -webkit-tap-highlight-color: transparent; /* for removing the highlight */
    padding: 0 6px;
}

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

.home-product-item {
    display: block;
    text-decoration: none;
    margin-top: 10px;
    position: relative;
    background-color: var(--white-color);
    border-bottom-right-radius: 2px;
    border-bottom-left-radius: 2px;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.1);
    animation: transform linear 1px;
    will-change: transform;
}

.home-product-item:hover {
    cursor: pointer;
    transform: translateY(-1px);
    box-shadow: 0 1px 20px 0 rgba(0, 0, 0, 0.05);
}

.home-product-item__img {
    padding-top: 100%; /*xét width*/
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center; /*luôn lấy trọng tâm của ảnh*/
}

.home-product-item__body {
    padding: 10px;
    /* background-color: var(--white-color); */
}

.home-product-item__name {
    width: 100%;
    font-size: 1.2rem;
    font-weight: normal;
    color: var(--text-color);
    line-height: 1.6rem;
    height: 3.2rem;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical; /*orient: định hướng*/
    -webkit-line-clamp: 2; /*dòng 2*/
    margin: 2px 0 8px;
}

.home-product-item__price {
    display: flex;
    /* justify-content: space-around; */
    font-weight: 500;
    align-items: baseline;
    flex-wrap: wrap;
    margin: 22px 0 8px;
}

.home-product-item__price-old {
    color: rgba(0, 0, 0, 0.67);
    text-decoration: line-through;
    margin-right: 4px;
    font-size: 1.2rem;
}

.home-product-item__price-new {
    color: var(--primary-color);
    font-size: 1.4rem;
}

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

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

.home-product-item__rating {
    font-size: 1rem;
    transform: scale(0.85);
    transform-origin: right; /*đẩy tâm về bên phải*/
    color: #d5d5d5;
    margin: -1px 0 0 auto;
}

.home-product-item__sold {
    margin-left: 8px;
    color: var(--text-color);
}

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

.home-product-item__origin {
    display: flex;
    justify-content: space-between;
    color: #595959;
}

.home-product-item__brand {
    font-size: 1.2rem;
}

.home-product-item__store-place {
    font-size: 1.2rem;
}

.home-product-item__like-icon-empty {
}

i.home-product-item__like-icon-full {
    /* độ ưu tiên cao hơn */
    color: red;
    display: none;
}

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

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

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

.home-product-item__favourite::before {
    content: "";
    display: inline-block;
    border-top: 3px solid currentColor;
    filter: brightness(60%);
    border-left: 3px solid transparent;
    position: absolute;
    left: 0;
    bottom: -3px;
}

.home-product-item__favourite i {
    font-size: 0.9rem;
    margin: 0 2px 0 5px;
    color: var(--white-color);
}

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

.home-product-item__sale-off {
    position: absolute;
    top: 0;
    right: 0;
    height: 36px;
    width: 36px;
    background-color: #ffd839;
    text-align: center;
}

.home-product-item__sale-off::after {
    position: absolute;
    top: 100%;
    left: 0;
    content: "";
    display: block;
    border-left: 18px solid #ffd839;
    border-right: 18px solid #ffd839;
    border-bottom: 4px solid transparent;
}

.home-product-item__sale-off-percent {
    font-size: 1.2rem;
    font-weight: 400;
    color: #ee4d2d;
}
.home-product-item__sale-off-label {
    font-size: 1.2rem;
    color: var(--white-color);
    text-transform: uppercase;
    font-weight: 500;
}

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

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

.footer-list {
    list-style: none;
    padding-left: 0;
    font-size: 1.2rem;
}

.footer-item__link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #696969;
    padding-top: 14px;
}

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

.footer-item__icon {
    font-size: 1.4rem;
    margin-right: 6px;
}

.footer__download {
    display: flex;
}

.footer__download-qr {
    width: 80px;
    height: 80px;
    border: 1px solid var(--border-color);
    margin-right: 10px;
}

.footer__download-app-img {
    height: 20px;
}

.footer__download-app-link {
    text-decoration: none;
}

.footer__download-apps {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.footer__bottom {
    background-color: #f5f5f5;
}

.footer__text {
    padding: 16px 0;
    text-align: center;
    font-size: 1.4rem;
    color: var(--text-color);
}
