.cookie-notice {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 999999;
    max-width: 380px;
    background: #ffffff;
    color: #1a1a1a;
    border-radius: 10px;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.2);
    padding: 18px 20px;
    font-family: Rubik, Arial, sans-serif;
    direction: rtl;
    text-align: right;
    animation: cookieNoticeIn 0.4s ease;
}

.cookie-notice[hidden] {
    display: none;
}

.cookie-notice-text {
    margin: 0 0 12px;
    font-size: 14px;
    line-height: 1.6;
}

.cookie-notice-text a {
    color: #1863DC;
    text-decoration: underline;
}

.cookie-notice-accept {
    display: inline-block;
    background: #1863DC;
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 8px 22px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    font-family: inherit;
}

.cookie-notice-accept:hover {
    background: #0056A7;
}

@keyframes cookieNoticeIn {
    from {
        opacity: 0;
        transform: translateY(12px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 480px) {
    .cookie-notice {
        left: 12px;
        right: 12px;
        max-width: none;
        bottom: 12px;
    }
}
