/* ============================================================
   TK BLINDS STATS BANNER WIDGET CSS
   ============================================================ */

.tk-stats-banner-section {
    width: 100% !important;
    max-width: 1240px !important;
    margin: 0 auto !important;
    padding: 40px 24px !important;
    box-sizing: border-box !important;
    font-family: 'Montserrat', sans-serif !important;
}

/* Dark Navy Card Wrapper */
.tk-stats-banner-card {
    background-color: #032149 !important; /* Brand Dark Navy */
    border-radius: 14px !important;
    padding: 32px 40px !important;
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 30px !important;
    box-sizing: border-box !important;
    box-shadow: 0 10px 30px rgba(3, 33, 73, 0.08) !important;
}

/* Individual Stat Item */
.tk-stats-item {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 18px !important;
    flex: 1 1 30% !important;
    box-sizing: border-box !important;
}

/* Icon Badge */
.tk-stats-icon-wrap {
    background-color: #ffffff !important;
    color: #0b57a3 !important; /* Brand Blue */
    width: 56px !important;
    height: 56px !important;
    border-radius: 50% !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 22px !important;
    flex-shrink: 0 !important;
    box-sizing: border-box !important;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1) !important;
}

.tk-stats-icon-wrap i,
.tk-stats-icon-wrap svg {
    display: block !important;
    line-height: 1 !important;
    width: 22px !important;
    height: 22px !important;
    fill: currentColor !important;
}

/* Text block */
.tk-stats-content {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 2px !important;
    box-sizing: border-box !important;
}

.tk-stats-number {
    font-size: 32px !important;
    font-weight: 800 !important;
    color: #ffffff !important;
    line-height: 1.1 !important;
    margin: 0 !important;
}

.tk-stats-label-group {
    display: flex !important;
    flex-direction: column !important;
    gap: 2px !important;
}

.tk-stats-title {
    font-size: 14px !important;
    font-weight: 700 !important;
    color: #ffffff !important;
    line-height: 1.25 !important;
    margin: 0 !important;
}

.tk-stats-desc {
    font-size: 11.5px !important;
    line-height: 1.35 !important;
    color: rgba(255, 255, 255, 0.7) !important; /* Muted white secondary text */
    margin: 0 !important;
}

/* Vertical dividing line between stats */
.tk-stats-divider {
    width: 1px !important;
    height: 50px !important;
    background-color: rgba(255, 255, 255, 0.12) !important;
    flex-shrink: 0 !important;
}

/* ============================================================
   RESPONSIVENESS AND BREAKPOINTS
   ============================================================ */

@media (max-width: 991px) {
    .tk-stats-banner-card {
        flex-direction: column !important;
        align-items: stretch !important;
        padding: 32px 32px !important;
        gap: 24px !important;
    }

    .tk-stats-divider {
        display: none !important; /* Hide line divider when stacked */
    }

    .tk-stats-item {
        width: 100% !important;
        max-width: none !important;
        margin: 0 auto !important;
        flex: 1 1 100% !important;
    }

}

@media (max-width: 576px) {
    .tk-stats-banner-card {
        padding: 30px 20px !important;
        gap: 20px !important;
    }

    .tk-stats-item {
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        gap: 12px !important;
    }

    .tk-stats-content {
        align-items: center !important;
    }
}
