/**
 * Compact, factual purchase reassurance beside the existing cart checkout CTA.
 * The mobile copy remains in normal document flow so the sticky footer stays small.
 */
.checkout-cart-index .meercato-cart__reassurance {
    display: flex;
    flex-direction: column;
    gap: 7px;
    padding: 12px 14px;
    border: 1px solid #DCEBDD;
    border-radius: 10px;
    background: #F7FBF7;
}

.checkout-cart-index .meercato-cart__reassurance-item {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin: 0;
    color: #3D5142;
    font-size: 13px;
    line-height: 1.45;
}

.checkout-cart-index .meercato-cart__reassurance-check {
    flex: 0 0 auto;
    color: #237442;
    font-weight: 800;
}

.checkout-cart-index .meercato-cart__reassurance--mobile {
    display: none;
}

@media (max-width: 1100px) {
    .checkout-cart-index .meercato-cart__reassurance--desktop {
        display: none;
    }

    .checkout-cart-index .meercato-cart__reassurance--mobile {
        display: flex;
        margin-top: 12px;
    }
}
