/**
 * Stats Counter Section - Slim Professional Design
 * Location: /wp-content/plugins/daf-marketplace/assets/css/stats-counter.css
 */

.daf-mp-stats-section {
    position: relative;
    padding: 2.5rem 0;
    background: #065f46;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.daf-mp-stats-container {
    position: relative;
    z-index: 10;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Stats Grid */
.daf-mp-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

/* Stat Item */
.daf-mp-stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1rem 0.5rem;
}

/* Stat Icon - Smaller */
.daf-mp-stat-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.daf-mp-stat-icon svg {
    width: 100%;
    height: 100%;
}

/* Stat Number - Compact */
.daf-mp-stat-number {
    font-size: 1.75rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 0.375rem;
    line-height: 1.2;
}

/* Stat Label - Smaller */
.daf-mp-stat-label {
    font-size: 0.8125rem;
    color: #6ee7b7;
    font-weight: 500;
    line-height: 1.3;
}

/* Responsive */
@media (max-width: 900px) {
    .daf-mp-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .daf-mp-stat-number {
        font-size: 1.5rem;
    }

    .daf-mp-stat-icon {
        width: 42px;
        height: 42px;
    }
}

@media (max-width: 600px) {
    .daf-mp-stats-section {
        padding: 2rem 0;
    }

    .daf-mp-stats-container {
        padding: 0 1.25rem;
    }

    .daf-mp-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }

    .daf-mp-stat-item {
        padding: 0.75rem 0.5rem;
    }

    .daf-mp-stat-number {
        font-size: 1.375rem;
    }

    .daf-mp-stat-label {
        font-size: 0.75rem;
    }

    .daf-mp-stat-icon {
        width: 38px;
        height: 38px;
        margin-bottom: 0.625rem;
    }
}

@media (max-width: 400px) {
    .daf-mp-stats-grid {
        grid-template-columns: 1fr;
    }
}