/* Start custom CSS for html, class: .elementor-element-b6e680e */.jenvora-categories {
    padding: 80px 0;
    background: #fff8fa;
}

.categories-container {
    width: min(1200px, 92%);
    margin: auto;
}


/* Heading */

.categories-heading {
    text-align: center;
    margin-bottom: 42px;
}

.categories-heading span {
    display: block;
    color: #c82c67;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
    margin-bottom: 10px;
}

.categories-heading h2 {
    margin: 0 0 10px;
    color: #2b2024;
    font-size: 38px;
    line-height: 1.2;
}

.categories-heading p {
    margin: 0;
    color: #777;
    font-size: 14px;
}


/* Grid */

.categories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}


/* Card */

.category-card {
    display: block;
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    text-decoration: none;
    box-shadow: 0 8px 28px rgba(43, 32, 36, .07);
    transition: .35s ease;
}

.category-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 35px rgba(43, 32, 36, .13);
}


/* Image */

.category-image {
    height: 320px;
    overflow: hidden;
    background: #f6e9ed;
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .6s ease;
}

.category-card:hover .category-image img {
    transform: scale(1.07);
}


/* Content */

.category-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 19px;
}

.category-info h3 {
    margin: 0;
    color: #2b2024;
    font-size: 16px;
    font-weight: 700;
}

.category-info span {
    color: #c82c67;
    font-size: 11px;
    font-weight: 700;
    white-space: nowrap;
    transition: .3s ease;
}

.category-card:hover .category-info span {
    transform: translateX(4px);
}


/* Tablet */

@media (max-width: 900px) {

    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .category-image {
        height: 300px;
    }

}


/* Mobile */

@media (max-width: 600px) {

    .jenvora-categories {
        padding: 55px 0;
    }

    .categories-heading {
        margin-bottom: 28px;
    }

    .categories-heading h2 {
        font-size: 28px;
    }

    .categories-grid {
        display: flex;
        gap: 15px;
        overflow-x: auto;
        padding: 5px 2px 15px;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
    }

    .categories-grid::-webkit-scrollbar {
        display: none;
    }

    .category-card {
        min-width: 78%;
        scroll-snap-align: start;
    }

    .category-image {
        height: 330px;
    }

    .category-info h3 {
        font-size: 15px;
    }

}/* End custom CSS */