.cookie-alert {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.9);
    color: white;
    padding: 20px;
    z-index: 999999;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
    width: 470px;
    border-top-left-radius: 20px;
}

.cookie-alert-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.cookie-alert-message {
    flex: 1;
    line-height: 1.5;
}

.cookie-alert-message a {
    color: #2a7acc;
    text-decoration: underline;
}

.cookie-alert-message a:hover {
    color: #36AAE1;
}

.cookie-alert-close {
    background: #2a7acc;
    color: white;
    border: none;
    padding: 5px 15px;
    cursor: pointer;
    border-radius: 4px;
    font-family: inherit;
    font-size: 14px;
    transition: background 0.3s ease;
    white-space: nowrap;
}

.cookie-alert-close:hover {
    background: #2c8aa3;
}

/* רספונסיבי */
@media (max-width: 768px) {
    .cookie-alert-content {
        flex-direction: column;
        text-align: center;
    }
    .cookie-alert-close {
        margin-left: 0; /* תיקון רספונסיבי */
        margin-top: 15px;
    }

    .cookie-alert-message {
        margin-right: 0;
        margin-bottom: 0;
    }
    .cookie-alert {
        width: 100%;
        border-top-left-radius: 0;
    }
}

/* תאימות עם WP Rocket */
.cookie-alert {
    will-change: transform;
}
