/* Cookie Consent Banner */
.cookie-consent-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    max-width: 500px;
    margin: 0 auto;
    /* Center on mobile if needed, or right aligned on desktop */
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border-radius: 16px;
    padding: 1.5rem;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transform: translateY(150%);
    transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    font-family: 'Heebo', sans-serif;
    direction: rtl;
}

.cookie-consent-banner.show {
    transform: translateY(0);
}

.cookie-content {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.cookie-icon {
    font-size: 1.5rem;
    background: rgba(51, 101, 138, 0.1);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
    color: var(--primary-blue, #33658A);
}

.cookie-text h3 {
    margin: 0 0 0.5rem 0;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark, #2D3748);
}

.cookie-text p {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.5;
    color: var(--text-muted, #718096);
}

.cookie-actions {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    margin-top: 0.5rem;
}

.cookie-btn {
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
}

.cookie-btn-accept {
    background: var(--primary-blue, #33658A);
    color: white;
    box-shadow: 0 4px 12px rgba(51, 101, 138, 0.2);
}

.cookie-btn-accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(51, 101, 138, 0.3);
}

.cookie-btn-policy {
    background: transparent;
    color: var(--text-muted, #718096);
    border: 1px solid var(--border-color, #E2E8F0);
}

.cookie-btn-policy:hover {
    background: var(--bg-light, #F7F9FC);
    color: var(--primary-blue, #33658A);
}

@media (min-width: 768px) {
    .cookie-consent-banner {
        left: 30px;
        right: auto;
        /* Align to left (Hebrew site, so maybe right? No, usually opposite to chat) */
        /* Let's put it on the right side for RTL site */
        left: auto;
        right: 30px;
        bottom: 30px;
        width: 400px;
    }
}