html {
    scroll-behavior: smooth;
}

.store-listing-wrap section {
    padding: 12px !important;
    border-bottom:1px solid #ddd;
}

.store-listing-wrap {
    margin-top: 60px;
    padding-bottom: 60px;
}

.store-layout {
    display: grid;
    grid-template-columns: 280px minmax(0, 1fr);
    gap: 28px;
    align-items: start;
}

.store-sidebar {
    position: sticky;
    top: 110px;
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 14px;
    padding: 18px;
    box-shadow: 0 6px 18px rgba(0,0,0,.04);
}

.store-sidebar-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 16px;
}

.filter-group {
    margin-bottom: 16px;
}

.filter-group label {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: #333;
    margin-bottom: 6px;
}

.filter-group select,
.filter-group input[type="text"] {
    width: 100%;
    height: 42px;
    border: 1px solid #d9d9d9;
    border-radius: 8px;
    padding: 0 10px;
    background: #fff;
}

.filter-check {
    display: flex;
    gap: 8px;
    align-items: center;
    font-size: 14px;
    margin: 8px 0;
}

.filter-check input {
    margin: 0;
}

.clear-filters-btn {
    width: 100%;
    border: 1px solid #ddd;
    background: #f8f8f8;
    border-radius: 8px;
    padding: 9px 10px;
    font-weight: 700;
    cursor: pointer;
}

.store-toolbar {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 220px;
    gap: 14px;
    margin-bottom: 18px;
    align-items: center;
}

.store-search {
    height: 48px;
    border: 1px solid #d9d9d9;
    border-radius: 12px;
    padding: 0 14px;
    font-size: 15px;
    width: 100%;
}

.store-sort {
    height: 48px;
    border: 1px solid #d9d9d9;
    border-radius: 12px;
    padding: 0 12px;
    background: #fff;
    width: 100%;
}

.store-results-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 18px;
    color: #666;
    font-size: 14px;
}

.store-section {
    margin-bottom: 42px;
    scroll-margin-top: 95px;
}

.store-section-header {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    align-items: flex-end;
    margin-bottom: 16px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.store-section-header h3 {
    margin: 0;
    font-size: 24px;
    font-weight: 800;
}

.store-section-header small {
    display: block;
    color: #666;
    font-size: 14px;
    margin-top: 4px;
}

.store-section-link {
    white-space: nowrap;
    font-weight: 700;
    font-size: 13px;
}

.series-header {
    margin: 18px 0 12px;
}

.series-header h4 {
    margin: 0;
    font-size: 18px;
    font-weight: 800;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(215px, 1fr));
    gap: 18px;
}

.product-card {
    background: #fff;
    border: 1px solid #e7e7e7;
    border-radius: 14px;
    overflow: hidden;
    transition: all .18s ease;
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

.product-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(0,0,0,.08);
}

.product-image {
    position: relative;
    display: block;
    background: #fafafa;
    padding: 16px;
    height: 210px;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.product-body {
    padding: 14px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.product-title {
    font-size: 15px;
    font-weight: 800;
    line-height: 1.35;
    margin: 0 0 8px;
}

.product-title a {
    color: #1f1f1f;
}

.product-desc {
    color: #666;
    font-size: 13px;
    line-height: 1.35;
    margin: 0 0 10px;
    min-height: 36px;
}

.product-price-row {
    margin-top: auto;
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.product-price {
    font-size: 18px;
    font-weight: 900;
}

.product-msrp {
    color: #888;
    font-size: 13px;
    text-decoration: line-through;
}

.product-tags {
    position: absolute;
    top: 10px;
    left: 10px;
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    z-index: 2;
}

.store-tag {
    display: inline-flex;
    align-items: center;
    border-radius: 4px;
    padding: 3px 7px;
    font-size: 10px;
    font-weight: 800;
    background: #1f6feb;
    color: #fff;
    line-height: 1;
}

.store-tag-success { background: #198754; }
.store-tag-danger { background: #dc3545; }
.store-tag-warning { background: #ffc107; color: #222; }
.store-tag-info { background: #0dcaf0; color: #222; }
.store-tag-secondary { background: #6c757d; }
.store-tag-dark { background: #212529; }
.store-tag-light { background: #f8f9fa; color: #222; border: 1px solid #ddd; }

.product-card.is-hidden,
.store-section.is-hidden,
.series-block.is-hidden {
    display: none !important;
}

.no-results {
    display: none;
    padding: 28px;
    border: 1px dashed #ccc;
    border-radius: 14px;
    text-align: center;
    color: #666;
    background: #fff;
}

.no-results.is-visible {
    display: block;
}

.category-check-list {

    overflow-y: auto;
    border: 1px solid #e2e2e2;
    border-radius: 8px;
    padding: 8px;
    background: #fff;
}

.category-check {
    margin: 6px 0;
    font-size: 13px;
}

.category-check span {
    line-height: 1.25;
}

.category-all {
    font-size: 14px;
}

.category-all strong {
    font-weight: 800;
}

.store-anchor {
    display: block;
    height: 1px;
    margin-top: -90px;
    padding-top: 90px;
    visibility: hidden;
}

@media (max-width: 991px) {
    .store-layout {
        grid-template-columns: 1fr;
    }

    .store-sidebar {
        position: relative;
        top: auto;
    }

    .store-toolbar {
        grid-template-columns: 1fr;
    }
}