﻿.p-productcate-list {
    display: grid;
    grid-auto-rows: minmax(min-content,max-content);
    grid-template-columns: repeat(3,minmax(0,1fr));
    column-gap: 25px;
    row-gap: 25px;
}

.p-productcate-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    height: 288px;
}

.p-productcate-img {
    height: 100%;
}

    .p-productcate-img img {
    }

.p-productcate-content {
    position: absolute;
    width: 100%;
    height: 100%;
    bottom: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    justify-content: end;
    justify-content: flex-end;
    padding: 10px 24px;
}

    .p-productcate-content::before {
        content: "";
        position: absolute;
        width: 100%;
        top: 0;
        top\:;
        top\: 0;
        left: 0;
        height: 100%;
        background-color: rgb(73 61 35 / 70%);
        z-index: 0;
        opacity: 0;
        transition: all .3s;
        transition-delay: .4s;
    }

.p-productcate-item:hover .p-productcate-content::before {
    opacity: 1;
    transition-delay: .1s;
}

.p-productcate-item:hover .p-productcate-title {
    transform: translateY(0);
    opacity: 1;
    transition-delay: .2s;
}

.p-productcate-item:hover .p-productcate-description {
    transform: translateY(0);
    opacity: 1;
    transition-delay: .3s;
}

.p-productcate-title {
    position: relative;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    margin: 0;
    font-family: 'pathSB';
    color: #fff;
    font-size: 24px;
    line-height: 126%;
    font-weight: 100;
    transform: translateY(25px);
    transition: 0.8s cubic-bezier(.3, 2.2, .3, 1);
    opacity: 0;
    transition-delay: .2s;
}

.p-productcate-description {
    position: relative;
    text-align: center;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    line-height: 172%;
    font-size: 14px;
    color: #fff;
    font-weight: 100;
    margin-top: 8px;
    transform: translateY(25px);
    opacity: 0;
    transition: 0.8s cubic-bezier(.3, 2.2, .3, 1);
    transition-delay: .1s;
    text-align: left;
}


/* Mobile & tablet */
@media (max-width: 1023px) {
    .p-productcate-item {
        height: 240px;
    }
}

/* Tablet */
@media (min-width: 740px) and (max-width: 1023px) {
}

/* Mobile */
@media (max-width: 739px) {
    .p-productcate-list {
        grid-template-columns: repeat(1, minmax(0, 1fr));
        column-gap: 20px;
        row-gap: 20px;
    }

    .about-productcate-container {
        padding-bottom: 30px;
    }
}
