/* Single-product page — "icons after add-to-cart" block.
   Extracted from functions.php icons_after_add_to_cart_button(). */

.after_cart_button {
    border: 1px solid #474286;
    border-radius: 16px;
    text-align: center;
    padding: 10px;
    margin: 15px 0;
    display: inline-block;
}

.after_cart_button ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
}

.after_cart_button ul li {
    width: 33.333%;
    display: flex;
    flex-direction: column;
    color: #474286;
    font-weight: bold;
    font-size: 15px;
    gap: 5px;
    margin-bottom: 10px;
}

.after_cart_button ul li img {
    width: 45px;
    margin: auto;
    clear: both;
}

.after_cart_button h2 {
    font-size: 20px;
}

@media screen and (max-width: 991px) {
    .product-static-data p {
        display: block !important;
    }

    .product-static-data {
        margin: 0 0 20px;
        display: none;
    }

    .product-static-data .col-md-6:first-child {
        padding-left: 15px;
        padding-right: 15px;
    }

    .after-summary .product-static-data {
        display: inline-block;
    }

    .after_cart_button ul li {
        margin-bottom: 25px;
        line-height: 15px;
        padding: 0 15px;
    }

    .after_cart_button {
        padding: 10px 12px;
    }
}
