/* Cookie Banner Styles */
.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    width: 380px;
    background-color: #17181A;
    color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    border: 1px solid #2F3235;
    transform: translateY(100%);
    opacity: 0;
    transition: transform 0.4s ease, opacity 0.4s ease;
}

.cookie-banner.show {
    transform: translateY(0);
    opacity: 1;
}

.cookie-banner-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.cookie-banner-header i {
    font-size: 24px;
    margin-right: 10px;
    color: #7B586B;
}

.cookie-banner-header h3 {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
}

.cookie-banner-content {
    margin-bottom: 20px;
    font-size: 14px;
    line-height: 1.5;
    color: #9A9A9B;
}

.cookie-banner-actions {
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

.cookie-btn {
    padding: 10px 15px;
    border: none;
    border-radius: 5px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Nunito', sans-serif;
}

.cookie-btn i {
    margin-right: 8px;
}

.cookie-btn-accept {
    background-color: #7B586B;
    color: #fff;
    flex: 1;
}

.cookie-btn-accept:hover {
    background-color: #4559d8;
}

.cookie-btn-decline {
    background-color: #2F3235;
    color: #9A9A9B;
    flex: 1;
}

.cookie-btn-decline:hover {
    background-color: #3a3d40;
    color: #fff;
}

@media screen and (max-width: 768px) {
    .cookie-banner {
        width: calc(100% - 40px);
        bottom: 10px;
        left: 10px;
        right: 10px;
    }
    
    .cookie-banner-actions {
        flex-direction: column;
    }
    
    .cookie-btn {
        width: 100%;
    }
}
