.footer {
    background-color: #333; 
    color: white;
    padding: 20px 0;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1rem;
}

.footer-logo img {
    width: 50px;
    border-radius: 6px;
}

.footer-logo span {
    font-size: 1.5rem;
    font-weight: bold;
    color: red;
    text-decoration: none;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 2rem;
}

.footer-section {
    flex: 1 1 200px;
    min-width: 200px;
}

.footer-section h3 {
    
    margin-bottom: 0.8rem;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-bottom {
    border-top: 1px solid #333;
    text-align: center;
    margin-top: 2rem;
    padding-top: 1rem;
    font-size: 0.85rem;
    color: #aaa;
}


.footer a {
    color: #ffcc00;
    text-decoration: none;
}

.footer a:hover {
    color: #ff9900;
    text-decoration: underline;
}

.footer a:focus {
    outline: 3px solid #ffcc00;
}


.footer h3 {
    color: red;
    font-weight: bold;
}


.footer p {
    color: #ccc;
}


.footer-section {
    margin-bottom: 20px;
}



    .footer .sell {
        color: red !important;
        font-weight: bold !important;
    }


    .footer .sell:hover {
        color: darkred !important;
        text-decoration: underline;
    }


    .footer .active {
        color: orange !important;
        font-weight: bold !important;
    }

    .footer a {
        text-decoration: none;
    }

    .footer a:hover {
        text-decoration: underline; 
    }
    
    
.scrollBtn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background-color: #333;
    border-radius: 50%;
    font-size: 24px;
    transition: all 0.3s ease;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
}


.scrollBtn i {
    color: #FFD700;
    transition: color 0.3s ease;
}


.scrollBtn:hover {
    background-color: orange; 
}

.scrollBtn:hover i {
    color: black;
}

@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }
    .footer-section {
        text-align: center;
    }
}