/* ═══════════════════════════════════════════════════
   EkoAudyt – Cookie Consent Banner
   ═══════════════════════════════════════════════════ */

#cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: #1C1B19;
    color: #CDCCCA;
    border-top: 3px solid #01696F;
    box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.35);
    padding: 1rem 0;

    /* Animacja wjazdu */
    transform: translateY(100%);
    opacity: 0;
    transition: transform 0.35s cubic-bezier(.22,.61,.36,1),
                opacity   0.35s ease;
}

#cookie-banner.cookie-banner-visible {
    transform: translateY(0);
    opacity: 1;
}

#cookie-banner.cookie-banner-hidden {
    transform: translateY(100%);
    opacity: 0;
}

.cookie-banner-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.cookie-banner-text {
    flex: 1;
    min-width: 260px;
}

.cookie-banner-text p {
    margin: 0;
    font-size: 0.88rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.82);
}

.cookie-banner-text strong {
    color: #fff;
}

.cookie-banner-text a {
    color: #4F98A3;
    text-decoration: underline;
    font-weight: 600;
    white-space: nowrap;
}

.cookie-banner-text a:hover {
    color: #80C4CC;
}

/* ── Przyciski ────────────────────────────────── */
.cookie-banner-actions {
    display: flex;
    gap: 0.6rem;
    flex-shrink: 0;
    flex-wrap: wrap;
}

.cookie-btn {
    padding: 0.5rem 1.1rem;
    font-size: 0.88rem;
    font-weight: 600;
    border-radius: 4px;
    border: 2px solid transparent;
    cursor: pointer;
    white-space: nowrap;
    min-height: 40px;
    transition: background 0.15s, border-color 0.15s, color 0.15s;
    font-family: inherit;
}

/* Akceptuję – zielony */
.cookie-btn-accept {
    background: #01696F;
    color: #fff;
    border-color: #01696F;
}

.cookie-btn-accept:hover,
.cookie-btn-accept:focus {
    background: #0C4E54;
    border-color: #0C4E54;
    outline: none;
}

/* Tylko niezbędne – szary */
.cookie-btn-necessary {
    background: transparent;
    color: rgba(255, 255, 255, 0.8);
    border-color: rgba(255, 255, 255, 0.35);
}

.cookie-btn-necessary:hover,
.cookie-btn-necessary:focus {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.6);
    color: #fff;
    outline: none;
}

/* Odrzucam – tylko tekst */
.cookie-btn-reject {
    background: transparent;
    color: rgba(255, 255, 255, 0.5);
    border-color: transparent;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
}

.cookie-btn-reject:hover,
.cookie-btn-reject:focus {
    color: rgba(255, 255, 255, 0.85);
    outline: none;
    text-decoration: underline;
}

/* ── Responsywność ───────────────────────────── */
@media (max-width: 640px) {
    /* #10: zmniejszony banner na mobile – zwarta wersja jednoliniowa */
    #cookie-banner {
        padding: 0.6rem 0;
    }
    .cookie-banner-inner {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 0.5rem;
        padding: 0 0.75rem;
        align-items: center;
    }
    .cookie-banner-text {
        min-width: 0;
        flex: 1 1 100%;
    }
    .cookie-banner-text p {
        font-size: 0.8rem;
        line-height: 1.4;
    }
    .cookie-banner-actions {
        width: 100%;
        gap: 0.4rem;
    }
    .cookie-btn {
        padding: 0.35rem 0.75rem;
        font-size: 0.8rem;
        min-height: 34px;
    }
    .cookie-btn-accept {
        flex: 1;
    }
    .cookie-btn-necessary {
        flex: 1;
    }
}
