/* Cookie Banner Styles */

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a2952;
    color: #ffffff;
    padding: 1rem 0;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    display: block; /* Always visible by default */
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.cookie-text {
    margin-bottom: 1rem;
}

.cookie-text h4 {
    margin: 0 0 0.5rem 0;
    font-size: 1.1rem;
    font-weight: 600;
}

.cookie-content p {
    margin: 0;
    line-height: 1.5;
    font-size: 0.9rem;
}

.cookie-buttons {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.cookie-btn {
    padding: 0.6rem 1.2rem;
    border: 1px solid transparent;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.cookie-btn.primary {
    background: #84cc16;
    color: #1a2952;
}

.cookie-btn.primary:hover {
    background: #9dd71f;
}

.cookie-btn.secondary {
    background: transparent;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.cookie-btn.secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

.cookie-btn.tertiary {
    background: transparent;
    color: #84cc16;
    border: 1px solid #84cc16;
}

.cookie-btn.tertiary:hover {
    background: rgba(132, 204, 22, 0.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .cookie-buttons {
        justify-content: center;
    }
    
    .cookie-btn {
        flex: 1 1 auto;
        min-width: 80px;
    }
}

@media (max-width: 480px) {
    .cookie-banner {
        padding: 0.75rem 0;
    }
    
    .cookie-content p {
        font-size: 0.9rem;
    }
    
    .cookie-btn {
        padding: 0.5rem 0.8rem;
        font-size: 0.8rem;
    }

    .cookie-buttons {
        flex-direction: column;
    }

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