/* Custom WooCommerce catalogue. Scoped to .am-shop-page to preserve other pages. */
.am-shop-page {
    padding: 30px 0 56px;
    color: #282828;
}

.am-shop-container {
    width: min(calc(100% - 40px), 1200px);
}

.am-shop-breadcrumbs {
    margin-bottom: 22px;
}

.am-shop-breadcrumbs .woocommerce-breadcrumb {
    margin: 0;
    color: #686868;
    font-size: 18px;
    line-height: 1.4;
    text-align: center;
}

.am-shop-breadcrumbs .woocommerce-breadcrumb a {
    color: #282828;
}

.am-shop-breadcrumbs .woocommerce-breadcrumb span {
    display: inline-block;
    margin: 0 9px;
    color: #3E5338;
}

.am-shop-title {
    margin: 0 0 30px;
    color: #3E5338;
    font-size: 32px;
    font-weight: 600;
    line-height: 1.2;
    text-align: center;
}

.am-shop-categories {
    min-height: 52px;
    display: flex;
    align-items: center;
    gap: 9px;
    overflow-x: auto;
    margin-bottom: 24px;
    border-radius: 4px;
    padding: 0 16px;
    background: #F2F2F2;
    scrollbar-width: none;
}

.am-shop-categories::-webkit-scrollbar {
    display: none;
}

.am-shop-categories a {
    position: relative;
    flex: 0 0 auto;
    padding: 18px 0 15px;
    color: #282828;
    font-size: 18px;
    font-weight: 500;
    line-height: 1;
    text-transform: uppercase;
    white-space: nowrap;
}

.am-shop-categories a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 11px;
    height: 1px;
    background: transparent;
}

.am-shop-categories a:hover,
.am-shop-categories a.is-active {
    color: #3E5338;
    font-weight: 600;
}

.am-shop-categories a:hover::after,
.am-shop-categories a.is-active::after {
    background: #3E5338;
}

.am-shop-categories__separator {
    width: 1px;
    height: 20px;
    flex: 0 0 1px;
    background: #A8AAA6;
}

.am-shop-layout {
    display: grid;
    grid-template-columns: minmax(0, 360px) minmax(0, 810px);
    gap: 30px;
    align-items: stretch;
}

.am-shop-sidebar {
    width: 360px;
    min-width: 0;
    align-self: stretch;
    box-sizing: border-box;
    border-right: 1px solid #A8AAA6;
    padding-right: 30px;
}

.am-shop-filter-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.am-shop-filter-head h2 {
    margin: 0;
    color: #3E5338;
    font-size: 24px;
    font-weight: 600;
    line-height: 1.2;
}

.am-shop-mobile-controls {
    display: none;
}

.am-shop-filter-close,
.am-shop-filter-toggle {
    display: none;
}

.am-shop-filter-group {
    border-bottom: 0;
}

.am-shop-filter-group > summary {
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 10px 0;
    color: #282828;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.25;
    cursor: pointer;
    list-style: none;
}

.am-shop-filter-group > summary::-webkit-details-marker {
    display: none;
}

.am-shop-filter-chevron {
    width: 9px;
    height: 9px;
    flex: 0 0 9px;
    border-right: 1.5px solid #3E5338;
    border-bottom: 1.5px solid #3E5338;
    transform: rotate(45deg) translate(-2px, -2px);
    transition: transform .2s ease;
}

.am-shop-filter-group[open] .am-shop-filter-chevron {
    transform: rotate(225deg) translate(-1px, -1px);
}

.am-shop-filter-panel {
    padding: 0 0 10px;
}

.am-shop-filter-options {
    display: grid;
    gap: 10px;
}

.am-shop-checkbox {
    display: flex;
    align-items: center;
    gap: 9px;
    color: #5E5E5E;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.25;
    cursor: pointer;
}

.am-shop-checkbox input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.am-shop-checkbox__box {
    width: 22px;
    height: 22px;
    flex: 0 0 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #686868;
    border-radius: 4px;
    background: #FFFFFF;
}

.am-shop-checkbox input:checked + .am-shop-checkbox__box::after {
    content: "";
    width: 11px;
    height: 6px;
    border-left: 2px solid #3E5338;
    border-bottom: 2px solid #3E5338;
    transform: rotate(-45deg) translate(1px, -1px);
}

.am-shop-price-filter > summary {
    min-height: 40px;
}

.am-shop-price-range {
    position: relative;
    height: 28px;
    margin: 4px 0 12px;
}

.am-shop-price-track {
    position: absolute;
    top: 12px;
    left: 0;
    right: 0;
    height: 6px;
    border-radius: 8px;
    background: linear-gradient(
        to right,
        #D7DBD5 0 var(--am-range-start),
        #3E5338 var(--am-range-start) var(--am-range-end),
        #D7DBD5 var(--am-range-end) 100%
    );
}

.am-shop-price-range input[type="range"] {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 28px;
    margin: 0;
    padding: 0;
    appearance: none;
    background: transparent;
    pointer-events: none;
}

.am-shop-price-range input[type="range"]::-webkit-slider-thumb {
    width: 14px;
    height: 14px;
    border: 1px solid #3E5338;
    border-radius: 50%;
    appearance: none;
    background: #FFFFFF;
    cursor: pointer;
    pointer-events: auto;
}

.am-shop-price-range input[type="range"]::-moz-range-thumb {
    width: 14px;
    height: 14px;
    border: 1px solid #3E5338;
    border-radius: 50%;
    background: #FFFFFF;
    cursor: pointer;
    pointer-events: auto;
}

.am-shop-price-inputs {
    display: grid;
    grid-template-columns: 1fr 1fr auto;
    gap: 12px;
    align-items: end;
}

.am-shop-price-inputs label {
    display: grid;
    grid-template-columns: auto 72px;
    gap: 8px;
    align-items: center;
    color: #686868;
    font-size: 14px;
}

.am-shop-price-inputs input {
    width: 72px;
    height: 44px;
    border: 1px solid #686868;
    border-radius: 4px;
    padding: 8px;
    color: #686868;
    font-size: 14px;
    text-align: center;
    outline: none;
}

.am-shop-price-inputs input:focus {
    border-color: #3E5338;
}

.am-shop-currency {
    padding-bottom: 11px;
    color: #686868;
    font-size: 16px;
}

.am-shop-filter-actions {
    display: none;
    gap: 10px;
    margin-top: 22px;
}

.am-shop-filter-actions .am-button,
.am-shop-reset {
    min-height: 48px;
    border-radius: 4px;
    padding: 13px 18px;
    font-size: 14px;
    font-weight: 600;
}

.am-shop-reset {
    border: 1px solid #3E5338;
    background: #FFFFFF;
    color: #3E5338;
    cursor: pointer;
}

.am-shop-content {
    min-width: 0;
}

.am-shop-toolbar {
    min-height: 38px;
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    margin-bottom: 14px;
}

.am-shop-sort {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #9A9A9A;
    font-size: 14px;
    line-height: 1;
}

.am-shop-sort strong {
    color: #282828;
    font-size: 14px;
    font-weight: 600;
}

.am-shop-sort button {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    border: 0;
    padding: 0;
    background: transparent;
    color: #9A9A9A;
    font-size: 14px;
    cursor: pointer;
}

.am-shop-sort button.is-active {
    color: #3E5338;
    font-weight: 600;
}

.am-shop-sort-check {
    visibility: hidden;
    font-size: 14px;
}

.am-shop-sort button.is-active .am-shop-sort-check {
    visibility: visible;
}

.am-shop-loading-label {
    margin-right: auto;
    color: #686868;
    font-size: 13px;
}

.am-shop-results {
    position: relative;
    transition: opacity .2s ease;
}

.am-shop-results.is-loading {
    opacity: .45;
    pointer-events: none;
}

.am-shop-product-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.am-shop-page .am-product-card {
    min-height: 0;
    padding: 12px;
}

.am-shop-page .am-product-card__media {
    height: 218px;
}

.am-shop-page .am-product-card__media > a {
    padding: 12px;
}

.am-shop-page .am-product-card__body {
    min-height: 196px;
    padding-top: 14px;
}

.am-shop-page .am-product-card__title {
    min-height: 40px;
    font-size: 15px;
}

.am-shop-page .am-product-stars {
    font-size: 18px;
}

.am-shop-page .am-product-card__rating {
    gap: 5px;
    margin-top: 7px;
}

.am-shop-page .am-product-card__rating small {
    font-size: 11px;
}

.am-shop-page .am-product-card__price {
    margin-top: 13px;
    font-size: 17px;
}

.am-shop-page .am-product-card__button {
    min-height: 48px;
    margin-top: 14px;
    padding: 13px 10px;
    font-size: 14px;
}

.am-shop-page .am-product-card__button.is-in-cart,
.am-shop-page .am-product-card__button.added,
.am-shop-seo__toggle {
    border-color: transparent;
    background: rgba(62, 83, 56, .2);
    color: #3E5338;
}

.am-shop-page .added_to_cart {
    display: none !important;
}

.am-shop-empty {
    grid-column: 1 / -1;
    min-height: 240px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #E5E7EB;
    border-radius: 4px;
    padding: 30px;
    color: #686868;
    text-align: center;
}

.am-shop-results-footer {
    min-height: 46px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-top: 44px;
}

.am-shop-view-count {
    color: #A4A4A4;
    font-size: 14px;
}

.am-shop-pagination {
    display: flex;
    align-items: center;
    gap: 8px;
}

.am-shop-pagination button {
    min-width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 4px;
    padding: 0 8px;
    background: transparent;
    color: #282828;
    font-size: 16px;
    cursor: pointer;
}

.am-shop-pagination button.is-active {
    background: #3E5338;
    color: #FFFFFF;
}

.am-shop-pagination button:disabled {
    opacity: .35;
    cursor: default;
}

.am-shop-pagination svg {
    width: 22px;
    height: 16px;
    fill: none;
    stroke: #3E5338;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.am-shop-pagination__ellipsis {
    min-width: 22px;
    color: #282828;
    font-size: 16px;
    text-align: center;
}

.am-shop-seo {
    position: relative;
    margin-top: 44px;
    border-top: 1px solid #A8AAA6;
    padding-top: 38px;
}

.am-shop-seo h2 {
    margin: 0 0 22px;
    color: #3E5338;
    font-size: 24px;
    font-weight: 600;
    line-height: 1.3;
    text-transform: uppercase;
}

.am-shop-seo__content {
    position: relative;
    max-height: 145px;
    overflow: hidden;
    color: #686868;
    font-size: 16px;
    line-height: 1.5;
    transition: max-height .35s ease;
}

.am-shop-seo__content::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 54px;
    background: linear-gradient(to bottom, rgba(255,255,255,0), #FFFFFF 80%);
    pointer-events: none;
    transition: opacity .25s ease;
}

.am-shop-seo.is-open .am-shop-seo__content {
    max-height: 900px;
}

.am-shop-seo.is-open .am-shop-seo__content::after {
    opacity: 0;
}

.am-shop-seo__content p {
    margin: 0 0 16px;
}

.am-shop-seo__toggle {
    min-width: 300px;
    min-height: 56px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-top: 22px;
    border: 0;
    border-radius: 4px;
    padding: 16px 24px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
}

.am-shop-seo__toggle svg {
    width: 14px;
    height: 9px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.5;
    transition: transform .25s ease;
}

.am-shop-seo.is-open .am-shop-seo__toggle svg {
    transform: rotate(180deg);
}

@media (max-width: 1100px) {
   .am-shop-layout {
        grid-template-columns: 300px minmax(0, 1fr);
        gap: 24px;
    }

    .am-shop-sidebar {
        width: 300px;
        padding-right: 24px;
    }

    .am-shop-product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    .am-shop-page {
        padding: 24px 0 40px;
    }

    .am-shop-container {
        width: min(calc(100% - 40px), 1200px);
    }

    .am-shop-breadcrumbs,
    .am-shop-categories {
        display: none;
    }

    .am-shop-title {
        margin-bottom: 18px;
        color: rgba(63, 70, 54, 1);
        font-size: 24px;
        line-height: 1.2;
    }

    .am-shop-mobile-controls {
        position: relative;
        z-index: 20;
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
        margin-bottom: 20px;
    }

    .am-shop-filter-toggle,
    .am-shop-mobile-sort > summary {
        width: 100%;
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        margin: 0;
        border: 0;
        border-radius: 4px;
        padding: 10px 12px;
        background: #D9DFD7;
        color: #3F4636;
        font-size: 13px;
        font-weight: 500;
        line-height: 1;
        text-transform: uppercase;
        cursor: pointer;
    }

    .am-shop-mobile-sort {
        position: relative;
    }

    .am-shop-mobile-sort > summary {
        list-style: none;
    }

    .am-shop-mobile-sort > summary::-webkit-details-marker {
        display: none;
    }

    .am-shop-mobile-control-chevron {
        width: 8px;
        height: 8px;
        flex: 0 0 8px;
        border-right: 1px solid currentColor;
        border-bottom: 1px solid currentColor;
        transform: rotate(45deg) translate(-2px, -2px);
        transition: transform .2s ease;
    }

    .am-shop-mobile-sort[open] .am-shop-mobile-control-chevron {
        transform: rotate(225deg) translate(-1px, -1px);
    }

    .am-shop-mobile-sort__menu {
        position: absolute;
        z-index: 30;
        top: calc(100% + 2px);
        right: 0;
        width: 100%;
        min-width: 150px;
        overflow: hidden;
        border-radius: 0 0 4px 4px;
        background: #FFFFFF;
        box-shadow: 0 8px 20px rgba(40, 40, 40, .14);
    }

    .am-shop-mobile-sort__menu button {
        width: 100%;
        min-height: 42px;
        display: flex;
        align-items: center;
        gap: 7px;
        border: 0;
        padding: 10px 12px;
        background: #FFFFFF;
        color: #A0A0A0;
        font-size: 14px;
        text-align: left;
        cursor: pointer;
    }

    .am-shop-mobile-sort__menu button.is-active {
        color: #282828;
    }

    .am-shop-mobile-sort__menu .am-shop-sort-check {
        width: 12px;
        visibility: hidden;
        color: #3E5338;
    }

    .am-shop-mobile-sort__menu button.is-active .am-shop-sort-check {
        visibility: visible;
    }

    .am-shop-layout {
        display: block;
    }

    .am-shop-sidebar {
        width: auto;
        position: fixed;
        z-index: 10001;
        inset: 0;
        visibility: hidden;
        overflow-y: auto;
        border: 0;
        padding: 0;
        background: rgba(0,0,0,.35);
        opacity: 0;
        transition: visibility .25s ease, opacity .25s ease;
    }

    .am-shop-sidebar.is-open {
        visibility: visible;
        opacity: 1;
    }

    .am-shop-filter-form {
        width: min(92vw, 420px);
        min-height: 100%;
        margin-left: auto;
        padding: 22px 20px 32px;
        background: #FFFFFF;
        transform: translateX(100%);
        transition: transform .3s ease;
    }

    .am-shop-sidebar.is-open .am-shop-filter-form {
        transform: translateX(0);
    }

    .am-shop-filter-head {
        margin-bottom: 12px;
    }

    .am-shop-filter-close {
        width: 40px;
        height: 40px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border: 0;
        background: transparent;
        color: #3E5338;
        font-size: 34px;
        cursor: pointer;
    }

    .am-shop-filter-actions {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .am-shop-toolbar {
        min-height: 0;
        margin: 0;
    }

    .am-shop-toolbar .am-shop-sort {
        display: none;
    }

    .am-shop-loading-label {
        margin-bottom: 10px;
    }

    .am-shop-product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
    }

    .am-shop-page .am-product-card {
        padding: 8px;
    }

    .am-shop-page .am-product-card__media {
        height: 160px;
    }

    .am-shop-page .am-product-card__body {
        min-height: 184px;
        padding-top: 10px;
    }

    .am-shop-page .am-product-card__title {
        min-height: 39px;
        font-size: 14px;
        line-height: 1.35;
    }

    .am-shop-page .am-product-stars {
        font-size: 15px;
    }

    .am-shop-page .am-product-card__rating {
        display: block;
        white-space: normal;
    }

    .am-shop-page .am-product-card__rating small {
        display: block;
        margin-top: 5px;
        font-size: 10px;
    }

    .am-shop-page .am-product-card__price {
        font-size: 16px;
    }

    .am-shop-page .am-product-card__button {
        min-height: 46px;
        padding: 12px 6px;
        font-size: 12px;
    }

    .am-shop-results-footer {
        flex-direction: column;
        align-items: stretch;
        margin-top: 24px;
    }

    .am-shop-view-count {
        font-size: 13px;
        text-align: center;
    }

    .am-shop-pagination {
        justify-content: center;
    }

    .am-shop-seo {
        margin-top: 32px;
        padding-top: 28px;
    }

    .am-shop-seo h2 {
        font-size: 20px;
        line-height: 1.35;
    }

    .am-shop-seo__content {
        max-height: 155px;
        font-size: 14px;
    }

    .am-shop-seo__toggle {
        width: 100%;
        min-width: 0;
        font-size: 13px;
    }
}

@media (max-width: 390px) {
    .am-shop-container {
        width: min(calc(100% - 32px), 1200px);
    }

    .am-shop-product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
    }

    .am-shop-page .am-product-card {
        padding: 6px;
    }

    .am-shop-page .am-product-card__media {
        height: 150px;
    }

    .am-shop-page .am-product-card__title {
        font-size: 13px;
    }

    .am-shop-page .am-product-card__rating {
        display: block;
    }

    .am-shop-page .am-product-card__rating small {
        display: block;
        margin-top: 4px;
    }

    .am-shop-page .am-product-card__button {
        font-size: 11px;
    }
}

/* Mobile archive breadcrumb refinement */
@media (max-width: 767px) {
    .am-shop-breadcrumbs {
        display: block;
        margin: 0 0 12px;
        color: #686868;
        font-size: 10px;
        line-height: 1.35;
        text-align: center;
    }
    .am-shop-breadcrumbs .woocommerce-breadcrumb { margin: 0; }
    .am-shop-breadcrumbs .woocommerce-breadcrumb span { margin: 0 4px; }
}

/* v6.8 — complete filter catalogue + supplied empty-results state */
.am-shop-active-filters {
    min-height: 0;
}
.am-shop-active-filter-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0 0 14px;
}
.am-shop-active-filter {
    min-height: 30px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border: 0;
    border-radius: 4px;
    padding: 6px 10px;
    background: #F2F2F2;
    color: #282828;
    font-family: inherit;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.2;
    cursor: pointer;
}
.am-shop-active-filter > span:first-child {
    font-size: 18px;
    line-height: 1;
}

.am-shop-filter-stars {
    display: inline-flex;
    color: #F5A623;
    font-size: 16px;
    letter-spacing: 1px;
    line-height: 1;
    white-space: nowrap;
}
.am-shop-filter-stars > span {
    color: #E5E7EB;
}
.am-shop-checkbox--rating {
    align-items: center;
}

.am-shop-filter-group[data-filter-group="pa_health_need"] .am-shop-filter-options {
    max-height: 370px;
    overflow-y: auto;
    padding-right: 8px;
    scrollbar-width: thin;
    scrollbar-color: #3E5338 #F2F2F2;
}
.am-shop-filter-group[data-filter-group="pa_health_need"] .am-shop-filter-options::-webkit-scrollbar {
    width: 4px;
}
.am-shop-filter-group[data-filter-group="pa_health_need"] .am-shop-filter-options::-webkit-scrollbar-track {
    background: #F2F2F2;
    border-radius: 4px;
}
.am-shop-filter-group[data-filter-group="pa_health_need"] .am-shop-filter-options::-webkit-scrollbar-thumb {
    background: #3E5338;
    border-radius: 4px;
}

.am-shop-empty-state {
    grid-column: 1 / -1;
    min-height: 560px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 14px 20px 50px;
    text-align: center;
}
.am-shop-empty-state__image {
    width: 164px;
    height: 156px;
    display: block;
    object-fit: contain;
    margin: 0 auto 18px;
}
.am-shop-empty-state h2 {
    margin: 0 0 10px;
    color: #3E5338;
    font-size: 32px;
    font-weight: 600;
    line-height: 1.15;
}
.am-shop-empty-state p {
    max-width: 640px;
    margin: 0;
    color: #282828;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.35;
}
.am-shop-empty-state__reset {
    width: 340px;
    min-height: 64px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 34px;
    border: 0;
    border-radius: 4px;
    padding: 16px 24px;
    background: #3E5338;
    color: #FFFFFF;
    font-family: inherit;
    font-size: 18px;
    font-weight: 500;
    line-height: 1;
    text-transform: uppercase;
    cursor: pointer;
}
.am-shop-empty-state__reset > span {
    font-size: 22px;
    font-weight: 300;
    line-height: 1;
}

.am-shop-results-footer[hidden] {
    display: none !important;
}

@media (max-width: 767px) {
    .am-shop-active-filter-list {
        gap: 6px;
        margin-bottom: 12px;
    }
    .am-shop-active-filter {
        min-height: 28px;
        padding: 5px 8px;
        font-size: 12px;
    }
    .am-shop-empty-state {
        min-height: 0;
        padding: 20px 0 22px;
    }
    .am-shop-empty-state__image {
        width: 88px;
        height: 84px;
        margin-bottom: 16px;
    }
    .am-shop-empty-state h2 {
        margin-bottom: 14px;
        font-size: 20px;
        line-height: 1.2;
    }
    .am-shop-empty-state p {
        max-width: 330px;
        font-size: 16px;
        line-height: 1.3;
    }
    .am-shop-empty-state__reset {
        width: 100%;
        min-height: 52px;
        margin-top: 24px;
        padding: 14px 16px;
        font-size: 16px;
    }
}

/* v6.11 — exact catalogue empty state + complete filter sidebar */
.am-shop-empty-state {
    width: 100%;
    min-height: 560px;
    box-sizing: border-box;
}
.am-shop-empty-state__image {
    filter: none !important;
}
.am-shop-empty-state__reset[hidden] {
    display: none !important;
}
.am-shop-filter-options {
    scrollbar-width: thin;
    scrollbar-color: #3E5338 #F2F2F2;
}
.am-shop-filter-options::-webkit-scrollbar { width: 4px; }
.am-shop-filter-options::-webkit-scrollbar-track { background: #F2F2F2; border-radius: 4px; }
.am-shop-filter-options::-webkit-scrollbar-thumb { background: #3E5338; border-radius: 4px; }

/* The design keeps long groups compact instead of making the whole page
   unnecessarily tall. */
.am-shop-filter-group[data-filter-group="pa_health_need"] .am-shop-filter-options,
.am-shop-filter-group[data-filter-group="pa_health_program"] .am-shop-filter-options {
    max-height: 370px;
    overflow-y: auto;
    padding-right: 8px;
}

@media (max-width: 767px) {
    .am-shop-empty-state {
        width: 100%;
        min-height: 0;
        padding-top: 18px;
        padding-bottom: 22px;
    }
    .am-shop-empty-state__image {
        width: 88px;
        height: auto;
    }
}
