.product-grid .banner-info,
.product-section .banner-info {
    background: #000;
    text-align: center;
    width: 100%;
    color: #fff;
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.25rem;
    padding: .5rem 2rem;
}

.product-grid .banner-info a,
.product-grid .banner-info a:hover,
.product-section .banner-info a,
.product-section .banner-info a:hover {
    text-decoration: none;
    color: #fff;
    font-size: .8rem;
}

.product-grid .grid-img {
    aspect-ratio: 1/1;
    object-fit: contain;
    max-width: 100%;
}

.product-grid .category-name {
    font-weight: 400;
    letter-spacing: .05rem;
    line-height: 1.125;
    font-size: 1.5rem;
    text-align: center;
    margin: 2rem 0 0.5rem;
    padding: 0 0 2rem;
    border-bottom: solid 1px lightgray;
    font-family: Oswald, sans-serif;
}

.product-grid ul {
    padding: 1rem;
    list-style: none;
}

.product-grid .grid-item {
    width: 100%;
}

.product-grid .grid-item:not(:first-child) {
    margin-top: 1.5rem;
}

.product-grid .content-wrapper {
    text-align: left;
    color: #1a1a1a;
    padding: 1rem;
    box-shadow: 0 2px 3px 1px #e6e6e6;
    width: 100%;
}

.product-grid .label a {
    font-weight: 400;
    letter-spacing: 0.05rem;
    line-height: 1.125;
    font-size: 1.25rem;
    margin: 1rem 0;
    text-decoration: none;
    color: #000;
    display: block;
    font-family: Oswald, sans-serif;
    word-break: break-word;
}

.product-grid .label a:hover {
    text-decoration: none;
    color: #000;
}

.product-grid .label span {
    font-size: 1rem;
    font-weight: 700;
}

.product-grid .category-sort select {
    border-radius: 0;
    font-size: .9rem;
    color: #000000;
    outline: 0;
    width: 100%;
    height: auto;
    background-color: #ffffff;
    -webkit-appearance: none;
    appearance: none;
    border: 1px solid #d9d9d9;
    margin: 0.3rem 0 0.3rem 0;
    padding: 0.875em 3em 0.875em 0.875em;
}

.product-grid .category-sort select:focus {
    border-color: #000000;
    outline: none;
}

.product-grid .category-sort {
    padding: 1rem;
    display: flex;
    flex-direction: column;
}

.product-grid .dropdown-label {
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.product-grid .dropdown-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.product-grid .dropdown__arrow {
    position: absolute;
    right: 1rem;
    pointer-events: none;
}

.product-grid .dropdown__arrow svg {
    width: 0.75rem;
    height: 0.75rem;
    display: block;
}

.pagination .button--outlined {
    background: #f7f7f7;
    border: 1px solid #000;
    color: #000;
}

.pagination .button--outlined:disabled {
    opacity: .2;
}

.pagination .button--secondary {
    background-color: #000;
}

.pagination .button--secondary:hover {
    background-color: #000;
}

.pagination .button--outlined:active,
.pagination .button--outlined:hover,
.pagination .button--outlined:focus {
    background: #C5C5C5;
    color: #000;
}

.pagination select {
    border: 1px solid #000;
    border-radius: 5px;
    height: 36px;
    width: auto;
    padding: 0.5rem;
}

@media only screen and (max-width: 480px) {
    div.pagination {
        display: block;
        text-align: center;
    }

    .pagination .button--icon {
        display: inline;
    }

    .pagination .aligner {
        display: inline;
    }

    .pagination .aligner.results {
        display: block;
        margin: 1rem 0;
    }

    .pagination select {
        border: 1px solid #000;
        border-radius: 5px;
        height: auto;
    }
}

@media only screen and (min-width: 480px) {
    .product-grid ul {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
        align-items: end;
    }

    .product-grid .grid-item {
        margin-top: 0;
        width: 100%;
        height: 100%;
    }

    .product-grid .content-wrapper {
        height: 100%;
    }
}

@media only screen and (min-width: 768px) {
    .product-grid ul {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 2rem;
    }

    .category-name {
        font-size: 2rem;
    }

    .product-grid .category-sort {
        flex-direction: row;
        align-items: center;
        justify-content: flex-end;
    }

    .product-grid .category-sort select {
        width: 270px;
        font-size: 1rem;
    }

    .product-grid .dropdown-label {
        margin-right: 1rem;
    }
}

@media only screen and (min-width: 1200px) {
    .product-grid ul {
        grid-template-columns: 1fr 1fr 1fr 1fr;
    }
}