<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.brand-header {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

@media (min-width: 768px) {
    .brand-filters {
        display: flex;
        justify-content: center;
        align-items: center;
        max-width: 1440px;
        width: 100%;
        padding: 40px 50px;
    }
}

@media screen and (max-width: 768px) {
    .brand-header {
        padding: 20px;
    }

    .brand-filters {
        overflow-x: auto;
        white-space: nowrap;
        padding-bottom: 10px;
    }
}

.filter-button {
    text-decoration: none;
    color: #000;
    /* padding: 5px 0;
    margin: 10px 0; */
    font-size: 14px;
}

.filter-button.active {
    font-weight: 600;
}

.brand-filters .filter-separator {
    color: #858992;
    font-size: 18px;
    margin: 0 18px;
    padding-bottom: 3px;
}

.brand-banner {
    width: 100%;
    height: 350px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}
.brand-banner-image {
    width: 100%;
    max-width: 1440px;
}

@media screen and (max-width: 768px) {
    .brand-banner {
        height: 91.15px;
    }
}

.brand-content {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px !important;
}

.brand-content .container {
    max-width: 1440px;
}

.brand-content .row {
    display: flex;
    flex-wrap: wrap;
}    

.brand-filter-container {
    width: 25%;
    border-right: 1px solid #858992;
    padding: 40px 20px 40px 40px;
}

.brand-filter-header {
    margin-bottom: 20px;
}

.brand-filter-content {
    margin-bottom: 20px;
}

.filter-item {
    display: flex;
    align-items: center;
    position: relative;
    padding-left: 28px;    
    cursor: pointer;    
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

    .filter-item input {
        position: absolute;
        opacity: 0;
        cursor: pointer;
        height: 0;
        width: 0;
    }

.checkmark {
    position: absolute; 
    left: 0;
    height: 20px;
    width: 20px;
    background-color: #fff;
    border: 1px #000 solid;
    border-radius: 3px;
}

.filter-item:hover input ~ .checkmark {
    background-color: #fff;
}

.filter-item input:checked ~ .checkmark {
    background-color: #fff;
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.filter-item input:checked ~ .checkmark:after {
    display: block;
}

.filter-item .checkmark:after {
    width: 15px;
    height: 15px;
    background-color: black;
    border-radius: 3px; 
    top: 2px;
    left: 2px;
}

.product-grid {
    width: 75%;
    padding: 50px 60.5px 50px 20px;
    position: relative;
}

.product-grid-loading {
   content: "Loading...";
    background: rgba(255, 255, 255, 0.8);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    display: none;
    margin:auto;
    color: black;
    font-size: 18px;
    font-weight: 500;
    align-items:center;
    justify-content:center;
}

.product-grid-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.product-grid-item {
    border-width: 1px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    display: flex;
    flex-direction: column;
    justify-content: end;                
    transition-property: color, background-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 300ms;
}

.product-grid-item:hover {
    cursor: pointer;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    border: none;
}

.product-grid-item-image {
    margin: 2px;
    overflow: hidden;
    height: 100%;
    min-height: 289px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.product-grid-item-image-src {
    object-fit: cover;
    object-position: center;    
}

.product-grid-item-content {
    padding: 16px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.product-grid-button-container {
    display: flex;
    justify-content: center;
    margin-top: 20px;    
/*    display: none;*/
}

.product-grid-button {    
    background-color: #000;
    color: #fff;
    font-weight: 500;
    padding: 8px 24px;
    border-radius: 94px;
    justify-content: center;
    align-items: center;
    transition-property: color, background-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;    
    transition-duration: 300ms;   
    margin: auto;
}

.product-grid-button:hover {
    box-shadow: 0px 2px 8px rgba(0,0,0,0.8);
}

@media screen and (max-width: 768px) {
    .brand-filter-container {
        width: 100%;
        border: none;
        padding: 0;
    }

    .brand-filter-header {
        height: 36px;
        padding: 6px 17px;
        border-bottom: 1px solid #858992;
        border-top: 1px solid #858992;
    }

    .brand-filter-content {
        display: none;
    }

    .product-grid {
        width: 100%;
        padding: 30px 20px;
    }

    .product-grid-container {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }        

    .product-grid-button-container {
        margin-top: 10px;
    }

    .product-grid-button {
        font-size: 12px;
    }

    .product-grid-item-image {
        min-height: 149px;
    }
}


.brand-content #product-filter-mobile {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100svw;
    height: 100vh;
    z-index: 2;
    padding: 1rem;
    background-color: var(--white);
    overflow: auto;
}

@media screen and (max-width: 768px) {
    .brand-content #product-filter-mobile.show {
        display: block;
    }

    .brand-content #product-filter-mobile.show .brand-filter-content {
        display: block;
    }
    
}

.</pre></body></html>