/*
|--------------------------------------------------------------------------
| Wolf Shop
|--------------------------------------------------------------------------
*/

.wolf-shop {
    --wolf-shop-red: #ef233c;
    --wolf-shop-red-dark: #d90429;
    --wolf-shop-dark: #181818;
    --wolf-shop-text: #272727;
    --wolf-shop-muted: #858585;
    --wolf-shop-border: #ececec;
    --wolf-shop-soft: #f7f7f7;
    --wolf-shop-green: #347a52;
    --wolf-shop-green-soft: #e0ffee;

    width: 100%;
    color: var(--wolf-shop-text);
    font-family: "Montserrat", sans-serif;
}

.wolf-shop,
.wolf-shop * {
    box-sizing: border-box;
}

.wolf-shop__container {
    width: min(1320px, calc(100% - 36px));
    margin: 0 auto;
    padding: 24px 0 60px;
}

/*
|--------------------------------------------------------------------------
| Breadcrumb
|--------------------------------------------------------------------------
*/

.wolf-shop__breadcrumb {
    margin: 0 0 18px;
}

.wolf-shop__breadcrumb .woocommerce-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 7px;
    margin: 0;
    color: #989898;
    font-size: 13px;
    line-height: 1.5;
}

.wolf-shop__breadcrumb a {
    color: #777;
    text-decoration: none;
    transition: color .2s ease;
}

.wolf-shop__breadcrumb a:hover {
    color: var(--wolf-shop-red);
}

.wolf-shop__breadcrumb .delimiter {
    color: #c4c4c4;
}

.wolf-shop__breadcrumb strong,
.wolf-shop__breadcrumb span:last-child {
    color: var(--wolf-shop-red);
    font-weight: 650;
}

/*
|--------------------------------------------------------------------------
| Cabeçalho do arquivo
|--------------------------------------------------------------------------
*/

.wolf-shop__hero {
    display: block;
    max-width: 980px;
    align-items: center;
    gap: 20px;
    margin-bottom: 28px;
}

.wolf-shop__archive-image {
    display: grid;
    width: 108px;
    height: 108px;
    flex: 0 0 108px;
    overflow: hidden;
    place-items: center;
    background: #f7f7f7;
    border: 1px solid #ededed;
    border-radius: 18px;
}

.wolf-shop__archive-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.wolf-shop__hero-content {
    min-width: 0;
}

.wolf-shop__hero h2 {
    margin: 0 0 9px;
    color: #202020;
    font-family: inherit;
    font-size: clamp(27px, 3vw, 42px);
    font-weight: 750;
    line-height: 1.08;
    text-transform: none;
}

/*
|--------------------------------------------------------------------------
| Barra superior
|--------------------------------------------------------------------------
*/

.wolf-shop__toolbar {
    position: sticky;
    z-index: 20;
    top: var(--wolf-fixed-header-current-height, 108px);
    display: flex;
    min-height: 62px;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 10px 0;
    background: #fff;
    border-top: 1px solid var(--wolf-shop-border);
    border-bottom: 1px solid var(--wolf-shop-border);
}

.wolf-shop__result-count {
    color: #888;
    font-size: 12px;
}

.wolf-shop__toolbar-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.wolf-shop__toolbar-actions button {
    display: inline-flex;
    min-height: 40px;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 8px 15px;
    color: #333;
    font-family: inherit;
    font-size: 12px;
    font-weight: 600;
    background: #f8f8f8;
    border: 1px solid #e2e2e2;
    border-radius: 999px;
    cursor: pointer;
    transition:
        color .2s ease,
        border-color .2s ease,
        background-color .2s ease,
        transform .2s ease;
}

.wolf-shop__toolbar-actions button:hover {
    color: var(--wolf-shop-red);
    background: #fff7f7;
    border-color: var(--wolf-shop-red);
    transform: translateY(-1px);
}

.wolf-shop__toolbar-actions svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.wolf-shop__toolbar-actions b {
    display: inline-grid;
    min-width: 19px;
    height: 19px;
    place-items: center;
    padding: 0 5px;
    color: #fff;
    font-size: 10px;
    background: var(--wolf-shop-red);
    border-radius: 999px;
}

/*
|--------------------------------------------------------------------------
| Filtros ativos
|--------------------------------------------------------------------------
*/

.wolf-shop__active-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 14px 0 3px;
}

.wolf-shop__active-filters button {
    display: inline-flex;
    min-height: 32px;
    align-items: center;
    gap: 8px;
    padding: 6px 11px;
    color: var(--wolf-shop-red);
    font-family: inherit;
    font-size: 11px;
    font-weight: 600;
    background: #fff;
    border: 1px solid var(--wolf-shop-red);
    border-radius: 999px;
    cursor: pointer;
    transition:
        color .2s ease,
        background-color .2s ease;
}

.wolf-shop__active-filters button:hover {
    color: #fff;
    background: var(--wolf-shop-red);
}

.wolf-shop__active-filters b {
    font-size: 15px;
    line-height: 1;
}

/*
|--------------------------------------------------------------------------
| Layout
|--------------------------------------------------------------------------
*/

.wolf-shop__layout {
    display: grid;
    grid-template-columns: 245px minmax(0, 1fr);
    gap: 31px;
    padding-top: 26px;
}

.wolf-shop__desktop-filters {
    align-self: start;
    overflow: hidden;
    padding: 16px 20px 5px;
    background: #fff;
    border: 1px solid var(--wolf-shop-border);
    border-radius: 16px;
}

.wolf-shop__desktop-filters h2 {
    margin: 0;
    padding: 2px 0 14px;
    color: #222;
    font-size: 17px;
}

/*
|--------------------------------------------------------------------------
| Grupos de filtro
|--------------------------------------------------------------------------
*/

.wolf-shop-filter {
    overflow: hidden;
    border-top: 1px solid var(--wolf-shop-border);
}

.wolf-shop-filter:first-of-type {
    border-top: 0;
}

.wolf-shop-filter summary {
    display: flex;
    min-height: 51px;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    color: #292929;
    font-size: 12px;
    font-weight: 700;
    list-style: none;
    cursor: pointer;
    user-select: none;
}

.wolf-shop-filter summary::-webkit-details-marker {
    display: none;
}

.wolf-shop-filter summary i {
    position: relative;
    width: 16px;
    height: 16px;
    flex: 0 0 16px;
    border: 1px solid var(--wolf-shop-red);
    border-radius: 50%;
    transition: transform .22s ease;
}

.wolf-shop-filter summary i::before,
.wolf-shop-filter summary i::after {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 7px;
    height: 1px;
    content: "";
    background: var(--wolf-shop-red);
    transform: translate(-50%, -50%);
    transition: opacity .2s ease;
}

.wolf-shop-filter summary i::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

.wolf-shop-filter[open] summary i {
    transform: rotate(180deg);
}

.wolf-shop-filter[open] summary i::after {
    opacity: 0;
}

.wolf-shop-filter__animation {
    overflow: hidden;
}

.wolf-shop-filter__options {
    display: grid;
    gap: 10px;
    padding: 0 0 17px;
}

.wolf-shop-filter__options label {
    display: grid;
    grid-template-columns: 17px minmax(0, 1fr);
    min-height: 22px;
    align-items: center;
    gap: 9px;
    color: #474747;
    cursor: pointer;
}

.wolf-shop-filter__options input {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
}

.wolf-shop-filter__options label > span {
    position: relative;
    display: block;
    width: 16px;
    height: 16px;
    background: #fff;
    border: 1px solid #d9dde3;
    border-radius: 4px;
    transition:
        background-color .18s ease,
        border-color .18s ease;
}

.wolf-shop-filter__options input:checked + span {
    background: var(--wolf-shop-red);
    border-color: var(--wolf-shop-red);
}

.wolf-shop-filter__options input:checked + span::after {
    position: absolute;
    top: 2px;
    left: 5px;
    width: 4px;
    height: 8px;
    content: "";
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.wolf-shop-filter__options input[type="radio"] + span {
    border-radius: 50%;
}

.wolf-shop-filter__options input[type="radio"]:checked + span::after {
    top: 3px;
    left: 3px;
    width: 8px;
    height: 8px;
    background: #fff;
    border: 0;
    border-radius: 50%;
    transform: none;
}

.wolf-shop-filter__options em {
    min-width: 0;
    font-style: normal;
    font-size: 11px;
    line-height: 1.4;
}

/*
|--------------------------------------------------------------------------
| Grade de produtos
|--------------------------------------------------------------------------
*/

.wolf-shop__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 38px 20px;
}

.wolf-shop-card {
    display: flex;
    min-width: 0;
    flex-direction: column;
}

.wolf-shop-card__media {
    position: relative;
    display: grid;
    overflow: hidden;
    width: 100%;
    aspect-ratio: 1 / 1;
    place-items: center;
    margin-bottom: 15px;
    background: #f5f5f5;
    border-radius: 13px;
}

.wolf-shop-card__image {
    width: 100%;
    height: 100%;
    place-items: center;
}

.wolf-shop-card__image img {
    display: block;
    width: 100%;
    height: 100%;
    max-width: none;
    margin: 0;
    object-fit: contain;
    transition: transform .3s ease;
}

.wolf-shop-card:hover .wolf-shop-card__image img {
    transform: scale(1.045);
}

.wolf-shop-card__offer {
    position: absolute;
    z-index: 2;
    top: 10px;
    left: 10px;
    display: inline-flex;
    min-height: 29px;
    align-items: center;
    padding-left: 0px;
    padding-right: 5px;
    color: #fff;
    font-size: 10px;
    font-weight: 650;
    line-height: 1;
    background: #e5161b;
    border-radius: 5px;
    box-shadow: 0 5px 14px rgba(229, 22, 27, .18);
}

.wolf-shop-card__offer svg,
.wolf-shop-card__wishlist svg {
    width: 17px;
    height: 17px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.wolf-shop-card__wishlist {
    position: absolute;
    z-index: 3;
    top: 10px;
    right: 10px;
    display: grid;
    width: 34px;
    height: 34px;
    padding: 0;
    place-items: center;
    color: var(--wolf-shop-red);
    background: rgba(255, 255, 255, .96);
    border: 1px solid #ececec;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, .08);
    cursor: pointer;
    transition:
        color .2s ease,
        background-color .2s ease,
        transform .2s ease;
}

.wolf-shop-card__wishlist:hover {
    color: #fff;
    background: var(--wolf-shop-red);
    transform: scale(1.06);
}

.wolf-shop-card__content {
    display: flex;
    flex: 1;
    min-width: 0;
    flex-direction: column;
    padding: 0 3px;
}

.wolf-shop-card__title {
    overflow: hidden;
    min-height: 21px;
    margin: 0 0 0px;
    color: #242424;
    font-size: 14px !important;
    font-weight: 700;
    line-height: 1.45;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.wolf-shop-card__title a {
    color: inherit;
    text-decoration: none;
}

.wolf-shop-card__title a:hover {
    color: var(--wolf-shop-red);
}

.wolf-shop-card__tags {
    display: flex;
    overflow: hidden;
    align-items: center;
    gap: 6px;
    min-height: 18px;
    margin-bottom: 5px;
    color: #8a8a8a;
    font-size: 11px;
    white-space: nowrap;
}

.wolf-shop-card__tags span,
.wolf-shop-card__tags strong {
    overflow: hidden;
    text-overflow: ellipsis;
}

.wolf-shop-card__tags strong {
    color: var(--wolf-shop-red);
    font-weight: 500;
}

.wolf-shop-card__tags i {
    color: #bcbcbc;
    font-style: normal;
}

.wolf-shop-card__pricing {
    margin-top: auto;
    margin-bottom: 7px;
}

.wolf-shop-card__old-price {
    min-height: 15px;
    margin-bottom: 1px;
    color: #999;
    font-size: 11px;
    line-height: 1.3;
    text-decoration: line-through;
}

.wolf-shop-card__old-price .woocommerce-Price-amount {
    color: inherit;
    font-size: inherit;
}

.wolf-shop-card__pix-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 5px 7px;
    margin-bottom: 3px;
}

.wolf-shop-card__pix-price {
    color: #111;
    font-size: 20px;
    font-weight: 800;
    line-height: 1.1;
    white-space: nowrap;
}

.wolf-shop-card__pix-label {
    display: inline-flex;
    min-height: 21px;
    align-items: center;
    padding: 4px 6px;
    color: var(--wolf-shop-green);
    font-size: 8px;
    font-weight: 750;
    line-height: 1;
    white-space: nowrap;
    background: var(--wolf-shop-green-soft);
    border-radius: 4px;
}

.wolf-shop-card__installments {
    min-height: 17px;
    color: #8a8a8a;
    font-size: 11px;
    line-height: 1.45;
}

.wolf-shop-card__installments strong {
    color: inherit;
    font-weight: 500;
}

.wolf-shop-card__button {
    display: flex !important;
    width: 100% !important;
    min-height: 38px !important;
    align-items: center;
    justify-content: center;
    margin: 0 !important;
    padding: 9px 13px !important;
    color: #fff !important;
    font-family: inherit !important;
    font-size: 11.5px !important;
    font-weight: 600 !important;
    line-height: 1 !important;
    text-align: center;
    text-decoration: none !important;
    background: #050505 !important;
    border: 1px solid #050505 !important;
    border-radius: 999px !important;
    box-shadow: none !important;
    transition:
        background-color .2s ease,
        border-color .2s ease,
        transform .2s ease !important;
}

.wolf-shop-card__button:hover {
    background: var(--wolf-shop-red) !important;
    border-color: var(--wolf-shop-red) !important;
    transform: translateY(-1px);
}

/*
|--------------------------------------------------------------------------
| Carregar mais
|--------------------------------------------------------------------------
*/

.wolf-shop__load-more {
    display: flex;
    width: 100%;
    min-height: 46px;
    align-items: center;
    justify-content: center;
    margin-top: 34px;
    padding: 10px 20px;
    color: var(--wolf-shop-red);
    font-family: inherit;
    font-size: 12px;
    font-weight: 650;
    background: #fff;
    border: 1px solid var(--wolf-shop-red);
    border-radius: 999px;
    cursor: pointer;
    transition:
        color .2s ease,
        background-color .2s ease;
}

.wolf-shop__load-more:hover {
    color: #fff;
    background: var(--wolf-shop-red);
}

.wolf-shop__empty {
    padding: 70px 20px;
    color: #777;
    text-align: center;
}

.wolf-shop.is-loading .wolf-shop__results {
    opacity: .52;
    pointer-events: none;
}

/*
|--------------------------------------------------------------------------
| Overlay e bottom sheets
|--------------------------------------------------------------------------
*/

.wolf-shop-sheet-overlay {
    position: fixed;
    z-index: 10020;
    inset: 0;
    visibility: hidden;
    background: rgba(12, 12, 12, .52);
    opacity: 0;
    pointer-events: none;
    transition:
        opacity .24s ease,
        visibility .24s ease;
}

.wolf-shop-sheet-overlay.is-open {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
}

.wolf-shop-sheet {
    position: fixed;
    z-index: 10021;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    max-height: min(88vh, 760px);
    flex-direction: column;
    color: var(--wolf-shop-text);
    font-family: "Montserrat", sans-serif;
    background: #fff;
    border-radius: 22px 22px 0 0;
    box-shadow: 0 -16px 40px rgba(0, 0, 0, .18);
    transform: translate3d(0, 105%, 0);
    transition:
        transform .3s cubic-bezier(.22, .61, .36, 1);
}

.wolf-shop-sheet.is-open {
    transform: translate3d(0, 0, 0);
}

.wolf-shop-sheet__handle {
    width: 38px;
    height: 4px;
    margin: 9px auto 1px;
    background: #d7dbe2;
    border-radius: 999px;
}

.wolf-shop-sheet header {
    display: flex;
    min-height: 56px;
    flex: 0 0 auto;
    align-items: center;
    justify-content: space-between;
    padding: 8px 16px;
    border-bottom: 1px solid var(--wolf-shop-border);
}

.wolf-shop-sheet header h2 {
    margin: 0;
    color: #222;
    font-size: 16px;
}

.wolf-shop-sheet header button {
    display: grid;
    width: 30px;
    height: 30px;
    padding: 0;
    place-items: center;
    color: #333;
    font-size: 18px;
    background: #f5f5f5;
    border: 0;
    border-radius: 50%;
    cursor: pointer;
}

.wolf-shop-sheet__scroll {
    min-height: 0;
    overflow-y: auto;
    padding: 0 16px 100px;
    overscroll-behavior: contain;
}

.wolf-shop-sheet__scroll .wolf-shop-filter {
    border-top: 0;
    border-bottom: 1px solid var(--wolf-shop-border);
}

.wolf-shop-sheet footer {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 9px;
    padding: 12px 15px;
    background: #fff;
    border-top: 1px solid var(--wolf-shop-border);
    box-shadow: 0 -8px 24px rgba(0, 0, 0, .04);
}

.wolf-shop-sheet footer button {
    min-height: 45px;
    font-family: inherit;
    font-size: 11px;
    font-weight: 650;
    border-radius: 999px;
    cursor: pointer;
}

.wolf-shop-sheet__clear {
    color: var(--wolf-shop-red);
    background: #fff;
    border: 1px solid var(--wolf-shop-red);
}

.wolf-shop-sheet__apply {
    color: #fff;
    background: #1d1d1d;
    border: 1px solid #1d1d1d;
}

/*
|--------------------------------------------------------------------------
| Ordenação
|--------------------------------------------------------------------------
*/

.wolf-shop-sheet__sort-list {
    display: grid;
    overflow-y: auto;
}

.wolf-shop-sort-option {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 20px;
    min-height: 59px;
    align-items: center;
    gap: 12px;
    padding: 12px 17px;
    border-bottom: 1px solid var(--wolf-shop-border);
    cursor: pointer;
}

.wolf-shop-sort-option input {
    position: absolute;
    opacity: 0;
}

.wolf-shop-sort-option span {
    color: #333;
    font-size: 12px;
}

.wolf-shop-sort-option i {
    position: relative;
    display: block;
    width: 15px;
    height: 15px;
    border: 1px solid #d5d5d5;
    border-radius: 50%;
}

.wolf-shop-sort-option input:checked ~ i {
    background: var(--wolf-shop-red);
    border-color: var(--wolf-shop-red);
}

.wolf-shop-sort-option input:checked ~ i::after {
    position: absolute;
    top: 3px;
    left: 5px;
    width: 3px;
    height: 6px;
    content: "";
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

body.wolf-shop-sheet-open {
    overflow: hidden;
}

/*
|--------------------------------------------------------------------------
| Desktop
|--------------------------------------------------------------------------
*/

@media (min-width: 981px) {
    .wolf-shop__filter-button,
    .wolf-shop-sheet--filters {
        display: none !important;
    }

    .wolf-shop-sheet--sort {
        right: max(24px, calc((100vw - 1320px) / 2));
        bottom: auto;
        left: auto;
        top: calc(
            var(--wolf-fixed-header-current-height, 108px) +
            70px
        );
        width: 310px;
        max-height: 390px;
        overflow: hidden;
        border: 1px solid var(--wolf-shop-border);
        border-radius: 16px;
        visibility: hidden;
        opacity: 0;
        transform: translate3d(15px, -5px, 0);
        transition:
            opacity .2s ease,
            visibility .2s ease,
            transform .2s ease;
    }

    .wolf-shop-sheet--sort.is-open {
        visibility: visible;
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }

    .wolf-shop-sheet--sort
    .wolf-shop-sheet__handle {
        display: none;
    }
}

/*
|--------------------------------------------------------------------------
| Tablet
|--------------------------------------------------------------------------
*/

@media (max-width: 1180px) {
    .wolf-shop__grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

/*
|--------------------------------------------------------------------------
| Mobile
|--------------------------------------------------------------------------
*/

@media (max-width: 980px) {
    .wolf-shop__container {
        width: 100%;
        padding-top: 14px;
    }

    .wolf-shop__breadcrumb,
    .wolf-shop__hero,
    .wolf-shop__toolbar,
    .wolf-shop__active-filters,
    .wolf-shop__results {
        margin-right: 8px;
        margin-left: 8px;
    }

    .wolf-shop__breadcrumb {
        margin-bottom: 13px;
    }

    .wolf-shop__breadcrumb
    .woocommerce-breadcrumb {
        gap: 6px;
        font-size: 10px;
    }

    .wolf-shop__hero {
        align-items: flex-start;
        gap: 13px;
        margin-bottom: 20px;
    }

    .wolf-shop__archive-image {
        width: 72px;
        height: 72px;
        flex-basis: 72px;
        border-radius: 12px;
    }

    .wolf-shop__hero h1 {
        font-size: 24px;
        line-height: 1.08;
    }

    .wolf-shop__toolbar {
        min-height: 67px;
        padding: 10px 0;
    }

    .wolf-shop__toolbar-actions {
        gap: 8px;
    }

    .wolf-shop__toolbar-actions button {
        min-height: 38px;
        padding: 7px 13px;
        font-size: 11px;
    }

    .wolf-shop__toolbar-actions svg {
        width: 17px;
        height: 17px;
    }

    .wolf-shop__active-filters {
        padding-top: 12px;
    }

    .wolf-shop__layout {
        display: block;
        padding-top: 13px;
    }

    .wolf-shop__desktop-filters {
        display: none;
    }

    .wolf-shop__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px 8px;
    }

    .wolf-shop-card {
        overflow: hidden;
        background: #fff;
        border: 1px solid #ededed;
        border-radius: 15px;
    }

    .wolf-shop-card__media {
        margin-bottom: 0;
        border-radius: 0;
    }

    .wolf-shop-card__content {
        padding: 10px 10px 11px;
    }

    .wolf-shop-card__title {
        display: -webkit-box;
        min-height: 34px;
        margin-bottom: 5px;
        font-size: 11px;
        line-height: 1.4;
        white-space: normal;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
    }

    .wolf-shop-card__tags {
        margin-bottom: 6px;
        font-size: 10px;
    }

    .wolf-shop-card__old-price {
        font-size: 10px;
    }

    .wolf-shop-card__pix-row {
        align-items: center;
        gap: 4px;
    }

    .wolf-shop-card__pix-price {
        font-size: 17px;
    }

    .wolf-shop-card__pix-label {
        padding: 4px 5px;
        font-size: 9px;
    }

    .wolf-shop-card__installments {
        min-height: 29px;
        font-size: 10px;
    }

    .wolf-shop-card__button {
        min-height: 36px !important;
        font-size: 10px !important;
    }

    .wolf-shop-sheet {
        max-height: 88vh;
    }

    .wolf-shop-sheet--sort {
        max-height: min(72vh, 490px);
    }
}

@media (max-width: 520px) {
    .wolf-shop__hero {
        display: block;
    }

    .wolf-shop__archive-image {
        margin-bottom: 12px;
    }
}

@media (max-width: 390px) {
    .wolf-shop__breadcrumb,
    .wolf-shop__hero,
    .wolf-shop__toolbar,
    .wolf-shop__active-filters,
    .wolf-shop__results {
        margin-right: 12px;
        margin-left: 12px;
    }

    .wolf-shop__toolbar-actions button {
        padding-right: 11px;
        padding-left: 11px;
    }

    .wolf-shop-card__pix-row {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (prefers-reduced-motion: reduce) {
    .wolf-shop-card__image img,
    .wolf-shop-card__wishlist,
    .wolf-shop__toolbar-actions button,
    .wolf-shop-sheet,
    .wolf-shop-sheet-overlay {
        transition: none;
    }
}

/*
|--------------------------------------------------------------------------
| Ajustes finos — animação e estoque
|--------------------------------------------------------------------------
*/

.wolf-shop-filter__animation {
    transform-origin: top;
    will-change: height, opacity, transform;
}

/*
|--------------------------------------------------------------------------
| Produto sem estoque
|--------------------------------------------------------------------------
*/

.wolf-shop-card.is-out-of-stock .wolf-shop-card__image img {
    opacity: .72;
    filter: grayscale(.16);
}

.wolf-shop-card__stock-badge {
    position: absolute;
    z-index: 4;
    right: 50%;
    bottom: 11px;
    display: inline-flex;
    min-height: 28px;
    align-items: center;
    justify-content: center;
    padding: 6px 13px;
    color: #fff;
    font-family: inherit;
    font-size: 10px;
    font-weight: 700;
    line-height: 1;
    white-space: nowrap;
    background: rgba(24, 24, 24, .92);
    border: 1px solid rgba(255, 255, 255, .28);
    border-radius: 999px;
    box-shadow: 0 7px 18px rgba(0, 0, 0, .18);
    transform: translateX(50%);
    backdrop-filter: blur(5px);
}

.wolf-shop-card__button--out-of-stock {
    color: #fff !important;
    background: #555 !important;
    border-color: #555 !important;
}

.wolf-shop-card__button--out-of-stock:hover {
    background: #333 !important;
    border-color: #333 !important;
}

/*
|--------------------------------------------------------------------------
| Pesquisa
|--------------------------------------------------------------------------
*/

.wolf-shop[data-archive-type="search"] .wolf-shop__hero {
    max-width: 100%;
}


@media (max-width: 980px) {
    .wolf-shop-card__stock-badge {
        bottom: 9px;
        min-height: 25px;
        padding: 5px 10px;
        font-size: 10px;
    }
}
.wolf-home-card__offer-icon svg {
    display: block;
    width: 30px;
    height: 30px;
}

/*
|--------------------------------------------------------------------------
| Título e descrição do arquivo
|--------------------------------------------------------------------------
*/

.wolf-shop__hero {
    display: block;
    width: 100%;
    max-width: none;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 25px;
}

.wolf-shop__hero-content {
    width: 100%;
    min-width: 0;
}

.wolf-shop__archive-title {
    margin: 0 0 12px !important;
    color: #202020 !important;
    font-family: "Montserrat", sans-serif !important;
    font-size: clamp(24px, 2.3vw, 32px) !important;
    font-weight: 700 !important;
    line-height: 1.18 !important;
    letter-spacing: -0.025em;
    text-transform: none !important;
}

/*
|--------------------------------------------------------------------------
| Descrição recolhível
|--------------------------------------------------------------------------
*/

.wolf-shop__description-wrap {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
    gap: 22px;
    width: 100%;
}

.wolf-shop__description {
    /*
     * Aproximadamente duas linhas no desktop.
     */
    --wolf-description-collapsed-height: 45px;

    position: relative;
    min-width: 0;
    max-width: none;
    color: #5f5f5f;
    font-family: "Montserrat", sans-serif;
    font-size: 12px;
    font-weight: 400;
    line-height: 1.65;
}


/*
 * Faz o texto desaparecer suavemente no final.
 */
.wolf-shop__description-wrap.has-collapsible-content:not(.is-expanded)
.wolf-shop__description::after {
    position: absolute;
    z-index: 2;
    right: 0;
    bottom: 0;
    left: 0;
    height: 10px;
    content: "";
    background: linear-gradient(
        to bottom,
        rgba(255, 255, 255, 0),
        rgba(255, 255, 255, .93) 75%,
        #fff 100%
    );
    pointer-events: none;
}

.wolf-shop__description-wrap.is-expanded
.wolf-shop__description::after {
    display: none;
}

.wolf-shop__description {
    overflow: hidden;
    will-change: max-height, opacity;
}

.wolf-shop__description.is-collapsed {
    overflow: hidden;
}

.wolf-shop__description-wrap.is-expanded
.wolf-shop__description {
    overflow: visible;
}

/*
|--------------------------------------------------------------------------
| Elementos internos da descrição
|--------------------------------------------------------------------------
*/

.wolf-shop__description p {
    margin: 0 0 9px !important;
    color: inherit !important;
    font-family: inherit !important;
    font-size: 14px !important;
    font-weight: 400 !important;
    line-height: inherit !important;
}

.wolf-shop__description p:last-child {
    margin-bottom: 0 !important;
}

.wolf-shop__description h1,
.wolf-shop__description h2,
.wolf-shop__description h3,
.wolf-shop__description h4,
.wolf-shop__description h5,
.wolf-shop__description h6 {
    margin: 21px 0 9px !important;
    color: #292929 !important;
    font-family: "Montserrat", sans-serif !important;
    font-weight: 700 !important;
    line-height: 1.25 !important;
    letter-spacing: -0.02em;
    text-transform: none !important;
}

.wolf-shop__description h1 {
    font-size: 23px !important;
}

.wolf-shop__description h2 {
    font-size: 18px !important;
}

.wolf-shop__description h3 {
    font-size: 17px !important;
}

.wolf-shop__description h4 {
    font-size: 16px !important;
}

.wolf-shop__description h5 {
    font-size: 14px !important;
}

.wolf-shop__description h6 {
    font-size: 14px !important;
}

.wolf-shop__description > :first-child {
    margin-top: 0 !important;
}

.wolf-shop__description ul,
.wolf-shop__description ol {
    display: grid;
    gap: 7px;
    margin: 12px 0 14px !important;
    padding-left: 22px !important;
}

.wolf-shop__description li {
    margin: 0 !important;
    color: inherit;
    font-size: inherit;
    line-height: 1.65;
}

.wolf-shop__description strong,
.wolf-shop__description b {
    color: #333;
    font-weight: 650;
}

.wolf-shop__description a {
    color: var(--wolf-shop-red);
    font-weight: 550;
    text-decoration: none;
}

.wolf-shop__description a:hover {
    text-decoration: underline;
}

/*
|--------------------------------------------------------------------------
| Botão saiba mais
|--------------------------------------------------------------------------
*/

.wolf-shop__description-toggle {
    display: inline-flex;
    min-width: max-content;
    min-height: 30px;
    align-items: center;
    justify-content: center;
    align-self: end;
    gap: 4px;
    margin: 0 0 1px;
    padding: 5px 0;
    color: #202020;
    font-family: "Montserrat", sans-serif;
    font-size: 11px;
    font-weight: 650;
    line-height: 1;
    white-space: nowrap;

    border: 0;
    border-radius: 20px;
    cursor: pointer;
    transition:
        color .2s ease,
        transform .2s ease;
}

.wolf-shop__description-toggle[hidden] {
    display: none !important;
}

.wolf-shop__description-toggle:hover {
    color: #f8f8f8;
    padding-left: 5px;
    background-color: #e5161b;
    transform: translateY(-1px);
}

.wolf-shop__description-toggle svg {
    display: block;
    width: 13px;
    height: 13px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: transform .28s ease;
}

.wolf-shop__description-toggle.is-expanded svg {
    transform: rotate(180deg);
}

/*
|--------------------------------------------------------------------------
| Mobile
|--------------------------------------------------------------------------
*/

@media (max-width: 980px) {
    .wolf-shop__hero {
        display: block;
        margin-bottom: 20px;
    }

    .wolf-shop__archive-title {
        margin-bottom: 9px !important;
        font-size: 22px !important;
        line-height: 1.18 !important;
    }

    .wolf-shop__description-wrap {
        display: block;
    }

    .wolf-shop__description {
        /*
         * Aproximadamente três linhas no celular.
         */
        --wolf-description-collapsed-height: 59px;

        font-size: 12px;
        line-height: 1.62;
    }

    .wolf-shop__description-toggle {
        padding: 5px 0;
        color: #dd1a1a;
        font-size: 12px;
    }

    .wolf-shop__description h1 {
        font-size: 20px !important;
    }

    .wolf-shop__description h2 {
        font-size: 17px !important;
    }

    .wolf-shop__description h3 {
        font-size: 16px !important;
        font-weight: 550 !important;
    }

    .wolf-shop__description h4 {
        font-size: 16px !important;
        font-weight: 500 !important;
    }
}
/*
|--------------------------------------------------------------------------
| Alinhamento lateral padronizado no mobile
|--------------------------------------------------------------------------
*/

@media (max-width: 980px) {
    .wolf-shop {
        --wolf-shop-mobile-gutter: 16px;
    }

    /*
     * Remove margens antigas e aplica o mesmo recuo
     * para todas as áreas principais.
     */
    .wolf-shop__breadcrumb,
    .wolf-shop__hero,
    .wolf-shop__toolbar,
    .wolf-shop__active-filters,
    .wolf-shop__results {
        width: auto;
        margin-right: var(--wolf-shop-mobile-gutter);
        margin-left: var(--wolf-shop-mobile-gutter);
    }

    /*
     * A descrição deve usar toda a largura disponível.
     */
    .wolf-shop__description-wrap,
    .wolf-shop__description,
    .wolf-shop__hero-content {
        width: 100%;
        max-width: none;
        margin-right: 0;
        margin-left: 0;
    }

    /*
     * Evita algum padding herdado do Elementor.
     */
    .wolf-shop__hero {
        padding-right: 0;
        padding-left: 0;
    }

    /*
     * Barra de filtros.
     */
    .wolf-shop__toolbar {
        padding-right: 0;
        padding-left: 0;
    }

    .wolf-shop__toolbar-actions {
        margin-right: 0;
        margin-left: auto;
    }

    /*
     * Conteúdo interno do menu de filtros.
     */
    .wolf-shop-sheet__scroll {
        padding-right: var(--wolf-shop-mobile-gutter);
        padding-left: var(--wolf-shop-mobile-gutter);
    }

    .wolf-shop-sheet header {
        padding-right: var(--wolf-shop-mobile-gutter);
        padding-left: var(--wolf-shop-mobile-gutter);
    }

    .wolf-shop-sheet footer {
        padding-right: var(--wolf-shop-mobile-gutter);
        padding-left: var(--wolf-shop-mobile-gutter);
    }
}

@media (max-width: 390px) {
    .wolf-shop {
        --wolf-shop-mobile-gutter: 12px;
    }
}

/*
|--------------------------------------------------------------------------
| Garantia de elementos ocultos
|--------------------------------------------------------------------------
*/

.wolf-shop [hidden],
.wolf-shop__load-more[hidden],
.wolf-shop__empty[hidden] {
    display: none !important;
}

/*
|--------------------------------------------------------------------------
| Estado sem resultados
|--------------------------------------------------------------------------
*/

.wolf-shop__empty {
    padding: 0;
    color: inherit;
    text-align: initial;
}

.wolf-shop-empty-state {
    width: 100%;
}

.wolf-shop-empty-state__message {
    display: flex;
    max-width: 620px;
    flex-direction: column;
    align-items: center;
    margin: 24px auto 48px;
    padding: 38px 28px;
    text-align: center;
    background:
        linear-gradient(
            145deg,
            #fff 0%,
            #fff8f8 100%
        );
    border: 1px solid #f0e7e8;
    border-radius: 20px;
}

.wolf-shop-empty-state__icon {
    display: grid;
    width: 58px;
    height: 58px;
    place-items: center;
    margin-bottom: 17px;
    color: var(--wolf-shop-red);
    background: #fff;
    border: 1px solid #f1d9dc;
    border-radius: 50%;
    box-shadow:
        0 9px 25px rgba(239, 35, 60, .1);
}

.wolf-shop-empty-state__icon svg {
    display: block;
    width: 27px;
    height: 27px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.wolf-shop-empty-state__message h2 {
    margin: 0 0 9px !important;
    color: #232323 !important;
    font-family: inherit !important;
    font-size: 22px !important;
    font-weight: 750 !important;
    line-height: 1.25 !important;
    text-transform: none !important;
}

.wolf-shop-empty-state__message p {
    max-width: 500px;
    margin: 0 !important;
    color: #737373;
    font-size: 12px;
    line-height: 1.65;
}

.wolf-shop-empty-state__message strong {
    color: #393939;
    font-weight: 650;
}

/*
|--------------------------------------------------------------------------
| Cabeçalho das sugestões
|--------------------------------------------------------------------------
*/

.wolf-shop-empty-state__suggestions {
    width: 100%;
}

.wolf-shop-empty-state__heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 23px;
}

.wolf-shop-empty-state__heading span {
    display: block;
    margin-bottom: 5px;
    color: var(--wolf-shop-red);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .055em;
    text-transform: uppercase;
}

.wolf-shop-empty-state__heading h3 {
    margin: 0 !important;
    color: #242424 !important;
    font-family: inherit !important;
    font-size: clamp(
        20px,
        2vw,
        27px
    ) !important;
    font-weight: 750 !important;
    line-height: 1.2 !important;
    text-transform: none !important;
}

.wolf-shop-empty-state__heading a {
    display: inline-flex;
    min-width: max-content;
    min-height: 35px;
    align-items: center;
    justify-content: center;
    padding: 8px 16px;
    color: var(--wolf-shop-red);
    font-size: 11px;
    font-weight: 650;
    text-decoration: none;
    background: #fff;
    border: 1px solid var(--wolf-shop-red);
    border-radius: 999px;
    transition:
        color .2s ease,
        background-color .2s ease;
}

.wolf-shop-empty-state__heading a:hover {
    color: #fff;
    background: var(--wolf-shop-red);
}

/*
|--------------------------------------------------------------------------
| Mobile
|--------------------------------------------------------------------------
*/

@media (max-width: 980px) {
    .wolf-shop-empty-state__message {
        margin: 12px 0 35px;
        padding: 30px 18px;
        border-radius: 17px;
    }

    .wolf-shop-empty-state__icon {
        width: 52px;
        height: 52px;
        margin-bottom: 14px;
    }

    .wolf-shop-empty-state__message h2 {
        font-size: 19px !important;
    }

    .wolf-shop-empty-state__message p {
        font-size: 11px;
    }

    .wolf-shop-empty-state__heading {
        align-items: flex-start;
    }

    .wolf-shop-empty-state__heading h3 {
        font-size: 19px !important;
    }

    .wolf-shop-empty-state__heading a {
        min-height: 32px;
        padding: 7px 12px;
        font-size: 10px;
    }
}

@media (max-width: 480px) {
    .wolf-shop-empty-state__heading {
        align-items: flex-start;
        flex-direction: column;
        gap: 12px;
    }
}

.woocommerce a.added_to_cart{
    display: none !important;
}