.cookieConsentWrap {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background-color: rgba(0, 0, 0, 0.9);
    color: #fff;
    direction: rtl;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    transform: translateY(100%);
    transition: transform 0.4s ease-in-out;
}

.cookieConsentWrap.show {
    transform: translateY(0);
}

.cookieConsentInner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 20px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.cookieConsentText {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
    flex: 1 1 auto;
    min-width: 250px;
    text-align: center;
}

.cookieConsentText a {
    color: #fff;
    text-decoration: underline;
}

.cookieConsentBtn {
    background-color: #fff;
    color: #000;
    border: none;
    border-radius: 4px;
    padding: 10px 25px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    flex-shrink: 0;
}

.cookieConsentBtn:hover {
    opacity: 0.85;
}

@media (max-width: 600px) {
    .cookieConsentInner {
        flex-direction: column;
        text-align: center;
    }
}