/* =====================================================
   Footer Section
   ===================================================== */
.footer-section { margin-top: 80px; }

/* Store Location */
.store-location {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border);
    padding: 50px 20px;
}

.store-location-inner {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 36px;
    align-items: center;
}

.location-info h3 {
    font-size: 20px;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.location-address {
    font-size: 15px;
    color: var(--text-secondary);
    margin-bottom: 18px;
    line-height: 1.7;
}

.location-details {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.location-detail-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--text-secondary);
}

.location-detail-item .detail-icon { font-size: 18px; }

.location-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--accent-light);
    color: var(--accent);
    padding: 10px 22px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s;
    text-decoration: none;
}

.location-btn:hover {
    background: var(--accent);
    color: #fff;
}

.location-map {
    height: 260px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
}

.location-map iframe {
    display: block;
}

/* Footer Bottom */
.footer-bottom {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border);
    padding: 30px 20px;
}

.footer-bottom-inner {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.footer-bottom p { font-size: 13px; color: var(--text-muted); }

.footer-links {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-bottom: 14px;
}

.footer-links a {
    color: var(--text-muted);
    font-size: 13px;
    transition: color 0.2s;
}

.footer-links a:hover { color: var(--accent); }
