/* Cookie Consent Banner Styles */
.cookie-consent-banner {
    position: fixed;
    bottom: -100%; /* Hidden by default */
    left: 0;
    width: 100%;
    background-color: #fff;
    box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    z-index: 9999;
    transition: bottom 0.5s ease-in-out;
    border-top: 3px solid var(--primary-color, #e60000);
    display: flex;
    justify-content: center;
    align-items: center;
}

.cookie-consent-banner.show {
    bottom: 0;
}

.cookie-content {
    max-width: 1200px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.cookie-text {
    flex: 1;
    color: #333;
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
}

.cookie-text a {
    color: var(--primary-color, #e60000);
    text-decoration: underline;
    font-weight: 600;
}

.cookie-text a:hover {
    text-decoration: none;
}

.cookie-btn {
    background-color: var(--primary-color, #e60000);
    color: white;
    border: none;
    padding: 10px 25px;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    white-space: nowrap;
}

.cookie-btn:hover {
    background-color: var(--primary-dark, #cc0000);
}

/* RTL Support */
[dir="rtl"] .cookie-consent-banner {
    text-align: right;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    [dir="rtl"] .cookie-content {
        text-align: center;
    }
    
    .cookie-btn {
        width: 100%;
        max-width: 200px;
    }
}
