.product-warp{
    padding:60px 0;
    background:#ffffff;
}

.product-top{
    text-align:center;
    margin-bottom:34px;
}

.product-top span{
    display:inline-block;
    color:#fc0000;
    font-size:14px;
    line-height:22px;
    font-weight:700;
    letter-spacing:2px;
    text-transform:uppercase;
    margin-bottom:10px;
}

.product-top h1{
    margin:0 0 14px 0;
    color:#222222;
    font-size:2.5rem;
    line-height:1.2;
    font-weight:700;
}

.product-top p{
    max-width:820px;
    margin:0 auto;
    color:#666666;
    font-size:16px;
    line-height:30px;
}

.product-list{
    display:grid;
    grid-template-columns:repeat(3, minmax(0, 1fr));
    gap:28px;
}

.product-item{
    background:#ffffff;
    border:1px solid #eeeeee;
    border-radius:16px;
    overflow:hidden;
    box-shadow:0 8px 24px rgba(0,0,0,0.05);
    transition:all .3s ease;
}

.product-item:hover{
    transform:translateY(-4px);
    box-shadow:0 14px 30px rgba(0,0,0,0.09);
}

.product-img{
    display:block;
    width:100%;
    overflow:hidden;
    background:#f8f8f8;
}

.product-img img{
    display:block;
    width:100%;
    height:380px;
    object-fit:cover;
    transition:all .35s ease;
}

.product-item:hover .product-img img{
    transform:scale(1.05);
}

.product-info{
    padding:22px 20px 24px;
}

.product-info h2{
    margin:0 0 12px 0;
    font-size:1.25rem;
    line-height:1.4;
    font-weight:700;
}

.product-info h2 a{
    color:#222222;
    text-decoration:none;
    transition:all .3s ease;
}

.product-info h2 a:hover{
    color:#fc0000;
}

.product-info p{
    margin:0 0 18px 0;
    color:#666666;
    font-size:14px;
    line-height:26px;
    min-height:78px;
}

.product-more{
    display:inline-block;
    padding:10px 22px;
    border:1px solid #fc0000;
    border-radius:24px;
    color:#fc0000;
    font-size:14px;
    line-height:22px;
    text-decoration:none;
    transition:all .3s ease;
}

.product-more:hover{
    background:#fc0000;
    color:#ffffff;
}

.product-page{
    display:flex;
    justify-content:center;
    align-items:center;
    flex-wrap:wrap;
    gap:10px;
    padding-top:38px;
}

.product-page a,
.product-page span{
    display:inline-block;
    min-width:42px;
    height:42px;
    line-height:42px;
    text-align:center;
    border-radius:50%;
    border:1px solid #e5e5e5;
    background:#ffffff;
    color:#666666;
    font-size:14px;
    text-decoration:none;
    transition:all .3s ease;
}

.product-page a:hover{
    border-color:#fc0000;
    color:#fc0000;
}

.product-page a.active{
    background:#fc0000;
    border-color:#fc0000;
    color:#ffffff;
}

.product-page a.disabled{
    color:#cccccc;
    border-color:#eeeeee;
    pointer-events:none;
    cursor:not-allowed;
}

@media screen and (max-width:1199px){
    .product-list{
        grid-template-columns:repeat(3, minmax(0, 1fr));
        gap:22px;
    }

    .product-img img{
        height:340px;
    }
}

@media screen and (max-width:991px){
    .product-warp{
        padding:45px 0;
    }

    .product-top{
        margin-bottom:28px;
    }

    .product-top h1{
        font-size:2rem;
    }

    .product-top p{
        font-size:15px;
        line-height:28px;
    }

    .product-list{
        grid-template-columns:repeat(2, minmax(0, 1fr));
        gap:18px;
    }

    .product-img img{
        height:300px;
    }

    .product-info{
        padding:18px 16px 20px;
    }

    .product-info p{
        min-height:auto;
    }
}

@media screen and (max-width:767px){
    .product-warp{
        padding:35px 0;
    }

    .product-top{
        margin-bottom:22px;
    }

    .product-top h1{
        font-size:1.65rem;
        line-height:1.3;
    }

    .product-top p{
        font-size:14px;
        line-height:24px;
    }

    .product-list{
        grid-template-columns:1fr;
        gap:16px;
    }

    .product-img img{
        height:auto;
    }

    .product-info h2{
        font-size:1.1rem;
    }

    .product-info p{
        font-size:14px;
        line-height:24px;
        margin-bottom:14px;
    }

    .product-more{
        padding:9px 18px;
        font-size:13px;
    }

    .product-page{
        gap:8px;
        padding-top:24px;
    }

    .product-page a,
    .product-page span{
        min-width:38px;
        height:38px;
        line-height:38px;
        font-size:13px;
    }
}