/* ---------- Button Layout ---------- */

.detail-action {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

/* buttons side by side */

#button-cart,
#button-whatsapp {
    flex: 1;
    height: 46px;
    font-weight: 600;
    border-radius: 6px;
}

/* WhatsApp button style */

#button-whatsapp {
    background: #25D366;
    border-color: #25D366;
    color: #fff;
}

#button-whatsapp:hover {
    background: #20ba57;
    border-color: #20ba57;
}

/* Trust box like reference design */

.yo-trust-box.yo-trust-grid{
    margin-top:14px;
    padding:0;
    background:none;
    border:none;
    display:grid;

    grid-template-columns: repeat(3, 1fr); /* better layout */
    column-gap:10px;
    row-gap:8px;

    max-width:580px;
    width:100%;
    clear:both;
}

.yo-trust-item{
    display:flex;
    align-items:center;
    font-size:11px;
    color:#444;
    font-weight:500;
}

.yo-trust-item i{
    margin-right:6px;
    color:#6dbb45;
    font-size:14px;
}

/* Mobile */
@media (max-width:768px){
    .yo-trust-box.yo-trust-grid{
        grid-template-columns:1fr;
    }
}