﻿/* ================= USP ROW (Free Shipping, Returns, etc.) ================= */
.usp-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 32px;
    padding: 48px 24px;
    background-color: #111; /* dark background to match topbar */
    color: #fff;
    border-top: 1px solid rgba(255,255,255,0.08);
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.usp-item {
    text-align: center;
    flex: 1 1 220px;
    max-width: 280px;
    padding: 12px;
    transition: transform 0.3s ease, color 0.3s ease;
}

    .usp-item:hover {
        transform: translateY(-4px);
    }

.usp-icon {
    font-size: 28px;
    margin-bottom: 8px;
    color: #f2f2f2;
}

.usp-heading {
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 4px;
    letter-spacing: 0.02em;
}

.usp-text {
    font-size: 14px;
    color: rgba(255,255,255,0.8);
}

/* ================= FOOTER ================= */
.site-footer {
    background-color: #0e0e0e;
    color: #f1f1f1;
    text-align: center;
    padding: 48px 24px;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Inter", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.footer-brand {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.05em;
    margin-bottom: 16px;
    color: #fff;
}

.footer-links {
    margin-bottom: 16px;
}

    .footer-links a {
        color: rgba(255,255,255,0.8);
        text-decoration: none;
        margin: 0 12px;
        font-size: 14px;
        transition: color 0.2s ease;
    }

        .footer-links a:hover {
            color: #fff;
            text-decoration: underline;
        }

.footer-copy {
    font-size: 13px;
    color: rgba(255,255,255,0.6);
    margin-top: 8px;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
    .usp-row {
        flex-direction: column;
        align-items: center;
        gap: 24px;
    }

    .usp-item {
        max-width: 100%;
    }

    .footer-links a {
        display: inline-block;
        margin: 6px 8px;
    }
}
