/* ===== Cookie Consent Banner ===== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: #1e293b;
    color: #f1f5f9;
    padding: 1.25rem 1rem;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.25);
    transform: translateY(100%);
    transition: transform 0.4s ease;
    font-family: 'Poppins', sans-serif;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-banner__inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1.25rem;
}

.cookie-banner__text {
    flex: 1 1 400px;
    font-size: 0.9rem;
    line-height: 1.6;
}

.cookie-banner__text a {
    color: #fbbf24;
    text-decoration: underline;
}

.cookie-banner__text a:hover {
    color: #f59e0b;
}

.cookie-banner__actions {
    flex-shrink: 0;
}

.cookie-banner__btn {
    padding: 0.6rem 1.5rem;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
    font-family: 'Poppins', sans-serif;
}

.cookie-banner__btn--accept {
    background: #fbbf24;
    color: #1e293b;
}

.cookie-banner__btn--accept:hover {
    background: #f59e0b;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(251, 191, 36, 0.35);
}

/* ===== Responsive ===== */
@media (max-width: 576px) {
    .cookie-banner {
        padding: 1rem 0.75rem;
    }

    .cookie-banner__inner {
        flex-direction: column;
        text-align: center;
    }

    .cookie-banner__actions {
        width: 100%;
    }

    .cookie-banner__btn {
        width: 100%;
        text-align: center;
    }
}
