/* Cookie Banner - Минималистичен дизайн в унисон с x Brand */
.cookie-banner {
    position: fixed;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 60px;
    background: linear-gradient(135deg, #111 0%, #292F36 100%);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 2rem;
    border-radius: 12px 12px 0 0;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    transform: translateY(0);
    transition: transform 0.3s ease-in-out;
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 14px;
}

.cookie-banner.hidden {
    transform: translateY(120%);
}

.cookie-banner-content {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    width: 100%;
}

.cookie-banner-text {
    flex: 1;
    margin: 0;
    font-weight: 400;
    line-height: 1.4;
}

.cookie-banner-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.btn-ok,
.btn-accept {
    background: linear-gradient(135deg, #FF6B6B 0%, #e55555 100%);
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: inherit;
}

.btn-ok:hover,
.btn-accept:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 107, 107, 0.3);
}

.btn-decline {
    background: transparent;
    color: #ccc;
    border: 1px solid #555;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: inherit;
}

.btn-decline:hover {
    color: #fff;
    border-color: #777;
}

.link-settings {
    color: #ccc;
    text-decoration: none;
    font-size: 13px;
    transition: color 0.2s ease;
}

.link-settings:hover {
    color: #FFD166;
}

.privacy-link {
    color: #FFD166;
    text-decoration: underline;
    transition: color 0.2s ease;
}

.privacy-link:hover {
    color: #fff;
}

.cookie-types {
    margin: 0.5rem 0 0 0;
    font-size: 12px;
    color: #bbb;
    line-height: 1.3;
}

.cookie-banner.settings-mode {
    height: auto;
    min-height: 80px;
    padding: 1rem 2rem;
}

.cookie-banner.settings-mode .cookie-banner-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
}

.cookie-banner.settings-mode .cookie-banner-actions {
    align-self: flex-end;
}

/* Site Blocked Overlay */
.site-blocked {
    overflow: hidden;
}

.site-blocked > *:not(.blocked-overlay) {
    filter: blur(5px);
    pointer-events: none;
}

.blocked-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    font-family: 'Inter', system-ui, sans-serif;
}

.blocked-content {
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
    padding: 2.5rem;
    border-radius: 16px;
    text-align: center;
    max-width: 450px;
    margin: 2rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.blocked-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.blocked-content h2 {
    color: #292F36;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 600;
}

.blocked-content p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.blocked-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.btn-accept-blocked {
    background: linear-gradient(135deg, #FF6B6B 0%, #e55555 100%);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: inherit;
}

.btn-accept-blocked:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 107, 0.4);
}

.btn-leave-site {
    background: transparent;
    color: #666;
    border: 2px solid #ddd;
    padding: 10px 24px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: inherit;
}

.btn-leave-site:hover {
    color: #333;
    border-color: #999;
}

.blocked-privacy {
    font-size: 12px;
    margin: 0;
}

.blocked-privacy a {
    color: #2A5C82;
    text-decoration: none;
    font-weight: 500;
}

.blocked-privacy a:hover {
    text-decoration: underline;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .cookie-banner {
        padding: 0 1rem;
        font-size: 13px;
        height: auto;
        min-height: 60px;
    }
    
    .cookie-banner-content {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem 0;
    }
    
    .cookie-banner-actions {
        align-self: stretch;
        justify-content: center;
    }
    
    .btn-ok,
    .btn-accept,
    .btn-decline {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .blocked-content {
        padding: 2rem 1.5rem;
        margin: 1rem;
    }
    
    .blocked-actions {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .btn-accept-blocked,
    .btn-leave-site {
        width: 100%;
        padding: 12px;
    }
}