/* ==========================================================================
   Cookie Banner
   ========================================================================== */
.cookie-banner {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 700px;
    background: var(--color-secondary);
    color: #fff;
    padding: 1.5rem 2rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-hover);
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    z-index: 9999;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.cookie-content h4 {
    color: #fff;
    font-family: var(--font-heading);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.cookie-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
    line-height: 1.4;
}

.cookie-actions {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    align-items: center;
    flex-shrink: 0;
}

.cookie-button-group {
    display: flex;
    gap: 0.75rem;
    width: 100%;
}

.cookie-btn {
    flex: 1;
    padding: 0.75rem 0.5rem;
    border-radius: 4px;
    text-align: center;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    border: none;
    transition: all 0.2s ease;
    white-space: nowrap;
    background-color: var(--color-accent);
    color: #fff;
}

.cookie-btn:hover {
    background-color: var(--color-accent-light);
    transform: translateY(-1px);
}

@media (max-width: 768px) {
    .cookie-banner {
        flex-direction: column;
        text-align: center;
        bottom: 0;
        width: 100%;
        max-width: none;
        border-radius: var(--radius-lg) var(--radius-lg) 0 0;
        padding: 2rem 1.5rem;
        gap: 1.5rem;
    }

    .cookie-actions {
        width: 100%;
    }
}