/* Cookie Banner Styles */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border-top: 1px solid #e0e0e0;
    padding: 20px;
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.3s ease-in-out;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-banner__container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.cookie-banner__content {
    flex: 1;
    min-width: 300px;
}

.cookie-banner__title {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin: 0 0 8px 0;
    line-height: 1.4;
}

.cookie-banner__text {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
    margin: 0;
}

.cookie-banner__text a {
    color: var(--basic_text_black);;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s ease;
}

.cookie-banner__buttons {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.cookie-banner__btn {
    padding: 10px 20px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    min-width: 100px;
}


.cookie-banner__btn--decline {
    background: transparent;
    color: #666;
    border: 1px solid #ddd;
}

.cookie-banner__btn--decline:hover {
    background: #f8f9fa;
    border-color: #999;
    color: #333;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .cookie-banner {
        padding: 16px;
    }
    
    .cookie-banner__container {
        flex-direction: column;
        align-items: stretch;
        gap: 16px;
    }
    
    .cookie-banner__content {
        min-width: auto;
    }
    
    .cookie-banner__buttons {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .cookie-banner__btn {
        flex: 1;
        min-width: 120px;
    }
}

@media (max-width: 480px) {
    .cookie-banner {
        padding: 12px;
    }
    
    .cookie-banner__title {
        font-size: 15px;
    }
    
    .cookie-banner__text {
        font-size: 13px;
    }
    
    .cookie-banner__btn {
        padding: 8px 16px;
        font-size: 13px;
        min-width: 100px;
    }
}

/* Animation for smooth appearance */
@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

.cookie-banner.animate {
    animation: slideUp 0.3s ease-out;
}
