/**
 * Motorro Suwak - publiczny licznik oszczędności
 * Wizualnie zgodny z komponentem [motorro_suwak]
 * @version 4.1.2
 */

/* Shortcode korzysta z bazowych klas motorro-slider-wrapper/container,
   dlatego szerokość, font, tło, cień i wariant layoutu są identyczne jak w suwaku. */
.motorro-public-savings {
    --motorro-public-blue: #3b82f6;
    --motorro-public-blue-dark: #1e40af;
    --motorro-public-text: #111827;
    --motorro-public-muted: #6b7280;
    --motorro-public-light: #f8fafc;
    --motorro-public-line: #e2e8f0;
}

.motorro-public-savings .motorro-slider-container {
    overflow: hidden;
}

.motorro-public-savings__time-section {
    margin-bottom: 20px !important;
}

/* ===== CZAS ===== */
.motorro-public-savings__time {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 7px;
    margin-top: 18px;
}

.motorro-public-savings__time-unit {
    min-width: 0;
    padding: 12px 5px 10px;
    text-align: center;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fc 100%);
    border: 1px solid var(--motorro-public-line);
    border-radius: 9px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.035);
}

.motorro-public-savings__time-unit strong {
    display: block;
    margin: 0 0 3px;
    color: var(--motorro-public-blue);
    font-size: 22px;
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.02em;
    font-variant-numeric: tabular-nums;
}

.motorro-public-savings__time-unit span {
    display: block;
    color: #94a3b8;
    font-size: 10px;
    font-weight: 600;
    line-height: 1.2;
    white-space: nowrap;
}

.motorro-public-savings__methodology {
    margin: 11px 0 0 !important;
    padding: 0 !important;
    color: var(--motorro-public-muted) !important;
    font-size: 11px !important;
    font-weight: 400 !important;
    line-height: 1.45 !important;
    text-align: center !important;
}

/* ===== PIENIĄDZE =====
   Sam blok korzysta z .motorro-slider-savings i inline gradientu
   generowanego dokładnie tak samo jak w [motorro_suwak]. */
.motorro-public-savings__money-section {
    margin-top: 0;
}

.motorro-public-savings__money-section .motorro-slider-savings-amount {
    font-variant-numeric: tabular-nums;
}

.motorro-public-savings__money-methodology {
    margin: 10px auto 0 !important;
    padding: 10px 0 0 !important;
    max-width: 470px;
    border-top: 1px solid rgba(255,255,255,0.18);
    color: rgba(255,255,255,0.72) !important;
    font-size: 10px !important;
    font-weight: 400 !important;
    line-height: 1.4 !important;
}

/* ===== STATUS ===== */
.motorro-public-savings__status {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    margin-top: 12px;
    color: #94a3b8;
    font-size: 10px;
    font-weight: 500;
    line-height: 1.35;
    text-align: center;
}

.motorro-public-savings__status-dot {
    width: 6px;
    height: 6px;
    flex: 0 0 6px;
    border-radius: 50%;
    background: #22c55e;
    box-shadow: 0 0 0 3px rgba(34,197,94,0.10);
}

.motorro-public-savings.is-error .motorro-public-savings__status-dot {
    background: #f59e0b;
    box-shadow: 0 0 0 3px rgba(245,158,11,0.10);
}

/* ===== DOPASOWANIE DO COMPACT ===== */
.motorro-layout-compact.motorro-public-savings .motorro-public-savings__time {
    gap: 5px;
    margin-top: 13px;
}

.motorro-layout-compact.motorro-public-savings .motorro-public-savings__time-unit {
    padding: 9px 3px 8px;
    border-radius: 7px;
}

.motorro-layout-compact.motorro-public-savings .motorro-public-savings__time-unit strong {
    font-size: 17px;
}

.motorro-layout-compact.motorro-public-savings .motorro-public-savings__time-unit span {
    font-size: 9px;
}

.motorro-layout-compact.motorro-public-savings .motorro-public-savings__methodology {
    margin-top: 8px !important;
    font-size: 9px !important;
}

.motorro-layout-compact.motorro-public-savings .motorro-public-savings__money-methodology {
    font-size: 9px !important;
}

/* ===== DOPASOWANIE DO SPACIOUS ===== */
.motorro-layout-spacious.motorro-public-savings .motorro-public-savings__time {
    gap: 10px;
    margin-top: 24px;
}

.motorro-layout-spacious.motorro-public-savings .motorro-public-savings__time-unit {
    padding: 17px 8px 14px;
    border-radius: 11px;
}

.motorro-layout-spacious.motorro-public-savings .motorro-public-savings__time-unit strong {
    font-size: 30px;
}

.motorro-layout-spacious.motorro-public-savings .motorro-public-savings__time-unit span {
    font-size: 11px;
}

.motorro-layout-spacious.motorro-public-savings .motorro-public-savings__methodology {
    font-size: 12px !important;
}

.motorro-layout-spacious.motorro-public-savings .motorro-public-savings__money-methodology {
    font-size: 11px !important;
}

/* ===== MOBILE ===== */
@media (max-width: 500px) {
    .motorro-public-savings__time {
        grid-template-columns: repeat(5, minmax(0, 1fr));
        gap: 4px;
        margin-top: 14px;
    }

    .motorro-public-savings__time-unit {
        padding: 9px 2px 8px !important;
        border-radius: 7px !important;
    }

    .motorro-public-savings__time-unit strong {
        font-size: 16px !important;
    }

    .motorro-public-savings__time-unit span {
        overflow: hidden;
        font-size: 8px !important;
        text-overflow: clip;
    }

    .motorro-public-savings__methodology {
        font-size: 9px !important;
        line-height: 1.35 !important;
    }

    .motorro-public-savings__money-methodology {
        margin-top: 8px !important;
        padding-top: 8px !important;
        font-size: 9px !important;
    }

    .motorro-public-savings__status {
        font-size: 9px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .motorro-public-savings * {
        transition: none !important;
    }
}
