/**
 * Simple Footer Styles
 * Clean and modern footer design
 */

.site-footer {
    background-color: #f8f9fa;
    color: #333;
    padding: 40px 0 20px;
    margin-top: 60px;
    border-top: 1px solid #e0e0e0;
}

/* Footer Widgets */
.footer-widgets {
    padding: 40px 0;
}

.footer-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.footer-column {
    min-width: 0;
}

.footer-widget {
    margin-bottom: 30px;
}

.footer-widget-title,
.footer-widget h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #222;
}

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

.footer-widget ul li {
    margin-bottom: 10px;
}

.footer-widget ul li a {
    color: #666;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-widget ul li a:hover {
    color: #007bff;
}

.footer-widget p {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid #e0e0e0;
    padding: 25px 0;
    margin-top: 40px;
}

.footer-bottom-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.footer-copyright {
    font-size: 14px;
    color: #666;
}

/* Footer Menu */
.footer-menu-nav {
    flex: 1;
    text-align: center;
}

.footer-bottom-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.footer-bottom-menu li {
    display: inline-block;
}

.footer-bottom-menu li a {
    color: #666;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-bottom-menu li a:hover {
    color: #007bff;
}

/* Social Links */
.footer-social {
    display: flex;
    gap: 15px;
    align-items: center;
}

.footer-social .social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: #333;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-social .social-link:hover {
    background-color: #007bff;
    transform: translateY(-2px);
}

.footer-social .social-link svg {
    width: 18px;
    height: 18px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .site-footer {
        padding: 30px 0 15px;
        margin-top: 40px;
    }
    
    .footer-widgets {
        padding: 30px 0;
    }
    
    .footer-row {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-bottom-inner {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-menu-nav {
        order: -1;
    }
    
    .footer-bottom-menu {
        flex-direction: column;
        gap: 10px;
    }
    
    .footer-social {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .footer-bottom-menu {
        gap: 8px;
    }
    
    .footer-social {
        gap: 10px;
    }
    
    .footer-social .social-link {
        width: 32px;
        height: 32px;
    }
    
    .footer-social .social-link svg {
        width: 16px;
        height: 16px;
    }
}

/* Widget Specific Styles */
.footer-widget.widget_text .textwidget {
    font-size: 14px;
    line-height: 1.6;
}

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

.footer-widget.widget_nav_menu ul li {
    margin-bottom: 8px;
}

.footer-widget.widget_nav_menu ul li a {
    display: inline-block;
    padding: 4px 0;
}

/* Custom Widget Styles */
.footer-widget .widget-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #222;
}

/* Payment Icons / Custom Content */
.footer-widget .payment-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 15px;
}

.footer-widget .payment-icons img {
    height: 30px;
    width: auto;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.footer-widget .payment-icons img:hover {
    opacity: 1;
}

/* Dark Footer Variant */
.site-footer.footer-dark {
    background-color: #222;
    color: #fff;
    border-top-color: #333;
}

.site-footer.footer-dark .footer-widget-title,
.site-footer.footer-dark .footer-widget h3 {
    color: #fff;
}

.site-footer.footer-dark .footer-widget ul li a,
.site-footer.footer-dark .footer-widget p,
.site-footer.footer-dark .footer-copyright,
.site-footer.footer-dark .footer-bottom-menu li a {
    color: #ccc;
}

.site-footer.footer-dark .footer-widget ul li a:hover,
.site-footer.footer-dark .footer-bottom-menu li a:hover {
    color: #fff;
}

.site-footer.footer-dark .footer-bottom {
    border-top-color: #333;
}

.site-footer.footer-dark .footer-social .social-link {
    background-color: #444;
}

.site-footer.footer-dark .footer-social .social-link:hover {
    background-color: #007bff;
}

