/* Fs Cookie Consent (RTL) */
.fs_cookie_bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0; /* שנה ל-bottom:0 אם אתה רוצה למטה */
    z-index: 999999;
    background: rgba(0, 0, 0, 0.95);
    color: #fff;
    direction: rtl;
    width: 100%;
    box-sizing: border-box;
    padding: 8px 14px;
    display: none; /* מוצג ע"י JS רק כשצריך */
}

.fs_cookie_bar_inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 12px;
    align-items: center;
    justify-content: space-evenly;
}

.fs_cookie_bar_text {
    font-size: 14px;
    line-height: 1.3;
}

.fs_cookie_bar_text a {
    color: #ffffff;
    text-decoration: underline;
}

.fs_cookie_bar_btn {
    border: 0;
    cursor: pointer;
    padding: 8px 18px;
    border-radius: 999px;
    background: #d00e38;
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    white-space: nowrap;
}

@media (max-width: 768px) {
    .fs_cookie_bar_inner {
        /* flex-direction: column; */
        /* align-items: stretch; */
        gap: 10px;
    }

    .fs_cookie_bar_btn {
        width: 80px;
    }
}