.wolf-side-cart {
    --wolf-cart-red: #ef233c;
    --wolf-cart-dark: #171717;
    --wolf-cart-text: #252525;
    --wolf-cart-muted: #777;
    --wolf-cart-border: #ececec;
    --wolf-cart-soft: #f7f7f7;
    --wolf-cart-green: #347a52;
    --wolf-cart-green-soft: #e0ffee;

    position: fixed;
    z-index: 10001;
    top: 0;
    right: 0;
    bottom: 0;
    display: flex;
    width: min(94vw, 470px);
    flex-direction: column;
    color: var(--wolf-cart-text);
    font-family: "Montserrat", sans-serif;
    background: #fff;
    box-shadow: -18px 0 50px rgba(0, 0, 0, .18);
    transform: translateX(105%);
    transition: transform .34s cubic-bezier(.22, .61, .36, 1);
}

.wolf-side-cart,
.wolf-side-cart * {
    box-sizing: border-box;
}

.wolf-side-cart svg {
    display: block;
    width: 21px;
    height: 21px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.wolf-side-cart.is-open {
    transform: translateX(0);
}

.wolf-side-cart-overlay {
    position: fixed;
    z-index: 10000;
    inset: 0;
    visibility: hidden;
    background: rgba(12, 12, 12, .52);
    opacity: 0;
    pointer-events: none;
    backdrop-filter: blur(2px);
    transition:
        opacity .3s ease,
        visibility .3s ease;
}

.wolf-side-cart-overlay.is-open {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
}

body.wolf-side-cart-open {
    overflow: hidden;
}

#elementor-popup-modal-4817{
    z-index: 9989 !important;
}

/*
|--------------------------------------------------------------------------
| Cabeçalho
|--------------------------------------------------------------------------
*/

.wolf-side-cart__header {
    display: flex;
    min-height: 65px;
    flex: 0 0 auto;
    align-items: center;
    justify-content: space-between;
    padding: 0px 22px;
    background: #fff;
    border-bottom: 1px solid var(--wolf-cart-border);
}

.wolf-side-cart__header h2 {
    margin: 0 0 0px;
    color: var(--wolf-cart-dark);
    font-family: inherit;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.2;
}

.wolf-side-cart__header span {
    color: var(--wolf-cart-muted);
    font-size: 11px;
}

.wolf-side-cart__close {
    display: grid;
    width: 40px;
    height: 40px;
    padding: 0;
    place-items: center;
    color: var(--wolf-cart-dark);
    background: var(--wolf-cart-soft);
    border: 0;
    border-radius: 50%;
    cursor: pointer;
    transition:
        color .2s ease,
        background-color .2s ease,
        transform .2s ease;
}

.wolf-side-cart__close:hover {
    color: #fff;
    background: var(--wolf-cart-red);
    transform: rotate(5deg);
}

/*
|--------------------------------------------------------------------------
| Corpo
|--------------------------------------------------------------------------
*/

.wolf-side-cart__body {
    display: flex;
    min-height: 0;
    flex: 1;
    flex-direction: column;
}

.wolf-side-cart__items {
    display: grid;
    gap: 0;
    overflow-y: auto;
    padding: 4px 20px 18px;
    scrollbar-width: thin;
}

/*
|--------------------------------------------------------------------------
| Produto
|--------------------------------------------------------------------------
*/

.wolf-side-cart-item {
    display: grid;
    grid-template-columns: 105px minmax(0, 1fr);
    gap: 14px;
    padding: 8px 0;
    border-bottom: 1px solid var(--wolf-cart-border);
}

.wolf-side-cart-item__image {
    display: flex;
    overflow: hidden;
    width: 105px;
    height: 105px;
    align-items: center;
    justify-content: center;
    background: #f5f5f5;
    border-radius: 14px;
}

.wolf-side-cart-item__image img {
    display: block;
    width: 100%;
    height: 100%;
    max-width: none;
    margin: 0;
    object-fit: contain;
    transition: transform .3s ease;
}

.wolf-side-cart-item:hover
.wolf-side-cart-item__image img {
    transform: scale(1.05);
}

.wolf-side-cart-item__content {
    min-width: 0;
}

.wolf-side-cart-item__head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 8px;
}

.wolf-side-cart-item__title {
    display: -webkit-box;
    overflow: hidden;
    margin: 0;
    color: var(--wolf-cart-text);
    font-family: inherit;
    font-size: 14px !important;
    font-weight: 650;
    line-height: 1.4;
    text-transform: none;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.wolf-side-cart-item__title a {
    color: inherit;
    text-decoration: none;
}

.wolf-side-cart-item__title a:hover {
    color: var(--wolf-cart-red);
}

.wolf-side-cart-item__remove {
    display: grid;
    width: 28px;
    height: 28px;
    flex: 0 0 28px;
    padding: 0;
    place-items: center;
    color: #999;
    background: transparent;
    border: 0;
    border-radius: 50%;
    cursor: pointer;
}

.wolf-side-cart-item__remove:hover {
    color: var(--wolf-cart-red);
    background: #fff1f2;
}

.wolf-side-cart-item__remove svg {
    width: 17px;
    height: 17px;
}

/*
|--------------------------------------------------------------------------
| Preço do produto
|--------------------------------------------------------------------------
*/

.wolf-side-cart-item__pricing {
    margin-top: 9px;
}

.wolf-side-cart-item__old-price {
    display: block;
    margin-bottom: 2px;
    color: #999;
    font-size: 10px;
    line-height: 1.2;
    text-decoration: line-through;
}

.wolf-side-cart-item__old-price
.woocommerce-Price-amount {
    color: inherit;
    font-size: inherit;
}

.wolf-side-cart-item__pix-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 5px;
}

.wolf-side-cart-item__pix-price {
    color: #111;
    font-size: 17px;
    font-weight: 750;
    line-height: 1.15;
    white-space: nowrap;
}

.wolf-side-cart-item__pix-label {
    display: inline-flex;
    min-height: 20px;
    align-items: center;
    padding: 4px 6px;
    color: var(--wolf-cart-green);
    font-size: 9px;
    font-weight: 700;
    line-height: 1;
    white-space: nowrap;
    background: var(--wolf-cart-green-soft);
    border-radius: 5px;
}

.wolf-side-cart-item__card-price {
    display: block;
    margin-top: 3px;
    color: #888;
    font-size: 9px;
}

/*
|--------------------------------------------------------------------------
| Quantidade
|--------------------------------------------------------------------------
*/

.wolf-side-cart-item__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 9px;
    margin-top: 12px;
}

.wolf-side-cart-quantity {
    display: grid;
    grid-template-columns: 30px 35px 30px;
    overflow: hidden;
    height: 31px;
    border: 1px solid #dfdfdf;
    border-radius: 999px;
}

.wolf-side-cart-quantity button {
    display: grid;
    width: 30px;
    height: 30px;
    padding: 0;
    place-items: center;
    color: #555;
    background: #fff;
    border: 0;
    cursor: pointer;
}

.wolf-side-cart-quantity button:hover {
    color: var(--wolf-cart-red);
    background: #fff5f5;
}

.wolf-side-cart-quantity svg {
    width: 13px;
    height: 13px;
}

.wolf-side-cart-quantity input {
    width: 35px;
    height: 30px;
    padding: 0;
    color: #222;
    font-family: inherit;
    font-size: 11px;
    font-weight: 600;
    text-align: center;
    background: #fff;
    border: 0;
    border-right: 1px solid #eee;
    border-left: 1px solid #eee;
    border-radius: 0;
    appearance: textfield;
}

.wolf-side-cart-quantity input::-webkit-inner-spin-button,
.wolf-side-cart-quantity input::-webkit-outer-spin-button {
    margin: 0;
    appearance: none;
}

.wolf-side-cart-item__line-total {
    color: var(--wolf-cart-dark);
    font-size: 12px;
    font-weight: 700;
}

/*
|--------------------------------------------------------------------------
| Resumo
|--------------------------------------------------------------------------
*/

.wolf-side-cart__summary {
    flex: 0 0 auto;
    margin-top: auto;
    padding: 10px 20px 10px;
    background: #fff;
    border-top: 1px solid var(--wolf-cart-border);
    box-shadow: 0 -10px 30px rgba(0, 0, 0, .045);
}

.wolf-side-cart__cashback {
    display: flex;
    align-items: center;
    gap: 11px;
    margin-bottom: 5px;
    padding: 6px 13px;
    background:
        linear-gradient(
            135deg,
            #fff7f7,
            #fff
        );
    border: 1px solid #ffe1e4;
    border-radius: 13px;
}

.wolf-side-cart__cashback-icon {
    display: grid;
    width: 40px;
    height: 40px;
    flex: 0 0 40px;
    place-items: center;
    color: var(--wolf-cart-red);
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 5px 14px rgba(239, 35, 60, .12);
}

.wolf-side-cart__cashback span {
    display: flex;
    color: #888;
    font-size: 9px;
}

.wolf-side-cart__cashback strong {
    display: block;
    margin-top: 2px;
    color: #242424;
    font-size: 11px;
    font-weight: 650;
    line-height: 1.35;
}

.wolf-side-cart__totals {
    display: grid;
    gap: 5px;
}

.wolf-side-cart__subtotal,
.wolf-side-cart__discount {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    color: #666;
    font-size: 11px;
}

.wolf-side-cart__subtotal strong {
    color: #333;
}

.wolf-side-cart__discount {
    color: var(--wolf-cart-green);
}

.wolf-side-cart__total {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 15px;
    margin-top: 3px;
    padding-top: 11px;
    border-top: 1px solid #ededed;
}

.wolf-side-cart__preco-total,
.wolf-side-cart__preco-total strong{
    font-size: 18px !important;
}

.wolf-side-cart__total > div:first-child > span {
    color: #202020;
    font-size: 13px;
    font-weight: 700;
}

.wolf-side-cart__total small {
    display: block;
    margin-top: 2px;
    color: var(--wolf-cart-green);
    font-size: 11px;
    font-weight: 600;
}

.wolf-side-cart__total > strong {
    color: #111;
    font-size: 23px;
    font-weight: 800;
    line-height: 1;
    white-space: nowrap;
}

.wolf-side-cart__installments {
    margin: 1px 0 0;
    color: #777;
    font-size: 9px;
    line-height: 1.5;
}

.wolf-side-cart__installments strong {
    color: #444;
    font-weight: 650;
}

.wolf-side-cart__shipping-note {
    color: #999;
    font-size: 8px;
}

/*
|--------------------------------------------------------------------------
| Botões
|--------------------------------------------------------------------------
*/

.wolf-side-cart__checkout-button {
    display: flex;
    width: 100%;
    min-height: 45px;
    align-items: center;
    justify-content: center;
    margin-top: 15px;
    padding: 11px 20px;
    color: #fff !important;
    font-size: 12px;
    font-weight: 650;
    text-align: center;
    text-decoration: none !important;
    background: var(--wolf-cart-red);
    border: 1px solid var(--wolf-cart-red);
    border-radius: 999px;
    box-shadow: 0 9px 22px rgba(239, 35, 60, .2);
    transition:
        background-color .2s ease,
        transform .2s ease,
        box-shadow .2s ease;
}

.wolf-side-cart__checkout-button:hover {
    color: #fff !important;
    background: #d90429;
    transform: translateY(-1px);
    box-shadow: 0 12px 27px rgba(239, 35, 60, .26);
}

.wolf-side-cart__continue {
    display: flex;
    width: 100%;
    min-height: 36px;
    align-items: center;
    justify-content: center;
    margin-top: 5px;
    padding: 7px 15px;
    color: #696969; /* Cinza original */
    font-family: inherit;
    font-weight: 500;
    background: transparent;
    border: 0;
    cursor: pointer;
}

/* Mude para uma cor que se destaque no seu fundo */
.wolf-side-cart__continue:hover {
    color: #ffffff; /* Exemplo: Branco */
    background-color: #c7c7c7;
    border-radius: 30px;
}
/*
|--------------------------------------------------------------------------
| Jornada
|--------------------------------------------------------------------------
*/

.wolf-side-cart__journey {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    margin-top: 7px;
    padding-top: 11px;
    border-top: 1px solid #f0f0f0;
}

.wolf-side-cart__journey p {
    margin: 0;
    color: #898989;
    font-size: 8px;
    line-height: 1.55;
}

.wolf-side-cart__journey a {
    color: var(--wolf-cart-red);
    font-weight: 600;
    text-decoration: none;
}

/*
|--------------------------------------------------------------------------
| Vazio
|--------------------------------------------------------------------------
*/

.wolf-side-cart-empty {
    display: flex;
    flex: 1;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 40px 28px;
    text-align: center;
}

.wolf-side-cart-empty__icon {
    display: grid;
    width: 78px;
    height: 78px;
    margin-bottom: 18px;
    place-items: center;
    color: var(--wolf-cart-red);
    background: #fff3f4;
    border-radius: 50%;
}

.wolf-side-cart-empty__icon svg {
    width: 34px;
    height: 34px;
}

.wolf-side-cart-empty h3 {
    margin: 0 0 8px;
    color: #242424;
    font-family: inherit;
    font-size: 19px;
}

.wolf-side-cart-empty p {
    max-width: 270px;
    margin: 0;
    color: #777;
    font-size: 11px;
    line-height: 1.6;
}

.wolf-side-cart-empty__button {
    min-height: 40px;
    margin-top: 20px;
    padding: 9px 22px;
    color: var(--wolf-cart-red);
    font-family: inherit;
    font-size: 11px;
    font-weight: 600;
    background: #fff;
    border: 1px solid var(--wolf-cart-red);
    border-radius: 999px;
    cursor: pointer;
}

/*
|--------------------------------------------------------------------------
| Carregamento
|--------------------------------------------------------------------------
*/

.wolf-side-cart.is-loading::after {
    position: absolute;
    z-index: 20;
    inset: 0;
    content: "";
    background: rgba(255, 255, 255, .66);
    cursor: progress;
}

.wolf-side-cart.is-loading::before {
    position: absolute;
    z-index: 21;
    top: 50%;
    left: 50%;
    width: 34px;
    height: 34px;
    content: "";
    border: 3px solid #eee;
    border-top-color: var(--wolf-cart-red);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: wolf-side-cart-spin .75s linear infinite;
}

@keyframes wolf-side-cart-spin {
    to {
        transform:
            translate(-50%, -50%)
            rotate(360deg);
    }
}

/*
|--------------------------------------------------------------------------
| Mobile
|--------------------------------------------------------------------------
*/

@media (max-width: 640px) {
    .wolf-side-cart {
        width: min(96vw, 410px);
    }

    .wolf-side-cart__header {
        min-height: 68px;
        padding: 0px 17px;
    }

    .wolf-side-cart__items {
        padding-right: 15px;
        padding-left: 15px;
    }

    .wolf-side-cart-item {
        grid-template-columns: 91px minmax(0, 1fr);
        gap: 11px;
        padding: 8px 0;
    }

    .wolf-side-cart-item__image {
        width: 91px;
        height: 91px;
    }

    .wolf-side-cart-item__pix-price {
        font-size: 15px;
    }

    .wolf-side-cart__summary {
        padding: 13px 16px 5px;
    }

    .wolf-side-cart__total > strong {
        font-size: 21px;
    }
}

@media (max-height: 720px) {
    .wolf-side-cart__cashback {
        margin-bottom: 9px;
        padding: 9px 11px;
    }

    .wolf-side-cart__summary {
        padding-top: 11px;
    }

    .wolf-side-cart__checkout-button {
        min-height: 41px;
        margin-top: 10px;
    }

    .wolf-side-cart__journey {
        margin-top: 3px;
        padding-top: 7px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .wolf-side-cart,
    .wolf-side-cart-overlay,
    .wolf-side-cart-item__image img,
    .wolf-side-cart__checkout-button {
        transition: none;
    }
}

/*
|--------------------------------------------------------------------------
| Correções de desempenho e acabamento
|--------------------------------------------------------------------------
*/

.wolf-side-cart {
    /*
     * translate3d cria uma camada própria mais estável.
     */
    transform: translate3d(105%, 0, 0);
    transition: transform .28s cubic-bezier(.22, .61, .36, 1);

    /*
     * Evita que o repaint do drawer afete o restante da página.
     */
    contain: layout paint;
    backface-visibility: hidden;
}

.wolf-side-cart.is-open {
    transform: translate3d(0, 0, 0);
}

/*
 * Blur em tela inteira é uma das maiores causas
 * de queda de FPS durante a animação.
 */
.wolf-side-cart-overlay {
    background: rgba(12, 12, 12, .48);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    transition:
        opacity .22s ease,
        visibility .22s ease;
}

/*
 * Evita promover todas as imagens para camadas próprias.
 */
.wolf-side-cart-item__image img {
    will-change: auto;
}

/*
|--------------------------------------------------------------------------
| Dimensões corretas das imagens
|--------------------------------------------------------------------------
*/

.wolf-side-cart-item__image {
    position: relative;
    background: #f7f7f7;
    border: 1px solid #f0f0f0;
}

.wolf-side-cart-item__image img,
.wolf-side-cart-item__image
.attachment-woocommerce_thumbnail,
.wolf-side-cart-item__image
.woocommerce-placeholder {
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    max-width: 100% !important;
    max-height: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    object-fit: contain !important;
    object-position: center !important;
    border-radius: 9px;
}

/*
|--------------------------------------------------------------------------
| Organização do produto
|--------------------------------------------------------------------------
*/

.wolf-side-cart-item {
    grid-template-columns: 108px minmax(0, 1fr);
    align-items: start;
    gap: 15px;
}

.wolf-side-cart-item__content {
    display: flex;
    min-width: 0;
    flex-direction: column;
}

.wolf-side-cart-item__head {
    min-width: 0;
}

/*
|--------------------------------------------------------------------------
| Preços sem quebras inadequadas
|--------------------------------------------------------------------------
*/

.wolf-side-cart-item__pricing {
    margin-top: 9px;
}

.wolf-side-cart-item__old-price {
    min-height: 15px;
    margin-bottom: 3px;
    font-size: 11px;
}

.wolf-side-cart-item__pix-row {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    gap: 6px;
}

.wolf-side-cart-item__pix-price {
    flex: 0 0 auto;
    font-size: 17px;
}

.wolf-side-cart-item__card-price {
    margin-top: 4px;
    font-size: 11px;
    line-height: 1.4;
}

.wolf-side-cart-item__bottom {
    margin-top: 12px;
}

.wolf-side-cart-item__line-total {
    flex: 0 0 auto;
    font-size: 12px;
    white-space: nowrap;
}

/*
|--------------------------------------------------------------------------
| Fontes mínimas de 11px
|--------------------------------------------------------------------------
*/

.wolf-side-cart__header span,
.wolf-side-cart-item__variation,
.wolf-side-cart-item__old-price,
.wolf-side-cart-item__card-price,
.wolf-side-cart__cashback span,
.wolf-side-cart__cashback strong,
.wolf-side-cart__subtotal,
.wolf-side-cart__discount,
.wolf-side-cart__installments,
.wolf-side-cart__shipping-note,
.wolf-side-cart__continue,
.wolf-side-cart__journey p {
    font-size: 11px;
}

.wolf-side-cart__journey p {
    line-height: 1.55;
}

/*
|--------------------------------------------------------------------------
| Cashback
|--------------------------------------------------------------------------
*/

.wolf-side-cart__cashback {
    align-items: center;
}

.wolf-side-cart__cashback-icon {
    overflow: hidden;
}

.wolf-side-cart__cashback-icon svg {
    width: 50px;
    height: 33px;
}

.wolf-side-cart__cashback > div {
    min-width: 0;
}

.wolf-side-cart__cashback strong {
    margin-top: 3px;
    line-height: 1.4;
}

/*
|--------------------------------------------------------------------------
| Totais sem quebra de valor
|--------------------------------------------------------------------------
*/

.wolf-side-cart__subtotal strong,
.wolf-side-cart__discount strong,
.wolf-side-cart__total > strong {
    white-space: nowrap;
}

.wolf-side-cart__total {
    align-items: center;
}

.wolf-side-cart__total > div {
    min-width: 0;
}

.wolf-side-cart__total > strong {
    flex: 0 0 auto;
    font-size: 22px;
}

/*
|--------------------------------------------------------------------------
| Loading mais leve
|--------------------------------------------------------------------------
*/

.wolf-side-cart.is-loading {
    pointer-events: none;
}

.wolf-side-cart.is-loading::after {
    background: rgba(255, 255, 255, .42);
}

.wolf-side-cart.is-loading::before {
    width: 30px;
    height: 30px;
    border-width: 3px;
}

/*
|--------------------------------------------------------------------------
| Loading do botão da página de produto
|--------------------------------------------------------------------------
*/

.single_add_to_cart_button {
    position: relative;
}

.single_add_to_cart_button.wolf-add-to-cart-loading {
    cursor: wait !important;
    opacity: .72;
    pointer-events: none;
}

.single_add_to_cart_button.wolf-add-to-cart-loading::after {
    display: inline-block;
    width: 15px;
    height: 15px;
    margin-left: 9px;
    content: "";
    vertical-align: -3px;
    border: 2px solid rgba(255, 255, 255, .45);
    border-top-color: #fff;
    border-radius: 50%;
    animation: wolf-side-cart-button-spin .65s linear infinite;
}

@keyframes wolf-side-cart-button-spin {
    to {
        transform: rotate(360deg);
    }
}

/*
|--------------------------------------------------------------------------
| Mobile
|--------------------------------------------------------------------------
*/

@media (max-width: 640px) {
    .wolf-side-cart {
        width: 89%;
        max-width: 430px;
    }
    
    .wolf-side-cart-item {
        grid-template-columns: 94px minmax(0, 1fr);
        gap: 12px;
    }

    .wolf-side-cart-item__image {
        width: 94px;
        height: 94px;
    }

    .wolf-side-cart-item__pix-row {
        flex-wrap: wrap;
    }

    .wolf-side-cart-item__pix-price {
        font-size: 16px;
    }

    .wolf-side-cart__total > strong {
        font-size: 20px;
    }
}

.wolf-side-cart__journey-icon svg {
    display: block;
    width: 26px;
    height: 26px;
    max-width: none;
    margin: 0;
    color: #ff0000a3;
    object-fit: contain;
    stroke-width: 1;
}

/*
|--------------------------------------------------------------------------
| Variações reais do WooCommerce
|--------------------------------------------------------------------------
*/

.wolf-side-cart-item__variation {
    display: block;
    width: 100%;
    min-width: 0;
    margin: 0px;
    font-family: inherit;
    font-size: 11px;
    line-height: 1.4;
}

.wolf-side-cart-item__variation dl {
    display: grid;
    width: 100%;
    gap: 5px;
    margin: 0;
    padding: 0;
}

.wolf-side-cart-item__variation-row {
    display: grid;
    grid-template-columns: max-content minmax(0, 1fr);
    align-items: start;
    gap: 5px;
    min-width: 0;
}

.wolf-side-cart-item__variation dt,
.wolf-side-cart-item__variation dd {
    min-width: 0;
    margin: 0;
    padding: 0;
    font-size: 11px;
    line-height: 1.4;
}

.wolf-side-cart-item__variation dt {
    color: #898989;
    font-weight: 500;
    white-space: nowrap;
}

.wolf-side-cart-item__variation dd {
    overflow: hidden;
    color: #303030;
    font-weight: 650;
    overflow-wrap: anywhere;
    word-break: normal;
}

/*
|--------------------------------------------------------------------------
| Valores monetários sem quebra
|--------------------------------------------------------------------------
*/

.wolf-side-cart
.woocommerce-Price-amount,
.wolf-side-cart
.woocommerce-Price-currencySymbol {
    white-space: nowrap;
}

.wolf-side-cart__total > strong {
    display: inline-flex;
    align-items: baseline;
    justify-content: flex-end;
    gap: 4px;
    min-width: max-content;
    white-space: nowrap;
}

.wolf-side-cart__subtotal strong,
.wolf-side-cart__discount strong,
.wolf-side-cart-item__line-total {
    display: inline-flex;
    align-items: baseline;
    white-space: nowrap;
}

@media (max-width: 640px) {
    .wolf-side-cart__items {
        padding-right: 14px;
        padding-left: 14px;
    }

    .wolf-side-cart-item {
        grid-template-columns: 82px minmax(0, 1fr);
        gap: 10px;
    }

    .wolf-side-cart-item__image {
        width: 82px;
        height: 85px;
    }

    .wolf-side-cart-item__pix-row {
        grid-template-columns: max-content minmax(0, max-content);
        gap: 4px;
    }

    .wolf-side-cart-item__pix-price {
        font-size: 15px;
    }

    .wolf-side-cart-item__pix-label {
        padding: 4px 5px;
        font-size: 8px;
    }

    .wolf-side-cart__total {
        display: grid;
        grid-template-columns: minmax(0, 1fr) max-content;
        align-items: center;
        gap: 10px;
    }

    .wolf-side-cart__total > strong {
        font-size: 19px;
    }
}

.wolf-side-cart-item__footer {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    margin-top: 5px;
}

.wolf-side-cart-item__pricing {
    min-width: 0;
    flex: 1;
    margin-top: 0;
}

.wolf-side-cart-item__bottom {
    flex: 0 0 auto;
    margin-top: 0;
}

.wolf-side-cart-quantity {
    flex-shrink: 0;
}

.single_add_to_cart_button.wolf-add-to-cart-loading,
.single_add_to_cart_button.wolf-add-to-cart-loading:hover,
.single_add_to_cart_button.wolf-add-to-cart-loading:focus,
.single_add_to_cart_button.wolf-add-to-cart-loading:active {
    background: #9c0808 !important;
    color: #fff !important;
}