/* 底部统计条样式 - 固定底部不悬浮 */

/* 样式1: 简洁横条 */
.zm-stats-bar-style1 {
    width: 100%;
    background: #f5f5f5;
    color: #666;
    padding: 12px 0;
    text-align: center;
    font-size: 13px;
    line-height: 1.8;
    border-top: 1px solid #e0e0e0;
}

.zm-stats-bar-style1 .zm-stats-bar-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.zm-stats-bar-style1 .zm-stats-item {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    white-space: nowrap;
}

.zm-stats-bar-style1 .zm-stats-value {
    font-weight: 600;
    color: inherit;
}

.zm-stats-bar-style1 .zm-stats-separator {
    margin: 0 8px;
    opacity: 0.5;
}

/* 样式2: 卡片网格 */
.zm-stats-bar-style2 {
    width: 100%;
    background: #f5f5f5;
    padding: 20px 0;
    border-top: 1px solid #e0e0e0;
}

.zm-stats-bar-style2 .zm-stats-bar-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 16px;
}

.zm-stats-bar-style2 .zm-stats-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.zm-stats-bar-style2 .zm-stats-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.zm-stats-bar-style2 .zm-stats-card-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    color: #fff;
    flex-shrink: 0;
}

.zm-stats-bar-style2 .zm-stats-card-icon .dashicons {
    font-size: 20px;
    width: 20px;
    height: 20px;
}

.zm-stats-bar-style2 .zm-stats-card-content {
    flex: 1;
    min-width: 0;
}

.zm-stats-bar-style2 .zm-stats-value {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.2;
    color: #333;
}

.zm-stats-bar-style2 .zm-stats-label {
    font-size: 12px;
    color: #999;
    margin-top: 2px;
}

/* 样式3: 渐变背景 */
.zm-stats-bar-style3 {
    width: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    padding: 16px 0;
    position: relative;
    overflow: hidden;
}

.zm-stats-bar-style3 .zm-stats-bar-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg,
        rgba(255,255,255,0.1) 0%,
        rgba(255,255,255,0.05) 50%,
        rgba(255,255,255,0.1) 100%);
    animation: zm-gradient-shift 3s ease infinite;
}

@keyframes zm-gradient-shift {
    0%, 100% { transform: translateX(-100%); }
    50% { transform: translateX(100%); }
}

.zm-stats-bar-style3 .zm-stats-bar-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    position: relative;
    z-index: 1;
}

.zm-stats-bar-style3 .zm-stats-item-gradient {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    background: rgba(255,255,255,0.15);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.zm-stats-bar-style3 .zm-stats-item-gradient:hover {
    background: rgba(255,255,255,0.25);
    transform: scale(1.05);
}

.zm-stats-bar-style3 .zm-stats-icon-wrapper {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    flex-shrink: 0;
}

.zm-stats-bar-style3 .zm-stats-icon-wrapper .dashicons {
    font-size: 18px;
    width: 18px;
    height: 18px;
}

.zm-stats-bar-style3 .zm-stats-content {
    text-align: left;
}

.zm-stats-bar-style3 .zm-stats-value {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.2;
}

.zm-stats-bar-style3 .zm-stats-label {
    font-size: 11px;
    opacity: 0.9;
    margin-top: 2px;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .zm-stats-bar-style1 {
        font-size: 12px;
        padding: 10px 0;
    }

    .zm-stats-bar-style1 .zm-stats-bar-container {
        gap: 6px;
    }

    .zm-stats-bar-style1 .zm-stats-separator {
        margin: 0 6px;
    }

    .zm-stats-bar-style2 .zm-stats-bar-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .zm-stats-bar-style3 .zm-stats-bar-container {
        gap: 12px;
    }

    .zm-stats-bar-style3 .zm-stats-item-gradient {
        padding: 8px 12px;
    }
}

@media (max-width: 480px) {
    .zm-stats-bar-style1 {
        font-size: 11px;
        padding: 8px 0;
    }

    .zm-stats-bar-style1 .zm-stats-separator {
        display: none;
    }

    .zm-stats-bar-style1 .zm-stats-bar-container {
        flex-direction: column;
        gap: 4px;
    }

    .zm-stats-bar-style2 .zm-stats-bar-container {
        grid-template-columns: 1fr;
    }

    .zm-stats-bar-style3 .zm-stats-bar-container {
        flex-direction: column;
        gap: 10px;
    }
}
