/* Cookie Notice Styles - Multilingual Support */
.cookie-notice {
    position: fixed;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 15px 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    z-index: 999999;
    font-family: inherit;
    font-size: 14px;
    line-height: 1.4;
}

/* תמיכה בכיוון עברית */
.cookie-notice.rtl {
    direction: rtl;
    text-align: right;
}

/* תמיכה בכיוון אנגלית */
.cookie-notice.ltr {
    direction: ltr;
    text-align: left;
}

.cookie-notice-bottom {
    bottom: 0;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
}

.cookie-notice-top {
    top: 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.cookie-notice-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 15px;
}

.cookie-notice-message {
    flex: 1;
}

.cookie-notice-link {
    color: #3498db;
    text-decoration: underline;
}

/* ריווח לקישור בעברית */
.cookie-notice.rtl .cookie-notice-link {
    margin-right: 5px;
}

/* ריווח לקישור באנגלית */
.cookie-notice.ltr .cookie-notice-link {
    margin-left: 5px;
}

.cookie-notice-link:hover {
    opacity: 0.8;
    text-decoration: none;
}

.cookie-notice-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.cookie-notice-dismiss-btn {
    background: #e74c3c;
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 12px;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.cookie-notice-dismiss-btn:hover {
    background: #c0392b;
}

/* הסתרת ההודעה */
.cookie-notice.hidden {
    display: none !important;
}

/* אנימציה */
.cookie-notice {
    animation: slideIn 0.5s ease-out;
}

@keyframes slideIn {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.cookie-notice-top {
    animation: slideInTop 0.5s ease-out;
}

@keyframes slideInTop {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* רספונסיביות */
@media (max-width: 768px) {
    .cookie-notice {
        padding: 15px;
    }
    
    .cookie-notice-container {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .cookie-notice-message {
        margin-bottom: 0;
    }
    
    .cookie-notice-actions {
        justify-content: center;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .cookie-notice {
        font-size: 13px;
        padding: 12px;
    }
    
    .cookie-notice-dismiss-btn {
        padding: 6px 12px;
        font-size: 11px;
    }
}