.cookie-banner {
    position: fixed;
    bottom: 16px;
    right: 16px;
    left: auto;
    z-index: 99999;
    background: #fff !important;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(0, 0, 0, 0.1) !important;
    border-radius: 12px;
    padding: 12px 14px;
    max-width: 260px;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.1);
    animation: cookieSlideIn 0.3s ease;
    font-family: inherit;
}
@keyframes cookieSlideIn {
    from { transform: translateY(20px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}
.cookie-banner-text {
    color: #333 !important;
    font-size: 11px;
    line-height: 1.4;
    margin-bottom: 8px;
}
.cookie-banner-text strong {
    color: #000 !important;
    font-size: 12px;
}
.cookie-banner-text a {
    color: #d4a017 !important;
}
.cookie-banner-actions {
    display: flex;
    gap: 6px;
}
.cookie-btn {
    flex: 1;
    padding: 6px 0;
    border-radius: 8px;
    font-size: 11px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: opacity 0.2s;
    appearance: none;
    -webkit-appearance: none;
}
.cookie-btn:hover { opacity: 0.85; }
.cookie-btn-reject {
    background: rgba(0, 0, 0, 0.06) !important;
    color: #000 !important;
    border: 1px solid rgba(0, 0, 0, 0.1) !important;
}
.cookie-btn-accept {
    background: #ffca38 !important;
    color: #000 !important;
}
@media (max-width: 480px) {
    .cookie-banner {
        bottom: 10px;
        right: 10px;
        max-width: 240px;
    }
}
