﻿/* Cookie Consent Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--redemption-secondary);
    border-top: 3px solid var(--redemption-primary);
    padding: 20px;
    z-index: 9998;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.5);
    animation: slideUp 0.5s ease-in-out;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }

    to {
        transform: translateY(0);
    }
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

    .cookie-content p {
        margin: 0;
        color: #fff;
        flex: 1 1 auto;
        min-width: 300px;
    }

    .cookie-content a {
        color: var(--redemption-accent);
        text-decoration: underline;
    }

        .cookie-content a:hover {
            color: var(--redemption-primary);
        }

    .cookie-content button {
        flex-shrink: 0;
        white-space: nowrap;
        min-width: 120px;
    }

@media (max-width: 767px) {
    .cookie-banner {
        padding: 15px;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

        .cookie-content p {
            min-width: 100%;
        }

        .cookie-content button {
            width: 100%;
            max-width: 300px;
        }
}
