/* =================================================
   FOOTER – KRYSTALSPACE PREMIUM (ALWAYS VISIBLE)
================================================= */

/* --- FOOTER BASE --- */
.site-footer {
    background: #0f172a; /* deep navy */
    color: #cbd5e1;
    font-size: 14px;
    line-height: 1.6;
    position: relative;
}

.site-footer a {
    color: inherit;
    text-decoration: none;
    transition: color .25s ease;
}

.site-footer a:hover {
    color: #38bdf8;
}

/* --- WIDGETS --- */
.footer-widgets {
    padding: 70px 0 50px;
    border-bottom: 1px solid rgba(255,255,255,.06);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 24px;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 12px;
    list-style: none !important;
}

.footer-title,
.footer-column h3,
.footer-column h2,
.footer-column .widget-title {
    font-size: 16px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 15px;
}

.footer-column p,
.footer-column li,
.footer-column .textwidget {
    font-size: 14px;
    color: #94a3b8;
}

.footer-column ul {
    list-style: none !important;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: 8px;
}

/* --- FOOTER BOTTOM --- */
.footer-bottom {
    padding: 22px 0;
    background: rgba(2,6,23,.85);
    backdrop-filter: blur(8px);
}

.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    flex-wrap: wrap;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 24px;
}

.copyright p {
    margin: 0;
    font-size: 13px;
    color: #94a3b8;
}

.copyright strong {
    color: #ffffff;
}

/* --- PAYMENTS --- */
.footer-payments {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.payment-label {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .05em;
    color: #94a3b8;
}

.payment-icons img {
    height: auto;
    max-width: 100%;
    width: 250px;
    object-fit: contain;
}

/* =================================================
   RESPONSIVE (Zawsze widoczne, brak collapse)
================================================= */

@media (max-width: 768px) {
    .footer-widgets {
        padding: 40px 0;
    }

    .footer-grid {
        grid-template-columns: 1fr; /* Kolumny jedna pod drugą */
        gap: 35px; /* Odstęp między sekcjami */
        padding: 0 25px;
    }

    .footer-column {
        border-bottom: none; /* Brak linii oddzielających sekcje */
        align-items: flex-start; /* Wszystko do lewej */
    }

    /* Wyłączenie wszystkich efektów strzałek i ukrywania */
    .footer-title,
    .footer-column h3,
    .footer-column h2,
    .footer-column .widget-title {
        padding: 0;
        margin-bottom: 15px !important;
        cursor: default; /* Kursor nie sugeruje kliknięcia */
    }

    /* Ukrywamy strzałkę ::after, jeśli wcześniej została dodana */
    .footer-title::after,
    .footer-column h3::after,
    .footer-column h2::after,
    .footer-column .widget-title::after {
        display: none !important;
    }

    /* Wymuszamy widoczność wszystkich list i tekstów */
    .footer-column ul,
    .footer-column p,
    .footer-column .textwidget {
        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;
        padding-bottom: 0;
        animation: none !important; /* Brak animacji */
    }

    .footer-bottom-inner {
        flex-direction: column;
        text-align: center;
        padding-bottom: 80px; /* Miejsce na mobile nav */
    }

    .footer-payments {
        justify-content: center;
    }

    /* MOBILE BOTTOM NAV */
    .mobile-bottom-nav {
        background: #ffffff;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        border-top: 1px solid rgba(0,0,0,0.05);
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        z-index: 2997;
        box-shadow: 0 -5px 15px rgba(0,0,0,0.03);
    }
}

/* Fix dla małych ekranów */
@media (max-width: 600px) {
    .payment-icons img {
        width: 200px;
    }
}