.product-list-page {
    padding: 80px 0;
    background: #fff;
}

.product-list-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 330px;
    gap: 42px;
    align-items: flex-start;
}

.product-list-main {
    min-width: 0;
}

.product-list-head {
    margin-bottom: 34px;
}

.product-list-head h2 {
    font-size: 36px;
    line-height: 1.3;
    color: #111;
    margin: 0 0 12px;
}

.product-list-head p {
    color: #666;
    font-size: 16px;
    line-height: 1.8;
}

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

.product-list-item {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 12px 36px rgba(0,0,0,0.04);
    transition: all 0.28s ease;
}

.product-list-item:hover {
    border-color: rgba(234, 11, 19, 0.35);
    box-shadow: 0 18px 42px rgba(234, 11, 19, 0.12);
    transform: translateY(-5px);
}

.product-list-img {
    display: block;
    width: 100%;
    height: 220px;
    overflow: hidden;
    background: #f6f6f6;
}

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

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

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

.product-list-info h3 {
    font-size: 19px;
    line-height: 1.42;
    margin: 0 0 12px;
}

.product-list-info h3 a {
    color: #111;
}

.product-list-info h3 a:hover {
    color: #ea0b13;
}

.product-list-info p {
    color: #666;
    font-size: 14px;
    line-height: 1.75;
    margin-bottom: 18px;
}

.product-list-more {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 38px;
    padding: 0 18px;
    border-radius: 999px;
    background: #ea0b13;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.25s ease;
}

.product-list-more i {
    margin-left: 8px;
    font-size: 15px;
    transition: all 0.25s ease;
}

.product-list-more:hover {
    background: #c80008;
    color: #fff;
}

.product-list-more:hover i {
    transform: translateX(3px);
}


/* pagination */
.product-list-pagination {
    padding-top: 46px;
    text-align: center;
}

.product-list-pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    height: 42px;
    margin: 0 4px;
    padding: 0 12px;
    border-radius: 50%;
    background: #f7f7f7;
    color: #333;
    font-size: 15px;
    transition: all 0.25s ease;
}

.product-list-pagination .page-numbers.current,
.product-list-pagination .page-numbers:hover {
    background: #ea0b13;
    color: #fff;
}


/* side */
.product-list-side {
    position: sticky;
    top: 110px;
}

.product-side-box {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 22px;
    padding: 28px 24px;
    margin-bottom: 24px;
    box-shadow: 0 12px 36px rgba(0,0,0,0.05);
}

.product-side-box h3 {
    display: flex;
    align-items: center;
    font-size: 22px;
    color: #111;
    margin: 0 0 22px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.product-side-box h3 i {
    color: #ea0b13;
    margin-right: 10px;
}

.product-side-category {
    list-style: none;
    margin: 0;
    padding: 0;
}

.product-side-category li {
    border-bottom: 1px solid #f1f1f1;
}

.product-side-category li:last-child {
    border-bottom: none;
}

.product-side-category li a {
    display: block;
    padding: 13px 0;
    color: #444;
    font-size: 15px;
    line-height: 1.5;
}

.product-side-category li.active a,
.product-side-category li a:hover {
    color: #ea0b13;
}


/* recommended */
.product-side-recommend-item {
    display: grid;
    grid-template-columns: 86px minmax(0, 1fr);
    gap: 14px;
    padding: 15px 0;
    border-bottom: 1px solid #f1f1f1;
}

.product-side-recommend-item:first-child {
    padding-top: 0;
}

.product-side-recommend-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.product-side-recommend-img {
    display: block;
    width: 86px;
    height: 64px;
    border-radius: 12px;
    overflow: hidden;
    background: #f5f5f5;
}

.product-side-recommend-img img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: all 0.3s ease;
}

.product-side-recommend-item:hover .product-side-recommend-img img {
    transform: scale(1.08);
}

.product-side-recommend-info h4 {
    font-size: 15px;
    line-height: 1.45;
    margin: 0;
}

.product-side-recommend-info h4 a {
    color: #222;
}

.product-side-recommend-info h4 a:hover {
    color: #ea0b13;
}


/* mobile */
@media screen and (max-width: 768px) {
    .product-list-page {
        padding: 55px 0;
    }

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

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

    .product-list-img {
        height: auto;
    }

    .product-list-head h2 {
        font-size: 28px;
    }

    .product-list-side {
        position: static;
    }

    .product-side-box {
        padding: 24px 20px;
        border-radius: 18px;
    }
}