/**
 * CPS Stats Counter Styles
 */

.cps-stats-counter {
    width: 100vw;
    position: relative;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    padding: 60px 0;
}

.cps-stats-container {
    display: flex;
    flex-wrap: nowrap;
    gap: 40px;
    max-width: var(--awb-content-max-width, 100%);
    margin: 0 auto;
    padding: 0 var(--awb-content-padding-left, 30px) 0 var(--awb-content-padding-right, 30px);
    align-items: flex-start;
    justify-content: space-between;
}

.cps-stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 4px;
    flex: 1;
    min-width: 0;
}

.cps-stat-icon {
    font-size: 48px;
    line-height: 1;
    margin-bottom: 8px;
    transition: transform 0.3s ease;
}

.cps-stat-item:hover .cps-stat-icon {
    transform: scale(1.1);
}

.cps-stat-number {
    font-family: refrigerator-deluxe, Impact, Charcoal, sans-serif;
    font-size: 60px;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.02em;
    margin: 0;
    white-space: nowrap;
}

.cps-stat-label {
    font-family: refrigerator-deluxe, Impact, Charcoal, sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin: 0;
}

.cps-stat-sublabel {
    font-family: refrigerator-deluxe, Impact, Charcoal, sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.3;
    opacity: 0.85;
    margin: 0;
}

/* Tablet */
@media (max-width: 1024px) {
    .cps-stats-container {
        gap: 24px;
    }

    .cps-stat-icon {
        font-size: 40px;
    }

    .cps-stat-number {
        font-size: 48px;
    }

    .cps-stat-label {
        font-size: 14px;
    }

    .cps-stat-sublabel {
        font-size: 13px;
    }
}

/* Mobile - Stack vertically */
@media (max-width: 768px) {
    .cps-stats-counter {
        padding: 40px 0;
    }

    .cps-stats-container {
        flex-direction: column;
        gap: 40px;
        flex-wrap: wrap;
    }

    .cps-stat-item {
        width: 100%;
    }

    .cps-stat-icon {
        font-size: 36px;
    }

    .cps-stat-number {
        font-size: 42px;
    }

    .cps-stat-label {
        font-size: 15px;
    }

    .cps-stat-sublabel {
        font-size: 12px;
    }
}
