.product-categories-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20rem;
    margin-bottom: 120rem;
}
.product-categories-list {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 20rem;
}

.product-categories-item {
    display: flex;
    align-items: center;
    padding: 16rem 34rem;
    min-width: 185px;
    height: 55px;
    border: 1px solid #FFFFFF;
    border-radius: 500px;
    font-family: 'sans-serif', serif;
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 24px;
    text-align: center;
    color: #FFFFFF;
}

.product-categories-item:hover {
    background-color: #fff;
    color: #000000;
}
.product-categories-title {
    font-family: sans-serif, sans-serif;
    font-size: 30px;
    line-height: 130%;
    font-weight: 500;
}



.catalog-header-buttons {
    width: 100%;
    margin-bottom: 16rem;
    display: flex;
    gap: 20px;
    align-items: center;
}

.catalog-header-buttons button {
    padding: 0;
}
.catalog-header-buttons button:hover svg rect:first-child {
    fill: #3a4247;
    fill-opacity: 0.8;
    stroke: #5a5a5a;
}

.catalog-header-buttons button[data-active="true"] svg rect:first-child {
    fill: #1a1f22;
    fill-opacity: 1;
    stroke: #FFFFFF;
}

.woocommerce ul.products li.product[data-view='line'] {
    background-color: red;
    flex-direction: row;
    width: 100%;
    max-height: 237px;
    justify-content: space-between;
}


.product-card-info {
    display: flex;
    flex-grow: 1;
    align-items: center;
    justify-content: space-around;
}

