.act_pc {
    display: block;
}

.act_mo {
    display: none;
}

/* banner */
.banner-wrapper {
    position: relative;
    width: 100%;
    height: 620px;
}

.banner-wrapper .banner-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    width: auto;
    height: 620px;
    object-fit: cover;
}

.banner-wrapper .banner-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    max-width: 1200px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 80px 0 45px;
    box-sizing: border-box;
}

.banner-wrapper .banner-sub-title {

    font-size: 28px;
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1;
    text-align: center;
}

.banner-wrapper .banner-title {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 16px;
    line-height: 1.2;
    text-align: center;
}

.banner-wrapper .banner-title span,
.banner-wrapper .banner-sub-title span {
    display: inline-flex;
    background: linear-gradient(90deg, #343C26 0%, #7A8D54 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.banner-wrapper .banner-desc {
    color: #343C26;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: 16px;
    text-align: center;
}


.banner-wrapper .banner-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 600;
    width: 260px;
    height: 48px;
    border-radius: 4px;
    color: #fff;
    background: #FF7A3D;
    margin: 0 auto;

}


/* nav bar */

.nav-wrapper {
    background: #EAF9B9;
    box-sizing: border-box;
    position: sticky;
    top: 0;
    z-index: 100;
    overflow: hidden;
}

.nav-wrapper .nav-content {
    margin: 0 auto;
    max-width: 1200px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-items: center;
    height: 56px;
}

.nav-wrapper .nav-item {
    position: relative;
    flex: 1;
    font-size: 18px;
    font-weight: 400;
    color: #02542D;
    height: 100%;
    cursor: pointer;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-wrapper .nav-item.active {
    font-size: 20px;
    font-weight: 600;
}

.nav-wrapper .nav-item::after {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #02542D;
    content: " ";
    transform: scaleX(0);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
}



.nav-wrapper .nav-item.active::after {
    transform: scaleX(1);
}


.nav-wrapper .pc-text {
    display: block;
}

.nav-wrapper .mb-text {
    display: none;
}


/* common */
.section-title {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.4;
    text-align: center;

}

.section-title span {
    display: inline-flex;
    background: linear-gradient(90deg, #7A8D54 0%, #343C26 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-desc {
    color: #535635;
    text-align: center;
    font-size: 24px;
    font-weight: 600;
    line-height: 1.4;
    margin-top: 12px;
}

.section-desc br {
    display: none;
}


.progress-container {
    margin-top: 20px;
}

.progress-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
}

.progress-bar {
    width: 283px;
    height: 6px;
    background-color: #D1D5DB;
    border-radius: 3px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #F8DC92 0%, #B28359 50.37%);
    border-radius: 3px;
    transition: width 0.5s ease-out;
}

.progress-text {
    margin-top: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #000;
}

.progress-text img {
    margin-right: 8px;
}


.progress-text span {
    font-size: 24px;
    font-weight: 700;
    color: #FF7A3D;
    margin-left: 8px;
}



/* 盲盒 */
.box-wrapper {
    padding: 53px 0 0;
    background: #FDFFF3;
}

.box-wrapper br {
    display: none;
}

.box-wrapper .box-content {
    max-width: 1200px;
    margin: 0 auto;
}

.box-wrapper .box-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.box-wrapper .box-title-num {
    font-size: 40px;
    font-weight: 700;
    line-height: 1.4;
}

.box-wrapper .box-title-num span {
    display: inline-flex;
    background: linear-gradient(270deg, #617B16 0%, #063F00 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}


.box-wrapper .box-container {
    position: relative;
    height: 522px;
    margin-top: 24px;
    padding: 32px;
    box-sizing: border-box;
    border-radius: 6px;
    /* background: linear-gradient(260deg, #FFF2D3 0%, #F6F3CF 100%); */
    background-image: url(https://static.shokz.co.kr/resource/2026/04/24/card-pc_69eac4b8b799f.webp);
    background-size: cover;
    text-align: center;
}

.box-wrapper .cover {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.20);
    backdrop-filter: blur(2px);
    z-index: 99;
    display: none;
    align-items: center;
    justify-content: center;
}

.box-wrapper .cover.show {
    display: flex;
}

.box-wrapper .cover-info {
    padding: 8px 12px;
    border-radius: 6px;
    background: rgba(0, 0, 0, 0.60);
    backdrop-filter: blur(2px);
    font-size: 18px;
    color: #FFF;
    line-height: 1.4;
}

.box-wrapper .box-con {
    position: relative;
    display: flex;
    gap: 24px;
}

.box-wrapper .box-left {
    flex: 1;

}

.box-wrapper .box-left-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 12px 16px;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.60);
    backdrop-filter: blur(20px);
}

.box-wrapper .box-left-title {
    color: #535635;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.8;
    margin-bottom: 10px;
}


.box-wrapper .box-left-title span {
    display: inline-flex;
    font-size: 24px;
    font-weight: 700;
    background: linear-gradient(90deg, #F8DC92 0%, #B28359 46.15%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.box-wrapper .box-left-desc {
    color: #535635;
    font-size: 18px;
    line-height: 1.4;
}

.box-wrapper .box-left-product {
    position: relative;
    display: flex;
    padding: 12px 24px;
    margin-top: 16px;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.60);
    backdrop-filter: blur(20px);
}

.box-wrapper .box-left-product-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    -webkit-tap-highlight-color: transparent;

}

.box-wrapper .box-product-wrap img {
    width: 120px;
}

.box-wrapper .color-text {
    font-size: 13px;
    color: #404040;
    line-height: 1.3;
    text-align: center;
}

.box-wrapper .box-product-colors {
    display: flex;
    align-items: center;
    gap: 5px;
}

.box-wrapper .color-item {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    box-sizing: border-box;
    padding: 4px;
    cursor: pointer;
}

.box-wrapper .color-item.active {
    border: 1px solid #FF7A3D;
}

.box-wrapper .color-item .round {
    width: 100%;
    height: 100%;
    border-radius: 50%;
}

.box-wrapper .color-item .round.black {
    background: #121212;
    ;
}

.box-wrapper .color-item .round.grey {
    background: #D6CBC2;
    ;
    box-shadow: 1.462px 1.462px 2.912px 0 rgba(0, 0, 0, 0.08) inset;
}

.box-wrapper .color-item .round.pink {
    background: #E5C3C4;
    ;
    box-shadow: 1.462px 1.462px 2.912px 0 rgba(0, 0, 0, 0.08) inset;
}

.box-wrapper .text {
    color: #404040;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.4;
}

.box-wrapper .icon-wrap {
    position: absolute;
    top: 90px;
    left: 50%;
    transform: translateX(-50%);
}

.box-wrapper .box-product-wrap2 {
    width: 134px;
}

.box-wrapper .box-left-product-info {
    margin-top: auto;
}




.box-wrapper .box-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

.box-wrapper .group-wrap {
    width: 260px;
}

.box-wrapper .box-right-info {
    padding: 16px 0;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.60);
    width: 100%;
    backdrop-filter: blur(20px);
}

.box-wrapper .box-right-desc {
    color: rgba(83, 86, 53, 0.70);
    text-align: center;
    font-size: 13px;
    line-height: 1.4;
}

.box-wrapper .box-right-desc a {
    color: #404040;
    text-decoration-line: underline;
    font-weight: 600;
    cursor: pointer;
}

.box-wrapper .box-btn {
    width: 260px;
    height: 48px;
    border-radius: 4px;
    color: #fff;
    background: #FF7A3D;
    margin-top: 24px;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
}

.box-wrapper .box-btn.grey {
    background: grey;
}

.box-wrapper .box-gift-title {
    margin-top: 60px;
    margin-bottom: 24px;
}

/*.box-wrapper .box-gift{*/
/*    display: flex;*/
/*    align-items: center;*/
/*    justify-content: space-between;*/
/*    height: 293px;*/
/*    border-radius: 6px;*/
/*    box-sizing: border-box;*/
/*}*/




.product_desc {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 0 27px;
    background: #FDFFF3;
}


.product-wrapper {
    padding: 80px 0;
    /*background: #F7F5F1;*/
    background: linear-gradient(180deg, #F0F7D8 0%, #ECF6D0 100%);
}

.product-wrapper .product-content {
    max-width: 1200px;
    margin: 0 auto;
}

.product-wrapper .product-title {
    margin-bottom: 16px;
    font-weight: 600;
    line-height: 1.4;
    text-align: center;
}

.product-wrapper .product-desc {
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 30px;
}

.product-wrapper .product-category-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 33px;

}

.product-wrapper .product-category-group {
    display: flex;
    align-items: center;
    gap: 10px;
}

.product-wrapper .product-category-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 16px;
    height: 48px;
    box-sizing: border-box;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.2;
    color: #404040;
    border-radius: 99px;
    border: 1px solid #737373;
    cursor: pointer;

}

.product-wrapper .product-category-item.active {
    border: 1px solid #FF7A3D;
    font-size: 20px;
    font-weight: 600;
    color: #FF7A3D;
}

.product-category-content {
    margin-bottom: 37px;
}

.product-gift-card {
    border-radius: 8px;
    overflow: hidden;
}



/* 产品卡 */
.product-card {
    position: relative;

    background: #fff;
    border-radius: 6px;
    box-shadow: 0 4px 16px 0 rgba(17, 17, 26, 0.10), 0 8px 32px 0 rgba(17, 17, 26, 0.05);
    overflow: hidden;

}

.product-wrapper .swiper-container {
    display: none;
}

.product-wrapper .swiper-container.show {
    display: block;
}

.product-card .disscount {
    position: absolute;
    top: 0;
    left: 16px;
    width: 78px;
    height: 40px;
    padding-top: 6px;
    box-sizing: border-box;
    display: flex;
    /* align-items: center; */
    justify-content: center;
    /*background-image: url(https://static.shokz.co.kr/resource/2026/02/04/10__off_6982f1d3df044.svg);*/
    background-image: url(https://static.shokz.co.kr/resource/2026/04/27/10off_69ef2ff5003c4.svg);
    background-repeat: no-repeat;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.3;
    color: #fff;
    z-index: 1;
}

.product-card .disscount.off-15 {
    /*background-image: url(https://static.shokz.co.kr/resource/2026/02/04/15__off_6982f1d3c7948.svg);*/
    background-image: url(https://static.shokz.co.kr/resource/2026/04/27/15off_69ef2fa2ca503.svg);
}

.product-card .disscount.new {
    width: 56px;
    background-image: url(https://static.shokz.co.kr/resource/2026/04/27/new_69ef308222ed5.svg);
}

.product-card .product-pic {
    display: none;
    align-items: center;
    justify-content: center;
    width: 250px;
    height: 250px;
    margin: 0 auto;
}

.product-card .product-pic.show {
    display: flex;
}

.product-card .product-info {
    position: relative;
    padding: 0 24px 24px;
}

.product-card .pic-wrapper {
    position: relative;
    cursor: pointer;
    height: 274px;
    overflow: hidden;
}

.product-card .product_gift_bg {
    position: absolute;
    bottom: 32px;
    left: 24px;
    right: 24px;
}

.product-card .product_gift_bg.bottom-12 {
    bottom: 26px;
}

.product-card .product_gift_box {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    width: 336px;
    height: 40px;
    background-image: url(https://static.shokz.co.kr/resource/2025/11/05/bg_product_gift_690ab1fb66fc7.webp);
    background-size: cover;
    border-radius: 4px;
}

.product-card .product_gift_box_con {
    display: flex;
    align-items: center;
    height: 100%;
}

/* .product-card .product_tip_big {
    color: rgba(255, 122, 61, 1);
    font-size: 18px;
    line-height: 40px;
    font-weight: 600;
    margin: 0 10px 0 20px;
} */

/* .product-card .product_tip_desc {
    font-size: 12px;
    color: rgba(255, 122, 61, 1);
} */

.product_gift_box_text {
    font-size: 12px;
    color: #FF7A3D;
    padding-left: 40px
}

.product-card .product_gift_box_img {
    position: absolute;
    right: 10px;
    width: 80px;
    top: 50%;
    transform: translateY(-50%);

}

.product-card .product_gift_box_img.group {
    width: 82px;
    right: 0;
}

.product-card .product_gift_box_img.washcloth {
    width: 54px;
    top: 35%;
}

.product-card .product_gift_box_img.bag {
    width: 62px;
    top: 30%;
    right: 0;
}

.product-card .product_gift_box_img.purse {
    width: 70px;
    right: 0;
}

.product-card .product-name {
    font-weight: 600;
    font-size: 20px;
    line-height: 26px;
    color: #000000;
    margin-bottom: 16px;
}

.product-card .product-card-desc {
    font-size: 16px;
    margin-bottom: 16px;
    font-weight: 400;
    font-family: 'NotoSansKR';
}

.product-card .product-key {
    margin-left: 16px;
    color: #FF9962;
    font-size: 14px;
    line-height: 1.3;
}

.product-card .product-colors {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 16px;
}


.product-card .product-color {
    padding: 3px;
    border: 1px solid transparent;
    border-radius: 50%;
    cursor: pointer;
}

.product-card .product-color span {
    display: block;
    width: 18px;
    height: 18px;
    background: #000;
    border-radius: 50%;
}

.product-card .product-color.color-active {
    border: 1px solid #FF833D;
}



.product-card .product-type {
    display: flex;
    gap: 20px;
}

.product-card .product-type-item {
    flex: 1;
}

.product-card .type-item-title {
    font-size: 14px;
    font-weight: 400;
    color: #A3A3A3;
    line-height: 1.3;
    margin-bottom: 8px;
}


.product-card .type-lis {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
}

.product-card .type-li {
    font-size: 14px;
    font-weight: 400;
    color: #A3A3A3;
    line-height: 1.3;
    padding: 4px 8px;
    border-radius: 4px;
    background: #F7F7F7;
    cursor: pointer;
}

.product-card .type-li.type-li-active {
    color: #FF7A3D;
    border: 1px solid #FFB688;
    background: #FFF8F5;
}

.product-card .product-price {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 8px;
}

.product-card .product-price .new-price {
    font-size: 20px;
    font-weight: 600;
    line-height: 1.2;
    color: #FF4D0A;
}

.product-card .product-price .original-price {
    color: #0A0A0A;
    font-weight: 400;
    line-height: 1.2;
    font-size: 16px;
    opacity: 0.45;
    text-decoration-line: line-through;
}

.product-card .product-desc {
    color: #FF4D0A;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.3;
    margin-bottom: 8px;
}

.product-card .product-btns {
    display: flex;
    align-items: center;
    gap: 20px;
}

.product-card .product-btns .add-btn {
    flex: 1;
    height: 40px;
    font-size: 16px;
    font-weight: 400;
    border-radius: 4px;
    color: #fff;
    background: #FF7A3D;
}

.product-card .product-btns .skip-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    height: 40px;
    border: 1px solid #FF9962;
    cursor: pointer;
    border-radius: 4px;
    color: #FF7A3D;
    font-weight: 400;
    font-size: 16px;
}


.swiper-product-title {
    padding-top: 64px;
    padding-bottom: 32px;
    font-size: 32px;
    font-weight: 600;
    text-align: center;
}

.swiper-switch {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 24px;
}

.swiper-switch .swiper-pagination {
    position: relative;
    text-align: left;
}

.swiper-switch .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: #404040;
    border-radius: 50%;
    margin-right: 16px;
    opacity: 0.4;

}

.swiper-switch .swiper-pagination-bullet-active {
    border-radius: 8px;
    width: 32px;
    height: 8px;
    background: #404040;
    opacity: 0.75;

}

.swiper-pagination-btns {
    display: flex;
    align-items: center;
    gap: 20px;
}

.product-swiper-page .swiper-pagination-bullets.swiper-pagination-horizontal {
    width: 60%;
}

.swiper-pagination-btns .button-next {
    margin-right: 5px;
}

.swiper-button-disabled svg {
    opacity: 0.3;
}

.swiper-button-disabled {
    opacity: 0.6
}

.checkbox-hidden {
    display: none !important;
}

.pc-hidden {
    opacity: 0;
}


.product_zeng_wrapper {
    padding: 60px 0;
    background: #FDFFF3;
}

.product_zeng_wrapper .product_zeng_title {
    text-align: center;
    font-size: 36px;
    font-style: normal;
    font-weight: 600;
    line-height: 140%;
    /* 50.4px */
}

.product_zeng_wrapper .product_zeng_title span {
    background: linear-gradient(90deg, #7A8D54 0%, #343C26 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.product_zeng_wrapper .product_zeng_title_desc {
    color: #535635;
    text-align: center;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 140%;
    /* 33.6px */
    padding-top: 16px;
}

.product_zeng_wrapper .product_zeng_title_desc>span>br {
    display: none;
}

.product_zeng_wrapper .product_zeng_box {
    max-width: 1200px;
    margin: 24px auto 0;
}

.product_zeng_wrapper .product_zeng_button_box {
    margin: 24px 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.product_zeng_wrapper .product_zeng_button {
    width: 260px;
    padding: 14px 20px;
    background: #FF7A3D;
    color: white;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 140%;
    text-transform: capitalize;
    border-radius: 4px;
}

.product_zeng_wrapper .product_zeng_bottom {
    text-align: center;
    font-size: 15px;
    font-style: normal;
    font-weight: 600;
    line-height: 140%;
    color: #404040;
}

.product-desc-card {
    margin-bottom: 24px;
}


.product-desc-text {
    color: #535635;
    font-size: 20px;
    text-align: center;
    margin-bottom: 24px;
}

.product-desc-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 24px;
}

.box-gift-pic {
    border-radius: 6px;

}

.product-desc-text br {
    display: none;
}

.product-bottom-desc {
    font-size: 15px;
    text-align: center;
    line-height: 1.4;
    color: #404040;
}











@media screen and (max-width: 999px) {

    .banner-wrapper {
        height: 554px;
    }



}




@media screen and (max-width: 768px) {

    .act_pc {
        display: none;
    }

    .act_mo {
        display: block;
    }

    .banner-wrapper .banner-content {
        padding: 50px 0 34px;
        justify-content: flex-start;
    }

    .banner-wrapper .banner-bg {
        height: 100%;
    }

    .banner-wrapper .banner-sub-title {
        font-size: 18px;
        margin-bottom: 8px;
    }

    .banner-wrapper .banner-title {
        font-size: 32px;
        margin-bottom: 20px;
    }

    /* nav */
    .nav-wrapper .nav-content {
        padding: 0 16px;
    }

    .nav-wrapper .nav-item {
        font-size: 16px;
    }

    .nav-wrapper .nav-item.active {
        font-size: 18px;
    }

    .nav-wrapper .pc-text {
        display: none;
    }

    .nav-wrapper .mb-text {
        display: block;
    }

    .progress-text {
        font-size: 14px;
    }

    .progress-text span {
        font-size: 16px;
    }

    .progress-container {
        margin-top: 16px;
    }

    .box-wrapper br {
        display: block;
    }

    .box-wrapper .box-content {
        padding: 0 16px;
    }

    .box-wrapper .box-container {
        padding: 12px;
        background-image: url(https://static.shokz.co.kr/resource/2026/04/28/card-bg_69f0137e7398f.webp);
        height: auto;
    }


    .box-wrapper .box-con {
        flex-direction: column-reverse;
    }

    .box-wrapper .group-wrap {
        width: 100%;
    }

    .box-wrapper .box-left-title {
        font-size: 18px;
        line-height: 1.4;
    }

    .box-wrapper .box-left-title span {
        font-size: 18px;
    }

    .box-wrapper .box-left-desc {
        font-size: 16px;
    }

    .box-wrapper .box-product-wrap2 {
        width: 130px;
    }

    .box-wrapper .box-left-product {
        justify-content: space-between;
        padding: 8px 12px;
    }

    .box-wrapper .box-left-product-item {
        flex: 0 0 145px;
    }

    .box-wrapper .color-text {
        font-size: 11px;
        line-height: 1.4;
    }

    .box-wrapper .color-item {
        width: 25px;
        height: 25px;
    }

    .box-wrapper .text {
        font-size: 14px;
    }

    .box-wrapper .box-right-desc {
        font-size: 11px;
    }

    .box-wrapper .box-right-info {
        margin-top: 16px;
        margin-bottom: 16px;
    }

    .box-wrapper .box-title-num {
        font-size: 24px;
    }

    .section-title {
        font-size: 24px;
    }

    .section-desc {
        margin-top: 8px;
        font-size: 20px;
    }

    .section-desc br {
        display: block;
    }

    .product_desc {
        padding: 60px 16px 37px 16px;
    }

    .product-card {
        margin: 0 auto;
    }

    .product-desc-grid {
        grid-template-columns: 1fr;
    }

    .product-desc-text {
        font-size: 16px;
    }

    .product-desc-text br {
        display: block;
    }

    .product-bottom-desc {
        font-size: 12px;
    }

    .product-card .product_gift_bg {
        position: absolute;
        left: 16px;
        right: 16px;
    }

    .pc-hidden {
        opacity: 1;
    }

    .product-card .product_gift_bg {
        bottom: 10px;
    }

    .product-card .product_gift_bg.bottom-12 {
        bottom: 5px;
    }

    .box-wrapper .cover {
        align-items: flex-start;

    }


    .box-wrapper .cover-info {
        margin-top: 86px;
        font-size: 16px;
    }

    .swiper-button-disabled svg {
        opacity: 1;
    }

    .swiper-button-disabled {
        opacity: 1
    }

    .product-card .product-info{
        padding:  16px;
    }

    .product-card .pic-wrapper{
        height: auto;
    }

    .product-card .type-li{
        font-size: 12px;
    }

    .product-card .product-type{
        gap: 10px;
    }

    .product-card .product-name{
        margin-bottom: 8px;
    }

    .product-card .product_gift_box{
        transform: translateX(0%);
        left: 16px;
        right: 16px;
        width: auto;
        bottom: 10px;
    }

    .product-card .product-pic {
        width: auto;
        height: auto;
        
    }

    .product-card .pic-wrapper{
        aspect-ratio: 1 / 1;
    }



}




/* 气泡 */

/* --- 基础容器 --- */
.bubble-wrapper {
    position: relative;
    display: inline-block;
    cursor: pointer;
}

/* 遮罩层：默认隐藏 */
.bubble-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1998;
}

/* 气泡内容主体：默认形态 (PC气泡) */
.bubble-content {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: max-content;
    max-width: 262px;
    /* 匹配你代码中的宽度 */
    background: #fff;
    padding: 12px;
    box-sizing: border-box;
    border-radius: 8px;
    color: #737373;
    box-shadow: 0 6px 16px 0 rgba(0, 0, 0, 0.08), 0 3px 6px -4px rgba(0, 0, 0, 0.12), 0 9px 28px 8px rgba(0, 0, 0, 0.05);
    z-index: 1000;
    display: none;
    /* 默认隐藏 */
}

.bubble-content.font-14 {
    font-size: 14px;
}

.as-modal .bubble-content {
    /* padding: 24px 18px; */
    max-width: 296px;
}

.notice-wrap{
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 24px;
}

.notice-wrap img{
    width: 16px;
    margin-right: 8px;
}

.bubble-content.w400 {
    /* padding: 24px 18px; */
    max-width: 466px;
}

.bubble-text {
    color: #0A0A0A;
    font-size: 14px;
    line-height: 1.3;
}

.bubble-desc {
    color: #737373;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.4;
}

.bubble-desc a {
    color: #737373;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.4;
    text-decoration-line: underline;
}


/* 列表样式适配 */
.bubble-content .dot {
    position: relative;
    text-align: justify;
    font-size: 12px;
    /* 稍微调小一点适配屏幕 */
    color: #0A0A0A;
    line-height: 1.4;
    padding-left: 10px;
    list-style: none;
    font-weight: 400;
}

.bubble-content .dot::before {
    position: absolute;
    width: 4px;
    height: 4px;
    left: 0;
    top: 8px;
    border-radius: 50%;
    background: #0A0A0A;
    content: " ";
}



.bubble-content.w400  .dot{
    font-size: 16px;
    color: #737373;
}


.bubble-content.w400 .dot::before {
    background: #737373;
}










/* 尖角逻辑 */
.bubble-content::after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    border-width: 6px;
    border-style: solid;
}

/* 关闭按钮：PC默认不显示 */
.close-btn {
    display: none;
}

/* --- PC端 专属逻辑 (隔离 hover) --- */
@media (min-width: 769px) {

    /* 仅在宽屏下允许悬浮触发 */
    .bubble-wrapper.hover-trigger:hover .bubble-content {
        display: block;
    }
}

/* --- 通用激活逻辑 (用于点击) --- */
.bubble-wrapper.is-active .bubble-content {
    display: block;
}

/* 方向控制 */
.pos-top .bubble-content {
    bottom: calc(100% + 10px);
}

.pos-top .bubble-content::after {
    top: 100%;
    border-color: #fff transparent transparent transparent;
}

.pos-bottom .bubble-content {
    top: calc(100% + 10px);
}

.pos-bottom .bubble-content::after {
    bottom: 100%;
    border-color: transparent transparent #fff transparent;
}

/* --- 移动端核心：强制变弹窗 --- */
@media (max-width: 768px) {

    /* 强制重置定位 */
    .bubble-wrapper.as-modal.is-active .bubble-content {
        position: fixed !important;
        top: 50% !important;
        left: 50% !important;
        bottom: auto !important;
        transform: translate(-50%, -50%) !important;

        display: block !important;
        width: 90% !important;
        max-width: 340px !important;

        /* 针对长列表的处理 */
        max-height: 75vh !important;
        overflow-y: auto !important;

        z-index: 2000 !important;
        padding: 40px 18px 24px !important;
        /* 顶部留出位置给关闭按钮 */
    }

    /* 显示遮罩 */
    .bubble-wrapper.as-modal.is-active .bubble-overlay {
        display: block !important;
    }

    /* 隐藏小尖角 */
    .bubble-wrapper.as-modal.is-active .bubble-content::after {
        display: none !important;
    }

    /* 弹出关闭按钮 */
    .bubble-wrapper.as-modal.is-active .close-btn {
        display: block !important;
        position: absolute !important;
        top: 10px;
        right: 15px;
        font-size: 28px;
        color: #999;
        cursor: pointer;
        line-height: 1;
    }



    .product-wrapper .product-category-item {
        font-size: 14px;
        padding: 0 10px;
        height: 36px;
    }

    .product-wrapper .product-category-item.active {
        font-size: 14px;
    }

    .product-wrapper .product-category-container {
        /*justify-content: space-between;*/
        gap: 8px;
        margin-bottom: 24px;
        flex-wrap: wrap;
        flex: 0 0 calc(50% - 16px);

    }

    .product-wrapper {
        padding: 60px 16px 54px;
    }

    .product-wrapper .product-title {
        margin-bottom: 8px;
    }

    .product-wrapper .product-desc {
        margin-bottom: 20px;
    }


    .product-category-content {
        margin-bottom: 24px;
    }

    .product_zeng_wrapper .product_zeng_title {
        font-size: 24px;
    }

    .product_zeng_wrapper .product_zeng_title_desc {
        font-size: 20px;
        padding-top: 8px;
    }

    .product_zeng_wrapper .product_zeng_title_desc>span>br {
        display: block;
    }

    .product_zeng_wrapper .product_zeng_box {
        padding: 0 16px;
        margin: 21px auto 0;
    }

    .product_zeng_wrapper .product_zeng_button_box {
        padding: 21px 0;
    }

    .product_zeng_wrapper .product_zeng_bottom {
        font-size: 11px;
    }

}

@media (max-width: 400px) {
    .product_zeng_wrapper .product_zeng_title_desc {
        font-size: 18px;
    }
}