.cookie-consent {
    position: fixed;
    bottom: 24px;
    right: 24px;
    left: 24px;
    margin: auto;
    max-width: 420px;
    padding: 18px 20px;
    border-radius: 12px;
    background-color: rgba(255, 255, 255, 0.95);
    color: #333;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
    z-index: 9999;
    font-size: 14px;
    line-height: 1.6;
    direction: rtl;
    text-align: right;
}
.cookie-consent__text {
    margin: 0;
}
.cookie-consent__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 16px;
    justify-content: flex-end;
}
.cookie-consent__accept {
    padding: 8px 20px;
    border: none;
    border-radius: 20px;
    background: #ed42a6;
    color: #fff;
    font-weight: 600;
    cursor: pointer;
}
.cookie-consent__privacy {
    color: #1a73e8;
    font-weight: 600;
    text-decoration: none;
}
.cookie-consent--hidden {
    display: none;
}
@media (max-width: 600px) {
    .cookie-consent {
        left: 16px;
        right: 16px;
        bottom: 16px;
        max-width: none;
        padding: 16px;
    }
    .cookie-consent__actions {
        justify-content: center;
    }
}
