/* Cookie Banner Styles */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--neutral-800);
    color: white;
    padding: var(--space-3);
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.3s ease-in-out;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-banner-content {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-4);
}

.cookie-banner-text {
    flex: 1;
}

.cookie-banner-text p {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.4;
    color: var(--neutral-200);
}

.cookie-banner-text a {
    color: var(--primary-300);
    text-decoration: underline;
}

.cookie-banner-text a:hover {
    color: var(--primary-200);
}

.cookie-banner-actions {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
    flex-wrap: wrap;
}

.cookie-btn {
    padding: 10px 16px;
    border: none;
    border-radius: var(--border-radius);
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s ease;
    white-space: nowrap;
}

.cookie-btn-accept {
    background: var(--primary-500);
    color: white;
}

.cookie-btn-accept:hover {
    background: var(--primary-600);
}

.cookie-btn-customize {
    background: var(--neutral-500);
    color: white;
}

.cookie-btn-customize:hover {
    background: var(--neutral-600);
}

.cookie-btn-decline {
    background: var(--neutral-600);
    color: white;
}

.cookie-btn-decline:hover {
    background: var(--neutral-700);
}

.cookie-preferences {
    display: none;
    margin-top: var(--space-3);
    padding: var(--space-3);
    background: var(--neutral-700);
    border-radius: var(--border-radius);
}

.cookie-preferences.show {
    display: block;
}

.cookie-preferences h4 {
    color: white;
    margin-bottom: var(--space-2);
    font-size: 1rem;
}

.cookie-category {
    margin-bottom: var(--space-2);
    padding: var(--space-2);
    background: var(--neutral-600);
    border-radius: var(--border-radius);
}

.cookie-category label {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--neutral-200);
    font-size: 0.875rem;
    cursor: pointer;
}

.cookie-category input[type="checkbox"] {
    margin: 0;
}

.cookie-category input[type="checkbox"]:disabled {
    opacity: 0.5;
}

.cookie-category-description {
    font-size: 0.75rem;
    color: var(--neutral-300);
    margin-top: 4px;
    margin-left: 20px;
}

.cookie-preferences-actions {
    display: flex;
    gap: 12px;
    margin-top: var(--space-3);
    flex-wrap: wrap;
}

.cookie-policy-link {
    color: var(--primary-300);
    text-decoration: underline;
    font-size: 0.875rem;
}

.cookie-policy-link:hover {
    color: var(--primary-200);
}

/* Responsive design for cookie banner */
@media (max-width: 768px) {
    .cookie-banner-content {
        flex-direction: column;
        align-items: stretch;
        gap: var(--space-3);
    }
    
    .cookie-banner-text {
        text-align: center;
    }
    
    .cookie-banner-actions {
        justify-content: center;
    }
    
    .cookie-preferences-actions {
        justify-content: center;
        flex-direction: column;
    }
    
    .cookie-btn {
        flex: 1;
        min-width: 100px;
    }
}
}