.header {
    transition: all 0.3s;
}

.floating-banner {
    position: fixed;
    top: 118px;
    display: none;
    z-index: 92;
    width: 180px;
    border-radius: 8px;
    transition: all 0.3s;
    overflow: hidden;
    box-shadow: 0 1px 2px 0 rgba(60, 64, 67, 0.1), 0 2px 6px 2px rgba(60, 64, 67, 0.15);
}

.floating-banner:first-child {
    left: calc(50% - 944px);
}

.floating-banner:last-child {
    right: calc(50% - 944px);
}

@media only screen and (min-width: 2560px) {
    .floating-banner {
        display: block;
    }

    .floating-banner:first-child {
        left: calc(50% - 1030px);
    }

    .floating-banner:last-child {
        right: calc(50% - 1030px);
    }

    .floating-banner {
        width: 254px;
    }

    .floating-banner img {
        width: 100%;
    }
}

@media only screen and (min-width: 2195px) {
    .floating-banner {
        display: block;
    }

    .floating-banner:first-child {
        left: calc(50% - 1005px);
    }

    .floating-banner:last-child {
        right: calc(50% - 1005px);
    }

    .floating-banner {
        width: 232px;
    }
}

@media only screen and (min-width: 1650px) {
    .floating-banner {
        display: block;
    }

    .floating-banner img {
        width: 100%;
    }

    .container {
        max-width: 1527px;
    }


    .style-type {
        width: 110px;
    }

    .timkiem {
        width: 367px;
    }

    .head_search {
        width: 600px;
    }

    .menu-danh-muc .sub-mega-menu li a {
        padding: 10px 10px 10px 20px;
        font-size: 16px;
    }

    .menu-danh-muc li>a {
        font-size: 15px;
        padding: 10px 20px;
    }

    .menu-danh-muc li a i {
        margin-left: 6px;
    }

    .menu-chinh li a {
        font-size: 15px;
        padding: 10px 20px;
    }

    .menu-chinh .box-red-li a {
        /* display: flex;
    align-items: center; */
    }

    .menu-chinh .box-red-li a i {
        margin-left: 5px;
    }

    .sub-mega-menu li a {
        padding-left: 37px !important;
        font-size: 16px;
    }

    .banner-home-bot {
        width: 1205px;
        float: right;
    }

    .banner-home-right {
        width: 1205px;
        float: right;
    }

    .home-banner-right {
        width: 301px;
        float: right;
    }

    .home-slider-right {
        width: 898px;
        height: 408px;
    }

    .sub-mega-menu {
        width: 292px;
        height: 618px;
    }
}



@media screen and (min-width: 1440px) {
    .header-wrapper {
        min-height: 170px;
    }
}

@media screen and (min-width: 1024px) {
    .header-wrapper {
        min-height: 143px;
    }
}

/* .sub-mega-menu li a {
    padding-left: 22px !important;
    font-size: 16px;
} */


.sale {
    margin-top: 30px;
}

.sale-header__img {
    width: 100%;
    position: relative;
    padding-top: 17%;
    overflow: hidden;
}

.sale-header__img>img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.sale-header__time {
    display: inline-flex;
    margin-top: 14px;
}

.sale-header__quantity {
    margin-top: 10px;
    color: #fff;
    width: 100%;
    text-align: center;
    padding: 5px 10px;
    border-radius: 12px;
    background: linear-gradient(to right, #243a76, #ed1b24);
}

.sale-header__counter {
    font-size: 13px;
    display: inline-flex;
}

.sale-header__dot,
.sale-header__number {
    margin-left: 2px;
}

.sale-slide {
    margin-top: 20px;
    padding: 14px 10px;
    border-radius: 10px;
    background-repeat: no-repeat;
    background-size: cover;
}

@media only screen and (max-width: 1601px) {
    .sale-slide {
        padding: 6px 10px;
    }
}


.sale-btn {
    position: relative;
    color: #d80a0a;
    display: flex;
    text-align: center;
    font-size: 17px;
    font-weight: 600;
    width: max-content;
    padding: 13px 32px;
    margin: 30px auto 0;
    border: 0.8px solid rgba(216, 10, 10, 0.2);
    -webkit-transform: translate(0%, 0%);
    transform: translate(0%, 0%);
    transition: all 0.3s;
    overflow: hidden;
    text-transform: uppercase;
    text-decoration: none;
}

.sale-btn::before {
    content: "";
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background-color: #d80a0a;
    opacity: 0;
    -webkit-transition: 0.2s opacity ease-in-out;
    transition: 0.2s opacity ease-in-out;
}

.sale-btn:hover {
    background-color: #d80a0a;
    color: #fff;
}

.sale-btn span {
    position: absolute;
}

.sale-btn span:nth-child(1) {
    top: 0px;
    left: 0px;
    width: 100%;
    height: 2px;
    background: -webkit-gradient(linear, right top, left top, from(rgba(8, 20, 43, 0)), to(#d80a0a));
    background: linear-gradient(to left, rgba(8, 20, 43, 0), #d80a0a);
    -webkit-animation: 2s animateTop linear infinite;
    animation: 2s animateTop linear infinite;
}

.sale-btn span:nth-child(2) {
    top: 0px;
    right: 0px;
    height: 100%;
    width: 2px;
    background: -webkit-gradient(linear, left bottom, left top, from(rgba(8, 20, 43, 0)), to(#d80a0a));
    background: linear-gradient(to top, rgba(8, 20, 43, 0), #d80a0a);
    -webkit-animation: 2s animateRight linear -1s infinite;
    animation: 2s animateRight linear -1s infinite;
}

.sale-btn span:nth-child(3) {
    bottom: 0px;
    left: 0px;
    width: 100%;
    height: 2px;
    background: -webkit-gradient(linear, left top, right top, from(rgba(8, 20, 43, 0)), to(#d80a0a));
    background: linear-gradient(to right, rgba(8, 20, 43, 0), #d80a0a);
    -webkit-animation: 2s animateBottom linear infinite;
    animation: 2s animateBottom linear infinite;
}

.sale-btn span:nth-child(4) {
    top: 0px;
    left: 0px;
    height: 100%;
    width: 2px;
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(8, 20, 43, 0)), to(#d80a0a));
    background: linear-gradient(to bottom, rgba(8, 20, 43, 0), #d80a0a);
    -webkit-animation: 2s animateLeft linear -1s infinite;
    animation: 2s animateLeft linear -1s infinite;
}


.home-slider-right {
    overflow: hidden;
    border-radius: 15px;
}

.product-item {
    overflow: hidden;
    margin: 10px 8px;
    border-radius: 15px;
    background-color: #fff;
    box-shadow: 0 1px 2px 0 rgba(60, 64, 67, 0.1), 0 2px 6px 2px rgba(60, 64, 67, 0.15);
}

.product-item__cover {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.product-item__img {
    position: relative;
    z-index: 10;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    padding-top: 100%;
    overflow: hidden;
}

.product-item__img>img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-item__img>img {
    object-fit: contain;
}

.product-item__img.special {
    width: 80%;
    padding-top: 80%;
    margin: 0 auto;
}

@media only screen and (max-width: 1601px) {
    .product-item__img.special {
        width: 88%;
        padding-top: 88%;
    }
}

@media screen and (max-width: 768px) {
    .product-item {
        margin: 10px 5px;
    }
}

.product-item__star {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    justify-content: center;
    align-items: center;
}

.product-item__star i {
    font-size: 13px;
    color: #c2c2c2;
}

@media only screen and (max-width: 1601px) {
    .product-item__star i {
        font-size: 12px;
    }
}

.product-item__star i+i {
    margin-left: 1px;
}

.product-item__star i.gold {
    color: #ffc72d;
}

.product-item__info {
    padding: 15px 15px;
}

@media only screen and (max-width: 1601px) {
    .product-item__info {
        padding: 12px 14px;
    }
}

.product-item__code {
    font-size: 12px;
    padding: 4px 6px;
    border-radius: 5px;
    background-color: #f1f1f1;
}

@media only screen and (max-width: 1601px) {
    .product-item__code {
        font-size: 10px;
    }
}

.product-item__title {
    font-weight: 600;
    text-transform: uppercase;
    margin-top: 10px;
    font-size: 12px;
    min-height: 36px;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-item__title a {
    color: #333;
}

.product-item__old {
    margin-top: 5px;
    min-height: 18px;
}

.product-item__price {
    font-size: 15px;
    font-family: "Helvetica", Arial, sans-serif;
    color: #666;
    text-decoration: line-through;
}

.product-item__discount {
    color: #d80a0a;
    margin-left: 6px;
}

.product-item__money {
    margin-top: 6px;
    font-size: 21px;
    font-weight: 600;
    color: #000;
    font-family: "Helvetica", Arial, sans-serif;
}

.product-item__success,
.product-item__contact {
    font-size: 15px;
    font-weight: 400;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
}

@media only screen and (max-width: 1601px) {

    .product-item__success,
    .product-item__contact {
        font-size: 14px;
    }
}

.product-item__success i,
.product-item__contact i {
    margin-right: 6px;
}

.product-item__activity {
    min-height: 32px;
    margin-top: 6px;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.product-item__activity:hover {
    color: #0074da;
}

.product-item__cart {
    width: 32px;
    height: 32px;
    cursor: pointer;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background-color: #d80a0a;
}

.product-item__cart>svg {
    margin-right: 2px;
}

.product-item__success {
    color: #2cc067;
}

.product-item__success i {
    font-size: 18px;
}

.product-item__contact {
    font-weight: 600;
    color: #0074da;
}

.product-item__contact i {
    font-size: 14px;
}

@media only screen and (max-width: 1601px) {
    .product-item__contact i {
        font-size: 13px;
    }
}

.product-item__data {
    display: none;
}

.selling-slide {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.selling-slide__item {
    box-shadow: none;
    margin: 0;
}

.selling-slide__info {
    padding: 15px 16px;
}

@media only screen and (max-width: 1601px) {
    .selling-slide__info {
        padding: 10px 14px 14px;
    }
}

.selling-slide__title {
    font-size: 24px;
    font-weight: 300;
    color: #d80a0a;
    text-align: center;
    line-height: 1.4;
}

@media only screen and (max-width: 1601px) {
    .selling-slide__title {
        font-size: 20px;
    }
}

.selling-slide__title>span {
    display: block;
}

.selling-slide__star i {
    font-size: 16px;
    color: #c2c2c2;
}

.selling-slide__star i+i {
    margin-left: 1px;
}

.selling-slide__star i.gold {
    color: #ffc72d;
}

.selling-slide__detail {
    margin: 10px 9px;
    margin-top: 12px;
    border-radius: 15px;
    box-shadow: 0 1px 2px 0 rgba(60, 64, 67, 0.1), 0 2px 6px 2px rgba(60, 64, 67, 0.15);
}

.selling-slide__btn::after {
    display: none;
}

.selling-slide__btn i {
    color: #d6d6d6;
    font-size: 40px;
}

@media only screen and (max-width: 1601px) {
    .selling-slide__btn i {
        font-size: 30px;
    }
}

.selling-slide__btn i:hover {
    color: #d80a0a;
}

.selling-slide__link {
    font-weight: 600;
    width: 90%;
    text-align: center;
    margin: 20px auto 0;
    padding: 11px 20px;
    text-align: center;
    line-height: 1.4;
    color: #fff;
    text-transform: uppercase;
    background-color: #d80a0a;
    box-shadow: 0 1px 2px 0 rgba(60, 64, 67, 0.1), 0 2px 6px 2px rgba(60, 64, 67, 0.15);
    border-radius: 3px;
}

.selling-slide__link:hover {
    color: #fff;
}


.global-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 99;
    width: 100%;
    background-color: #fff;
    display: none;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px 20px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.global-nav__item {
    color: #3f3f3f;
    padding: 9px 10px;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    border: 0;
    background-color: transparent;
}

.global-nav__item.active {
    color: #d80a0a;
}

.global-nav__item i {
    font-size: 16px;
}

.global-nav__text {
    margin-top: 6px;
    margin-bottom: 0;
    font-size: 12px;
    line-height: 1.2;
}

.global-contact {
    position: fixed;
    right: 6px;
    top: 69%;
    z-index: 999;
}

@media screen and (max-width: 768px) {

    .header-mobile__build {
        display: flex !important;
        align-items: center;
        margin-right: 14px !important;
    }

    .header-mobile__build .header-mobile__text {
        max-width: 50px;
        margin-left: 8px;
    }

    .header-mobile__buy {
        margin-right: 12px !important;
    }

    .header-menu-mobile .header-mobile-logo {
        margin-left: 0;
    }

    .header-mobile-cart a {
        margin-top: 0;
    }

    .header-mobile__text {
        font-size: 11px;
        margin-top: 4px;
    }

    .header-mobile__buy {
        display: flex !important;
        align-items: center;
        justify-content: center;
        flex-direction: column;
    }

    .footer-info {
        padding-bottom: 55px;
    }

    .sale {
        margin-top: 17px;
    }
}

@media only screen and (max-width: 46.1875em) {
    .global-contact {
        right: 6px;
        top: 64%;
    }

    .global-nav {
        display: grid;
    }

}

.global-contact__item {
    --sizeItem: 42px;
    width: var(--sizeItem);
    height: var(--sizeItem);
    border-radius: 50%;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 0;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
}

.global-contact__item.to-top {
    display: none;
}

.global-contact__item+.global-contact__item {
    margin-top: 6px;
}

.global-contact__item img {
    width: 26px;
    height: 26px;
}

.global-contact__item i {
    color: #fff;
    font-size: 18px;
}



@media only screen and (max-width: 430px) {
    .sale-slide {
        padding: 0px 3px;
    }

    .selling-slide__info {
        padding: 7px 9px 12px;
    }

    .product-item__discount {
        font-size: 10px;
    }

    .product-item__success {
        font-size: 12px;
    }

    .product-item__money {
        line-height: 1.2;
    }

    .product-item__cart {
        width: 30px;
        height: 30px;
    }

    .sale-btn {
        font-size: 14px;
        padding: 11px 28px;
    }

    .pkcp-parent-container {
        display: none;
    }
}


@-webkit-keyframes animateTop {
    0% {
        -webkit-transform: translateX(100%);
        transform: translateX(100%);
    }

    100% {
        -webkit-transform: translateX(-100%);
        transform: translateX(-100%);
    }
}

@keyframes animateTop {
    0% {
        -webkit-transform: translateX(100%);
        transform: translateX(100%);
    }

    100% {
        -webkit-transform: translateX(-100%);
        transform: translateX(-100%);
    }
}


@-webkit-keyframes animateRight {
    0% {
        -webkit-transform: translateY(100%);
        transform: translateY(100%);
    }

    100% {
        -webkit-transform: translateY(-100%);
        transform: translateY(-100%);
    }
}

@keyframes animateRight {
    0% {
        -webkit-transform: translateY(100%);
        transform: translateY(100%);
    }

    100% {
        -webkit-transform: translateY(-100%);
        transform: translateY(-100%);
    }
}

@-webkit-keyframes animateBottom {
    0% {
        -webkit-transform: translateX(-100%);
        transform: translateX(-100%);
    }

    100% {
        -webkit-transform: translateX(100%);
        transform: translateX(100%);
    }
}

@keyframes animateBottom {
    0% {
        -webkit-transform: translateX(-100%);
        transform: translateX(-100%);
    }

    100% {
        -webkit-transform: translateX(100%);
        transform: translateX(100%);
    }
}

@-webkit-keyframes animateLeft {
    0% {
        -webkit-transform: translateY(-100%);
        transform: translateY(-100%);
    }

    100% {
        -webkit-transform: translateY(100%);
        transform: translateY(100%);
    }
}

@keyframes animateLeft {
    0% {
        -webkit-transform: translateY(-100%);
        transform: translateY(-100%);
    }

    100% {
        -webkit-transform: translateY(100%);
        transform: translateY(100%);
    }
}