:root {
    /* 头部高度 */
    --header-height: 104px;
    /* 头部粘性高度 */
    --header-sticky-height: 60px;
}

p {
    margin: 10px 0;
}

header .menu-header-nav-container .menu {
    display: flex;
}

header .menu-header-nav-container .menu li {
    /*  hover:text-gray-900  uppercase */
    color: #0b0b0b;
    font-size: 0.75rem
        /* 12px */
    ;
    line-height: 1rem
        /* 16px */
    ;
    margin-left: 15px;
    margin-right: 15px;
    text-transform: uppercase;
}

header .menu-header-nav-container .menu li:hover {
    color: rgb(17 24 39 / var(--tw-text-opacity));
}

header .menu-header-nav-container .menu li.current-menu-item {
    font-weight: bold;
}

header .fkcart-shortcode-container {
    margin-left: 0.5rem;
}

header .fkcart-shortcode-container .fkcart-shortcode-icon-wrap {
    padding: 0.5rem;
    border-radius: 50px;
    cursor: pointer;
}

header .fkcart-shortcode-container .fkcart-shortcode-icon-wrap:hover {
    background-color: #F3F4F6;
}

header .fkcart-shortcode-icon-wrap svg {
    width: 1.5rem;
    height: 1.5rem;
    color: #4B5563;
}

header .fkcart-shortcode-container .fkcart-shortcode-count {
    transform: scale(0.7);
    top: 0;
    right: 0;
}

header .fkcart-shortcode-container .fkcart-shortcode-count[data-item-count="0"] {
    display: none;
}

.fkcart-toggler {
    display: none;
}

header .fkcart-shortcode-container .fkcart-shortcode-price {
    display: none;
}

#mobileMenu .menu-header-nav-container .menu {
    margin-top: 3rem;
    display: flex;
    flex-grow: 1;
    flex-direction: column;
    justify-content: center;
}

#mobileMenu .menu-header-nav-container .menu li {
    display: block;
    color: rgb(11 11 11 / var(--tw-text-opacity));
    font-size: 0.875rem
        /* 14px */
    ;
    line-height: 1.25rem
        /* 20px */
    ;
    Text-transform: Capitalize;
    padding: 0;
}

#mobileMenu .menu-header-nav-container .menu li.current-menu-item {
    font-weight: 700;
}

#mobileMenu .menu-header-nav-container .menu li a {
    display: block;
    padding: 15px 1.5rem;
}

@media (max-width: 1023px) {
    header .menu-header-nav-container {
        display: none;
    }
}


.section-header {
    height: var(--header-height);
}

.section-header header {
    z-index: 2;
    height: var(--header-height);
    transition: all 0.3s ease;
    border-bottom: 1px solid #0B0B0B;
}

.has-scrolled .site-header--fixed {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    --header-height: var(--header-sticky-height);
    animation: showCompactHeader .3s ease;
    border-bottom: 1px solid transparent;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
}

.has-scrolled.hide-header header {
    animation: hideCompactHeader .3s;
    animation-fill-mode: forwards;
}

.section-header header .header-box {
    height: 100%;
}

.has-scrolled .site-header--fixed .logo {
    height: 3rem;
}

@keyframes showCompactHeader {
    0% {
        transform: translateY(-100%);
    }

    100% {
        transform: translateY(0);
    }
}

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

    100% {
        transform: translateY(-100%);
    }
}

/* 按钮效果·1 */
.effect-one {
    position: relative;
    overflow: hidden;
}

.effect-one.effect-one-grey::after {
    background: rgba(0, 0, 0, 0.1);
}

.effect-one::after {
    background: rgba(255, 255, 255, 0.2);
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    animation-duration: 0.3s;
    animation-fill-mode: forwards;
}

.effect-one:hover::after {
    animation-name: slideInFromBottom;
}

.effect-one:not(:hover)::after {
    animation-name: slideOutToTop;
}

.effect-one span {
    position: relative;
    z-index: 2;
}

@keyframes slideInFromBottom {
    0% {
        top: 100%;
    }

    100% {
        top: 0;
    }
}

@keyframes slideOutToTop {
    0% {
        top: 0;
    }

    100% {
        top: -100%;
    }
}

.absolute-center {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.vertical-rl {
    writing-mode: vertical-rl;
    /* 垂直排列，从右到左 */
}

/* 按钮效果·2 */
button.effect-two {
    position: relative;
    overflow: hidden;
}

.iconfont {
    font-size: inherit;
}

button.effect-two::after {
    background: #fff;
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    border-radius: 50%;
    animation-duration: 0.3s;
    animation-fill-mode: forwards;
    /* top: -150%; */
}

button.effect-two:hover::after {
    animation-name: slideInFromBottom2;
}

button.effect-two:not(:hover)::after {
    animation-name: slideOutToTop2;
}

button.effect-two span,
button.effect-two a {
    position: relative;
    z-index: 2;
}

.woocommerce-notices-wrapper,
.woocommerce-breadcrumb {
    display: none;
}

@keyframes slideInFromBottom2 {
    0% {
        top: 100%;
        transform: scale(0);
    }

    100% {
        top: 0;
        transform: scale(2);
    }
}

@keyframes slideOutToTop2 {
    0% {
        top: 0;
        transform: scale(2);
    }

    100% {
        top: -100%;
        transform: scale(0);
    }
}

.goods-item {
    display: block;
    border-color: #eaeaea;
    border-radius: 16px;
    border-width: 1px;
    position: relative;
    cursor: pointer;
    overflow: hidden;
}

/* .goods-item > a:first-child {
    display: block;
    text-decoration: none;
    color: inherit;
} */

.type-product {
    list-style: none;
}
.goods-item .product-thumbnail {
    height: 0;
    padding-top: 80%;
    position: relative;
}
.goods-item .product-thumbnail > img {
    width: 100%;
    height: 100%;
    position: absolute;
    top:0;left:0;
    object-fit: contain;
}
.goods-item .tags {
    position: absolute;
    padding: 18px;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    z-index: 3;
}

/* .goods-item */
.goods-item>.woocommerce-LoopProduct-link {
    display: block;
    width: 100%;
    padding-bottom: 1px;
}

.goods-item>.woocommerce-LoopProduct-link .loop-sale-flash {
    position: absolute;
    top: 18px;
    left: 18px;
    z-index: 1;
    line-height: 1.5;
    border-radius: 50px;
    margin-bottom: 10px;
    display: inline-block;
    /* width: auto; */
    text-align: center;
    background: #F6BE00;
    color: #000;
    border-radius: 50px;
    padding: 5.5px 16px;
    font-size: 12px;
}

.goods-item .attachment-woocommerce_thumbnail {
    width: 100%;
    aspect-ratio: 1;
    /* object-fit: contain; */
    object-fit: cover;
    transition: all .3s ease;
    transform-origin: center bottom;
}

.goods-item .attachment-woocommerce_thumbnail:hover {
    transform: scale(1.05);
}




.goods-item .tags .tag-item {
    padding: 5.5px 16px;
    line-height: 1.5;
    border-radius: 50px;
    margin-bottom: 10px;
    display: inline-block;
    /* width: auto; */
    text-align: center;
}

.goods-item .score {
    top: 18px;
    right: 18px;
    position: absolute;
    padding: 5.5px 16px;
    line-height: 1;
    border-radius: 50px;
    margin-bottom: 10px;
    z-index: 3;
}

.goods-item .score i {
    color: #F6BE00;
    transform: scale(0.9);
}

.goods-item .image {
    height: 0;
    width: 100%;
    padding-top: 80%;
    position: relative;
}


.goods-item .image .img-box {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.goods-item .image img {
    display: none;
    width: 100%;
    height: 100%;
    transition: all 0.3s ease;
    object-fit: contain;
}

.goods-item .image:hover img {
    transform: scale(1.05);
}

.goods-item .image .show {
    display: block;
}


.goods-item .mt {
    padding: 0 20px 20px 20px;
}

.goods-item .woocommerce-loop-product__title {
    padding: 24px 24px 0;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 34px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #000;
    margin: 0 0 8px;
}

.goods-item .product-short-description {
    font-size: 14px;
    font-weight: 400;
    line-height: 21px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #666;
    padding: 0 24px;
}

.goods-item .product-short-description p {
    margin: 0;
}

.goods-item .mt .colors {
    margin: 16px 0;
    display: flex;
}

.goods-item .woocommerce-product-rating,
.goods-item .cfvsw-shop-variations .label {
    display: none;
    /* 隐藏评分 */
}

.goods-item .mt .colors .item {
    position: relative;
    width: 24px;
    height: 24px;
    border: 4px solid #fff;
    border-radius: 20px;
    cursor: pointer;
}

.goods-item .mt .colors .item::before {
    position: absolute;
    content: "";
    display: block;
    opacity: 0;
    inset: unset;
    width: 24px;
    height: 24px;
    border: 1px solid #000;
    border-radius: 20px;
    box-shadow: none;
    left: -4px;
    top: 50%;
    transform: translateY(-50%);
    transition: opacity .3s;
}

.goods-item .mt .colors .item.active::before {
    opacity: 1;
}

.goods-item>.woocommerce-LoopProduct-link .price {
    display: flex;
    align-items: center;
    height: 40px;
    margin: 16px 24px;
    font-size: 16px;
    line-height: normal;
    font-weight: 700;
    color: #000;
    flex-direction: row-reverse;
    justify-content: flex-end;
    font-size: 0;
}


.goods-item>.woocommerce-LoopProduct-link .price del bdi {
    font-size: 14px;
    font-weight: 400;
    line-height: 21px;
    color: #00000080;
    margin-left: 8px;
}

.goods-item del {
    text-decoration: line-through;
    font-size: 14px;
    color: #00000080;
}

.goods-item ins {
    text-decoration: none;
    display: flex;
    align-items: center;
    /* margin-left: 8px; */
}

.goods-item ins:before {
    content: 'From';
    display: inline-block;
    font-size: 16px;
    line-height: normal;
    font-weight: 700;
    color: #000;
    margin-right: 8px;
}

.goods-item>.woocommerce-LoopProduct-link .price bdi {
    font-size: 24px;
    font-weight: 700;
    line-height: 33.6px;
    color: #000;
}

.goods-item .product_type_simple{
  width: 100px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "iconfont" !important;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  margin-left: auto;
  margin-right: 24px;
  margin-top: -56px;
  margin-bottom: 24px;
}

.goods-item .add_to_cart_button {
    background: #000;
    width: 40px;
    height: 40px;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 0.75rem;
    border: 1px solid #000;
    font-size: 0;
    font-family: "iconfont" !important;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
    margin-left: auto;
    margin-right: 24px;
    margin-top: -56px;
    margin-bottom: 24px;
}

.goods-item .add_to_cart_button::before {
    content: "\e6ef";
    font-size: 16px;
}

@keyframes loading {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.goods-item .add_to_cart_button.loading::before {
    content: "\e606";
    animation: loading 1s linear infinite;
}

.goods-item .mt .prices .car::after {
    background: #fff;
}

.goods-item .mt .prices .car:hover {
    color: #000;
}

.goods-item .cfvsw_variations_form {
    padding: 0 24px;
}

.goods-item .params-box {
    padding: 24px;
    border-top: 1px solid #EAEAEA;
    background: #fafafa;
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    border-radius: 0 0 16px 16px;
}

.goods-item .params-box .param {
    width: calc(50% - 8px);
    display: flex;
    column-gap: 10px;
}

.goods-item .params-box .param .icon img {
    width: 24px;
    height: 25px;
}

.goods-item .params-box .param .values .v {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    color: #000;
    margin: 0 0 2px;
}

.goods-item .params-box .param .values .k {
    font-size: 14px;
    font-weight: 400;
    line-height: 21px;
    color: #666;
}

@media screen and (max-width: 768px) {
    .goods-item .image {
        height: auto;
        padding-top: 0%;
    }

    .goods-item .image .img-box {
        position: static;
    }

    .goods-item .score {
        top: 8px;
        right: 8px;
        position: absolute;
        padding: 5px;
    }

    .goods-item .tags {
        padding: 18px;
        transform: scale(0.6);
        transform-origin: 0 0;
    }

    .goods-item .mt h2 {
        font-size: 20px;
        padding: 14px 0;
    }

    .goods-item .mt .desc {
        font-size: 12px;
    }

    .goods-item .mt .prices {
        height: 36px;
    }

    .goods-item .mt .prices .car {
        height: 36px;
        width: 36px;
        border-radius: 0.4rem;
    }

    .goods-item .mt .prices span small {
        font-size: 14px;
    }

    .goods-item .mt .prices span b {
        font-size: 20px;
    }

    .goods-item .mt .prices span s {
        font-size: 12px;
    }

    .goods-item .params-box {
        padding: 10px;
        display: block;
        white-space: nowrap;
        overflow-x: auto;
    }

    .goods-item .params-box::-webkit-scrollbar {
        display: none;
    }

    .goods-item .params-box {
        -ms-overflow-style: none;
        /* IE 和 Edge */
        scrollbar-width: none;
        /* Firefox */
    }

    .goods-item .params-box .param {
        display: inline-block;
        width: calc(100% / 3);
        text-align: center;
    }

    .goods-item .params-box .param .icon img {
        width: 20px;
        height: 20px;
        margin-bottom: 5px;
    }

    .goods-item .params-box .param .icon {
        display: flex;
        justify-content: center;

    }

    .goods-item .params-box .param .values .v {
        font-size: 14px;
        line-height: 1.4;
    }

    .goods-item .params-box .param .values .k {
        font-size: 12px;
        line-height: 1.4;
    }
}


.page-banner {
    position: relative;
}

.page-banner .shop-btn {
    position: absolute;
    top: 50%;
    left: 3%;
    transform: translateYT(-50%);
    background: #F98B13;
    border: 1px solid #fff;
    padding: 12px 0;
    width: 25%;
    max-width: 180px;
    border-radius: 8px;
    text-align: center;
    font-size: 12px;
    color: #fff;
    TEXT-TRANSFORM: UPPERCASE;
}

.page-box .page-numbers {
    min-width: 48px;
    box-sizing: border-box;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    font-size: 14px;
    font-weight: 200;
}

.page-box .page-numbers.current {
    background: #000;
    color: #fff;
}


.product-page #reviews {
    margin: 20px 0;
}

.product-page #reviews .commentlist .review {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.product-page #reviews .commentlist .review .comment_container .avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}


.woocommerce-pagination {
    float: none;
    width: 100%;
    margin-top: 4rem;
    margin-bottom: 2rem;
}

.woocommerce-pagination ul {
    display: flex;
    justify-content: center;
    align-items: center;
}

.woocommerce-pagination ul li {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    margin: 0 8px;
    font-size: 1rem;
}

.woocommerce-pagination ul li a,
.woocommerce-pagination ul li span {
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.woocommerce-pagination ul li .current {
    background: #000;
    color: #fff;
}

.woocommerce-pagination ul li .next,
.woocommerce-pagination ul li .prev {
    font-size: 1.5rem;
}

#product_pc_img img {
    max-width: 100%;
}

.woocommerce-variation{
    padding-bottom: 1rem;
}

.product-page .entry-summary .variations {
    margin-bottom: 0;
}
.product-page .entry-summary .stock  {
    
}
#comments {
    font-size: initial !important;
    max-width: 1000px;
    margin: 0 auto;
}

#comments .woocommerce-noreviews {
    display: none;
}

#comments .woocommerce-Reviews-title {
    font-size: 0
}

#comments .commentlist li {
    border-bottom: solid 1px rgba(246, 190, 0, 0.2);
    margin-bottom: 1.5em;
}

#comments .commentlist li .star-rating span {
    color: #F6BE00;
}

#comments .commentlist li .avatar {
    border: solid 2px #F6BE00;
}

#review_form_wrapper {
    max-width: 800px;
    margin: 0 auto;
    padding-top: 60px;
    text-align: center;
}

#review_form_wrapper p.stars.selected a:not(.active)::before {
    color: #F6BE00;
}

#review_form_wrapper p.stars.selected a.active::before {
    color: #F6BE00;
}

#review_form_wrapper p.stars:hover a::before {
    color: #F6BE00;
}

#review_form_wrapper .comment-form-comment,
#review_form_wrapper .comment-form-author,
#review_form_wrapper .comment-form-email {
    width: 100%;
}

#review_form_wrapper .comment-form-comment label,
#review_form_wrapper .comment-form-author label,
#review_form_wrapper .comment-form-email label {
    display: block;
    text-align: center;
}

#review_form_wrapper .comment-form-comment #comment,
#review_form_wrapper .comment-form-author #author,
#review_form_wrapper .comment-form-email #email {
    border: solid 1px rgba(0, 0, 0, 0.1);
    width: 100%;
    padding: 5px;
}

#review_form_wrapper #submit {
    background: #F6BE00;
    color: #fff;
    padding: 10px 0;
    margin-top: 20px;
    width: 100%;
    border-radius: 15px;
}

.notice-container {
    display: flex;
}

.notice-container .menu {
    display: block;
    white-space: nowrap;
    height: 100%;
}

.notice-container .menu-item {
    margin: 0 30px;
    display: inline-block;
    height: 2.5rem;
    
}

.notice-container .menu-item a {
    padding: 0px 4px;
    line-height: 2.5rem;
    cursor: pointer;
}
.notice-container .menu-item a:hover {
    text-decoration: underline;
}

.woocommerce-products-header .term-description{
    display: none;
}

.product-page .custom_redirect_link a {
    display: block;
    height: 46px;
    background: #F5BD00;
    border: 1px solid #F6BE00;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 14px;
}

.product-page .variations {
    position: relative;
}
.product-page .reset_variations {
    display: inline-flex !important;
    font-size: 0.6rem;
    margin-left: 0;
    padding: 5px 10px;
    margin-top: 10px;
    background: #EAEAEA;
    border-radius: 5px;
}
.product-page .reset_variations[style="visibility: hidden;"] {
    display: none !important;
}

.product-page .entry-summary .variations tr {
    margin-bottom: 1rem !important;
}
.product-page .reset_variations::before{
    content: "❌"
}

.product-page .entry-summary .cart .quantity input {
    outline: none;
}

.product-page .entry-summary .cart {
    margin-bottom: 1rem;
}

.product-page .sku_wrapper {
    font-size: 0.6rem;
    padding: 10px 0;
    display: none;
}

.product-page .single_add_to_cart_button span {
    color: #fff;
}


.policy-page .wc-block-components-checkout-place-order-button {
    border: 1px solid #000; 
    border-radius: 10px;
}

