/**
 * Footer Styles
 *
 * @package Hello Elementor Child
 */

/* 页脚主容器 */
.site-footer {
    background-color: #222222;
    color: #ffffff;
    font-family: 'Source Han Sans CN', sans-serif;
    padding: 70px 0 20px;
    position: relative;
}

/* 内容容器 */
.footer-content-container {
    width: 1200px;
    margin: 0 auto;
    position: relative;
}

/* 主要内容区域 */
.footer-main-content {
    display: flex;
    justify-content: space-between;
    padding-bottom: 40px;
    margin-bottom: 20px;
    position: relative;
}

.footer-main-content:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.2);
}

/* 公司信息 */
.footer-company-info {
    width: 304px;
}

.footer-address,
.footer-email,
.footer-phone {
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 20px;
}

/* 社交媒体图标 */
.footer-social-icons {
    display: flex;
    gap: 10px;
    margin-top: 30px;
}

.social-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 32px;
    height: 32px;
}

.social-icon img {
    width: 100%;
    height: 100%;
}

/* 页脚链接列 */
.footer-links-column {
    min-width: 130px;
}

.footer-column-title {
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    margin-bottom: 20px;
    letter-spacing: 0.85px;
}

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

.footer-links-list li {
    margin-bottom: 0;
}

.footer-links-list a {
    color: #ffffff;
    font-size: 14px;
    line-height: 35px;
    text-decoration: none;
    display: block;
    transition: opacity 0.3s;
}

.footer-links-list a:hover {
    opacity: 0.8;
}

/* 页脚底部 */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

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

/* 支付方式 */
.footer-payment-methods {
    display: flex;
    gap: 10px;
}

.footer-payment-methods img {
    height: 24.8px;
    width: 35px;
}

/* 覆盖主题默认样式，确保页脚通栏 */
.site-footer:not(.dynamic-footer),
.site-footer .footer-inner {
    max-width: 100% !important;
    width: 100% !important;
    margin: 0 !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
}

/* 响应式调整 */
@media (max-width: 1240px) {
    .footer-content-container {
        width: 90%;
        max-width: 1200px;
        padding: 0 20px;
    }
}

@media (max-width: 768px) {
    .footer-main-content {
        flex-direction: column;
        gap: 30px;
    }
    
    .footer-links-column {
        width: 100%;
    }
    
    .footer-company-info {
        width: 100%;
    }
    
    .footer-bottom {
        flex-direction: column-reverse;
        gap: 20px;
    }
}
