html #wrapper>.message-wrapper {
    font-size: 1rem;
}
body.woocommerce-checkout #wrapper>.message-wrapper {
    padding-top: 2em;
    padding-bottom: 0;
    margin-bottom: 0;
}
body.woocommerce-checkout .message-wrapper + #main > .page-wrapper {
    padding-top: 30px;
}
.columns-list>.col {
    max-width: 100% !important;
    -ms-flex-preferred-size: 100% !important;
    flex-basis: 100% !important;
}
html .category-page-row {
    padding-top: 15px;
}
.price {
    display: flex !important;
    flex-wrap: wrap;
    column-gap: 1em;
    line-height: 1.2;
}
.price ins {
    order: -1;
}
html span.amount {
    color: #ff0000;
}
html del span.amount {
    color: #111 !important;
}
.price del span.amount {
    opacity: .5;
    font-size: .9em;
    font-weight: bold;
    margin-right: 0;
    margin-left: 0;
}
/* Content Product */
.product-small.col>.col-inner {
    height: 100%;
    background: #FFF;
    border-radius: 5px;
    box-shadow: 0 0 0 1px rgba(0,0,0,.1), 0 0 0.75em 0.125em transparent;
    overflow: hidden;
    transition: all .3s ease-in-out;
}
.product-small.col>.col-inner:hover {
    box-shadow: 0 0 0 1px rgba(0,0,0,.1), 0 1px 0.5em 0 rgba(0,0,0,.2);
}
.product-small.box {
    height: 100%;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    justify-content: space-between;
}
.product-small.box .box-image {
    margin: 0;
}
.product-small.box .box-image .image-zoom {
    background-position: 50% 50%;
    background-size: cover;
    height: auto;
    overflow: hidden;
    padding-top: 70%;
    position: relative;
}
@media (max-width: 549px) {
    .product-small.box .box-image .image-zoom {
        padding-top: 90%;
    }
}
.product-small.box .box-image img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: auto;
    height: auto;
    max-width: 90%;
    max-height: 90%;
}
.box-text.box-text-products {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-flex: 1 1 auto;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    padding-bottom: 1em;
}
.box-text-products .woocommerce-loop-product__title {
    font-size: 1rem;
    font-weight: bold;
    margin: .5em 0 1em !important;
}
.box-text-products .woocommerce-loop-product__title a.woocommerce-LoopProduct-link {
    color: inherit;
    margin: 0;
    line-height: 1.4;
    white-space: normal;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    max-height: 4.2em;
    width: auto;
    transition: all .3s ease-in-out;
}
.box-text-products .woocommerce-loop-product__title a.woocommerce-LoopProduct-link:hover {
    color: var(--primary-color);
}
.box-text-products.text-center .price {
    justify-content: center;
    margin-bottom: .5em;
}
.box-text-products .add-to-cart-button {
    margin-top: auto;
    display: flex;
    flex-direction: column;
}
.box-text-products .add-to-cart-button a {
    font-size: 12px;
}
.box-text-products .add-to-cart-button a:not(.added_to_cart) {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row-reverse;
    width: 100%;
    background-color: #FFF !important;
    color: #000 !important;
    border: 1px solid transparent;
    border-radius: 16px;
    position: relative;
    padding: 0 0 0 15px;
    height: 34px;
    line-height: 32px;
    outline: none;
    text-transform: uppercase;
    transition: border 0.5s ease;
    -o-transition: border 0.5s ease;
    -moz-transition: border 0.5s ease;
    -webkit-transition: border 0.5s ease;
}
.box-text-products .add-to-cart-button a:not(.added_to_cart):before {
    content: '\f217';
    font-family: 'Font Awesome 5 Pro';
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: var(--primary-color);
    color: #FFF;
    margin-left: 1em;
    margin-right: -1px;
    border-radius: 50%;
    transition: all 0.5s;
}
.box-text-products .add-to-cart-button a:not(.added_to_cart):hover {
    border-color: var(--primary-color);
}
@media (max-width: 549px) {
    .box-text-products .woocommerce-loop-product__title, .box-text-products.text-center .price {
        font-size: .875rem;
    }
    .box-text-products .add-to-cart-button a:not(.added_to_cart) {
        padding: 0;
        border: none;
    }
    .box-text-products .add-to-cart-button a:not(.added_to_cart):before {
        display: none;
    }
    .box-text-products .add-to-cart-button a:not(.added_to_cart):hover {
        color: var(--primary-color) !important;
    }
}
.product .badge-container {
    top: 10px;
    left: 10px;
    margin: 0;
}
.product .badge {
    height: auto;
}
.product .badge-inner {
    font-size: .75rem;
    padding: 6px;
    border-radius: 3px;
}
/* Mini Cart */
ul.product_list_widget li a:not(.remove) {
    font-weight: bold;
}
.widget_shopping_cart .widget_shopping_cart_content p.total {
    border-bottom: none;
    margin-bottom: 0;
}
.widget_shopping_cart ul.product_list_widget li .quantity {
    opacity: 1;
}
.woocommerce-mini-cart__buttons {
    display: flex;
    column-gap: 1em;
}
.woocommerce-mini-cart__buttons a {
    text-transform: none;
    padding: 0 .5em;
}
html a.remove, html a.icon-remove {
    border-width: 1px;
    line-height: normal !important;
    display: flex !important;
    justify-content: center;
    align-items: center;
}