.yfc-cookie-banner {
    position: fixed;
    left: 50%;
    bottom: 20px;
    z-index: 99999;
    display: flex;
    align-items: center;
    gap: 12px;
    width: min(560px, calc(100% - 24px));
    padding: 14px 16px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.14);
    color: #1f2937;
    font-size: 14px;
    line-height: 1.45;
    transform: translate(-50%, 16px);
    opacity: 0;
    transition: opacity 0.2s ease, transform 0.2s ease;
    backdrop-filter: blur(10px);
}

.yfc-cookie-banner.is-visible {
    transform: translate(-50%, 0);
    opacity: 1;
}

.yfc-cookie-banner__text {
    flex: 1 1 auto;
}

.yfc-cookie-banner__button {
    flex: 0 0 auto;
    border: 0;
    border-radius: 10px;
    background: #111827;
    color: #ffffff;
    padding: 10px 14px;
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
    cursor: pointer;
}

.yfc-cookie-banner__button:hover,
.yfc-cookie-banner__button:focus {
    background: #0f172a;
}

@media (max-width: 640px) {
    .yfc-cookie-banner {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }

    .yfc-cookie-banner__button {
        width: 100%;
    }
}
