/* Modern RTL Cookie Consent Banner for Hebrew site */
#cookie-consent-banner {
    position: fixed;
    bottom: 0;
    right: 0;
    left: 0;
    background: #fff;
    color: #333;
    border-top: 2px solid #e0c97f;
    box-shadow: 0 -2px 8px rgba(0,0,0,0.07);
    z-index: 9999;
    padding: 18px 12px 18px 60px;
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    justify-content: space-between;
    font-family: inherit;
    direction: rtl;
}
#cookie-consent-banner .cookie-text {
    font-size: 1.1em;
    margin-right: 1em;
    flex: 1;
    text-align: right;
}
#cookie-consent-banner .cookie-close {
    background: transparent;
    color: #555;
    border: none;
    font-size: 22px;
    line-height: 1;
    padding: 6px 10px;
    cursor: pointer;
    border-radius: 4px;
    align-self: flex-start;
}
#cookie-consent-banner .cookie-close:hover {
    background: rgba(0,0,0,0.04);
}
#cookie-consent-banner .cookie-privacy-link {
    color: #1a73e8;
    text-decoration: underline;
    margin-right: 6px;
}
@media (max-width: 600px) {
    #cookie-consent-banner {
        flex-direction: column-reverse;
        align-items: stretch;
        padding: 14px 12px;
        text-align: center;
    }
    #cookie-consent-banner .cookie-text {
        margin-bottom: 10px;
        text-align: center;
    }
    #cookie-consent-banner .cookie-close {
        align-self: center;
        margin: 0 auto;
    }
}
