.etl-gw-scene-v2 {
    padding-top: var(--etl-gw-scene-v2-padding-top, 56px);
    padding-bottom: var(--etl-gw-scene-v2-padding-bottom, 56px);
    /* 统一为母亲节模块的暖粉白背景，保持向下划动时的视觉连贯 */
    background: #FFF8F8;
}

.etl-gw-scene-v2 * {
    box-sizing: border-box;
}

.etl-gw-scene-v2__inner {
    max-width: 1520px;
    margin: 0 auto;
    padding: 0 32px;
}

.etl-gw-scene-v2__header {
    text-align: center;
    margin-bottom: 20px;
}

.etl-gw-scene-v2__heading {
    margin: 0;
    color: #3A3030;
    /* 替换为高级暖深褐色 */
    font-size: 30px;
    line-height: 1.35;
    font-weight: 700;
}

.etl-gw-scene-v2__subheading {
    margin: 8px 0 0;
    color: #7A6B6B;
    /* 替换为暖灰褐色 */
    font-size: 14px;
    line-height: 1.8;
}

.etl-gw-scene-v2__tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 28px;
}

.etl-gw-scene-v2__tab {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-width: 170px;
    padding: 12px 20px;
    border: 1px solid #F4D5D8;
    /* 替换为柔和的粉色边框 */
    border-radius: 14px;
    background: #ffffff;
    color: #7A6B6B;
    /* 未选中时的文字颜色 */
    font-size: 15px;
    font-weight: 700;
    line-height: 1.2;
    cursor: pointer;
    transition: all 0.25s ease;
}

.etl-gw-scene-v2__tab-img {
    width: 24px;
    height: 24px;
    object-fit: contain;
    display: block;
}

.etl-gw-scene-v2__tab.is-active {
    border-color: #D8345F;
    /* 激活时替换为母亲节主视觉深粉红 */
    background: #D8345F;
    color: #ffffff;
}

.etl-gw-scene-v2__panel-wrap {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    align-items: start;
}

.etl-gw-scene-v2__block {
    min-width: 0;
}

.etl-gw-scene-v2__block.is-hidden {
    display: none;
}

.etl-gw-scene-v2__card {
    height: 100%;
    display: flex;
    flex-direction: column;
    border-radius: 16px;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 10px 24px rgba(216, 52, 95, 0.05);
    /* 阴影也带上一点点微粉的呼吸感 */
}

.etl-gw-scene-v2__card-image {
    width: 100%;
    display: block;
    aspect-ratio: 1 / 1;
    background: #ffffff;
    overflow: hidden;
    flex-shrink: 0;
}

.etl-gw-scene-v2__card-image>* {
    width: 100%;
    height: 100%;
    display: block;
}

.etl-gw-scene-v2__card-image img,
.etl-gw-scene-v2__card-image picture,
.etl-gw-scene-v2__card-image .sl-image,
.etl-gw-scene-v2__card-image .shopline-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.etl-gw-scene-v2__card-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #FFF0F2, #FFE5E8);
    /* 占位图背景改为粉色渐变 */
}

.etl-gw-scene-v2__card-body {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 14px 14px 16px;
}

.etl-gw-scene-v2__scene {
    color: #7A6B6B;
    /* 场景小标题 */
    font-size: 13px;
    font-weight: 700;
    line-height: 1.45;
}

.etl-gw-scene-v2__name {
    margin: 2px 0 0;
    color: #3A3030;
    /* 商品名称 */
    font-size: 14px;
    font-weight: 700;
    line-height: 1.55;
    min-height: 44px;
}

.etl-gw-scene-v2__price {
    margin-top: 8px;
    color: #D8345F;
    /* 价格高亮为深粉红 */
    font-size: 20px;
    font-weight: 800;
    line-height: 1.1;
}

.etl-gw-scene-v2__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 12px;
    width: 100%;
    min-height: 40px;
    border-radius: 8px;
    background: #3A3030;
    /* 购买按钮使用暖深褐色，压住阵脚，避免页面太飘 */
    color: #ffffff !important;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0;
    flex-shrink: 0;
    transition: opacity 0.2s;
}

.etl-gw-scene-v2__button--static {
    cursor: default;
}

.etl-gw-scene-v2__button:visited,
.etl-gw-scene-v2__button:hover,
.etl-gw-scene-v2__button:active {
    color: #ffffff !important;
    opacity: 0.85;
}

.etl-gw-scene-v2__footer {
    margin-top: 18px;
    text-align: center;
}

.etl-gw-scene-v2__note {
    margin: 0;
    line-height: 1.8;
}

.etl-gw-scene-v2__note+.etl-gw-scene-v2__note {
    margin-top: 4px;
}

.etl-gw-scene-v2__note--muted {
    color: #7A6B6B;
    font-size: 13px;
    font-weight: 700;
}

.etl-gw-scene-v2__note--accent {
    color: #D8345F;
    /* 底部强调文案使用深粉红 */
    font-size: 14px;
    font-weight: 700;
}

.etl-gw-scene-v2__all-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 14px;
    color: #3A3030;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    border-bottom: 2px solid #3A3030;
    padding-bottom: 2px;
    transition: opacity 0.2s;
}

.etl-gw-scene-v2__all-link:hover {
    opacity: 0.7;
}

@media (max-width: 1279px) {
    .etl-gw-scene-v2__panel-wrap {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    .etl-gw-scene-v2 {
        padding-top: var(--etl-gw-scene-v2-padding-top-mobile, 40px);
        padding-bottom: var(--etl-gw-scene-v2-padding-bottom-mobile, 40px);
    }

    .etl-gw-scene-v2__inner {
        padding: 0 16px;
    }

    .etl-gw-scene-v2__heading {
        font-size: 24px;
    }

    .etl-gw-scene-v2__subheading {
        font-size: 14px;
    }

    .etl-gw-scene-v2__tabs {
        gap: 10px;
    }

    .etl-gw-scene-v2__tab {
        width: calc(50% - 5px);
        min-width: 0;
        padding: 10px 10px;
        font-size: 13px;
    }

    .etl-gw-scene-v2__tab-img {
        width: 20px;
        height: 20px;
    }

    .etl-gw-scene-v2__panel-wrap {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .etl-gw-scene-v2__name {
        min-height: 0;
        font-size: 14px;
    }

    .etl-gw-scene-v2__price {
        font-size: 18px;
    }

    .etl-gw-scene-v2__button {
        min-height: 38px;
        font-size: 13px;
        margin-top: 10px;
    }

    .etl-gw-scene-v2__all-link {
        font-size: 15px;
    }
}