/**
 * B2 Product Showcase 样式
 * 
 * 高端企业化风格 - 4种展示模式
 */

/* ========================================
   设计变量
======================================== */
:root {
    --b2ps-primary: #1a1a2e;
    --b2ps-primary-light: #16213e;
    --b2ps-accent: #e94560;
    --b2ps-accent-hover: #ff6b6b;
    --b2ps-gold: #d4af37;
    --b2ps-gold-light: #f4e5b0;
    --b2ps-text: #2d3436;
    --b2ps-text-muted: #636e72;
    --b2ps-border: #e0e0e0;
    --b2ps-bg-light: #fafafa;
    --b2ps-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    --b2ps-shadow-hover: 0 20px 60px rgba(0, 0, 0, 0.12);
    --b2ps-radius: 16px;
    --b2ps-radius-sm: 8px;
    --b2ps-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ========================================
   公共样式
======================================== */
.b2ps-product-showcase {
    margin-bottom: 32px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

/* 高端角标 */
.b2ps-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border-radius: 4px;
    color: #fff;
    z-index: 10;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.b2ps-badge::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: currentColor;
    opacity: 0.8;
}

.b2ps-badge-hot { 
    background: linear-gradient(135deg, #e94560 0%, #ff6b6b 100%);
}
.b2ps-badge-new { 
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}
.b2ps-badge-sale { 
    background: linear-gradient(135deg, #d4af37 0%, #f4e5b0 100%);
    color: #1a1a2e;
}
.b2ps-badge-limited { 
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

/* 标题 */
.b2ps-title {
    font-size: 26px;
    font-weight: 700;
    line-height: 1.3;
    margin: 0 0 12px;
    color: var(--b2ps-text);
    letter-spacing: -0.5px;
}

/* 简介 */
.b2ps-excerpt {
    font-size: 15px;
    color: var(--b2ps-text-muted);
    margin: 0 0 20px;
    line-height: 1.7;
}

/* 价格区域 */
.b2ps-price-box {
    display: flex;
    align-items: baseline;
    gap: 16px;
    margin-bottom: 24px;
}

.b2ps-price {
    font-size: 32px;
    font-weight: 800;
    color: var(--b2ps-accent);
    letter-spacing: -1px;
}

.b2ps-original-price {
    font-size: 18px;
    color: var(--b2ps-text-muted);
    text-decoration: line-through;
    opacity: 0.7;
}

/* 购买按钮 - 高端企业化 */
.b2ps-buy-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 32px;
    min-width: 160px;
    background: var(--b2ps-primary);
    color: #fff;
    border: none;
    border-radius: var(--b2ps-radius-sm);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: var(--b2ps-transition);
    box-shadow: 0 4px 20px rgba(26, 26, 46, 0.25);
    position: relative;
    overflow: hidden;
}

.b2ps-buy-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
    transition: left 0.5s ease;
}

.b2ps-buy-btn:hover {
    background: var(--b2ps-primary-light);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(26, 26, 46, 0.35);
    color: #fff;
}

.b2ps-buy-btn:hover::before {
    left: 100%;
}

.b2ps-buy-btn svg {
    width: 18px !important;
    height: 18px !important;
    min-width: 18px;
    min-height: 18px;
    stroke-width: 2.5;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.b2ps-buy-btn:hover svg {
    transform: translateX(4px);
}

/* 次要按钮风格 - 金色 */
.b2ps-buy-btn.b2ps-btn-gold {
    background: linear-gradient(135deg, var(--b2ps-gold) 0%, var(--b2ps-gold-light) 100%);
    color: var(--b2ps-primary);
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.35);
}

.b2ps-buy-btn.b2ps-btn-gold:hover {
    background: linear-gradient(135deg, var(--b2ps-gold-light) 0%, var(--b2ps-gold) 100%);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.45);
}

/* 按钮容器 */
.b2ps-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: stretch;
}

.b2ps-buttons .b2ps-buy-btn {
    flex: 1;
    min-width: 140px;
}

/* 按钮组 - 垂直排列 */
.b2ps-buttons-vertical {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
}

.b2ps-buttons-vertical .b2ps-buy-btn {
    width: 100%;
    justify-content: center;
}

/* 缩略图 */
.b2ps-thumbnails {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.b2ps-thumb {
    width: 68px;
    height: 68px;
    border-radius: var(--b2ps-radius-sm);
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--b2ps-transition);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.b2ps-thumb:hover {
    border-color: var(--b2ps-border);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.b2ps-thumb.active {
    border-color: var(--b2ps-primary);
    box-shadow: 0 0 0 3px rgba(26, 26, 46, 0.1);
}

.b2ps-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* 主图容器 */
.b2ps-main-image {
    position: relative;
    background: var(--b2ps-bg-light);
    border-radius: var(--b2ps-radius);
    overflow: hidden;
}

.b2ps-main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

/* 分隔线 - 精致 */
.b2ps-divider {
    display: flex;
    align-items: center;
    margin-bottom: 32px;
    margin-top: 8px;
}

.b2ps-divider::before,
.b2ps-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--b2ps-border), transparent);
}

.b2ps-divider span {
    padding: 0 24px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--b2ps-text-muted);
    background: var(--b2bg, #fff);
}

/* ========================================
   样式1：经典商城（高端版）
======================================== */
.b2ps-style-classic {
    display: flex;
    gap: 40px;
    padding: 32px;
    background: var(--b2bg, #fff);
    border-radius: var(--b2ps-radius);
    box-shadow: var(--b2ps-shadow);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.b2ps-style-classic .b2ps-gallery {
    flex: 0 0 440px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.b2ps-style-classic .b2ps-main-image {
    width: 100%;
    aspect-ratio: 1 / 1;
}

.b2ps-style-classic .b2ps-main-image:hover img {
    transform: scale(1.03);
}

.b2ps-style-classic .b2ps-badge {
    position: absolute;
    top: 16px;
    left: 16px;
}

.b2ps-style-classic .b2ps-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-width: 0;
    padding-top: 8px;
}

.b2ps-style-classic .b2ps-specs {
    background: var(--b2ps-bg-light);
    border-radius: var(--b2ps-radius-sm);
    padding: 20px;
    margin-bottom: 24px;
}

.b2ps-style-classic .b2ps-spec-item {
    display: flex;
    padding: 12px 0;
    border-bottom: 1px solid var(--b2ps-border);
}

.b2ps-style-classic .b2ps-spec-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.b2ps-style-classic .b2ps-spec-name {
    width: 110px;
    flex-shrink: 0;
    color: var(--b2ps-text-muted);
    font-size: 13px;
    font-weight: 500;
}

.b2ps-style-classic .b2ps-spec-value {
    flex: 1;
    color: var(--b2ps-text);
    font-size: 14px;
    font-weight: 500;
}

.b2ps-style-classic .b2ps-action {
    margin-top: auto;
    padding-top: 24px;
}

.b2ps-style-classic .b2ps-meta {
    display: flex;
    gap: 24px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--b2ps-border);
}

.b2ps-style-classic .b2ps-meta-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: var(--b2ps-text-muted);
    font-weight: 500;
}

.b2ps-style-classic .b2ps-meta-item svg {
    width: 16px;
    height: 16px;
    stroke-width: 2;
    opacity: 0.7;
}

/* ========================================
   样式2：简约卡片（高端版）
======================================== */
.b2ps-style-minimal {
    background: var(--b2bg, #fff);
    border-radius: var(--b2ps-radius);
    box-shadow: var(--b2ps-shadow);
    border: 1px solid rgba(0, 0, 0, 0.04);
    overflow: hidden;
}

.b2ps-minimal-wrapper {
    padding: 32px;
}

.b2ps-minimal-header {
    display: flex;
    align-items: center;
    gap: 20px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--b2ps-border);
    margin-bottom: 24px;
}

.b2ps-minimal-header .b2ps-title {
    flex: 1;
    margin: 0;
}

.b2ps-minimal-header .b2ps-price {
    font-size: 28px;
}

.b2ps-minimal-body {
    display: flex;
    gap: 32px;
}

.b2ps-minimal-gallery {
    flex: 0 0 300px;
}

.b2ps-minimal-gallery .b2ps-main-image {
    width: 100%;
    aspect-ratio: 1 / 1;
}

.b2ps-minimal-gallery .b2ps-thumbnails {
    margin-top: 16px;
}

.b2ps-minimal-gallery .b2ps-thumb {
    width: 56px;
    height: 56px;
}

.b2ps-minimal-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.b2ps-minimal-info .b2ps-excerpt {
    margin-bottom: 24px;
}

.b2ps-specs-compact {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 24px;
}

.b2ps-spec-tag {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    background: var(--b2ps-bg-light);
    border-radius: 100px;
    font-size: 12px;
    font-weight: 500;
    color: var(--b2ps-text-muted);
    border: 1px solid var(--b2ps-border);
}

.b2ps-spec-tag strong {
    color: var(--b2ps-text);
    font-weight: 600;
    margin-right: 4px;
}

.b2ps-minimal-info .b2ps-buy-btn {
    align-self: flex-start;
}

/* ========================================
   样式3：大图沉浸（高端版）
======================================== */
.b2ps-style-immersive {
    position: relative;
    border-radius: var(--b2ps-radius);
    overflow: hidden;
    min-height: 500px;
    box-shadow: var(--b2ps-shadow);
}

.b2ps-immersive-wrapper {
    position: relative;
}

.b2ps-immersive-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.b2ps-immersive-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.b2ps-immersive-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26,26,46,0.85) 0%, rgba(26,26,46,0.4) 50%, rgba(26,26,46,0) 100%);
}

.b2ps-immersive-content {
    position: relative;
    z-index: 1;
    padding: 60px;
    max-width: 520px;
    min-height: 500px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.b2ps-immersive-content .b2ps-badge {
    margin-bottom: 24px;
}

.b2ps-immersive-content .b2ps-title {
    color: #fff;
    font-size: 40px;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.b2ps-immersive-content .b2ps-excerpt {
    color: rgba(255,255,255,0.75);
    margin-bottom: 28px;
    font-size: 16px;
}

.b2ps-immersive-content .b2ps-price-box {
    margin-bottom: 32px;
}

.b2ps-immersive-content .b2ps-price {
    font-size: 44px;
}

.b2ps-immersive-content .b2ps-original-price {
    color: rgba(255,255,255,0.5);
}

.b2ps-immersive-thumbs {
    position: absolute;
    bottom: 32px;
    right: 32px;
    display: flex;
    gap: 12px;
    z-index: 2;
}

.b2ps-immersive-thumbs .b2ps-thumb {
    width: 80px;
    height: 80px;
    border-radius: var(--b2ps-radius-sm);
    border: 2px solid rgba(255,255,255,0.2);
    opacity: 0.7;
}

.b2ps-immersive-thumbs .b2ps-thumb:hover,
.b2ps-immersive-thumbs .b2ps-thumb.active {
    opacity: 1;
    border-color: rgba(255,255,255,0.8);
}

/* ========================================
   样式4：侧栏信息（高端版）
======================================== */
.b2ps-style-sidebar {
    background: var(--b2bg, #fff);
    border-radius: var(--b2ps-radius);
    box-shadow: var(--b2ps-shadow);
    border: 1px solid rgba(0, 0, 0, 0.04);
    overflow: hidden;
}

.b2ps-sidebar-wrapper {
    padding: 32px;
}

.b2ps-sidebar-gallery .b2ps-main-image {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 10;
    border-radius: var(--b2ps-radius);
    overflow: hidden;
}

.b2ps-sidebar-gallery .b2ps-badge {
    position: absolute;
    top: 16px;
    left: 16px;
}

.b2ps-sidebar-float {
    position: absolute;
    top: 20px;
    right: 20px;
    bottom: 20px;
    width: 220px;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: var(--b2ps-radius-sm);
    padding: 24px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 40px rgba(0,0,0,0.12);
    border: 1px solid rgba(255,255,255,0.2);
}

.b2ps-sidebar-float .b2ps-title {
    font-size: 18px;
    margin-bottom: 16px;
}

.b2ps-sidebar-float .b2ps-price-box {
    margin-bottom: auto;
}

.b2ps-sidebar-float .b2ps-price {
    font-size: 26px;
}

.b2ps-sidebar-float .b2ps-buy-btn {
    width: 100%;
    justify-content: center;
    padding: 14px 24px;
    font-size: 12px;
}

.b2ps-sidebar-gallery .b2ps-thumbnails {
    margin-top: 16px;
    justify-content: center;
}

/* ========================================
   响应式设计
======================================== */
@media screen and (max-width: 992px) {
    .b2ps-style-classic {
        flex-direction: column;
        gap: 32px;
    }
    
    .b2ps-style-classic .b2ps-gallery {
        flex: none;
    }
    
    .b2ps-minimal-body {
        flex-direction: column;
    }
    
    .b2ps-minimal-gallery {
        flex: none;
    }
    
    .b2ps-immersive-content {
        padding: 40px;
    }
    
    .b2ps-immersive-content .b2ps-title {
        font-size: 32px;
    }
    
    .b2ps-sidebar-float {
        width: 180px;
        padding: 20px;
    }
}

@media screen and (max-width: 576px) {
    .b2ps-style-classic,
    .b2ps-minimal-wrapper,
    .b2ps-sidebar-wrapper {
        padding: 24px;
    }
    
    .b2ps-title {
        font-size: 22px;
    }
    
    .b2ps-price {
        font-size: 26px;
    }
    
    .b2ps-buy-btn {
        width: 100%;
        justify-content: center;
        padding: 16px 32px;
    }
    
    .b2ps-buttons {
        flex-direction: column;
        gap: 12px;
    }
    
    .b2ps-buttons .b2ps-buy-btn {
        width: 100%;
    }
    
    .b2ps-minimal-header {
        flex-wrap: wrap;
    }
    
    .b2ps-minimal-header .b2ps-price {
        width: 100%;
        margin-top: 8px;
    }
    
    .b2ps-immersive-content {
        padding: 32px;
        min-height: 400px;
    }
    
    .b2ps-immersive-content .b2ps-title {
        font-size: 28px;
    }
    
    .b2ps-immersive-thumbs {
        display: none;
    }
    
    .b2ps-sidebar-float {
        position: static;
        width: 100%;
        margin-top: 20px;
    }
}

/* ========================================
   暗色模式适配
======================================== */
@media (prefers-color-scheme: dark) {
    :root {
        --b2ps-text: #f5f5f5;
        --b2ps-text-muted: #a0a0a0;
        --b2ps-border: #333;
        --b2ps-bg-light: #1a1a1a;
    }
    
    .b2ps-style-classic,
    .b2ps-style-minimal,
    .b2ps-style-sidebar {
        background: #1a1a1a;
        border-color: #333;
    }
    
    .b2ps-title {
        color: var(--b2ps-text);
    }
    
    .b2ps-specs,
    .b2ps-spec-tag {
        background: #252525;
        border-color: #333;
    }
    
    .b2ps-spec-value {
        color: var(--b2ps-text);
    }
    
    .b2ps-divider span {
        background: #1a1a1a;
    }
    
    .b2ps-main-image {
        background: #252525;
    }
    
    .b2ps-minimal-header {
        border-bottom-color: #333;
    }
    
    .b2ps-sidebar-float {
        background: rgba(30,30,30,0.98);
    }
    
    .b2ps-buy-btn {
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    }
}

.dark-mode .b2ps-style-classic,
.dark-mode .b2ps-style-minimal,
.dark-mode .b2ps-style-sidebar {
    background: #1a1a1a;
    border-color: #333;
}

.dark-mode .b2ps-title {
    color: #f5f5f5;
}

.dark-mode .b2ps-specs,
.dark-mode .b2ps-spec-tag {
    background: #252525;
    border-color: #333;
}

.dark-mode .b2ps-spec-value {
    color: #f5f5f5;
}

.dark-mode .b2ps-divider span {
    background: #1a1a1a;
}

/* 额外信息框 - 基础样式 */
.b2ps-extra-info {
    margin-top: 16px;
    padding: 16px;
    border-radius: 8px;
    font-size: 13px;
    line-height: 1.7;
}

.b2ps-extra-info p {
    margin: 0 0 8px 0;
}

.b2ps-extra-info p:last-child {
    margin-bottom: 0;
}

.b2ps-extra-info ul,
.b2ps-extra-info ol {
    margin: 8px 0;
    padding-left: 20px;
}

.b2ps-extra-info li {
    margin-bottom: 4px;
}

/* ========== 预设颜色主题 ========== */

/* 活力橙（默认） */
.b2ps-extra-info.b2ps-extra-info-orange {
    background: linear-gradient(135deg, #fff5f5 0%, #fff8f6 100%);
    border: 1px solid #ffcdb2;
    border-left: 4px solid #ff6b35;
    color: #5a4a42;
}
.b2ps-extra-info.b2ps-extra-info-orange strong {
    color: #3d3d3d;
}
.dark-mode .b2ps-extra-info.b2ps-extra-info-orange {
    background: linear-gradient(135deg, #2a2520 0%, #2d2824 100%);
    border-color: #5a4a42;
    border-left-color: #ff6b35;
    color: #d4c4b8;
}
.dark-mode .b2ps-extra-info.b2ps-extra-info-orange strong {
    color: #f5f5f5;
}

/* 商务蓝 */
.b2ps-extra-info.b2ps-extra-info-blue {
    background: linear-gradient(135deg, #e8f4fc 0%, #f0f7fc 100%);
    border: 1px solid #b3d9f2;
    border-left: 4px solid #1e88e5;
    color: #2c5282;
}
.b2ps-extra-info.b2ps-extra-info-blue strong {
    color: #1a365d;
}
.dark-mode .b2ps-extra-info.b2ps-extra-info-blue {
    background: linear-gradient(135deg, #1a2e42 0%, #1e3a52 100%);
    border-color: #2c5282;
    border-left-color: #4299e1;
    color: #a8c8e8;
}
.dark-mode .b2ps-extra-info.b2ps-extra-info-blue strong {
    color: #e2e8f0;
}

/* 清新绿 */
.b2ps-extra-info.b2ps-extra-info-green {
    background: linear-gradient(135deg, #f0fff4 0%, #f7fff9 100%);
    border: 1px solid #9ae6b4;
    border-left: 4px solid #38a169;
    color: #276749;
}
.b2ps-extra-info.b2ps-extra-info-green strong {
    color: #1e4d2b;
}
.dark-mode .b2ps-extra-info.b2ps-extra-info-green {
    background: linear-gradient(135deg, #1a2e1e 0%, #1e3a24 100%);
    border-color: #276749;
    border-left-color: #48bb78;
    color: #a8e6b8;
}
.dark-mode .b2ps-extra-info.b2ps-extra-info-green strong {
    color: #c6f6d5;
}

/* 优雅紫 */
.b2ps-extra-info.b2ps-extra-info-purple {
    background: linear-gradient(135deg, #faf5ff 0%, #fcf7ff 100%);
    border: 1px solid #d6bcfa;
    border-left: 4px solid #805ad5;
    color: #553c9a;
}
.b2ps-extra-info.b2ps-extra-info-purple strong {
    color: #44337a;
}
.dark-mode .b2ps-extra-info.b2ps-extra-info-purple {
    background: linear-gradient(135deg, #2a1e3a 0%, #322448 100%);
    border-color: #553c9a;
    border-left-color: #9f7aea;
    color: #c4b5d8;
}
.dark-mode .b2ps-extra-info.b2ps-extra-info-purple strong {
    color: #e9d8fd;
}

/* 警示红 */
.b2ps-extra-info.b2ps-extra-info-red {
    background: linear-gradient(135deg, #fff5f5 0%, #fef2f2 100%);
    border: 1px solid #feb2b2;
    border-left: 4px solid #e53e3e;
    color: #742a2a;
}
.b2ps-extra-info.b2ps-extra-info-red strong {
    color: #5a1a1a;
}
.dark-mode .b2ps-extra-info.b2ps-extra-info-red {
    background: linear-gradient(135deg, #2e1a1a 0%, #3a1e1e 100%);
    border-color: #742a2a;
    border-left-color: #fc8181;
    color: #e8b8b8;
}
.dark-mode .b2ps-extra-info.b2ps-extra-info-red strong {
    color: #fed7d7;
}

/* 中性灰 */
.b2ps-extra-info.b2ps-extra-info-gray {
    background: linear-gradient(135deg, #f7fafc 0%, #fafbfc 100%);
    border: 1px solid #cbd5e0;
    border-left: 4px solid #718096;
    color: #4a5568;
}
.b2ps-extra-info.b2ps-extra-info-gray strong {
    color: #2d3748;
}
.dark-mode .b2ps-extra-info.b2ps-extra-info-gray {
    background: linear-gradient(135deg, #2d3748 0%, #3a4556 100%);
    border-color: #4a5568;
    border-left-color: #a0aec0;
    color: #cbd5e0;
}
.dark-mode .b2ps-extra-info.b2ps-extra-info-gray strong {
    color: #e2e8f0;
}
