﻿#footer h2, #footer li {
    color: black;
}

#footer h2 {
    font-size: 25px;
}

#footer h3 {
    font-size: 20px;
    color: black;
}

#footer p {
    color: black;
}

#footer {
    background-color: whitesmoke;
}

#footerRow {
    padding-bottom: 0px !important;
}

#navfooter li:hover{
    color: #069CD8 !important;
}

/* Footer Products Section */
.footer-products {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    width: 100%;
    align-items: baseline;
}

.footer-products-title {
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    font-size: 14px !important;
    line-height: 1.36;
    text-transform: uppercase;
    color: #787878 !important;
    margin: 0;
}

.footer-products-grid {
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-product-card {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 120px;
}

.footer-product-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.footer-product-icon {
    width: 26px;
    height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-product-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.footer-product-name {
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    font-size: 20px;
    line-height: 1.5;
    color: #353535;
}

@media (max-width: 768px) {
    .footer-products-grid {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-product-card {
        width: 100%;
        max-width: 200px;
    }
}