.category-slider-item {
    /*    width: 400px;
    height: 250px;*/
    height: 344px;
}

    .category-slider-item > img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.category-title {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    font-size: 24px;
    font-weight: 700;
    opacity: 0;
    transition: opacity 0.3s ease;
}


.category-slider-item:hover .category-title {
    opacity: 1;
    animation: categorySliderTitleAnimation 2s ease 0s 1 normal forwards;
    justify-content: flex-end;
    align-items: flex-start;
    padding: 12px;
}

@keyframes categorySliderTitleAnimation {
    0% {
        opacity: 0;
        transform: translateX(50px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.product-slider-item {
    background-color: #F9F9F9;
    width: 25rem;
    height: 35rem;
}

    .product-slider-item > h3 {
        height: 5rem;
    }

    .product-slider-item > a {
        display: none;
    }

    .product-slider-item:hover a {
        display: flex;
        flex-direction: row;
        height: 3rem;
    }

    .product-slider-item:hover h3 {
        height: 3rem;
    }

    .product-slider-item:hover .image-content {
        height: 27rem;
    }

.image-content {
    height: 30rem;
    background-color: white;
}

    .image-content > img {
        width: 100%;
    }


.home-page-main-slider-item {
}




@media (max-width: 1000px) {
    .product-slider-item {
        width: 20rem;
    }

        .product-slider-item > a {
            display: flex;
            flex-direction: row;
        }

    .blog-item-contenet {
        width: 100%;
    }

        .blog-item-contenet > div:nth-of-type(1) {
            width: 100%;
            padding: 6% 4% !important;
        }

        .blog-item-contenet > div:nth-of-type(2) {
            display: none;
        }

    .responsive-content-img {
        display: flex;
        flex-direction: column;
        width: 100%;
    }

    .discover-perilla-content {
        gap: 0;
    }

        .discover-perilla-content > div:nth-of-type(2) {
            display: flex;
            flex-direction: column;
        }

            .discover-perilla-content > div:nth-of-type(2) > div:nth-of-type(1) {
                width: 100%;
                margin-bottom: 0 !important;
            }

            .discover-perilla-content > div:nth-of-type(2) > div:nth-of-type(2) {
                width: 100%;
            }

                .discover-perilla-content > div:nth-of-type(2) > div:nth-of-type(2) > p {
                    width: 100%;
                }
}
