/* =====================================================
   优品乐淘 - 底部模块（footer）
   ===================================================== */

/* ================= 经营理念区 ================= */
.philosophy-section {
    background: #fff;
    padding: 30px 0;
    border-bottom: 1px solid #eee;
}

.footer-container {
    width: 1200px;
    margin: 0 auto;
}

.philosophy-list {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.philosophy-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.philosophy-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 12px;
}

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

.philosophy-text {
    font-size: 14px;
    color: #333;
}

/* ================= 底部主区域 ================= */
.footer-main {
    background: #f8f8f8;
    padding: 40px 0;
}

.footer-main .footer-container {
    display: flex;
    justify-content: space-between;
}

/* ================= 左侧信息 ================= */
.footer-left {
    width: 480px;
}

.company-info {
    margin-bottom: 20px;
}

.contact-item {
    font-size: 13px;
    color: #666;
    margin-bottom: 8px;
}

.contact-label {
    color: #999;
}

.copyright-info {
    font-size: 12px;
    color: #999;
}

.copyright-link {
    color: #666;
    margin-left: 6px;
}

/* ================= 右侧导航 ================= */
.footer-right {
    flex: 1;
}

.nav-grid {
    display: flex;
    justify-content: flex-end;
    gap: 60px;
}

.nav-column {
    width: 120px;
}

.nav-title {
    font-size: 14px;
    font-weight: bold;
    color: #333;
    margin-bottom: 12px;
}

.nav-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.nav-text {
    font-size: 13px;
    color: #666;
    cursor: pointer;
}

.nav-text:hover {
    color: #ff4d4d;
}