/* Cookie Banner CSS */
#cookie-banner {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-main, 'Inter', sans-serif);
}

.cookie-banner-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(3px);
}

.cookie-banner-content {
    position: relative;
    background: #fff;
    width: 90%;
    max-width: 600px;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    max-height: 90vh;
    overflow-y: auto;
}

.cookie-banner-header h3 {
    margin-bottom: 10px;
    font-size: 22px;
    color: #111;
}

.cookie-banner-header p {
    font-size: 14px;
    color: #555;
    margin-bottom: 25px;
    line-height: 1.5;
}

.cookie-banner-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.cookie-btn {
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    border: none;
    transition: all 0.2s;
}

.cookie-btn-primary {
    background: var(--primary-color, #1484e7);
    color: #fff;
}

.cookie-btn-primary:hover {
    background: var(--primary-color-hover, #0f6cbf);
}

.cookie-btn-secondary {
    background: #e0e0e0;
    color: #333;
}

.cookie-btn-secondary:hover {
    background: #ccc;
}

.cookie-btn-outline {
    background: transparent;
    border: 1px solid #ccc;
    color: #333;
}

.cookie-btn-outline:hover {
    background: #f5f5f5;
}

.cookie-details {
    margin-top: 20px;
    border-top: 1px solid #eee;
    padding-top: 20px;
}

.cookie-category {
    margin-bottom: 15px;
}

.cookie-category-header {
    margin-bottom: 5px;
}

.cookie-checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    cursor: pointer;
}

.cookie-category-description {
    font-size: 13px;
    color: #666;
    margin-left: 25px;
}

.cookie-banner-footer {
    margin-top: 20px;
    border-top: 1px solid #eee;
    padding-top: 15px;
    text-align: center;
}
