.bem-section-after-category-products {
    text-align: center;
    margin: 50px auto;
}

.bem-faqs-section {
    margin-top: 50px;
}

.bem-category-title {
    text-transform: uppercase;
}

.bem-faq-question {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    font-weight: 700;
    cursor: pointer;
    padding: 15px;
    margin: 0;
}

.bem-faq-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    right: 15px;
}

.bem-faq-item {
    border-bottom: 1px solid #252220;
}

.bem-faq-answer {
    display: none;
}

.bem-faqs-title {
    margin-bottom: 30px;
}

.bem-faq-answer {
    padding-bottom: 15px;
    margin: 15px;
}

.bem-faq-item.open svg {
    transform: rotate(180deg);
}

.bem-hidden-content {
    display: none;
}

/* Fold Unfold */
.bem-fold-unfold {
    border: none;
    background: none;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    margin-top: 30px;
    cursor: pointer;
}

.bem-fold-unfold span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}


/* Bems Product Category Before Footer */
.bem-cards {
    display: grid;
}

.bem-cards.cards-4 {
    grid-template-columns: repeat(4, 1fr);
}

.bem-cards.cards-3 {
    grid-template-columns: repeat(3, 1fr);
}

.bem-cards.cards-2 {
    grid-template-columns: repeat(2, 1fr);
}

.bem-cards.cards-1 {
    grid-template-columns: 1fr;
}



.bem-card-wrapper {
    display: block;
    width: 100%;
    height: 450px;
    overflow: hidden;
}

a.bem-card-item {
    display: flex;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    align-items: center;
    justify-content: center;
    padding: 40px;
    text-decoration: none;
    transition: transform 0.3s ease-in-out;
}

a.bem-card-item:hover .bem-card-title {
    opacity: 1;
}

.bem-card-wrapper:hover  a.bem-card-item {
    transform: scale(1.05);
}

.bem-card-title {
    color: #fff;
    font-size: clamp(20px, 3.5vw, 58px);
    font-weight: 700;
    line-height: 1;
    margin: 0;
    opacity: 1;
    text-align: center;
    text-shadow: 10px 10px 10px hsla(0, 3%, 50%, .3);
    transition: opacity 0.3s ease-in-out;
}

.bem-category-guide {
    width: 100%;
    height: 550px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bem-category-guide-content {
    text-align: center;
    max-width: 650px;
    width: 100%;
}

p.bem-category-guide-subtitle {
    color: #fff;
    text-transform: uppercase;
    font-weight: 700;
    font-size: clamp(16px, 2vw, 18px);
    margin: 0 0 8px;
    line-height: 1.4;
    text-shadow: 10px 10px 10px hsla(0, 3%, 50%, .3);
}

h2.bem-category-guide-title {
    color: #fff;
    font-size: clamp(24px, 3.5vw, 36px);
    line-height: 1.15;
    text-transform: uppercase;
    margin: 0;
    font-weight: 700;
    text-shadow: 10px 10px 10px hsla(0, 3%, 50%, .3);
}

a.bem-category-guide-link {
    background: #000;
    display: inline-block;
    padding: 12px 24px;
    color: #fff;
    text-transform: uppercase;
    font-weight: 500;
    border-radius: 3px;
    cursor: pointer;
    margin-top: 15px;
    line-height: 1.4;
    transition: all 0.3s ease-in-out;
    text-decoration: none;
}

a.bem-category-guide-link:hover {
    background: #fff;
    color: #000;
}


/* Responsive */
@media (max-width: 1024px) and (min-width: 768px) {
    .bem-cards.cards-4 {
        grid-template-columns: repeat(2, 1fr);
    }

    .bem-cards.cards-3 {
        grid-template-columns: repeat(2, 1fr);
    }

    .bem-cards.cards-2 {
        grid-template-columns: 1fr 1fr;
    }

    .bem-cards.cards-1 {
        grid-template-columns: 1fr;
    }

    .bem-card-wrapper {
        height: 400px;
    }
}


@media (max-width: 767px) {
    .bem-cards.cards-4 {
        grid-template-columns: 1fr 1fr;
    }

    .bem-cards.cards-3 {
        grid-template-columns: 1fr 1fr;
    }

    .bem-cards.cards-2 {
        grid-template-columns: 1fr 1fr;
    }

    .bem-cards.cards-1 {
        grid-template-columns: 1fr;
    }

    .bem-card-wrapper {
        height: 300px;
    }

    .bem-category-guide {
        height: 400px;
        padding: 0 15px;
    }
}