.parent-category-hero {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    min-height: 340px;
    padding: 3rem;
    margin-bottom: 3rem;
    border-radius: 20px;
    overflow: hidden;
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
    color: #fff;
}

.parent-category-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-color: rgba(0, 137, 175, 0.77);
    width: 50%;
    z-index: 1;
}

.parent-category-hero .hero-content,
.parent-category-hero .hero-categories {
    position: relative;
    z-index: 2;
}

.parent-category-hero h1 {
    color: #fff;
    text-transform: uppercase;
}

.parent-category-hero .hero-description {
    margin-bottom: 2rem;
    max-width: 28rem;
}

.hero-view-products {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #fff;
    text-transform: uppercase;
    font-weight: 300;
    text-decoration: none;
}

.circle-arrow-link::after {
    content: "\f061";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: 10px;
    width: 20px;
    height: 20px;
    border: 1px solid white;
    border-radius: 50%;
    color: white;
    transform: rotate(-45deg);
    transition: transform 0.3s ease;
    font-size: 14px;
}

.circle-arrow-link.category-button::after {
    color: #0089AF;
    border-color: #0089AF;
}

.hero-categories {
    justify-self: end;
    text-align: left;
}

.hero-categories h2 {
    color: #fff;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
    line-height: 1.1;
}

.hero-categories ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.hero-categories li {
    margin: 0;
    padding: 0;
    list-style: none;
}

.category-button {
    background: #fff;
    border: 1px solid #fff;
    color: #0089AF;
    text-transform: uppercase;
    padding: 5px 22px;
    min-width: 120px;
    font-size: 13px;
    transition: .3s ease-in-out;
    border-radius: 5px;
    font-weight: 500;
    width: 100%;
    display: block;
}


@media (max-width: 768px) {
    .parent-category-hero {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .hero-categories {
        justify-self: stretch;
    }
    .category-button {
        min-width: 0;
        width: 100%;
    }
}

.child-category-section {
    padding-bottom: 3rem;
}

.child-category-section h2.h3 {
    font-weight: 500;
    text-transform: uppercase;
    font-size: 24px;
    line-height: 32px;
    margin-bottom: 2rem;
}