/* Money Back Guarantee Section - Cart and Checkout Pages */

body.woocommerce-cart .money-back-guarantee,
body.woocommerce-checkout .money-back-guarantee {
    position: sticky;
    bottom: 0;
    z-index: 9;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #ffffff;
    padding: 20px 0;
    box-shadow: 1px 1px 14px 0px rgba(0, 0, 0, 0.1);
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-bottom: 0 !important;
}

.money-back-guarantee .guarantee-items-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 100px;
}

.money-back-guarantee .guarantee-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.money-back-guarantee .guarantee-item img {
    width: 67px;
    height: auto;
}

.money-back-guarantee .guarantee-item h3 {
    font-family: Inter, sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 1;
    text-transform: uppercase;
    margin: 0;
    color: #222;
}

.money-back-guarantee .warranty-text-below {
    width: 100%;
    text-align: center;
    margin-top: 15px;
    padding: 0 0 10px 0;
}

.money-back-guarantee .warranty-text-below p {
    font-family: Inter, sans-serif;
    font-weight: 400;
    font-size: 12px;
    line-height: 1.5;
    color: #333;
    margin: 0;
}

@media screen and (max-width: 768px) {
    .money-back-guarantee {
        padding: 15px 10px;
        width: 100%;
        margin: 0 auto;
    }

    .money-back-guarantee .guarantee-items-wrapper {
        gap: 15px;
    }

    .money-back-guarantee .guarantee-item {
        gap: 8px;
    }

    .money-back-guarantee .guarantee-item img {
        width: 67px;
    }

    .money-back-guarantee .guarantee-item h3 {
        font-size: 14px;
    }

    .money-back-guarantee .warranty-text-below {
        margin-top: 10px;
    }

    .money-back-guarantee .warranty-text-below p {
        font-size: 11px;
    }

    }