.cookie-popup {
    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-popup-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

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

.cookie-popup-message a {
    color: #8fb843;
    text-decoration: underline;
}

.cookie-popup-message a:hover {
    color: #8fb843;
}

.cookie-popup-close {
    background: #8fb843;
    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-popup-close:hover {
    background: #6e9426;
}

/* רספונסיבי */
@media (max-width: 768px) {
    .cookie-popup-content {
        flex-direction: column;
        text-align: center;
    }
    .cookie-popup-close {margin-left: -80px;}

    .cookie-popup-message {
        margin-right: 0;
        margin-bottom: 15px;
    }
}

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