.category-page-header {
    position: relative;
    overflow: hidden;
    padding: 70px 0 65px;
    color: #ffffff;
    background:
        radial-gradient(
            circle at 80% 30%,
            rgba(245, 223, 0, 0.13),
            transparent 28%
        ),
        linear-gradient(120deg, #131414, #050606);
    border-bottom: 1px solid #292a2a;
}

.category-page-header::after {
    content: "RZ";
    position: absolute;
    right: 7%;
    bottom: -65px;
    color: transparent;
    font-size: 210px;
    font-weight: 900;
    font-style: italic;
    -webkit-text-stroke: 1px rgba(245, 223, 0, 0.12);
    pointer-events: none;
}

.category-page-header .container {
    position: relative;
    z-index: 2;
}

.category-breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
    color: #777777;
    font-size: 11px;
}

.category-breadcrumb a {
    color: #8e8e8e;
    text-decoration: none;
}

.category-breadcrumb a:hover {
    color: #f5df00;
}

.category-page-header h1 {
    max-width: 800px;
    margin-bottom: 18px;
    font-size: clamp(45px, 7vw, 82px);
    line-height: 0.95;
    font-weight: 900;
    font-style: italic;
    letter-spacing: -4px;
    text-transform: uppercase;
}

.category-page-description {
    max-width: 620px;
    color: #929292;
    font-size: 14px;
    line-height: 1.8;
}

.category-result-number {
    display: inline-block;
    margin-top: 25px;
    padding: 10px 14px;
    color: #080909;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 1px;
    text-transform: uppercase;
    background: #f5df00;
}

.category-products-section {
    min-height: 480px;
    padding: 80px 0 100px;
}

.category-empty-state {
    grid-column: 1 / -1;
    padding: 70px 25px;
    color: #777777;
    text-align: center;
    background: #ffffff;
    border: 1px solid #dddddd;
}

.category-empty-state h2 {
    margin-bottom: 12px;
    color: #080909;
    font-size: 28px;
    text-transform: uppercase;
}

.category-empty-state p {
    margin-bottom: 25px;
}

.category-empty-state a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 20px;
    color: #080909;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 1px;
    text-decoration: none;
    text-transform: uppercase;
    background: #f5df00;
}

.category-empty-state a:hover {
    background: #080909;
    color: #ffffff;
}

@media (max-width: 600px) {
    .category-page-header {
        padding: 50px 0;
    }

    .category-page-header h1 {
        font-size: 43px;
        letter-spacing: -2px;
    }

    .category-page-header::after {
        right: -25px;
        font-size: 140px;
    }

    .category-products-section {
        padding: 55px 0 75px;
    }
}