#cookie-banner {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--oxford-blue);
    color: var(--old-lace);
    padding: 1.25rem;
    z-index: 9999;
}

    #cookie-banner.show {
        display: block;
    }

.cookie-content {
    max-width: 75rem;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.25rem;
}

    .cookie-content p {
        margin: 0;
        flex: 1;
        font-size: 1rem;
    }

    .cookie-content a {
        color: var(--persian-green);
        font-weight: 600;
    }

.cookie-buttons {
    display: flex;
    gap: 0.625rem;
}

    .cookie-buttons button {
        padding: 0.625em 1.25em;
        border: none;
        border-radius: 0.35rem;
        cursor: pointer;
        font-weight: 700;
        font-size: 1rem;
        transition: 0.3s ease;
    }

        .cookie-buttons button:first-child {
            background: var(--old-lace);
            color: var(--oxford-blue);
        }

    .cookie-buttons button:last-child {
        background: var(--orange-crayola);
        color: #fff;
        box-shadow: 0 3px 10px rgba(229, 114, 58, 0.4);
    }

    .cookie-buttons button:hover {
        transform: translateY(-2px);
        opacity: 0.9;
    }

@media (max-width: 48rem) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-buttons {
        width: 100%;
    }

        .cookie-buttons button {
            flex: 1;
        }
}
