/* --- Footer Styles --- */

footer {
    width: 100%;
}

/* Footer Links Section */
.footer-links {
    background-color: #ffffff;
    padding: 50px 20px;
    display: flex;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
}

.links-grid {
    display: flex;
    gap: 100px;
    width: 100%;
    justify-content: center;
}

.link-column {
    display: flex;
    flex-direction: column;
    min-width: 150px;
}

.link-column h3 {
    font-size: 16px;
    color: #333;
    margin-bottom: 20px;
    font-weight: 700;
}

.link-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.link-column li {
    margin-bottom: 12px;
}

.popular-products-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: nowrap;
}

.popular-products-list li a {
    display: inline-block;
    max-width: 185px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    vertical-align: middle;
}

.link-column a {
    font-size: 14px;
    color: #555;
    font-weight: 400;
    text-decoration: none;
    transition: color 0.2s;
}

.link-column a:hover {
    color: #3467CE;
    text-decoration: underline;
}

.footer-tag-badge {
    font-size: 10px;
    font-weight: 700;
    border-radius: 999px;
    padding: 2px 7px;
    line-height: 1.4;
    text-transform: uppercase;
}

.footer-tag-badge.tag-hot {
    background: #fee2e2;
    color: #b91c1c;
}

.footer-tag-badge.tag-new {
    background: #dcfce7;
    color: #166534;
}

.footer-tag-badge.tag-deal {
    background: #fef3c7;
    color: #92400e;
}

.footer-tag-badge.tag-top_pick {
    background: #dbeafe;
    color: #1d4ed8;
}

.footer-empty-text {
    font-size: 13px;
    color: #9ca3af;
}

.footer-support-email span {
    color: #9ca3af;
}

.footer-email-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-email-link i {
    font-size: 14px;
    color: #6b7280;
}

.footer-email-link span {
    color: #555;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.2;
}

.footer-email-link:hover i {
    color: #3467CE;
}

/* Copyright Strip */
.copyright-strip {
    background-color: #3467CE;
    color: white;
    padding: 18px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
}

.copyright-strip.no-social {
    justify-content: center;
}

.legal-left {
    display: flex;
    align-items: center;
    gap: 25px;
}

.legal-left span {
    font-weight: 400;
}

.legal-left a {
    font-weight: 600;
    text-decoration: none;
    color: white;
    transition: opacity 0.2s;
}

.legal-left a:hover {
    text-decoration: underline;
    opacity: 0.9;
}

.social-right {
    display: flex;
    gap: 15px;
}

.social-right a {
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    width: 32px;
    height: 32px;
    border-radius: 4px;
    transition: background 0.3s;
    color: white;
    text-decoration: none;
}

.social-right a:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* Mobile Responsiveness */
@media (max-width: 900px) {
    .links-grid {
        gap: 50px;
    }
}

@media (max-width: 768px) {
    .links-grid {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }

    .link-column {
        align-items: center;
    }

    .copyright-strip {
        flex-direction: column;
        gap: 15px;
        padding: 18px 20px;
        text-align: center;
    }

    .legal-left {
        flex-direction: column;
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .footer-links {
        padding: 30px 15px;
    }
}
