/* ======================================================
   ONPAL WEB — Universal Buyer Footer CSS
   File: /web/assets/footer.css
   Purpose:
   - Shared buyer web footer UI only
   - No business logic
====================================================== */

.op-site-footer {
    background: #ffffff;
    border-top: 1px solid #e5e7eb;
    color: #0f172a;
    margin-top: 40px;
}

.op-site-footer__trust {
    width: min(1180px, calc(100% - 28px));
    margin: 0 auto;
    padding: 22px 0;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 14px;
    border-bottom: 1px solid #edf2f7;
}

.op-site-footer__trust div {
    display: grid;
    grid-template-columns: auto 1fr;
    column-gap: 8px;
    row-gap: 3px;
    align-items: start;
    font-size: 18px;
}

.op-site-footer__trust b {
    color: #166534;
    font-size: 14px;
    line-height: 1.2;
}

.op-site-footer__trust span {
    grid-column: 2;
    color: #64748b;
    font-size: 13px;
    line-height: 1.3;
}

.op-site-footer__main {
    width: min(1180px, calc(100% - 28px));
    margin: 0 auto;
    padding: 28px 0;
    display: grid;
    grid-template-columns: 1fr 1fr 1.2fr;
    gap: 32px;
}

.op-site-footer__main h4 {
    margin: 0 0 12px;
    color: #166534;
    font-size: 15px;
    font-weight: 900;
}

.op-site-footer__main a {
    display: block;
    color: #334155;
    text-decoration: none;
    font-size: 14px;
    margin-bottom: 8px;
}

.op-site-footer__main a:hover {
    color: #16a34a;
    text-decoration: underline;
}

.op-site-footer__main p {
    color: #64748b;
    font-size: 14px;
    margin: 0 0 12px;
    line-height: 1.45;
}

.op-site-footer__app {
    width: fit-content;
    background: #16a34a;
    color: #ffffff !important;
    border-radius: 999px;
    padding: 10px 18px;
    font-weight: 900;
    text-decoration: none !important;
}

.op-site-footer__bottom {
    background: #f8fafc;
    border-top: 1px solid #edf2f7;
    padding: 14px;
    display: flex;
    justify-content: center;
    gap: 16px;
    color: #64748b;
    font-size: 13px;
}

@media (max-width: 900px) {
    .op-site-footer__trust {
        grid-template-columns: 1fr;
        padding: 20px 0;
    }

    .op-site-footer__main {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .op-site-footer__bottom {
        flex-direction: column;
        gap: 4px;
        text-align: center;
    }
}

/* ======================================================
   ONPAL BUYER WEB — Universal Mobile Footer Law
   Scope:
   - Buyer-facing web pages only
   - Hide universal footer on mobile
   - Desktop footer remains visible
====================================================== */

@media screen and (max-width: 768px) {
    .op-site-footer {
        display: none !important;
    }
}