.shop-results {
    padding: 0px 72px 72px 72px; /* TEMP */
}

.shop-item {
    -ms-grid-rows: 1fr;
    -ms-grid-columns: 1fr;
    display: -ms-grid;
    display: grid;
    grid-template-columns: 2fr 4fr;
    grid-template-rows: 1fr;
    grid-column-gap: 16px;
    grid-row-gap: 24px;
    border-bottom: 1px solid #f2f2f2;
    margin-bottom: 12px;
    padding: 24px 0px;
}

.shop-item-content {
    -ms-grid-rows: 1fr;
    -ms-grid-columns: 1fr;
    display: -ms-grid;
    display: grid;
    grid-template-columns: 4fr 2fr;
}

.shop-item:last-child {
    border-bottom: none;
}

.shop-item-image {
    height: 150px;
}

/*
.shop-item-desc,
.shop-item-price-details {
    padding: 16px 0px;
}
*/

.shop-item-price-details {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.shop-item-tile {
    font-size: 16px;
    font-weight: 500;
    color: #222;
    margin-bottom: 8px;
}

.shop-item-sku {
    font-size: 13px;
    color: #6e6e73;
    margin-bottom: 8px;
}

.shop-item-features {
    list-style: none;
    color: #6e6e73;
    font-size: 13px;
    margin: 0px;
    padding: 0px;
    margin-bottom: 12px;
}

.shop-item-price {
    font-size: 24px;
    color: #222;
    font-weight: 600;
    margin-bottom: 0px;
    letter-spacing: -0.99px;
}

.shop-item-price-desc {
    color: #6e6e73;
    font-size: 14px;
    font-weight: 200;
}

.shop-filter-tools .section-headline {
    flex: 1;
}

.shop-filter-tools {
    display: flex;;
    justify-content: end;
    padding: 72px;
    
}

.shop-filter-tools .tools {
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: end;
    flex: 2;
}

@media (max-width: 744px) {
    .shop-filter-tools {
        padding: 24px;
        display: block;
    }
    .shop-filter-tools .section-headline {
        width: 100%;
        margin-bottom: 24px !important;
        text-align: right;
    }
    .shop-search {
        width: 100%;
    }
}

.shop-item-tag {
    background: #ffba09;
    padding: 4px 12px;
    border-radius: 6px;
    color: #222;
    font-size: 12px;
}

#shop-items-load {
    height: 60vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.shop-filter-panel {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 12px;
    background: #fff0;
    font-size: 16px;
    font-weight: 400;
    padding: 12px;
}

.shop-filter-panel .icon {
    font-size: 32px;
    color: #222;
}

.shop-filter-panel:hover {
    background: #fff0;
}

.shop-filter-attr-wrapper {
    background: #f7f7f7;
    padding: 24px;
    border-radius: 12px;
    margin: 0px 12px;
}

.shop-filter-attr-item {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    margin-bottom: 0px;
    margin-bottom: 12px;
    font-size: 14px;
    color: #222;
}

.shop-filter-attr-item:last-child {
    margin-bottom: 0px;
}

.shop-product-action {
    padding: 6px 12px !important;
    font-size: 14px !important;
}

.shop-wrapper {
    max-width: 1280px;
    margin: 0 auto;
}

.shop-search {
    height: 44px;
    width: 44px;
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f7f7f7;
    transition: width 0.4s ease, opacity 0.4s ease, padding 0.4s ease;
}

.shop-search .icon {
    font-size: 24px;
    color: #222;
}

.shop-search input {
    width: 100%;
    padding: 0px;
    box-shadow: none;
    background-color: #fff0;
    padding: 0px 12px;
}

.shop-search input:focus {
    background-color: #fff0;
}

.shop-search .icon:hover {
    cursor: pointer;
}


.shop-search.expanded {
    width: 80%;
    opacity: 1;
    padding: 6px 10px;
}

.shop-search.active {
    display: flex;
    align-items: center;
    box-shadow: inset 0 0 0 1px #8C8C8C;
}

.load-more-wrapper {
    display: flex;
    justify-content: center;
    margin: 72px 0px 0px 0px;
}

.shop-grid-view {
    -ms-grid-rows: 1fr;
    -ms-grid-columns: 1fr;
    display: -ms-grid;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 1fr;
    grid-column-gap: 16px;
    grid-row-gap: 24px;
}

.shop-grid-view .shop-item {
    border-bottom: none;
    display: flex !important;
    flex-direction: column !important;
    height: 100% !important;
    /* min-height: 575px; */
}

.shop-grid-view  .shop-item-image {
    min-height: 150px;
}

.shop-grid-view .shop-item-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

@media (min-width: 745px) {

}

@media (max-width: 744px) {

    .shop-filter-tools .laptop-only {
        display: none;
    }

    #shop-items {
        grid-template-columns: 1fr !important;
    }

    .shop-item {
        border-bottom: none;
        display: flex !important;
        flex-direction: column !important;
        height: 100% !important;
    }

    .shop-item  .shop-item-image {
        min-height: 150px;
    }

    .shop-item .shop-item-content {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        height: 100%;
    }

    .shop-results {
        padding: 24px !important;
    }
    .shop-preview-tag {
        margin-bottom: 24px !important;
        text-align: right;
        margin-top: -20px !important;
    }

}

.shop-preview-tag {
    background: #1C01FF;
    color: #fff !important;
    padding: 3px 12px;
    border-radius: 4px;
    font-size: 13px;
    margin: 6px 0px;
}

.shop-preview-tag a {
    color: #fff;
}

.shop-preview-tag a:hover {
    color: #fff !important;
    cursor: pointer;
    text-decoration: underline !important;
}
