.marketplace-purchase {
    margin: 25px 0 14px;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: var(--paper);
}

.marketplace-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 12px;
}

.marketplace-heading > span { font-weight: 800; }
.marketplace-heading > span i { color: var(--brand); margin-right: 7px; }
.marketplace-heading small { color: var(--muted); }

.marketplace-buttons {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.marketplace-button {
    min-height: 52px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: #fff;
    color: var(--ink);
    font-size: .85rem;
    font-weight: 800;
    transition: .2s;
}

.marketplace-button > span { flex: 1; }
.marketplace-button > i:first-child { font-size: 1.15rem; }
.marketplace-button:hover {
    color: #fff;
    background: var(--ink);
    border-color: var(--ink);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(31, 22, 15, .12);
}

.marketplace-tokopedia > i:first-child { color: #42b549; }
.marketplace-shopee > i:first-child { color: #ee4d2d; }
.marketplace-tiktok_shop > i:first-child { color: #111; }
.marketplace-lazada > i:first-child { color: #0f146d; }
.marketplace-blibli > i:first-child { color: #0095da; }
.marketplace-bukalapak > i:first-child { color: #e31e52; }
.marketplace-whatsapp > i:first-child { color: #25d366; }
.marketplace-button:hover > i:first-child { color: #fff; }
.marketplace-purchase + .detail-wa { margin-top: 0; }

@media (max-width: 575.98px) {
    .marketplace-buttons { grid-template-columns: 1fr; }
    .marketplace-heading { align-items: flex-start; flex-direction: column; gap: 3px; }
}
