.footer {
    /* background-color: rgb(var(--color-page-background)); */
    background-color: #000;
}

.footer-block:empty {
    display: none;
}

.footer-block__heading {
    font-weight: 500;
    font-size: 20px;
    margin-bottom: 20px;
}

.footer-block--full {
    margin-top: 40px;
}

@media (max-width: 959px) {
    .footer-block--full {
        margin-top: 20px;
    }
}

.footer-block--full {
    width: 100%;
}

.footer-block--full .footer-block-image img {
    width: 100%;
    height: auto;
    display: block;
}

.footer-block__details-content.rte,
.footer-block__details-content>li {
    margin-bottom: 8px;
}

.footer-block__details-content a {
    opacity: 0.7;
}

footer-menu {
    display: flex;
    flex-direction: column;
}


.footer-block__details-newsletter-form:after {
    border-radius: 4px;
}

.footer-block__social_media-container {
    display: flex;
    gap: 20px;
    list-style: none;
    padding-left: 0;
    margin: 0px;
    flex-wrap: wrap;
}

@media (min-width: 960px) {
    .footer-block--list .footer-block__heading svg {
        display: none;
    }
}

@media (max-width: 959px) {
    footer-menu {
        overflow: hidden;
        position: relative;
        padding-bottom: var(--grid-vertical-space);
    }

    footer-menu .footer-block__heading {
        display: flex;
        align-items: center;
        justify-content: space-between;
        color: rgba(var(--color-text));
        margin-bottom:10px;
    }

    footer-menu ul {
        height: 0;
        opacity: 0;
    }

    footer-menu .icon-arrow {
        display: inline-block;
    }

    footer-menu::after {
        position: absolute;
        content: " ";
        bottom: 0;
        left: 0;
        width: 100%;
        height: 1px;
        background-color: rgba(var(--color-text), 0.2);
    }

    footer-menu[open] ul {
        opacity: 1;
        height: auto;
    }
    footer-menu .icon-arrow {
        transition: all 0.2s ease;
    }           
    footer-menu[open] .icon-arrow {
        /* display: none; */
            transform: rotate(-180deg);
    }

    footer-menu[open] .icon-minus {
        display: inline-block;
    }
}

.footer-block__details-content .list-menu__item--active,
.footer-block__details-content .list-menu__item--link:hover {
    text-decoration: underline;
    text-underline-offset: 6px;
    color: rgba(var(--color-text));
    opacity: 1;
}

.footer-block-image>img {
    height: auto;
    object-fit: cover;
    object-fit: center center;
}

@media (max-width: 959px) {
    .footer-block-image {
        text-align: left !important;
    }
}

.footer__copyright {
    text-align: center;
    /* margin-top: 10px; */
}

.footer-block--newsletter {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

@media (min-width: 960px) {
    .footer-block--newsletter {
        margin-top: 40px;
        margin-bottom: 40px;
    }

    .footer-block--newsletter .field {
        width: 410px;
    }
}

@media (max-width: 959px) {
    .footer-block--newsletter {
        margin-top: 20px;
    }

    .footer-block--subscribe {
        width: 100%;
    }

    .footer-block--newsletter .field {
        width: 100%;
    }

    .footer__list-social {
        margin-bottom: 20px;
    }
}

.footer-block--subscribe .footer-block__heading {
    margin-bottom: 15px;
}

.footer-block__desc {
    color: rgba(var(--color-text));
    margin-top: 2px;
}

.footer__list-social {
    display: flex;
    gap: 8px;
}

.footer__list-social a svg {
    transition: transform 125ms cubic-bezier(0.4, 0, 0.2, 1);
}

.footer__list-social a:hover svg {
    transform: scale(1.1);
}

.footer__content-bottom {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    display: flex;
    justify-content: space-between;
}

/* @media (min-width: 960px) {
  .footer__content-bottom {
    margin-top: 40px;
  }
} */

@media (max-width: 959px) {
    .footer__content-bottom {
        margin-top: 20px;
    }
}

.footer__content-bottom-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.footer__column--info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
}

@media (min-width: 960px) {
    .footer__column--info {
        max-width: 40%;
    }
}

@keyframes animateLocalization {
    0% {
        opacity: 0;
        transform: translateY(0);
    }

    100% {
        opacity: 1;
        transform: translateY(-10px);
    }
}

.footer__localization form {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.footer__localization .dropdown-menu__list-wrapper {
    opacity: 1;
    animation: animateLocalization 200ms ease;
    transform: translateY(-10px);
}

.footer__localization span[data-label] {
    white-space: nowrap;
}

.footer__payment {
    display: flex;
    gap: 8px;
    justify-content: flex-end;
    flex-wrap: wrap;
}

.footer__payment>svg {
    height: 22px;
    width: 35px;
}
@media (min-width: 960px) {
    .footer-newsletter-follow-wrapper  {
        max-width: 50%;
    }
}
@media (max-width: 959px) {
    .footer__content-bottom-wrapper {
        flex-direction: column;
    }

    .footer__column--info {
        align-items: center;
    }

    .footer__copyright {
        /* margin-top: 20px; */
        margin: 0px;
    }

    .footer__payment {
        justify-content: center;
    }

    .footer__localization form {
        gap: 6px;
    }

    .footer__localization dropdown-menu:last-child .dropdown-menu__list-wrapper {
        right: 0;
    }
}

@media (max-width: 959px) {
    .footer-block {
        width: 100% !important;
    }
}

/* add 2024/4/18 */
.footer-big-title-wrapper {
    text-align: center;
}

.footer-big-title-wrapper .title-content-box .big-title {
    font-size: 2.6vw;
}

.footer-big-title-wrapper .title-content-box .big-title img {
    max-width: 19.27vw;
    height: auto;
    width: 100%;
}

.footer-big-title-wrapper .title-content-box .big-content {
    font-size: 3.125vw;
    word-spacing: 5px;
    letter-spacing: 6px;
    font-weight: 300;
    margin-bottom: 20px;
    line-height: 1.4;
}

.footer-newsletter-follow-wrapper {
    background-color: #000;
    padding: 70px 0;
    /* border-bottom: 1px solid rgba(255, 255, 255, 0.3); */
    /* margin-bottom: 30px; */
}
.footer-newsletter-follow-wrapper .klaviyo-form .go3176171171 span[data-eleid="4"] {
    font-weight: 500!important;
    font-size: 20px;
}
.footer-newsletter-follow-wrapper [data-testid="form-row"]:nth-child(3) {
    background: #fff !important;
    border-radius: 50px!important;
}
.footer-newsletter-follow-wrapper .klaviyo-form button,
.footer-newsletter-follow-wrapper .klaviyo-form input {
    border-radius: 50px!important;
    border: none!important;
    font-family: "poppins", sans-serif!important;
    font-size: 14px!important;
    font-weight: 400!important;
    height: 38px!important;
        /* padding: 12px 20px!important; */
}
.footer-newsletter-follow-wrapper .klaviyo-form button {
    padding-left: 20px!important;
    padding-right: 20px!important;
}
/* .footer-newsletter-follow-wrapper .page-width{ display: flex;} */
.footer-newsletter-follow-wrapper .newsletter-follow__heading {
    /* font-size: calc(18px + 0.3vw);  */
    text-transform: uppercase;
    color: #fff;
}

.footer-newsletter-follow-wrapper .footer-block__newsletter {
    width: 64%;
    /* border-right:1px solid rgb(var(--color-custom-theme));  */
    /* padding-right: 2vw; */
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.newsletter-form__field-wrapper .field__input {
    height: 42px;
    border-radius: 10px 0 0 10px;
    /* border: 1px solid rgb(var(--color-custom-theme)); */
    margin-right: 5px;
    padding: 0 1.5rem;
    background: #fff;
    color: #000000;
}

.newsletter-form__field-wrapper .field__input:focus~.field__label,
.newsletter-form__field-wrapper .field__input:not(:placeholder-shown)~.field__label {
    font-size: 0;
}

.footer-newsletter-follow-wrapper .field {
    background-color: transparent;
}

.footer-newsletter-follow-wrapper .field:after {
    border: 0;
}

.footer-newsletter-follow-wrapper .newsletter-form__button {
    font-size: 14px;
    position: relative;
    border-radius: 0 10px 10px 0;
    background-color: rgb(var(--color-custom-theme));
    color: rgb(var(--color-button));
    font-weight: 500;
    min-width: 140px;
}

.footer-newsletter-follow-wrapper .newsletter-form__button:after,
.footer-newsletter-follow-wrapper .newsletter-form__button:hover::after {
    box-shadow: none;
}

.footer-newsletter-follow-wrapper .footer-block__social {
    width: 50%;
    padding-left: 4vw;
    margin-top: 0;
}

.footer-newsletter-follow-wrapper .newsletter-follow-tips {
    margin:16px 0;
    /* font-size: calc(13px + 0.3vw); */
    color: #fff;
}

.footer-newsletter-follow-wrapper .field:after {
    box-shadow: none !important;
}

.footer-newsletter-follow-wrapper .field:hover.field:after {
    border-radius: 0;
    box-shadow: 0;
}

.footer-newsletter-follow-wrapper .footer-block__social_media-container img {
    background-color: rgb(var(--color-custom-theme));
    border-radius: 50%;
}

.footer-newsletter-follow-wrapper .footer-block__social_media-container img:hover {
    background-color: #0e8da4;
}

.footer-shop-link-wrapper {
    padding-top: 32px;
    display: flex;
    justify-content: space-between;
}

.footer-shop-link-wrapper .shop-link-box {
    text-align: center;
}

.footer-shop-link-wrapper .shop-link-content {
    margin-top: 10px;
    display: flex;
    justify-content: center;
}

.footer-shop-link-wrapper .small-title {
    font-size: 20px;
    font-weight: 700;
}

.footer-shop-link-wrapper .shop-link-content img {
    padding: 0 14px;
    box-sizing: content-box;
    max-width: 100%;
    height: auto;
}

.copyright__content {
    display: flex;
    flex-direction: row;
    gap: 16px;
}

.copyright__content,
.copyright__content a {
    font-size: 16px;
    font-weight: 300;
    line-height: 1.2;
    color: rgba(255, 255, 255, 0.7);
}



@media screen and (min-width: 1000px) {
    .footer-newsletter-follow-wrapper form {
        max-width: 658px;
        width: 100%;
    }
}

@media screen and (max-width: 1200px) {
    .footer-big-title-wrapper .title-content-box .big-title img {
        max-width: 25%;
    }

    .footer-big-title-wrapper .title-content-box .big-content {
        font-size: 4vw;
    }
}

@media screen and (max-width: 1000px) {
    .footer-shop-link-wrapper .shop-link-content img {
        width: 70%;
        padding: 0;
    }

    .footer-big-title-wrapper .title-content-box .big-title img {
        max-width: 255px;
    }
}

@media screen and (max-width: 959px) {
    .footer-big-title-wrapper .title-content-box .big-content {
        font-size: 8.8vw;
        letter-spacing: 0;
        word-spacing: 0;
        font-weight: 600;
    }

    /* .footer-newsletter-follow-wrapper .newsletter-follow__heading{ font-size: 4vw;} */
    .footer-newsletter-follow-wrapper .page-width {
        flex-direction: column;
    }

    .footer-newsletter-follow-wrapper .footer-block__newsletter {
        width: 100%;
        border: 0;
        padding-right: 0;
    }

    .footer-newsletter-follow-wrapper .footer-block__social {
        width: 100%;
        padding-left: 0;
    }

    .footer-newsletter-follow-wrapper .newsletter-follow-tips {
        text-align: center;
    }

    /* .footer-newsletter-follow-wrapper .newsletter-follow-tips{ font-size:3.2vw;} */

    .footer-shop-link-wrapper .shop-link-content {
        flex-direction: column;
    }

    .footer-shop-link-wrapper .shop-link-content img {
        width: auto;
    }

    .footer-shop-link-wrapper .small-title {
        font-size: calc(13px + .5vw);
    }

    .footer__content-bottom .localization-form:only-child {
        margin: 0;
    }

    .footer__content-bottom .page-width {
        align-items: flex-start;
        flex-direction: column;
    }

    .footer__content-bottom {
        border-top: 0;
    }

    footer-menu .footer-block__heading {
        font-size: 16px;
    }

    .footer-block__details-content a {
        font-size: 14px;
    }
}
.footer .footer__tool-container__seed--pc .isv-pc-language-wrap.locale-currency.is_dropdown .dropdown__list {
    width: 150%;
}
.footer .isv-pc-language-wrap.locale-currency.is_dropdown .currency-search i {
    color: #000;
}
.footer .isv-pc-language-wrap.locale-currency.is_dropdown .currency-search input {
    border: 1px solid rgba(0, 0, 0, .9);
    color: #000;
    padding-left: 10px;
    border-radius: 5px;
    background: transparent!important;
}
.isv-mobile-language-wrap.locale-currency.is_dropdown .currency-search input {
    background-color: transparent!important;
}
@media screen and (max-width: 959px) {
    .footer-block__heading {
        font-size: 16px;
        margin-bottom: 24px;
    }
    .footer-block__details-content>li {
        margin-bottom: 0px;
        margin-top: 12px;
    }
    .footer-block__details-content>li:last-child {
        margin-bottom: 14px;
    }
}

/* The ipad end responds to the mobile end in vertical screen */

/* @custom-media --tablet (max-width: 959px); */

/* @custom-media --gt-mobile (min-width: 751px); */

/* detectingScreen need to consider the configuration of the tablet */