/* ==========================================================================
   Tela Kit Page — tela-kit.html
   --------------------------------------------------------------------------
   基础样式（自上而下，与页面模块顺序一致）
   1. 页面根 · :root
   2. 固定副导航 · .fixed-secondary-menu--tela
   3. 首屏轮播 · .tela-slider（首页与 Tela 产品页共用）
   4. Details 轮播覆盖 · .details-slider（结构见 components.css）
   5. 产品卖点：Leak-Proof · Pod Lifespan · Zero Waste
   6. Capacity
   7. Battery
   8. Mode Switch
   9. Product Color
   10. Sustainable Luxury
   11. Specification
   12. Package List
   13. Call To Action
   --------------------------------------------------------------------------
   响应式（文件末尾，由大到小）
   min-width:2560 · max-width:1680/1440/1280/1024 · max-width:768（含原 576 档）
   ========================================================================== */

:root {
    --margin-bottom-32: 2rem;
    --section-margin-bottom: 5.625rem;
    --specification-max-width: 1696px;
    --margin-bottom-40: 2.5rem;
    --desc-color: rgba(24, 24, 24, 0.7);
}

/* ========== 1) 页面基础 ========== */
.tela-page {
    color: var(--color-secondary);
    background-color: var(--color-base-surface);
}

/* ========== 2) 固定副导航（Tela） ========== */
.fixed-secondary-menu--tela {
    background: var(--color-surface-warm);
    color: var(--color-base-primary);
}

.fixed-secondary-menu--tela.fixed-secondary-menu--visible {
    border-bottom: 1px solid var(--color-border);
    max-height: 120px;
}

.fixed-secondary-menu--tela .fixed-secondary-menu__inner {
    height: 65px;
    box-sizing: border-box;
}

.fixed-secondary-menu--tela .fixed-secondary-menu__brand {
    color: var(--color-base-primary);
}

.fixed-secondary-menu--tela .fixed-secondary-menu__brand-img {
    max-width: 100px;
    height: auto;
    display: block;
}


.fixed-secondary-menu--tela .fixed-secondary-menu__logo-img {
    width: 42px;
    height: auto;
    object-fit: contain;
}

/* 右侧：Features / Specs 链接 + Contact 按钮 */
.fixed-secondary-menu--tela .fixed-secondary-menu__action {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    justify-self: end;
}

.fixed-secondary-menu--tela .fixed-secondary-menu__nav-item {
    font-size: var(--font-size-12);
    font-weight: 400;
    color: var(--color-base-primary);
    text-decoration: none;
    letter-spacing: 0.02em;
    transition: opacity 0.2s ease, border-color 0.2s ease, font-weight 0.2s ease;
    border-bottom: 1px solid transparent;
    padding-bottom: 2px;
}

.fixed-secondary-menu--tela .fixed-secondary-menu__nav-item:hover {
    opacity: 0.85;
}

.fixed-secondary-menu--tela .fixed-secondary-menu__nav-item--active {
    font-weight: 600;
    opacity: 1;
    border-bottom-color: var(--color-base-primary);
}

.fixed-secondary-menu--tela .fixed-secondary-menu__btn {
    font-size: var(--font-size-12);
    font-weight: 400;
    color: var(--color-base-primary);
    border: 1px solid var(--color-base-primary);
    border-radius: 9999px;
    background: transparent;
}

.fixed-secondary-menu--tela .fixed-secondary-menu__btn:hover {
    background: var(--color-base-primary);
    color: var(--color-surface-warm);
}

/* 汉堡仅移动端显示，PC 保持三列网格 */
.fixed-secondary-menu--tela .fixed-secondary-menu__menu-btn {
    display: none;
}

/* ========== 3) 首屏轮播（tela-slider） ========== */
.tela-slider {
    width: 100%;
    background-color: var(--color-surface-alt);
    position: relative;
    z-index: 1;
    margin-top: 0;
}

.tela-slider .slider__viewport {
    width: 100%;
    position: relative;
    overflow: hidden;
    user-select: none;
}

.tela-slider .slider__viewport .slider__track {
    position: relative;
    width: 100%;
    min-width: 0;
    height: auto;
    display: flex;
    will-change: transform;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.tela-slider .slider__slide {
    flex: 0 0 100%;
    width: 100%;
    min-width: 0;
    position: relative;
    text-align: center;
    background: var(--color-surface);
    display: block;
    backface-visibility: hidden;
}

.tela-slider .slider__slide picture {
    width: 100%;
}

/* TELA 产品页首屏 KV：单 video + JS 切换片源，避免真机双轨叠放 */
.tela-page .tela-slider .tela-kv-video-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: var(--color-surface);
}

.tela-page .tela-slider .tela-kv-video-wrapper .tela-kv-video {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
}


.tela-slider .slider__content .logo-wrapper {
    margin-bottom: var(--margin-bottom-40);
}

.tela-slider .slider__slide img {
    width: 100%;
    height: auto;
    object-fit: cover;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

.powerby-wrapper img {
    max-width: 100px;
}

.tela-slider .slider__hit {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 16%;
    z-index: 5;
    cursor: pointer;
}

.tela-slider .slider__hit--prev {
    left: 0;
}

.tela-slider .slider__hit--next {
    right: 0;
}

.tela-slider .slider__pagination {
    position: absolute;
    right: 1.5rem;
    bottom: 1.5rem;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 0;
    padding: 0 6px 0 14px;
    height: 44px;
    background: var(--color-surface-overlay);
    border: 1px solid var(--color-accent-overlay);
    border-radius: 35px;
}

.tela-slider .slider__dots {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 0 10px;
}

.tela-slider .slider__dot {
    width: 10px;
    height: 10px;
    padding: 0;
    border: none;
    border-radius: 9999px;
    background: var(--color-surface-muted);
    cursor: pointer;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.tela-slider .slider__dot:hover {
    opacity: 0.9;
    transform: scale(1.1);
}

.tela-slider .slider__dot--active {
    background: var(--color-surface);
    width: 11px;
    height: 11px;
}

.tela-slider .slider__arrow {
    width: 36px;
    height: 36px;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: transparent;
    color: var(--color-accent);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: color 0.2s ease, transform 0.2s ease;
}

.tela-slider .slider__arrow:hover {
    color: var(--color-surface);
    transform: scale(1.05);
}

.tela-slider .slider__arrow svg {
    display: block;
    width: 11px;
    height: 18px;
}

.tela-slider .slider__content {
    position: absolute;
    left: 15%;
    top: 50%;
    transform: translateY(-50%);
    color: var(--color-accent);
    text-align: center;
    z-index: 10;
    user-select: text;
}

.logo-wrapper__img {
    max-width: 220px;
}

.tela-slider .slider__desc {
    font-size: var(--font-size-40);
    color: var(--color-base-dark);
    margin-bottom: var(--margin-bottom-40);
}


.tela-slider .slider__btn {
    display: inline-block;
    padding: 14px 22px;
    font-size: var(--font-size-12);
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--color-accent);
    border: 1px solid var(--color-accent);
    border-radius: 30px;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.tela-slider .slider__btn:hover {
    background-color: var(--color-primary);
    color: var(--color-accent);
    border-color: var(--color-primary);
}

/* ========== 4) Details 轮播差异（公用结构见 components.css） ========== */
.details-slider.section-highlights.staggered-end {
    color: var(--color-text);
}

/* 移动端使用 -mobile 图片，picture 保持块级布局 */
.details-slider__card-img picture {
    display: block;
    max-width: 100%;
}

.details-slider__dot {
    background: var(--color-accent);
}

.details-slider__arrow {
    color: var(--color-accent);
}

/* details 卡片文案：顶部居中展示；文案可选中（覆盖 viewport 的 user-select: none） */
.details-slider__card-content {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: min(100%, 92%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
    padding: 1.25rem 1.5rem;
    user-select: text;
    cursor: text;
}

/* 首张（Nolik Technology）卡片：保留原有特殊布局 */
.details-slider__card:first-child .details-slider__card-content {
    left: 8%;
    top: 50%;
    transform: translateY(-50%);
    align-items: start;
    justify-content: start;
    text-align: left;
    padding: 1.5rem 1.25rem 1.75rem;
    color: var(--color-base-surface);
    margin: 0;
    line-height: 1.15;
    text-indent: 0;
}

.details-slider__card:first-child .details-slider__card-content .details-slider__card-title {
    color: var(--color-base-accent);
    font-size: var(--font-size-36);
    font-weight: 700;
}

.details-slider__card-before-title {
    font-size: var(--font-size-18);
    color: var(--color-base-accent);
}

.details-slider__card-title span {
    display: block;
}

.details-slider__card:first-child .details-slider__card-content .details-slider__card-desc span {
    display: block;
}

.details-slider__card:first-child .details-slider__card-content .details-slider__card-desc {
    font-size: var(--font-size-36);
    font-weight: 400;
}

.details-slider__card:last-child .details-slider__card-content {
    color: #34C759;
}

.details-slider__card:last-child .details-slider__card-icon {
    position: absolute;
    bottom: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    text-align: left;
    padding: 1.25rem 1.5rem;
    user-select: text;
    cursor: text;
    max-width: 96px;
}

.details-slider__card-title {
    font-size: var(--font-size-36);
    font-weight: 600;
    margin: 0 0 0.25rem;
    line-height: 1.3;
}

.details-slider__card-desc {
    font-size: var(--font-size-14);
    margin: 0;
    opacity: 0.95;
    line-height: 1.4;
}

/* ========== 5) 产品卖点模块 ========== */
/* 5.1 Leak-Proof */
.leak-resistant-podsystem {
    position: relative;
}

.leak-resistant-podsystem__inner {
    position: absolute;
    left: 10%;
    top: 50%;
    transform: translateY(-50%);
    color: var(--color-accent);
    z-index: 10;
}

.leak-resistant-podsystem__before-title {
    color: var(--color-accent);
    font-size: var(--font-size-24);
    font-weight: 700;
    text-transform: uppercase;
}

.leak-resistant-podsystem__title {
    color: var(--color-surface);
    font-size: var(--font-size-48);
}

.leak-resistant-podsystem__title span {
    display: block;
}

.leak-resistant-podsystem__desc {
    color: var(--color-accent);
    font-size: var(--font-size-16);
    max-width: 700px;
}

.leak-resistant-podsystem__desc span {
    display: block;
}
.leak-resistant-podsystem__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 146px;
    padding: 19px 22px;
    border: 1px solid var(--color-accent);
    border-radius: 999px;
    color: var(--color-accent);
    text-decoration: none;
    font-size: var(--font-size-12);
    background: transparent;
    transition: all 0.25s ease;
    margin-top: 1.25rem;
    line-height: 1;
    white-space: nowrap;
}

.leak-resistant-podsystem__cta:hover {
    background: var(--color-accent);
    color: #fff;
}

.leak-resistant-podsystem__cta:focus-visible {
    outline: 2px solid var(--color-accent);
    outline-offset: 3px;
}

.leak-resistant-podsystem__image picture {
    display: block;
    width: 100%;
}

.leak-resistant-podsystem__image img {
    display: block;
    width: 100%;
    height: auto;
}

/* 5.2 Pod Lifespan */
.pod-lifespan {
    color: #f2efe8;
    padding: 96px 0 86px;
    overflow: hidden;
}

.pod-lifespan__inner {
    text-align: center;
}

.pod-lifespan__before-title {
    margin-bottom: var(--margin-bottom-32);
}

.pod-lifespan__before-title span {
    display: inline-block;
    color: var(--color-primary);
    font-size: var(--font-size-24);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.pod-lifespan__title {
    margin: 0;
    color: var(--color-secondary);
    font-size: var(--font-size-48);
    letter-spacing: -0.02em;
}

.pod-lifespan__desc {
    margin: var(--margin-bottom-32) auto 0;
    max-width: 980px;
    color: var(--color-text-muted);
}

.pod-lifespan__desc span {
    display: block;
    color: #8e8a85;
    font-size: var(--font-size-16);
    line-height: 1.5;
}

.pod-lifespan__image-wrapper {
    margin: 34px auto 0;
    width: min(100%, 1440px);
    border-radius: 24px;
    overflow: hidden;
    position: relative;
}

.pod-lifespan__image {
    position: relative;
}

.pod-lifespan__image picture {
    display: block;
    width: 100%;
}

.pod-lifespan__image img {
    display: block;
    width: 100%;
    height: auto;
}

.pod-lifespan__image-data {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 30px;
    padding: var(--margin-bottom-40) var(--details-slider-padding);
    color: var(--color-primary);
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
}

.pod-lifespan__image-data-item {
    border-top: 1px solid var(--color-primary);
    padding-top: 10px;
}

.pod-lifespan__image-data-item .data-label,
.pod-lifespan__image-data-item .data-sublabel {
    display: block;
    line-height: 1.35;
}

.pod-lifespan__image-data-item .data-label {
    font-size: var(--font-size-16);
}

.pod-lifespan__image-data-item .data-value {
    display: block;
    font-size: var(--font-size-48);
    font-weight: 500;
    letter-spacing: -0.02em;
}

.pod-lifespan__image-data-item .data-sublabel {
    font-size: var(--font-size-16);
}

.pod-lifespan__disclaimer {
    text-align: right;
    font-size: var(--font-size-14);
    margin-top: var(--margin-bottom-40);
}

.pod-lifespan__disclaimer span {
    color: #6e6a66;
    line-height: 1.45;
}



/* 5.3 Zero Waste */
.zero-waste-section {
    color: #f5f1e8;
    padding: 96px 0 84px;
    overflow: hidden;
}

.zero-waste-section__inner {
    text-align: center;
}

.zero-waste-section__before-title {
    margin-bottom: var(--margin-bottom-32);
    font-size: var(--font-size-24);
}

.zero-waste-section__before-title span {
    display: inline-block;
    color: #8f142c;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.zero-waste-section__title {
    margin: 0;
    color: var(--color-secondary);
    font-size: clamp(36px, 2.8vw, 56px);
    font-weight: 400;
    line-height: 1.12;
    letter-spacing: -0.02em;
}

.zero-waste-section__desc {
    margin: var(--margin-bottom-32) auto 0;
    max-width: 980px;
    color: var(--desc-color);
}

.zero-waste-section__desc span {
    display: block;
    font-size: var(--font-size-16);
    line-height: 1.5;
}

.zero-waste-section__image {
    position: relative;
    margin: 38px auto 0;
    border-radius: 24px;
    overflow: hidden;
}

.zero-waste-section__image picture {
    display: block;
    width: 100%;
}

.zero-waste-section__image picture img {
    display: block;
    width: 100%;
    height: auto;
}

.zero-waste-section__badge {
    position: absolute;
    z-index: 3;
    pointer-events: none;
    animation: zeroWasteBadgeFloat 5.2s ease-in-out infinite;
    will-change: transform;
}

.zero-waste-section__badge img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
}

.zero-waste-section__badge--left {
    left: 18%;
    top: 33%;
    width: min(14vw, 150px);
    animation-delay: -1.2s;
}

.zero-waste-section__badge--right {
    right: 16%;
    top: 58%;
    width: min(14vw, 150px);
    animation-name: zeroWasteBadgeFloatAlt;
    animation-duration: 5.8s;
    animation-delay: -0.4s;
}

@keyframes zeroWasteBadgeFloat {
    0%,
    100% {
        transform: translate3d(0, 0, 0);
    }

    25% {
        transform: translate3d(3px, -4px, 0);
    }

    50% {
        transform: translate3d(0, -7px, 0);
    }

    75% {
        transform: translate3d(-3px, -3px, 0);
    }
}

@keyframes zeroWasteBadgeFloatAlt {
    0%,
    100% {
        transform: translate3d(0, 0, 0);
    }

    25% {
        transform: translate3d(-2px, -3px, 0);
    }

    50% {
        transform: translate3d(2px, -5px, 0);
    }

    75% {
        transform: translate3d(-1px, -2px, 0);
    }
}

.zero-waste-section__disclaimer {
    text-align: right;
    font-size: var(--font-size-14);
    margin-top: var(--margin-bottom-40);
}

.zero-waste-section__disclaimer span {
    color: #6e6a66;
    line-height: 1.45;
}



/* ========== 6) Capacity ========== */
.capacity-section {
    overflow: hidden;
    color: var(--color-secondary);
}

.capacity-section__hero {
    text-align: center;
    padding: 80px 20px 36px;
}

.capacity-section__before-title {
    margin-bottom: var(--margin-bottom-32);
    color: var(--color-primary);
    font-size: var(--font-size-24);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.capacity-section__title {
    margin: 0;
    font-size: var(--font-size-48);
    font-weight: 400;
    letter-spacing: -0.02em;
}

.capacity-section__desc {
    margin: var(--margin-bottom-32) auto 0;
    max-width: 980px;
    color: var(--desc-color);
}

.capacity-section__curve-band {
    position: relative;
    height: 620px;
    background: #efe8d8;
    overflow: hidden;
}

.capacity-section__curve-band::before,
.capacity-section__curve-band::after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 102%;
    height: 240px;
    border-radius: 50%;
    background: var(--color-base-surface);
    z-index: 0;
    pointer-events: none;
}

.capacity-section__curve-band::before {
    top: -140px;
}

.capacity-section__curve-band::after {
    bottom: -140px;
}

.capacity-section .experience__product-images {
    position: relative;
    z-index: 2;
    max-width: 980px;
    height: 100%;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: end;
    justify-items: center;
    gap: 48px;
}

.capacity-section__image-wrap {
    position: relative;
    width: 100%;
    max-width: 360px;
    z-index: 3;
}

.capacity-section__image-wrap img {
    display: block;
    width: 100%;
    height: auto;
    max-width: 100%;
    object-fit: contain;
}

.capacity-section__pod-info {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    max-width: 980px;
    flex-wrap: nowrap;
    gap: 40px;
    margin: 0 auto;
    padding: 28px 24px 56px;
    list-style: none;
    color: var(--color-primary);
    font-size: var(--font-size-36);
}

.capacity-section__pod-info-item {
    margin: 0;
    font-weight: 500;
    letter-spacing: -0.02em;
    white-space: nowrap;
}

.capacity-section__products-info {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    padding: 56px 24px 96px;
}

.capacity-section__card {
    text-align: center;
}

.capacity-section__card-title {
    margin: 0 0 12px;
    font-size: var(--font-size-24);
    font-weight: 700;
}

.capacity-section__card-desc {
    margin: 0;
    font-size: var(--font-size-16);
    line-height: 1.5;
}











/* ========== 7) Battery ========== */
.battery-section {
    padding: 92px 0 84px;
    overflow: hidden;
}

.battery-section__before-title {
    margin-bottom: var(--margin-bottom-32);
    text-align: center;
    font-size: var(--font-size-24);
    font-weight: 700;
}

.battery-section__before-title span {
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-primary);
}

.battery-section__title {
    margin: 0;
    text-align: center;
    font-size: var(--font-size-48);
    font-weight: 400;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: var(--margin-bottom-32);
}

.battery-section__desc {
    font-size: var(--font-size-16);
    margin: 12px 0 0;
    text-align: center;
    color: var(--desc-color);
}

.battery-section__desc span {
    display: inline-block;
    line-height: 1.5;
}

.battery-section__media {
    position: relative;
    width: 100%;
    margin: 42px auto 0;
}

.battery-video-wrapper {
    position: relative;
    width: 100%;
    max-width: 1440px;
    min-height: 660px;
    margin: 0 auto;
    border-radius: 28px;
    background: linear-gradient(180deg, #d7d5d1 0%, #ece4d8 100%);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(230, 215, 190, 0.35), 0 8px 20px rgba(230, 215, 190, 0.2);
}

.battery-video-wrapper video {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.battery-video-wrapper .battery-video--mobile {
    display: none;
}

/* PC：显式隐藏移动端视频，避免与其它 video 规则叠层后仍露出 */
@media (min-width: 769px) {
    .battery-video-wrapper .battery-video--mobile {
        display: none !important;
    }

    .battery-video-wrapper .battery-video--desktop {
        display: block;
    }
}

.battery-parameter-section {
    margin: 34px auto var(--section-margin-bottom);
    padding: 0 80px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    column-gap: var(--gap-60);
}

.battery-parameter-section__item {
    border-top: 1px solid var(--color-base-dark);
    padding-top: 16px;
}

.battery-parameter-section .parameter-label {
    display: block;
    font-size: var(--font-size-16);
    color: #202020;
    margin-bottom: 8px;
}

.battery-parameter-section .parameter-value {
    display: block;
    font-size: var(--font-size-48);
    font-weight: 400;
    letter-spacing: -0.02em;
    line-height: 1.1;
    color: #292929;
}















/* ========== 8) Mode Switch ========== */

.mode-switch-section__inner {
    position: relative;
    cursor: pointer;
}

/* ===== PC ===== */
.mode-switch-section__content {
    position: absolute;
    inset: 0;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0 140px;
    pointer-events: none;
}

.mode-switch-section__left-content {
    max-width: 430px;
    pointer-events: none;
}

.mode-switch-video-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 32px;
    background: #e6dece;
    min-height: 860px;
    box-shadow:
        0 20px 60px rgba(230, 215, 190, 0.35),
        0 8px 20px rgba(230, 215, 190, 0.2);
}

.mode-switch-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.mode-switch-video.is-active {
    opacity: 1;
    visibility: visible;
}

.mode-switch-section__right-content {
    position: absolute;
    right: 140px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 4;
    width: 310px;
    pointer-events: none;
}

.mode-image-wrapper {
    position: relative;
    width: 310px;
    height: 205px;
}

.mode-image-wrapper__item {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(16px);
    transition: opacity 0.35s ease, transform 0.35s ease, visibility 0.35s ease;
}

.mode-image-wrapper__item.is-active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mode-image-wrapper__item img {
    display: block;
    width: 100%;
    height: auto;
}

/* ===== Text ===== */
.mode-switch-section__before-title {
    font-size: var(--font-size-24);
    font-weight: 700;
    color: #6f0d22;
    margin-bottom: 26px;
}

.mode-switch-section__value-wrapper {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 22px;
    line-height: 1;
}

.mode-label {
    font-size: var(--font-size-48);
    color: #b8b0a3;
    transition: color 0.3s ease;
}

.mode-switch-section__inner.is-normal .mode-label[data-mode-label="normal"] {
    color: #121212;
}

.mode-switch-section__inner.is-normal .mode-label[data-mode-label="boost"] {
    color: #b8b0a3;
}

.mode-switch-section__inner.is-boost .mode-label[data-mode-label="normal"] {
    color: #b8b0a3;
}

.mode-switch-section__inner.is-boost .mode-label[data-mode-label="boost"] {
    color: #ef0f0f;
}

.value-separator {
    font-size: 58px;
    color: #121212;
}

.mode-switch-section__desc {
    font-size: var(--font-size-16);
    line-height: 1.45;
    color: #4e4e4e;
}

/* ========== 9) Product Color ========== */
.product-color-section {
    --color-gradient: linear-gradient(146.81deg, #585858 7.6%, #565656 9.92%, #262626 84.81%);
    --color-name: #d6d6d6;
    padding: 88px 0 96px;
    color: var(--color-secondary);
}

.product-color-section__before-title {
    margin-bottom: var(--margin-bottom-32);
    color: var(--color-primary);
    font-size: var(--font-size-24);
    font-weight: 700;
}

.product-color-section__title {
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
    font-size: var(--font-size-48);
    line-height: 1.05;
    letter-spacing: -0.02em;
}

.product-color-section__title span {
    display: block;
}

.product-color-section__grid {
    margin-top: 32px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
}

.product-color-section__column {
    display: flex;
    flex-direction: column;
    flex: 0 0 auto;
    width: auto;
}

.product-color-section__gallery-item {
    width: fit-content;
    border-radius: 34px;
    overflow: hidden;
    box-shadow:
        0 20px 60px rgba(230, 215, 190, 0.35),
        0 8px 20px rgba(230, 215, 190, 0.2);
}

.product-color-section__gallery-item img {
    display: block;
    width: auto;
    height: auto;
    max-width: 100%;
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.28s ease, transform 0.28s ease;
    will-change: opacity, transform;
}

.product-color-section__column-footer {
    margin-top: 18px;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-color-section__dots {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
}

.product-color-section__dot {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.product-color-section__dot[data-color="red"] {
    background: linear-gradient(146.84deg, #B31E3D 7.62%, #A21B37 26.15%, #721327 84.81%);
}

.product-color-section__dot[data-color="black"] {
    background: linear-gradient(146.81deg, #585858 7.6%, #565656 9.92%, #262626 84.81%);
}

.product-color-section__dot[data-color="blue"] {
    background: linear-gradient(146.81deg, #E7EBEB 7.6%, #CED7D7 28.45%, #7F999D 84.81%);
}

.product-color-section__dot[data-color="green"] {
    background: linear-gradient(146.8deg, #C1D7C3 7.63%, #7CA988 61.42%, #4C895E 103.69%);
}

.product-color-section__dot[data-color="white"] {
    background: linear-gradient(146.81deg, #FEFBF2 7.63%, #C9C5BB 84.83%);
}

.product-color-section__dot:hover {
    transform: scale(1.06);
}

.product-color-section__dot.is-active {
    transform: scale(1.08);
    border-color: var(--color-accent);
    box-shadow: 0 0 0 2px var(--color-accent), 0 0 0 3px var(--color-surface);
}

.product-color-section__name {
    text-align: center;
    font-size: var(--font-size-36);
    line-height: 1.1;
    color: var(--color-name);
    background: var(--color-gradient-text, var(--color-gradient));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    white-space: normal;
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.28s ease, transform 0.28s ease;
    will-change: opacity, transform;
}

.product-color-section.is-switching .product-color-section__gallery-item img {
    opacity: 0;
    transform: translateY(10px);
}

.product-color-section.is-switching .product-color-section__name {
    opacity: 0;
    transform: translateY(6px);
}

.product-color-section.color-red {
    --color-gradient: linear-gradient(146.84deg, #B31E3D 7.62%, #A21B37 26.15%, #721327 84.81%);
    --color-gradient-text: linear-gradient(180deg, #B31E3D 0%, #A21B37 45%, #721327 100%);
    --color-name: #8f1431;
}

.product-color-section.color-black {
    --color-gradient: linear-gradient(146.81deg, #585858 7.6%, #565656 9.92%, #262626 84.81%);
    --color-gradient-text: linear-gradient(180deg, #585858 0%, #565656 45%, #262626 100%);
    --color-name: #565656;
}

.product-color-section.color-blue {
    --color-gradient: linear-gradient(146.81deg, #E7EBEB 7.6%, #CED7D7 28.45%, #7F999D 84.81%);
    --color-gradient-text: linear-gradient(180deg, #E7EBEB 0%, #CED7D7 45%, #7F999D 100%);
    --color-name: #9db8bd;
}

.product-color-section.color-green {
    --color-gradient: linear-gradient(146.8deg, #C1D7C3 7.63%, #7CA988 61.42%, #4C895E 103.69%);
    --color-gradient-text: linear-gradient(180deg, #C1D7C3 0%, #7CA988 55%, #4C895E 100%);
    --color-name: #7ca988;
}

.product-color-section.color-white {
    --color-gradient: linear-gradient(146.81deg, #FEFBF2 7.63%, #C9C5BB 84.83%);
    --color-gradient-text: linear-gradient(180deg, #FEFBF2 0%, #C9C5BB 100%);
    --color-name: #f2efe8;
}















/* ========== 10) Sustainable Luxury ========== */
.sustainable-luxury-section {
    padding: 88px 0 96px;
    margin-top: var(--section-margin-bottom);
}

.sustainable-luxury-section__top {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 640px);
    align-items: end;
    column-gap: 48px;
    row-gap: 16px;
    margin-bottom: 26px;
}

.sustainable-luxury-section__before-title {
    margin-bottom: 10px;
    font-size: var(--font-size-24);
    font-weight: 700;
}

.sustainable-luxury-section__before-title span {
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #6f0d22;
}

.sustainable-luxury-section__title {
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-size: clamp(36px, 2.8vw, 58px);
    font-weight: 500;
    color: rgba(52, 199, 89, 1);
}

.sustainable-luxury-section__title span {
    display: block;
    line-height: 1.02;
    letter-spacing: -0.02em;
}

.sustainable-luxury-section__desc {
    margin: 18px 0 0;
    text-align: left;
    font-size: var(--font-size-16);
}

.sustainable-luxury-section__desc span {
    display: block;
    line-height: 1.5;
}

.sustainable-luxury-section__image-wrapper {
    width: 100%;
    border-radius: 26px;
    overflow: hidden;
}

.sustainable-luxury-section__image-wrapper picture {
    display: block;
    width: 100%;
}

.sustainable-luxury-section__image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}















/* ========== 11) Specification ========== */
.specification-section {
    padding: 58px 0 64px;
    background: var(--color-accent);
}

.specification-section__inner {
    max-width: var(--specification-max-width);
}

.specification-section__title {
    margin-bottom: 64px;
    font-size: var(--font-size-40);
    font-weight: 400;
    text-align: center;
}

.specification-section__panel {
    background: var(--color-base-surface);
    border-radius: 20px;
    padding: 200px 283px 200px;
    border: 1px solid rgba(36, 36, 36, 0.08);
}

.specification-section__product-head {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: end;
    gap: 28px;
    padding-bottom: 22px;
    border-bottom: 1px solid rgba(36, 36, 36, 0.14);
}

.specification-section__image-wrap {
    width: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.specification-section__image-wrap img {
    display: block;
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: none;
}

.specification-section__image-wrap--device {
    grid-column: 1;
}

.specification-section__image-wrap--pod {
    grid-column: 2;
}

.specification-section__product-name {
    margin: 22px 0 0;
    font-size: var(--font-size-32);
    font-weight: 500;
    line-height: 1.1;
    color: var(--color-text);
    text-align: center;
}

.specification-section__product-name--device {
    grid-column: 1;
}

.specification-section__product-name--pod {
    grid-column: 2;
}

.specification-section__dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin: 14px 0 0;
    min-height: 40px;
}

.specification-section__dots--device {
    grid-column: 1;
}

.specification-section__pod-note {
    margin: 0;
    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--font-size-20);
    line-height: 1.35;
    color: var(--color-secondary);
    text-align: center;
}

.specification-section__pod-note--pod {
    grid-column: 2;
}

.specification-section__dot {
    width: 39px;
    height: 39px;
    border-radius: 50%;
    border: 1px solid rgba(36, 36, 36, 0.15);
}

.specification-section__dot--red {
    background: #b31e3d;
}

.specification-section__dot--black {
    background: #2d2d2d;
}

.specification-section__dot--blue {
    background: #cedadd;
}

.specification-section__dot--green {
    background: #9abca3;
}

.specification-section__dot--white {
    background: #efebe2;
}

.specification-section__table {
    display: flex;
    flex-direction: column;
}

.specification-section__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    justify-content: center;
    gap: 28px;
    padding: 18px 0 20px;
}

.specification-section__row:last-child .spec-cell {
    padding-bottom: 4px;
}

.spec-cell {
    min-height: fit-content;
    width: min(100%, 400px);
    max-width: 400px;
    justify-self: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    font-size: var(--font-size-16);
    line-height: 1.45;
    color: var(--color-secondary);
    padding-bottom: 30px;
}

.spec-cell::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 1rem;
    height: 1px;
    background: rgba(24, 24, 24, 0.14);
}

.specification-section__row:first-child .spec-cell::before {
    display: none;
}

/* 顶部分隔线距单元格顶 1rem；线下方再留 1rem。device / pod 两列一致 */
.specification-section__row:not(:first-child) .spec-cell--device,
.specification-section__row:not(:first-child) .spec-cell--pod {
    padding-top: calc(1rem + 1px + 1rem);
}

.spec-cell__icon-slot {
    width: 44px;
    height: 44px;
    margin-bottom: 10px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    flex-shrink: 0;
}

.spec-cell__icon {
    width: 44px;
    height: 44px;
    object-fit: contain;
    display: block;
}

.spec-cell__texts {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0;
}

.spec-cell__text {
    display: block;
}















/* ========== 12) Package List ========== */
.package-section {
    padding: 88px 0 96px;
    background: var(--color-accent);
}

.package-section__inner {
    max-width: var(--specification-max-width);
    margin: 0 auto;
}

.package-section__title {
    margin: 0 0 var(--section-margin-bottom);
    font-size: var(--font-size-40);
    font-weight: 400;
    text-align: center;
    color: var(--color-base-dark);
}

.kit-package,
.pod-package {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    display: block;
}

.pod-package {
    margin-top: var(--section-margin-bottom);
}

.package__content {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    z-index: 2;
    width: 100%;
    max-width: none;
    padding: clamp(1.75rem, 5vw, 3.5rem) clamp(1.5rem, 6vw, 4.5rem) 1.5rem;
    box-sizing: border-box;
    text-align: left;
    color: var(--color-base-white);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
}

.pod-package .package__content {
    color: var(--color-base-dark);
    text-shadow: none;
}

.package__title {
    margin: 0 0 22px;
    font-size: clamp(34px, 2.6vw, 48px);
    line-height: 1.05;
}

.package__description {
    margin-bottom: 24px;
}

.package__description span {
    display: block;
    font-size: var(--font-size-18);
    line-height: 1.5;
    font-weight: 500;
}

.package__list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.package__list li {
    font-size: var(--font-size-18);
    line-height: 1.5;
}

.package__list > li:first-child {
    font-weight: 500;
}

.package__image-wrapper {
    position: relative;
    z-index: 1;
    width: 100%;
    line-height: 0;
}

.package__image-wrapper picture {
    display: block;
    width: 100%;
    height: auto;
}

.package__image-wrapper img {
    display: block;
    width: 100%;
    height: auto;
    max-width: 100%;
}

/* ========== 13) Call To Action ========== */
.call-to-action-section {
    background: var(--color-primary);
    color: var(--color-accent);
    padding: clamp(56px, 6vw, 92px) 0;
    overflow: hidden;
}

.call-to-action-section__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 18px;
}

.call-to-action-section__title {
    max-width: 980px;
    font-size: var(--font-size-36);
    font-weight: 400;
    line-height: 1.25;
    letter-spacing: -0.01em;
    color: var(--color-accent);
}

.call-to-action-section__description {
    max-width: 880px;
}

.call-to-action-section__description span {
    display: block;
    margin: 0 auto;
    font-size: var(--font-size-16);
    line-height: 1.7;
    /* color: var(--color-on-dark-subtle); */
}

.call-to-action-section__content {
    margin-top: 8px;
    display: flex;
    justify-content: center;
}

.call-to-action-section__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 95px;
    padding: 14px 22px;
    border: 1px solid var(--color-accent);
    border-radius: 9999px;
    background: transparent;
    color: var(--color-accent);
    text-decoration: none;
    font-size: var(--font-size-12);
    font-weight: 600;
    transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
    white-space: nowrap;
}

.call-to-action-section__btn:hover {
    background: var(--color-accent);
    color: var(--color-primary);
    border-color: var(--color-accent);
}

.call-to-action-section__btn:focus-visible {
    outline: 2px solid var(--color-accent);
    outline-offset: 3px;
}

/* ========== 响应式（各断点内大致按模块顺序：卖点区块 → 规格 → 包装） ========== */

/* --- min-width: 2560px --- */
@media (min-width: 2560px) {

    .pod-lifespan {
        padding: 118px 0 106px;
    }

    .pod-lifespan__inner {
        max-width: 1760px;
    }

    .pod-lifespan__image-wrapper {
        width: min(100%, 1680px);
    }

    .zero-waste-section {
        padding: 120px 0 108px;
    }

    .zero-waste-section__inner {
        max-width: 1800px;
    }

    .zero-waste-section__image {
        max-width: 1680px;
    }

    .zero-waste-section__badge--left {
        left: 17%;
        width: 160px;
    }

    .zero-waste-section__badge--right {
        right: 15%;
        width: 160px;
    }

    .battery-section {
        padding: 116px 0 110px;
    }

    .battery-section__inner {
        max-width: 1980px;
    }

    .battery-video-wrapper {
        max-width: 1660px;
        min-height: 760px;
    }

    .battery-parameter-section {
        max-width: 1660px;
    }

    .product-color-section {
        padding: 112px 0 120px;
    }

    .product-color-section__inner {
        max-width: 1980px;
    }

    .product-color-section__gallery-item {
        border-radius: 30px;
    }

    .sustainable-luxury-section {
        padding: 112px 0 120px;
    }

    .sustainable-luxury-section__inner {
        max-width: 1980px;
    }

    .sustainable-luxury-section__top {
        grid-template-columns: minmax(0, 1fr) minmax(0, 700px);
        column-gap: 72px;
        margin-bottom: 34px;
    }

    .sustainable-luxury-section__title span {
        font-size: clamp(44px, 2.6vw, 72px);
    }

    .sustainable-luxury-section__image-wrapper {
        border-radius: 34px;
    }

    :root {
        --specification-max-width: 1980px;
    }

    .specification-section {
        padding: 112px 0 120px;
    }

    .specification-section__panel {
        border-radius: 28px;
        padding: 64px 74px 52px;
    }

    .spec-cell {
        min-height: 104px;
        font-size: var(--font-size-24);
    }

    .spec-cell__icon-slot {
        width: 50px;
        height: 50px;
        margin-bottom: 12px;
    }

    .spec-cell__icon {
        width: 50px;
        height: 50px;
    }

    .package-section {
        padding: 112px 0 120px;
    }

    .package-section__inner {
        max-width: 1980px;
    }
}

/* --- max-width: 1680px --- */
@media (max-width: 1680px) {

    .pod-lifespan {
        padding-top: 86px;
    }

    .zero-waste-section {
        padding-top: 88px;
    }

    .zero-waste-section__image {
        margin-top: 34px;
    }

    .capacity-section__curve-band {
        height: 560px;
    }

    .battery-section {
        padding-top: 84px;
    }

    .battery-video-wrapper {
        min-height: 600px;
    }

    .product-color-section {
        padding-top: 80px;
    }

    .sustainable-luxury-section__top {
        grid-template-columns: minmax(0, 1fr) minmax(0, 520px);
    }

    .specification-section {
        padding-top: 80px;
    }

    .specification-section__panel {
        padding-left: 48px;
        padding-right: 48px;
    }
}

/* --- max-width: 1440px --- */
@media (max-width: 1440px) {

    .pod-lifespan__title {
        font-size: clamp(34px, 3vw, 48px);
    }

    .pod-lifespan__image-data {
        gap: 24px;
    }

    .zero-waste-section__title {
        font-size: clamp(34px, 3vw, 48px);
    }

    .zero-waste-section__badge--left {
        left: 16%;
        top: 32%;
    }

    .zero-waste-section__badge--right {
        right: 14%;
        top: 56%;
    }

    .battery-section__title {
        font-size: var(--font-size-24);
    }

    .battery-video-wrapper {
        min-height: 520px;
        border-radius: 24px;
    }

    .product-color-section__before-title {
        font-size: var(--font-size-20);
    }

    .product-color-section__title {
        font-size: clamp(32px, 3vw, 50px);
    }

    .product-color-section__name {
        font-size: clamp(28px, 2.4vw, 38px);
    }

    .sustainable-luxury-section {
        padding-top: 80px;
    }

    .sustainable-luxury-section__top {
        grid-template-columns: minmax(0, 1fr) minmax(0, 460px);
        column-gap: 32px;
    }

    .sustainable-luxury-section__before-title {
        font-size: var(--font-size-20);
    }

    .sustainable-luxury-section__title {
        font-size: clamp(34px, 3vw, 50px);
    }

    .sustainable-luxury-section__image-wrapper {
        border-radius: 22px;
    }

    .specification-section__before-title {
        font-size: var(--font-size-20);
    }

    .specification-section__panel {
        padding: 40px 40px 34px;
    }

    .specification-section__product-name {
        font-size: clamp(24px, 2.1vw, 30px);
    }

    .specification-section__pod-note {
        font-size: var(--font-size-18);
    }

    .spec-cell {
        font-size: var(--font-size-18);
    }

    .spec-cell__icon-slot {
        width: 40px;
        height: 40px;
    }

    .spec-cell__icon {
        width: 40px;
        height: 40px;
    }

    .package-section__title {
        font-size: var(--font-size-20);
    }

    .package__content {
        padding: clamp(3rem, 4vw, 4.25rem) clamp(2rem, 2.5vw, 2.625rem) clamp(1.5rem, 2vw, 2rem);
    }
}

/* --- max-width: 1280px --- */
@media (max-width: 1280px) {

    .pod-lifespan {
        padding: 74px 0 68px;
    }

    .pod-lifespan__image-wrapper {
        border-radius: 20px;
    }

    .pod-lifespan__image-data {
        padding: 20px 24px 18px;
    }

    .zero-waste-section {
        padding: 74px 0 68px;
    }

    .zero-waste-section__desc {
        max-width: 900px;
    }

    .zero-waste-section__image {
        border-radius: 20px;
    }

    .zero-waste-section__badge--left {
        left: 14%;
        width: min(13vw, 130px);
    }

    .zero-waste-section__badge--right {
        right: 13%;
        width: min(13vw, 130px);
    }

    .capacity-section__hero {
        padding-top: 72px;
    }

    .capacity-section__curve-band {
        height: 500px;
    }

    .battery-section {
        padding: 72px 0 72px;
    }

    .battery-section__media {
        margin-top: 34px;
    }

    .battery-video-wrapper {
        min-height: 480px;
        margin-top: 0;
    }

    .battery-parameter-section {
        margin-top: 28px;
        column-gap: 24px;
    }

    .product-color-section {
        padding: 72px 0 80px;
    }

    .product-color-section__grid {
        margin-top: 24px;
        gap: 8px;
    }

    .sustainable-luxury-section {
        padding: 72px 0 80px;
    }

    .sustainable-luxury-section__top {
        grid-template-columns: minmax(0, 1fr) minmax(0, 430px);
        column-gap: 24px;
        margin-bottom: 22px;
    }

    .sustainable-luxury-section__desc {
        margin-top: 10px;
    }

    .specification-section {
        padding: 72px 0 80px;
    }

    .specification-section__panel {
        padding: 34px 28px 30px;
    }

    .specification-section__row {
        gap: 20px;
    }

    .package-section {
        padding: 72px 0 80px;
    }

    .package__content {
        padding: clamp(2.5rem, 3.5vw, 3.125rem) clamp(1.5rem, 2vw, 2rem) clamp(1.25rem, 1.5vw, 1.5rem);
    }

    .package__title {
        margin-bottom: 16px;
        font-size: clamp(30px, 3vw, 40px);
    }

    .package__description {
        margin-bottom: 16px;
    }

    .package__description span,
    .package__list li {
        font-size: var(--font-size-16);
    }
}

/* --- max-width: 1024px --- */
@media (max-width: 1024px) {

    .pod-lifespan {
        padding: 66px 0 60px;
    }

    .pod-lifespan__before-title span {
        font-size: var(--font-size-18);
    }

    .pod-lifespan__title {
        font-size: clamp(30px, 4.2vw, 40px);
    }

    .pod-lifespan__image-data {
        gap: 18px;
        padding: 16px 18px;
    }

    .pod-lifespan__image-data-item .data-label,
    .pod-lifespan__image-data-item .data-sublabel {
        font-size: var(--font-size-14);
    }

    .zero-waste-section {
        padding: 66px 0 60px;
    }

    .zero-waste-section__before-title {
        font-size: var(--font-size-18);
    }

    .zero-waste-section__title {
        font-size: clamp(30px, 4.2vw, 40px);
    }

    .zero-waste-section__desc {
        max-width: 760px;
    }

    .zero-waste-section__badge--left {
        left: 11%;
        top: 34%;
        width: 100px;
    }

    .zero-waste-section__badge--right {
        right: 10%;
        top: 57%;
        width: 100px;
    }

    .capacity-section__curve-band {
        height: 460px;
    }

    .capacity-section .experience__product-images {
        gap: 28px;
    }

    .battery-section {
        padding: 64px 0;
    }

    .battery-section__before-title {
        font-size: var(--font-size-18);
    }

    .battery-video-wrapper {
        min-height: 420px;
    }

    .battery-parameter-section .parameter-value {
        font-size: clamp(28px, 3.2vw, 40px);
    }

    .product-color-section {
        padding: 64px 0 72px;
    }

    .product-color-section__title {
        font-size: clamp(30px, 4.2vw, 40px);
    }

    .product-color-section__name {
        font-size: clamp(24px, 3.2vw, 32px);
    }

    .sustainable-luxury-section {
        padding: 64px 0 72px;
    }

    .sustainable-luxury-section__top {
        grid-template-columns: 1fr;
        row-gap: 10px;
    }

    .sustainable-luxury-section__desc {
        margin-top: 0;
        max-width: 760px;
    }

    .sustainable-luxury-section__image-wrapper {
        border-radius: 18px;
    }

    .specification-section {
        padding: 64px 0 72px;
    }

    .specification-section__panel {
        padding: 28px 20px 24px;
        border-radius: 16px;
    }

    .specification-section__product-head,
    .specification-section__row {
        gap: 16px;
    }

    .spec-cell {
        min-height: 84px;
        font-size: var(--font-size-16);
        line-height: 1.4;
    }

    .specification-section__pod-note {
        font-size: var(--font-size-16);
    }

    .spec-cell__icon-slot {
        width: 34px;
        height: 34px;
        margin-bottom: 8px;
    }

    .spec-cell__icon {
        width: 34px;
        height: 34px;
    }

    .package-section {
        padding: 64px 0 72px;
    }

    .kit-package,
    .pod-package {
        min-height: auto;
    }

    .kit-package .package__content,
    .pod-package .package__content {
        padding: clamp(1.25rem, 4vw, 2.5rem) clamp(1.125rem, 4vw, 1.75rem) clamp(1rem, 2.5vw, 1.5rem);
    }
}

/* --- max-width: 768px（移动端；末段为原 576 档，同选择器后写覆盖前写） --- */
@media (max-width: 768px) {

    .battery-video-wrapper .battery-video--desktop {
        display: none !important;
    }

    .battery-video-wrapper .battery-video--mobile {
        display: block !important;
    }

    /* TELA 首屏 KV：竖版区域单 video 铺满 */
    .tela-page .tela-slider .tela-kv-video-wrapper .tela-kv-video {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }

    .tela-page .tela-slider .tela-kv-video-wrapper {
        aspect-ratio: 9 / 16;
        max-height: min(92vh, 900px);
        margin: 0 auto;
    }

    /* 首屏轮播：隐藏底部分页 */
    .tela-slider .slider__pagination {
        display: none;
    }

    /*
     * Details：轨道区（viewport / track / 卡片与配图）对齐 nolik-lab 小屏实现。
     * 分页 .details-slider__pagination / __dots / __dot / __arrow 沿用本页既有 Tela 样式，不套用 nolik-lab 分页皮肤。
     */
    .tela-page {
        --details-slider-padding: 16px;
    }

    .tela-page .details-slider__inner {
        gap: 1.25rem;
    }

    .tela-page .details-slider__headline {
        font-size: clamp(1.5rem, 5vw, var(--font-size-48));
    }

    .tela-page .details-slider__viewport {
        padding-bottom: 0;
    }

    .tela-page .details-slider__track {
        align-items: flex-start;
    }

    .tela-page .details-slider__card {
        --details-slider-peek: 12px;
        --details-slider-radius: 28px;
        box-sizing: border-box;
        align-self: flex-start;
        aspect-ratio: 335 / 340;
    }

    .tela-page .details-slider__card-img {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        max-width: none;
        margin: 0;
        border-radius: inherit;
        overflow: hidden;
    }

    .tela-page .details-slider__card-img picture {
        display: block;
        width: 100%;
        height: 100%;
    }

    .tela-page .details-slider__card-img img {
        width: 100%;
        height: 100%;
        max-width: none;
        aspect-ratio: auto;
        object-fit: cover;
        object-position: center;
    }

    /* 移动端：标题在配图区域顶部水平居中 */
    .tela-page .details-slider__card-content {
        top: 0;
        bottom: auto;
        left: 50%;
        transform: translateX(-50%);
        width: 100%;
        padding: 12px 16px 0;
        justify-content: flex-start;
        align-items: center;
        text-align: center;
        font-size: var(--font-size-16);
    }

    .tela-page .details-slider__card:first-child .details-slider__card-content {
        left: 50%;
        top: 0;
        bottom: auto;
        transform: translateX(-50%);
        align-items: center;
        text-align: center;
        padding: 12px 16px 0;
    }

    .details-slider__card-before-title {
        display: none;
    }

    .tela-page .details-slider__card-title {
        width: 100%;
        font-size: 16px;
        font-weight: 600;
        line-height: 1.25;
        white-space: nowrap;
        text-align: center;
    }

    .tela-page .details-slider__card-title span {
        white-space: nowrap;
        text-align: center;
    }

    .tela-page .details-slider__card:first-child .details-slider__card-content .details-slider__card-title {
        color: #fcfcf4;
        font-size: 16px;
        font-weight: 400;
    }

    .tela-page .details-slider__card:first-child .details-slider__card-content .details-slider__card-desc {
        font-size: var(--font-size-14);
        white-space: normal;
    }

    .tela-page .details-slider__card:last-child .details-slider__card-content {
        color: #34c759;
    }


    /* Leak-Proof */

    .leak-resistant-podsystem__inner {
        left: 50%;
        right: auto;
        top: 0;
        bottom: 0;
        transform: translateX(-50%);
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        width: 100%;
        padding: 50px 16px 24px;
        box-sizing: border-box;
    }

    .leak-resistant-podsystem__cta {
        margin-top: auto;
        margin-bottom: 0;
    }

    .leak-resistant-podsystem__before-title {
        font-size: var(--font-size-12);
        margin-bottom: 1rem;
    }

    .leak-resistant-podsystem__title {
        font-size: var(--font-size-24);
        margin-bottom: 1rem;
    }

    .leak-resistant-podsystem__title span {
        white-space: nowrap;
    }

    .leak-resistant-podsystem__desc {
        font-size: var(--font-size-10);
        line-height: 1.4;
    }

    /* Pod Lifespan · Zero Waste */
    .pod-lifespan {
        padding: 56px 0 52px;
    }

    .pod-lifespan__before-title {
        margin-bottom: 10px;
        font-size: var(--font-size-12);
    }

    .pod-lifespan__before-title span {
        letter-spacing: 0.06em;
    }

    .pod-lifespan__title {
        font-size: var(--font-size-24);
        white-space: nowrap;
    }

    .pod-lifespan__desc {
        margin-top: 10px;
        font-size: var(--font-size-8);
    }

    .pod-lifespan__desc span {
        font-size: var(--font-size-14);
    }

    .pod-lifespan__image-wrapper {
        margin-top: 24px;
        border-radius: 16px;
        display: flex;
        flex-direction: column;
        padding: 0 20px;
    }

    .pod-lifespan__image {
        flex-shrink: 0;
    }

    .pod-lifespan__image-data-item .data-label, .pod-lifespan__image-data-item .data-sublabel {
        font-size: var(--font-size-8);
    }

    /* 数据区在配图下方三列排布，与参考稿一致（不叠在图上） */
    .pod-lifespan__image-data {
        position: static;
        width: 100%;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 10px 12px;
        padding: 14px 16px 16px;
        text-align: left;
        align-items: start;
    }

    .pod-lifespan__image-data-item {
        text-align: left;
        min-width: 0;
    }

    .pod-lifespan__disclaimer {
        margin-top: 14px;
        max-width: 230px;
        margin-inline-start: auto;
        margin-inline-end: 0;
        text-align: left;
        font-size: var(--font-size-6);
    }

    .zero-waste-section {
        padding: 56px 0 52px;
    }

    .zero-waste-section__before-title {
        margin-bottom: 1rem;
        font-size: var(--font-size-12);
    }

    .zero-waste-section__before-title span {
        letter-spacing: 0.06em;
    }

    .zero-waste-section__title {
        font-size: var(--font-size-24);
        margin-bottom: 1rem;
    }

    .zero-waste-section__desc {
        margin-bottom: 2rem;
    }

    .zero-waste-section__desc span {
        font-size: var(--font-size-14);
    }

    .zero-waste-section__image {
        margin-top: 24px;
        border-radius: 16px;
    }

    .zero-waste-section__badge--left {
        left: 8%;
        top: 30%;
        width: 76px;
    }

    .zero-waste-section__badge--right {
        right: 7%;
        top: 56%;
        width: 76px;
    }

    .zero-waste-section__disclaimer {
        margin-top: 14px;
        max-width: 230px;
        margin-inline-start: auto;
        margin-inline-end: 0;
        text-align: left;
        font-size: var(--font-size-6);
    }

    /* Capacity */
    .capacity-section__hero {
        padding: 56px 20px 28px;
    }

    .capacity-section__before-title {
        font-size: var(--font-size-12);
        margin-bottom: 1rem;
    }

    .capacity-section__title {
        font-size: var(--font-size-24);
        margin-bottom: 1rem;
    }

    .capacity-section__desc {
        font-size: var(--font-size-8);
        margin: 0 auto 2rem;
    }

    .capacity-section__curve-band {
        height: 180px;
        min-height: 180px;
        max-height: 180px;
        padding: 0;
        box-sizing: border-box;
        overflow: initial;
    }

    /* 上下弧度：更浅、更平（椭圆更扁、伸出更少） */
    .capacity-section__curve-band::before,
    .capacity-section__curve-band::after {
        display: block;
        width: 105%;
        height: min(16vw, 52px);
        border-radius: 50%;
    }

    .capacity-section__curve-band::before {
        top: calc(-0.36 * min(16vw, 52px));
    }

    .capacity-section__curve-band::after {
        bottom: calc(-0.36 * min(16vw, 52px));
    }

    /* 两枚 Pod 横向错落：左偏上、右偏下（适配 180px 高色带） */
    .capacity-section .experience__product-images {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        align-items: center;
        justify-content: center;
        gap: clamp(12px, 4vw, 24px);
        height: 100%;
        min-height: 0;
        max-width: 100%;
        margin: 0 auto;
        padding: 0 45px;
        box-sizing: border-box;
    }

    .capacity-section .experience__product-images .capacity-section__image-wrap {
        flex: 1 1 50%;
        max-width: min(48%, 280px);
        min-width: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        max-height: 100%;
    }

    .capacity-section .experience__product-images .capacity-section__image-wrap img {
        max-height: 132px;
        width: auto;
        max-width: 100%;
        height: auto;
        object-fit: contain;
    }

    .capacity-section .experience__product-images .capacity-section__image-wrap:first-child {
        align-self: flex-start;
    }

    .capacity-section .experience__product-images .capacity-section__image-wrap:last-child {
        align-self: flex-end;
    }

    .capacity-section__products-info {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 36px 20px 64px;
    }

    .capacity-section__pod-info {
        flex-wrap: nowrap;
        justify-content: space-evenly;
        gap: 0;
        padding: 20px 12px 44px;
        font-size: var(--font-size-18);
    }


    /* Battery */
    .battery-section {
        padding: 52px 0 56px;
    }

    .battery-section__before-title {
        margin-bottom: 10px;
    }

    .battery-section__title {
        font-size: clamp(26px, 7.4vw, 34px);
    }

    .battery-section__desc {
        margin-top: 8px;
        font-size: var(--font-size-8);
    }

    .battery-section__media {
        position: relative;
        margin-top: 24px;
        margin-bottom: var(--section-margin-bottom);
        padding: 0;
        box-sizing: border-box;
    }

    .battery-video-wrapper {
        width: 100%;
        min-height: 300px;
        margin-top: 0;
        border-radius: 20px;
    }

    /* 参数漂浮在视频左侧，竖向排列并垂直居中 */
    .battery-section__media .battery-parameter-section {
        position: absolute;
        left: 16px;
        top: 50%;
        transform: translateY(-50%);
        z-index: 2;
        margin: 0;
        padding: 12px 0 12px;
        max-width: min(46%, 200px);
        min-width: 0;
        width: auto;
        box-sizing: border-box;
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 10px;
        border-radius: 12px;
        color: var(--color-primary);
    }

    /* .battery-section__media .battery-parameter-section .parameter-label {
        color: rgba(245, 241, 232, 0.9);
    } */

    /* .battery-section__media .battery-parameter-section .parameter-value {
        color: #f5f1e8;
    } */

    .battery-section__media .battery-parameter-section__item {
        border-top-color: var(--color-primary);
        padding-top: 10px;
    }

    /* Mode Switch */
    .mode-switch-section {
        padding: 0 20px;
    }

    .mode-switch-section__inner {
        display: flex;
        flex-direction: column;
        gap: 18px;
    }

    /* 标题单独放上面，不再覆盖视频 */
    .mode-switch-section__content {
        position: static;
        inset: auto;
        display: block;
        padding: 0;
        pointer-events: none;
    }

    .mode-switch-section__left-content {
        max-width: 100%;
    }

    .mode-switch-section__before-title {
        font-size: var(--font-size-12);
        margin-bottom: 10px;
    }

    .mode-switch-section__value-wrapper {
        gap: 6px;
        margin-bottom: 10px;
    }

    .mode-label {
        font-size: var(--font-size-24);
        line-height: 1.1;
    }

    .value-separator {
        font-size: 28px;
        line-height: 1.1; 
    }

    .mode-switch-section__desc {
        font-size: var(--font-size-8);
        line-height: 1.45;
        max-width: 290px;
    }

    /* 视频卡片在中间 */
    .mode-switch-video-wrapper {
        position: relative;
        min-height: auto;
        height: 440px;
        border-radius: 24px;
        overflow: hidden;
    }

    .mode-switch-video {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    /* 小图放在视频底部中间 */
    .mode-switch-section__right-content {
        position: absolute;
        left: 50%;
        right: auto;
        top: auto;
        bottom: 14px;
        transform: translateX(-50%);
        width: 132px;
        z-index: 4;
    }

    .mode-image-wrapper {
        width: 132px;
        height: 80px;
    }

    /* Product Color */
    .product-color-section {
        padding: 56px 0 62px;
    }

    .product-color-section__before-title {
        margin-bottom: 8px;
        font-size: var(--font-size-12);
    }

    .product-color-section__title {
        font-size: var(--font-size-24);
    }

    .product-color-section__grid {
        flex-direction: column;
        align-items: stretch;
    }

    .product-color-section__column:nth-child(2) {
        display: none;
    }

    .product-color-section__column {
        flex: 0 0 100%;
        width: 100%;
    }

    .product-color-section__gallery-item {
        border-radius: 16px;
    }

    .product-color-section__column-footer {
        margin-top: 14px;
        min-height: auto;
    }

    .product-color-section__name {
        text-align: center;
        font-size: clamp(22px, 7vw, 30px);
    }

    /* Sustainable Luxury */
    .sustainable-luxury-section {
        padding: 56px 0 62px;
    }

    .sustainable-luxury-section__top {
        margin-bottom: 16px;
    }

    .sustainable-luxury-section__before-title span {
        font-size: var(--font-size-16);
        margin-bottom: 1rem;
    }

    .sustainable-luxury-section__title {
        font-size: var(--font-size-24);
        margin-bottom: 1rem;
    }

    .sustainable-luxury-section__desc {
        font-size: var(--font-size-8);
        margin-bottom: 2rem;
    }

    .sustainable-luxury-section__image-wrapper {
        border-radius: 14px;
    }

    /* Specification */
    .specification-section {
        padding: 56px 0 62px;
    }

    .specification-section__before-title {
        margin-bottom: 8px;
        font-size: var(--font-size-16);
    }

    .specification-section__title {
        font-size: var(--font-size-24);
    }

    /*
     * 移动端单列（对齐设计稿）：TELA 头 → TELA 规格 → Pod 头 → Pod 规格
     * 将 head / table / row 设为 display:contents，子项参与 .panel 的 flex 排序（PC 不受影响）
     */
    .specification-section__panel {
        display: flex;
        flex-direction: column;
        align-items: stretch;
    }

    .specification-section__product-head {
        display: contents;
    }

    .specification-section__table {
        display: contents;
    }

    .specification-section__row {
        display: contents;
    }

    .specification-section__image-wrap--device {
        order: 1;
        padding: 70px 0 32px;
    }

    .specification-section__product-name--device {
        order: 2;
        margin-top: 10px;
    }

    .specification-section__dots--device {
        order: 3;
        margin-top: 0;
        margin-bottom: 0.5rem;
        padding-bottom: 0.75rem;
        border-bottom: 1px solid rgba(36, 36, 36, 0.14);
    }

    .specification-section__image-wrap--pod {
        order: 10;
        margin-top: 8rem;
    }

    .specification-section__image-wrap--pod img {
        max-width: 100px;
    }

    .specification-section__product-name--pod {
        order: 11;
        margin-top: 10px;
    }

    .specification-section__pod-note--pod {
        order: 12;
        margin-top: 8px;
    }

    /* 原双列里仅占位的 Pod 格（无图标、仅 “-”）移动端不展示 */
    .specification-section__panel > .spec-cell--pod:has(.spec-cell__icon-slot:empty) {
        display: none !important;
    }

    .spec-cell--device {
        order: 4;
    }

    .spec-cell--pod {
        order: 13;
    }

    .specification-section__panel > .spec-cell {
        width: 100%;
        max-width: none;
        padding-left: 0;
        padding-right: 0;
        padding-bottom: 16px;
        padding-top: 14px;
        align-self: center;
    }

    /* 与桌面一致：线距顶 1rem + 线下方再 1rem（device / pod 均适用） */
    .specification-section__panel .specification-section__row:not(:first-child) .spec-cell--device,
    .specification-section__panel .specification-section__row:not(:first-child) .spec-cell--pod {
        padding-top: calc(1rem + 1px + 1rem);
    }

    /* 首行 DOM 里的 Pod 格有顶线，与非首行一致要有相同顶内边距 */
    .specification-section__panel .specification-section__row:first-child .spec-cell--pod {
        padding-top: calc(1rem + 1px + 1rem);
    }

    .specification-section__product-name {
        font-size: clamp(18px, 4.2vw, 24px);
    }

    .specification-section__pod-note {
        font-size: var(--font-size-12);
    }

    .specification-section__dot {
        width: 14px;
        height: 14px;
    }

    /* 首行双格无顶线；移动端首行 DOM 里的 Pod 格视觉上在 Pod 头图下方，需保留顶部分隔线 */
    .specification-section__row:first-child .spec-cell--pod::before {
        display: block;
    }

    .spec-cell {
        min-height: auto;
        min-width: 0;
    }

    .spec-cell__texts {
        max-width: 100%;
    }

    .spec-cell__text {
        overflow-wrap: anywhere;
        font-size: var(--font-size-8);
    }

    .spec-cell__icon-slot {
        width: 30px;
        height: 30px;
        margin-bottom: 6px;
    }

    .spec-cell__icon {
        width: 30px;
        height: 30px;
    }

    /* Package List */
    .package-section__inner {
        padding: 0 20px;
    }

    .package-section {
        padding: 56px 0 62px;
    }

    .package-section__title {
        margin-bottom: 12px;
        font-size: var(--font-size-24);
    }

    /* .package__image-wrapper {
        min-height: 260px;
    } */

    /* .pod-package .package__image-wrapper {
        min-height: 220px;
    } */

    .package__title {
        margin-bottom: 10px;
        font-size: 20px;
    }

    /* 原 576 档：更窄屏在上方规则基础上再收紧（同选择器后写优先） */
    .pod-lifespan {
        padding-top: 48px;
    }

    .pod-lifespan__desc span {
        font-size: 13px;
        line-height: 1.45;
    }

    .pod-lifespan__image-data-item .data-value {
        font-size: var(--font-size-20);
    }

    .pod-lifespan__disclaimer {
        font-size: var(--font-size-6);
    }

    .zero-waste-section {
        padding-top: 48px;
    }


    .zero-waste-section__desc span {
        font-size: 13px;
        line-height: 1.45;
    }

    .zero-waste-section__badge--left {
        left: 7%;
        top: 29%;
        width: 64px;
    }

    .zero-waste-section__badge--right {
        right: 6%;
        top: 55%;
        width: 64px;
    }

    .zero-waste-section__disclaimer {
        font-size: var(--font-size-6);
    }

    /* .capacity-section__title {
        font-size: var(--font-size-24);
    } */

    .battery-section {
        padding-top: 48px;
    }

    .battery-section__before-title span {
        font-size: var(--font-size-12);
    }

    .battery-video-wrapper {
        min-height: 250px;
    }

    .battery-parameter-section .parameter-label {
        font-size: var(--font-size-8);
        color: var(--color-primary);
    }

    .battery-parameter-section .parameter-value {
        font-size: var(--font-size-20);
        color: var(--color-primary);
    }

    .product-color-section__title {
        font-size: clamp(24px, 8.2vw, 32px);
    }

    .product-color-section__dot {
        width: 24px;
        height: 24px;
    }

    .sustainable-luxury-section__title span {
        font-size: clamp(24px, 8.2vw, 32px);
    }

    .sustainable-luxury-section__desc span {
        line-height: 1.4;
    }

    .specification-section__panel {
        padding: 22px 14px 18px;
        border-radius: 14px;
    }

    .specification-section__dots {
        gap: 10px;
        margin-top: 14px;
    }

    .specification-section__dot {
        width: 12px;
        height: 12px;
    }

    .spec-cell {
        font-size: var(--font-size-14);
    }

    .spec-cell__icon-slot {
        width: 26px;
        height: 26px;
        margin-bottom: 5px;
    }

    .spec-cell__icon {
        width: 26px;
        height: 26px;
    }

    .kit-package,
    .pod-package {
        border-radius: 14px;
    }

    .kit-package .package__content, .pod-package .package__content {
        padding: 30px 24px 20px;
    }

    .pod-package .package__content {
        /* color: var(--color-base-white); */
        text-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
    }

    .package__description span,
    .package__list li {
        font-size: var(--font-size-12);
        line-height: 1.4;
    }

    /* 固定副导航（Tela）：汉堡 + 下拉动作区 */
    .fixed-secondary-menu--tela .fixed-secondary-menu__inner {
        display: flex;
        justify-content: space-between;
        align-items: center;
        grid-template-columns: none;
        position: relative;
    }

    .fixed-secondary-menu--tela .fixed-secondary-menu__logo {
        display: none;
    }

    /* 与 header 顶栏 .header__burger 同结构、同动画（components.css）；此处仅补 Tela 主题色与显示 */
    .fixed-secondary-menu--tela .fixed-secondary-menu__menu-btn.header__burger {
        display: flex;
        flex-shrink: 0;
        color: var(--color-base-primary);
    }

    .fixed-secondary-menu--tela .fixed-secondary-menu__menu-btn:focus-visible {
        outline: 2px solid var(--color-base-primary);
        outline-offset: 2px;
    }

    /* 相对 .fixed-secondary-menu__inner 定位：横向铺满视口（突破 container 宽度） */
    .fixed-secondary-menu--tela .fixed-secondary-menu__action {
        position: absolute;
        top: 100%;
        left: 50%;
        right: auto;
        transform: translateX(-50%);
        width: 100vw;
        max-width: 100vw;
        z-index: 2;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        gap: 0;
        padding: 0.75rem max(1.25rem, env(safe-area-inset-right)) 1rem max(1.25rem, env(safe-area-inset-left));
        margin: 0;
        box-sizing: border-box;
        background: var(--color-surface-warm);
        border-bottom: 1px solid var(--color-border);
        box-shadow: 0 12px 24px rgba(0, 0, 0, 0.06);
        display: none;
    }

    .fixed-secondary-menu--tela.fixed-secondary-menu--tela-nav-open .fixed-secondary-menu__action {
        display: flex;
    }

    .fixed-secondary-menu--tela.fixed-secondary-menu--visible.fixed-secondary-menu--tela-nav-open {
        overflow: visible;
        max-height: none;
    }

    .fixed-secondary-menu--tela.fixed-secondary-menu--tela-nav-open .fixed-secondary-menu__nav-item {
        padding: 0.75rem 0;
        border-bottom: 1px solid var(--color-border);
    }

    .fixed-secondary-menu--tela.fixed-secondary-menu--tela-nav-open .fixed-secondary-menu__btn {
        margin: 1rem auto;
        width: fit-content;
        text-align: center;
        box-sizing: border-box;
    }
}
