
:root {
    --scrollbar-width: 10px;
    --foooter-bgcolor: #f5f3ed;
    --body-text-color: #1d1d1d;
    --a-text-hover: #046e82;
    --border-color: #dddddd;
    --primary-color: #f04f36;
    --primary-color-hover: #f2614a;
    --header-spacing: 1.2rem;
}

html {
    scrollbar-width: thin;
    scrollbar-color: #c7c7c7 #f1f1f1;
}

.page-header {
    margin: 0;
    border: none;
    position: sticky;
    top: 0;
    z-index: 99;
    background: #FFFFFF;
    box-shadow: 0 2px 4px #80808040;
}

.page-main {
    margin: 0;
    padding: 0;
    max-width: unset;
    width: unset;
}

.container {
    margin: 0 16px;
}
@media only screen and (min-width: 752px) and (max-width: 767px) {
    .container {
        max-width: calc(720px - var(--scrollbar-width));
        width: 100% !important;
        margin: 0 auto;
    }
}
@media only screen and (min-width: 768px) {
    .container {
        margin: 0 24px;
    }
}
@media only screen and (min-width: 912px) and (max-width: 1023px) {
    .container {
        max-width: calc(864px - var(--scrollbar-width));
        width: 100% !important;
        margin: 0 auto;
    }
}
@media only screen and (min-width: 1024px) {
    .container {
        margin: 0 80px;
    }
}
@media only screen and (min-width: 1440px) {
    .container {
        max-width: calc(1280px - var(--scrollbar-width));
        width: 100%;
        margin: 0 auto;
    }
}

.warning.container {
    display: flex;
    font-weight: 700;
    font-size: 1.3rem;
    justify-content: center;
    text-align: center;
    padding: var(--header-spacing) 0 0 0;
}
/* header */
.nav-toggle {
    position: unset;
}
.menu-nav-section {
    display: none;
}
@media only screen and (min-width: 768px) {
    .nav-toggle {
        display: unset;
    }
}
@media only screen and (min-width: 1024px) {
    .menu-nav-section {
        display: block;
    }
    .nav-toggle,
    .nav-sections
    {
        display: none;
    }
}
@media only screen and (max-width: 1024px) {
    .nav-sections {
        -webkit-overflow-scrolling: touch;
        -webkit-transition: left 0.3s;
        -moz-transition: left 0.3s;
        -ms-transition: left 0.3s;
        transition: left 0.3s;
        height: 100%;
        left: calc(-1 * (100% - 54px));
        overflow: auto;
        position: fixed;
        top: 0;
        width: calc(100% - 54px);
    }
}
.page-header .header {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: var(--header-spacing);
    padding: var(--header-spacing) 0;
}
.page-header .header .free {
    display: flex;
    justify-content: center;
    width: 100%;
    font-weight: 700;
    font-size: 1.3rem;
}
.page-header .header .menu-logo {
    display: flex;
    align-items: center;
    gap: var(--header-spacing);
}
.page-header .header > .actions {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: var(--header-spacing);
}
.page-header .header .actions .account {
    display: flex;
    align-items: center;
    gap: 6px;
}
.page-header .header .actions .account .avatar {
    display: block;
    background: url("../images/icon/avatar.svg") no-repeat;
    width: 24px;
    height: 24px;
}
.page-header .header .actions .account .avatar:hover {
    background: url("../images/icon/avatar-hover.svg") no-repeat;
}
.page-header .header .actions .account span.links {
    display: flex;
    flex-direction: column;
}
.page-header .header .actions .account span.links a {
    text-decoration: none;
    color: var(--body-text-color);
    font-size: 1.3rem;
}
.page-header .header .actions .account span.links a.center {
    font-weight: 700;
    font-size: 1.4rem;
}
.page-header .header .actions .account span.links a:hover {
    color: var(--a-text-hover);
}
.page-header .header .actions .wishlist a {
    display: block;
    background: url("../images/icon/wishlist.svg") no-repeat;
    width: 24px;
    height: 24px;
}
.page-header .header .actions .wishlist a:hover {
    background: url("../images/icon/wishlist-hover.svg") no-repeat;
}
.search-mini {
    width: 100%;
}
.search-mini form {
    display: flex;
}
.search-mini form > .field {
    position: relative;
    width: 100%;
}
.search-mini form > .field > .label {
    position: absolute;
    color: #949494;
    width: 100%;
    line-height: 4.6rem;
    cursor: pointer;
    font-size: 1.2rem;
    padding: 0 1.2rem;
    box-sizing: border-box;
    transition: all 0.2s ease-out;
}
.search-mini form > .field.focus > .label {
    line-height: 2.8rem;
}
.search-mini form > .field > input {
    height: 4.8rem;
    padding: 0 1.2rem;
    border-radius: 3px 0 0 3px;
    border: 1px solid var(--border-color);
    width: 100%;
    box-sizing: border-box;
    box-shadow: 0 3px 8px #0000001a;
}
.search-mini form > .field.focus > input {
    padding-top: 1.8rem;
    line-height: 2rem;
}
.search-mini form > .field > input:focus {
    border-color: var(--primary-color);
}
.search-mini form > .actions button {
    border: 1px solid var(--primary-color);
    background: var(--primary-color);
    height: 4.8rem;
    border-radius: 0 3px 3px 0;
}
.search-mini form > .actions button:hover {
    border: 1px solid var(--primary-color-hover);
    background: var(--primary-color-hover);
}
.search-mini form > .actions button span:before {
    display: inline-block;
    content: '';
    background: url("../images/icon/search.svg") no-repeat;
    width: 20px;
    height: 20px;
}

/* nav */
.nav-open .nav-sections {
    background: #FFFFFF;
}
.nav-open .nav-sections .navigation {
    background: #FFFFFF;
}
.nav-open .nav-sections .nav-sections-item-switch {
    color: var(--body-text-color);
    padding: 0 0 0  15px;
}
.nav-open .nav-sections .navigation .level0 {
    font-size: 1.4rem;
    border-top: 1px dashed var(--border-color);
}
.nav-open .navigation li.level0:first-child {
    border-top: 1px solid var(--border-color);
}
.nav-open.navigation .level0 > .level-top {
    font-weight: 500;
}
.nav-open .nav-sections .navigation a {
    color: var(--body-text-color);
    font-weight: normal;
}
.nav-open .nav-sections .navigation a:hover {
    color: var(--a-text-hover);
}
.nav-open .navigation .parent .level-top:after {
    font-size: 1.4rem;
    top: 10px;
    color: var(--primary-color);
}
.nav-open .navigation .submenu:not(:first-child) .active > a,
.nav-open .navigation .level0.active > a:not(.ui-state-active) {
    border-width: 0 0 0 4px;
}
@media only screen and (min-width: 768px) {
    .nav-sections {
        background: #FFFFFF;
        margin: 0;
    }
    .nav-sections .navigation {
        background: #FFFFFF;
        width: unset;
    }
    .nav-sections .navigation ul {
        display: flex;
        justify-content: space-evenly;
        flex-wrap: wrap;
        margin: 0;
        padding: 0;
    }
    .nav-sections .navigation .level0 {
        margin: 0;
    }
    .nav-sections .navigation .level0 > .level-top {
        padding: 0 20px 0 0;
        color: var(--body-text-color);
        font-weight: normal;
        font-size: 1.5rem;
        text-transform: uppercase;
        letter-spacing: 0.06rem;
    }
    .nav-sections .navigation .level0 .submenu,
    .nav-sections .navigation .level0.parent:hover > .submenu {
        border: 0;
        box-shadow: 0 0 20px rgba(0, 0, 0, .1) !important;
        border-radius: 0 0 5px 5px;
        clip: rect(0,10000px,10000px,-10000px)
    }
    .nav-sections .navigation .level0 .submenu a {
        padding: 1rem 2rem;
        color: var(--body-text-color);
        font-size: 1.3rem;
    }
    .nav-sections .navigation .level0 .submenu a:hover {
        background: #f9f9f9;
        color: var(--a-text-hover);
    }
    .nav-sections .navigation .level0 .submenu .active > a,
    .nav-sections .navigation .level0.active > .level-top,
    .nav-sections .navigation .level0.has-active > .level-top {
        border: none;
    }
}
/* nav end */

.sloganSwiper {
    background: #850003;
    height: 4.8rem;
    line-height: 4.8rem;
    color: #FFFFFF;
    text-align: center;
    font-size: 1.3rem;
    font-weight: 700;
}
.sloganSwiper .swiper-button-prev {
    left: 3.2rem;
    opacity: 0.8;
}
.sloganSwiper .swiper-button-next {
    right: 3.2rem;
    opacity: 0.8;
}
.sloganSwiper .swiper-button-prev:hover,
.sloganSwiper .swiper-button-next:hover {
    opacity: 1;
}
.sloganSwiper .swiper-button-prev:after,
.sloganSwiper .swiper-button-next:after {
    font-size: 2.2rem;
    color: #FFFFFF;
}
@media only screen and (max-width: 767px) {
    .sloganSwiper .swiper-button-prev,
    .sloganSwiper .swiper-button-next {
        display: none;
    }
    .slogan.container {
        margin: 0;
        max-width: 100%;
    }
}
.page-header .minicart-wrapper {
    margin: 0;
    float: unset;
    display: block;
}
@media only screen and (min-width: 768px) {
    .page-header .header > .actions {
        order: 1;
    }
    .page-header .minicart-wrapper {
        order: 2;
    }
    .page-header .header .free {
        order: 3;
    }
    .search-mini {
        width: auto;
        flex: auto;
        margin: 0 1.6rem;
    }
}
@media only screen and (min-width: 1024px) {
    .page-header .header .free {
        order: 0;
        flex: auto;
        line-height: 1.2;
        max-width: 20.8rem;
    }
}
/* header end */

/* back to top */
.back-to-top {
    display: flex;
    gap: 4px;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-color);
    padding: .625rem 1rem;
    font-weight: 700;
    color: var(--primary-color);
    cursor: pointer;
    margin: 1.6rem;
}
.back-to-top:hover {
    border-color: #cecece;
    box-shadow: 0 3px 8px #0000001a;
}
/* back to top end */

/* footer */
.page-footer {
    background: var(--foooter-bgcolor);
    margin: 0;
    padding: 0;
}

.footer-links-item{
    border-bottom: 1px solid var(--border-color);
}
.page-footer dt {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin: 0;
    padding: 1.2rem 0;
    font-weight: 600;
    font-size: 1.6rem;
}
.footer-links-item > dt > span.expand {
    display: block;
    cursor: pointer;
    width: 1.2rem;
    height: 0.24rem;
    background: var(--body-text-color);
    position: relative;
    transition: all 0.2s ease-in-out;
}
.footer-links-item > dt span.expand::before {
    display: block;
    content: "";
    width: 1.2rem;
    height: 0.24rem;
    background: var(--body-text-color);
    transform: translateY(50%) rotate(-90deg);
    transition: all 0.2s ease-in-out;
}
.footer-links-item > dd {
    display: none;
}
.footer-links-item > dd .links {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}
.footer-links-item > dt span.expand.open::before {
    position: absolute;
    top: -0.12rem;
    transform: translateY(50%) rotate(0deg);
}
.footer-links-item > dd a {
    color: var(--body-text-color);
    text-decoration: none;
}
.footer-links-item > dd a:hover {
    color: var(--a-text-hover);
}

.page-footer .footer-follow dd {
    display: flex;
    gap: 8px;
    margin: 0;
}
.page-footer .footer-follow dd a {
    position: relative;
    height: 2.8rem;
    width: 2.8rem;
}
.page-footer .footer-follow dd a::before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    background: #1d1d1d26;
    border-radius: 50%;
    transition: all .2s;
}
.page-footer .footer-follow dd a:hover::before {
    transform: scale(1.1);
}
.page-footer .footer-follow dd a > img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}



.footer-follow,
.footer-subscribe {
    border-bottom: 1px solid var(--border-color);
    padding: 0 0 1.6rem 0;
}
.footer-subscribe .subscribe_title {
    margin: 0 0 1.6rem 0;
}
.form.subscribe {
    display: flex;
    gap: 1.2rem;
}
.form.subscribe > .field {
    position: relative;
    width: 100%;
}
.form.subscribe > .field > .label {
    position: absolute;
    /*top: 50%;
    transform: translateY(-50%);*/
    color: #949494;
    width: 100%;
    line-height: 4.4rem;
    cursor: pointer;
    font-size: 1.2rem;
    padding: 0 1.2rem;
    box-sizing: border-box;
    transition: all 0.2s ease-out;
}
.form.subscribe > .field.focus > .label {
    line-height: 2.8rem;
}
.form.subscribe > .field > input {
    height: 4.6rem;
    padding: 0 1.2rem;
    border-radius: 3px;
    border: 1px solid var(--border-color);
}
.form.subscribe > .field.focus > input {
    padding-top: 1.8rem;
    line-height: 2rem;
}
.form.subscribe > .field > input:focus {
    border-color: #cecece;
    box-shadow: 0 3px 8px #0000001a;
}
.form.subscribe > .field > div.mage-error {
    position: absolute;
    margin: 0;
}
.action.subscribe.primary {
    border: 1px solid var(--primary-color);
    background: var(--primary-color);
    padding: 14px;
}
.action.subscribe.primary:hover {
    border: 1px solid var(--primary-color-hover);
    background: var(--primary-color-hover);
}

.page-footer .footer-bottom {
    display: flex;
    flex-direction: column-reverse;
    padding: 2.4rem 0;
    gap: 1.6rem;
}
.page-footer .footer-bottom > .footer-copyright {
    display: flex;
    justify-content: center;
}
.page-footer .footer-bottom > ul.footer-payment {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}
.page-footer .footer-bottom > ul.footer-payment li {
    margin: 0;
    font-size: 0;
}
/* footer end */

@media only screen and (min-width: 768px) {
    .footer-links {
        display: flex;
        justify-content: space-between;
        border-bottom: 1px solid var(--border-color);
        padding: 1.6rem 0;
    }
    .footer-links-item {
        border: none;
    }
    .footer-links-item > dt > span.expand,
    .back-to-top span.back {
        display: none;
    }
    .footer-links-item > dd {
        display: block !important;
    }
    .back-to-top {
        position: fixed;
        right: 2.4rem;
        bottom: 3.2rem;
        background: #FFFFFF;
        padding: 1rem 1.6rem;
        width: unset !important;
        z-index: 10;
    }
}
@media only screen and (min-width: 1024px) {
    .back-to-top {
        bottom: 10.2rem;
    }
    .footer-content {
        display: flex;
        gap: 1.6rem;
    }
    .footer-links {
        flex: 3;
        padding: 3.2rem 0;
        border: none;
    }
    .footer-follow {
        flex: 1;
        padding: 3.2rem 0;
        border: none;
    }
    .footer-subscribe {
        flex: 2;
        padding: 3.2rem 0;
        border: none;
    }
    .page-footer .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 3.2rem 0;
        border-top: 1px solid var(--border-color);
    }
}
@media only screen and (min-width: 1280px) {
    .footer-content {
        gap: 4.2rem;
    }
}
