div.off-canvas-wrapper {
    max-width: unset;
}

#page {
    margin: 0 auto;
    padding: 0 20px;
}

.product-grid-item-title {
    font-size: 16px;
    font-weight: bold;
    padding: 10px;
}

.product-grid-item-tags {
    font-size: 12px;
    padding: 10px;
}

.product-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2vw;
    margin: 0 auto 20px;
    /*max-width: 1440px;*/
}

.product-grid-item {
    max-width: 372px;
    border: 1px solid #ccc;
    border-radius: 5px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.product-grid-item img.product-image {
    height: 300px;
    object-fit: cover;
    object-position: center;
}


.product-grid h3 {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    font-weight: 400;
}


.product-grid-item > .product-content {
    padding: 5px 15px 0 15px;
    color: black;
    font-size: 12px;
    position: relative;
    top:10px;
}

.product-grid-item > .product-content > .product-description {
    display: none;
    /*display: -webkit-box;*/
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;

}

.category-badge {
    background-color: White;
    color: #0A0A0A;
    padding: 5px 10px 5px 5px;
    font-size: 12px;
    position: absolute;
    top: 0;
    left: 0;
    border-bottom-right-radius: 8px;
    white-space: nowrap;
    cursor: pointer;
}

.category-badge.p-cat-all {
    /*background-color: #c5258f;*/
    background-color: #ee85c488;
    color: black;
}

.category-badge.p-cat-1765 { /* Gift Certificates */
    /*background-color: #D700FF;*/
    /*color: white;*/
    background-color: #efbbde88;
    color: #444444;
}

.category-badge.p-cat-2165 { /* Business Owned Products */
    background-color: #80808088;
    color: white;
}

.category-badge.p-cat-1898, /* Intentionalist Merch */
.category-badge.p-cat-2171 {
    background-color: #c5258f88;
    color: white;
}

.category-badge.p-cat-2257 { /* Intentionalist Cards */
    background-color: #FFD70088;
    color: black;
}

.product-grid-item > .buy-line {
    /*display: flex;*/
    /*position: absolute;*/
    /*bottom: 0;*/
    padding: 10px 15px;
    width: 100%;
    /*justify-content: space-between;*/
    /*align-items: end;*/
    font-size: 18px;
    float: right;
    text-align: right;
}

.product-grid-item > .buy-line > a {
    margin: 0;
    background-color: white;
    line-height: 40px;
    padding: 0 10px;
}

.product-grid-item > .buy-line > .price {
    font-weight: 500;
    /*display: flex;*/
    /*align-items: center;*/
    padding-right: 5px;

}

.product-grid-item .tags {
    display: flex;
    flex-grow: 1;
    width: 100%;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: flex-start;
    align-items: start;
    margin-bottom: 10px;
    height: 60px;
}

.product-grid-item .tag-label-link {
    font-size: 11px;
    font-family: 'Roboto', sans-serif;
    width: unset;
    height: unset;
    padding: 5px;
    line-height: 1;
    text-align: center;
    margin: 4px;
    border-radius: 3px;
    border-width: 1px;
    font-weight: normal;
}

#search-form {
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 20px;
}

#search-form input, #search-form select {
    height: 40px;
    margin-bottom: 0;
    border: 1px solid #aaa;
    background-color: white;
}

#search-form > div {
    max-width: 370px;
}

#search-form li.select2-search {
    display: none;
}

.select2-selection--multiple ul {
    min-height: 32px;
}

.select2-selection--multiple {
    overflow: hidden !important;
    height: auto !important;
}

#searchResultInfo {

    color: #0A0A0A;
    width: 100%;
    text-align: center;
    margin: 10px 0;
}


@media (max-width: 600px) {
    #search-form {
        flex-direction: column;
        align-items: flex-start;
    }

    #search-form div {
        width: 100%;
        max-width: 100%;
    }

    .product-grid {
        gap: 5vw;
    }

    .product-grid-item .tags {
        height: auto;
    }

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

#search {
    width: 300px;
    height: 40px;
    border: 1px solid #ccc;
    border-radius: 5px;
    padding: 0 10px;
    font-size: 16px;
}