.product-category-page {
    background: #222;
    color: #FFF;
}

.product-hero {
    min-height: 230px;
    background: #111 url("../../images/xiaobanner.jpg") center/cover no-repeat;
    display: flex;
    align-items: center;
}

.product-hero__inner {
    width: min(1200px, calc(100% - 40px));
    margin: 120px auto;
}

.product-hero__title {
    text-align: center;
}

.product-hero h1 {
    font-family: "Oswald-Regular", Arial, sans-serif;
    font-size: 42px;
    line-height: 1.2;
    color: #fff;
    font-weight: 700;
    text-transform: uppercase;
}

.product-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 9px;
    margin-top: 15px;
    color: rgba(255, 255, 255, .88);
    font-size: 16px;
    text-align: center;
}

.product-breadcrumb a {
    color: #fff;
}

.product-category-list {
    padding: 70px 0 95px;
}

.product-category-container {
    width: min(1200px, calc(100% - 40px));
    margin: 0 auto;
}

.product-category-item {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 55px;
    align-items: flex-start;
    margin-bottom: 100px;
}

.product-category-item:last-child {
    margin-bottom: 0;
}

.product-category-media {
    display: block;
    overflow: hidden;
    background: #f2f2f2;
}

.product-category-media img {
    width: 100%;
    aspect-ratio: 800 / 530;
    object-fit: cover;
    transition: transform .35s ease;
}

.product-category-content h2 {
    font-family: "Oswald-Regular", Arial, sans-serif;
    font-size: 30px;
    line-height: 1.25;
    color: #FFF;
    font-weight: normal;
    margin-bottom: 22px;
}

.product-category-content .text {
    color: rgba(255, 255, 255, .6);
    font-size: 14px;
    line-height: 1.75;
}

.product-category-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 132px;
    height: 40px;
    margin-top: 18px;
    padding: 0 25px;
    border-radius: 4px;
    background: #ffe70c;
    color: #000;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0;
    transition: background .2s ease, color .2s ease;
}

@media (min-width: 1025px) {
    .product-breadcrumb a:hover {
        color: #ffe70c;
    }
    .product-category-media:hover img {
        transform: scale(1.04);
    }
    .product-category-button:hover {
        background: #FFF;
        color: #000;
    }
}

@media (max-width: 1024px) {
    .product-hero {
        min-height: 190px;
    }
    .product-hero h1 {
        font-size: 34px;
    }
    .product-category-list {
        padding: 48px 0 70px;
    }
    .product-category-item {
        gap: 34px;
        margin-bottom: 44px;
    }
}

@media (max-width: 767px) {
    .product-hero {
        min-height: 155px;
    }
    .product-hero__inner,
    .product-category-container {
        width: min(100% - 30px, 1200px);
    }
    .product-hero h1 {
        font-size: 28px;
    }
    .product-breadcrumb {
        font-size: 14px;
    }
    .product-category-list {
        padding: 36px 0 55px;
    }
    .product-category-item {
        grid-template-columns: 1fr;
        gap: 24px;
        margin-bottom: 36px;
    }
    .product-category-content h2 {
        font-size: 25px;
        margin-bottom: 15px;
    }
    .product-category-content p {
        font-size: 14px;
        line-height: 1.7;
    }
    .product-category-button {
        width: 132px;
        margin-top: 12px;
    }
}