/* Cookie Consent Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to left, #6b6b6bdf, #7b7b7be3);
    z-index: 9999;
    display: none;
    color: white;
}

.cookie-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    gap: 20px;
}

.cookie-text {
    flex: 1;
    font-size: 14px;
    line-height: 1.6;
}

/* RTL support */
html[dir="rtl"] .cookie-text {
    text-align: right;
}

html[dir="ltr"] .cookie-text {
    text-align: left;
}

.cookie-privacy-link {
    color: inherit;
    text-decoration: underline;
}

.cookie-privacy-link:hover {
    opacity: 0.8;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
}

.cookie-banner .btn {
    padding: 10px 30px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    font-weight: bold;
}

.cookie-banner .btn-accept {
    background-color: #396F90;
    color: white;
}

.cookie-banner .btn-accept:hover {
    background-color: #2d5973;
}

@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        padding: 15px 20px;
    }

    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }
}
