.browse-category {
    margin: 5.5% 5.5% 0 5.5%;
}

.browse-by-category-title {
    display: flex;
    justify-content: center;
    align-items: center;
    text-transform: uppercase;
    font-family: 'Outfit', sans-serif;
    font-weight: 500;
    font-size: 1.5rem;
    color: white;
}


.categories-container {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.category-navigation-arrow-container {
    background-color: rgba(255, 204, 0, 0.45);
    width: 1.6rem;
    height: 1.6rem;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    transition: background-color 0.2s ease-in-out;
    cursor: pointer;
}

.left-category-navigation-arrow {
    transform: rotate(90deg);
    width: 0.75rem;
    height: 0.75rem;
    filter: brightness(0) saturate(100%);
}

.right-category-navigation-arrow {
    transform: rotate(270deg);
    width: 0.75rem;
    height: 0.75rem;
    filter: brightness(0) saturate(100%);
}

#left-arrow-container:hover,
#right-arrow-container:hover {
    background-color: #FFCC00;
}

.categories-browse-list {
    margin-top: 3%;
    display: flex;
    width: 80%;
}

.category-item {
    width: 14.6vw;
    height: 14.6vw;
    position: relative;
    transition: width 0.2s ease-in;
    cursor: pointer;
}

.category-item:first-child .category-item-img {
    border-radius: 1rem 0 0 1rem;
}

.category-item:last-child .category-item-img {
    border-radius: 0 1rem 1rem 0;
}

.category-item:hover {
    width: 24.5vw;
}

.category-item-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.category-item-name-banner {
    position: absolute;
    bottom: 10%;
    left: 0;
    width: 100%;
    background: linear-gradient(90deg, rgba(255, 59, 48, 0.25) 0%, rgba(255, 59, 48, 0.70) 50%, rgba(255, 59, 48, 0.25) 100%);
    height: 30%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background 0.2s ease-in;
    text-align: center;
}

.category-item:hover .category-item-name-banner {
    background: linear-gradient(90deg, rgba(255, 59, 48, 0.45) 0%, rgba(255, 59, 48, 0.90) 50%, rgba(255, 59, 48, 0.45) 100%);
}

.category-item-name {
    color: rgba(255, 255, 255, 0.75);
    font-family: 'Outfit', sans-serif;
    font-weight: 500;
    font-size: 1.5rem;
    transition: color 0.2s ease-in
}

.category-item:hover .category-item-name {
    color: #FFFFFF;
}

.disabled-arrow {
    opacity: 0.3;
    pointer-events: none;
    background-color: rgba(154, 154, 154, 0.45);
}


@media (max-width: 1024px) {
    .category-item-name {
        font-size: 0.75rem !important;
    }
}