.ast-container{
    padding: 0 !important;
}
.supermarket-page {
    width: 100%;
    overflow-x: hidden;
}

.supermarket-hero {
    width: 100vw;
    min-height: clamp(410px, 28.8vw, 500px);
    margin-left: calc(-50vw + 50%);
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #0d3b18;
    background-image: url('../images/supermarket/supermarket');
    background-position: center;
    background-size: cover;
    color: #ffffff;
    overflow: visible;
}

.supermarket-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, .22) 0%, rgba(0, 0, 0, .12) 50%, rgba(0, 0, 0, .2) 100%);
    z-index: 1;
}

.supermarket-hero::after {
    content: "";
    position: absolute;
    right: -18rem;
    bottom: -11rem;
    width: 42rem;
    height: 42rem;
    background-image: url("../icons/SVG/LogoBanner_1.svg");
    background-repeat: no-repeat;
    background-position: right bottom;
    background-size: contain;
  
    pointer-events: none;
    z-index: 2;
}

.supermarket-hero__inner {
    width: min(100% - 2rem, 960px);
    position: relative;
    z-index: 3;
    display: flex;
    justify-content: center;
    transform: translateY(88px);
}

.supermarket-hero__panel {
    position: relative;
    z-index: 2;
    width: min(100%, 780px);
    text-align: center;
}

.supermarket-hero__title {
    margin: 0 0 .72rem;
    color: #ffffff;
    font-size: clamp(2rem, 2.45vw, 2.55rem);
    font-weight: 800;
    line-height: 1.05;
    text-shadow: 0 2px 12px rgba(0, 0, 0, .28);
}

.supermarket-hero__box {
    width: min(90%, 730px);
    margin: 0 auto;
    padding: 1rem clamp(1.7rem, 2.4vw, 2.55rem) 1.25rem;
    border-radius: 20px;
    background: rgba(184, 221, 67, .72);
    backdrop-filter: blur(1px);
}

.supermarket-hero__text {
    width: min(100%, 500px);
    margin: 0 auto .7rem;
    color: #173f2f;
    font-size: clamp(.98rem, 1.15vw, 1.18rem);
    font-weight: 400;
    line-height: 1.25;
    text-align: left;
}

.supermarket-hero__search {
    width: min(100%, 500px);
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 40px;
    align-items: center;
    gap: 8px;
    position: relative;
}

.supermarket-hero__search input {
    width: 100%;
    min-width: 0;
    height: 40px;
    border: 1px solid transparent;
    border-radius: 7px;
    padding: 0 1.05rem;
    background: #ffffff;
    color: #173f2f;
    font-size: .95rem;
    outline: none;
    box-shadow: 0 8px 18px rgba(0, 0, 0, .1);
    transition: border-color 160ms ease, box-shadow 160ms ease;
}

.supermarket-hero__search input:focus {
    border-color: rgba(47, 184, 79, .72);
    box-shadow: 0 0 0 3px rgba(47, 184, 79, .18), 0 8px 18px rgba(0, 0, 0, .1);
}

.supermarket-hero__search input::placeholder {
    color: rgba(23, 63, 47, .5);
}

.supermarket-hero__search button {
    width: 40px;
    min-width: 0;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 7px;
    padding: 0;
    appearance: none;
    background: #2fb84f;
    color: #ffffff;
    cursor: pointer;
    transition: background-color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.supermarket-hero__search button svg {
    width: 18px;
    height: 18px;
    display: block;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.4;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.supermarket-hero__search button:hover,
.supermarket-hero__search button:focus-visible {
    background: #249c41;
    box-shadow: 0 8px 16px rgba(0, 69, 31, .18);
    transform: translateY(-1px);
    outline: none;
}

.supermarket-hero__search input:-webkit-autofill,
.supermarket-hero__search input:-webkit-autofill:hover,
.supermarket-hero__search input:-webkit-autofill:focus {
    -webkit-text-fill-color: #173f2f;
    box-shadow: 0 0 0 1000px #ffffff inset, 0 0 0 3px rgba(47, 184, 79, .18);
}

.supermarket-hero__suggestions,
.supermarket-search-suggestions,
.supermarket-autocomplete {
    width: calc(100% - 44px);
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    z-index: 8;
    max-height: min(420px, 60vh);
    overflow-y: auto;
    overflow-x: hidden;
    border-radius: 10px;
    background: #ffffff;
    color: #173f2f;
    box-shadow: 0 16px 36px rgba(0, 0, 0, .16);
    transform: translate3d(0, 0, 0);
    will-change: opacity, transform;
}

.supermarket-search-suggestions[hidden] {
    display: none;
}

.supermarket-hero__suggestions a,
.supermarket-hero__suggestions button,
.supermarket-search-suggestions a,
.supermarket-search-suggestions button,
.supermarket-autocomplete a,
.supermarket-autocomplete button {
    width: 100%;
    display: block;
    border: 0;
    padding: .62rem .8rem;
    background: transparent;
    color: #173f2f;
    font-size: .82rem;
    text-align: left;
    text-decoration: none;
    cursor: pointer;
}

.supermarket-hero__suggestions a:hover,
.supermarket-hero__suggestions button:hover,
.supermarket-search-suggestions a:hover,
.supermarket-search-suggestions button:hover,
.supermarket-autocomplete a:hover,
.supermarket-autocomplete button:hover {
    background: rgba(184, 221, 67, .2);
}

.supermarket-search-suggestions__item {
    display: grid !important;
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 10px;
    align-items: center;
    min-height: 64px;
    border-bottom: 1px solid rgba(23, 63, 47, .08) !important;
    padding: .58rem .72rem !important;
    transition: background-color 140ms ease, color 140ms ease;
}

.supermarket-search-suggestions__item:last-child {
    border-bottom: 0 !important;
}

.supermarket-search-suggestions__item:hover,
.supermarket-search-suggestions__item:focus-visible {
    background: rgba(47, 184, 79, .12) !important;
    outline: none;
}

.supermarket-search-suggestions__media {
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 8px;
    background: #f3f7f1;
}

.supermarket-search-suggestions__media img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.supermarket-search-suggestions__body {
    min-width: 0;
    display: grid;
    gap: 2px;
}

.supermarket-search-suggestions__body strong,
.supermarket-search-suggestions__body span,
.supermarket-search-suggestions__body small {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.supermarket-search-suggestions__body strong {
    color: #173f2f;
    font-size: .84rem;
    font-weight: 800;
    line-height: 1.2;
}

.supermarket-search-suggestions__body span {
    color: #486454;
    font-size: .72rem;
    line-height: 1.25;
}

.supermarket-search-suggestions__body small {
    color: #2f725c;
    font-size: .7rem;
    font-weight: 700;
    line-height: 1.25;
}

.supermarket-search-suggestions__empty {
    padding: .9rem 1rem;
    color: #486454;
    font-size: .82rem;
    font-weight: 700;
    line-height: 1.3;
}

@media (max-width: 921px) {
    .supermarket-hero {
        min-height: 380px;
    }

    .supermarket-hero::after {
        right: -14rem;
        bottom: -9rem;
        width: 34rem;
        height: 34rem;
        opacity: .26;
    }

    .supermarket-hero__panel {
        width: min(100%, 640px);
    }

    .supermarket-hero__box {
        width: min(100%, 600px);
    }
}

@media (max-width: 640px) {
    .supermarket-hero {
        min-height: 360px;
        padding: 0;
    }

    .supermarket-hero__inner {
        width: min(100% - 1.5rem, 520px);
        transform: translateY(8px);
    }

    .supermarket-hero__panel {
        width: 100%;
    }

    .supermarket-hero__title {
        font-size: clamp(1.55rem, 7vw, 1.85rem);
        margin-bottom: .7rem;
    }

    .supermarket-hero__box {
        width: min(100%, 90vw);
        padding: .82rem .82rem .92rem;
        border-radius: 18px;
    }

    .supermarket-hero__text {
        width: 100%;
        margin-bottom: .58rem;
        font-size: .92rem;
        text-align: center;
    }

    .supermarket-hero__search {
        width: 100%;
        grid-template-columns: minmax(0, 1fr) 36px;
        gap: 7px;
    }

    .supermarket-hero__search input,
    .supermarket-hero__search button {
        height: 36px;
    }

    .supermarket-hero__search button {
        width: 36px;
    }

    .supermarket-hero__suggestions,
    .supermarket-search-suggestions,
    .supermarket-autocomplete {
        width: calc(100% - 41px);
    }

    .supermarket-hero::after {
        display: none;
    }
}

.supermarket-products {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    position: relative;
    z-index: 1;
    background: #ffffff;
    color: #0b3f24;
    overflow-x: hidden;
}

.supermarket-products::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: max(280px, 28vw);
    background: #00451f;
}

.supermarket-products__layout {
    width: min(100%, 1320px);
    min-height: 760px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 310px minmax(0, 1fr);
}

.supermarket-sidebar {
    align-self: start;
    margin: 80px 44px 80px 0;
    padding: 44px 32px;
    border-radius: 18px;
    background: #003418;
    color: #ffffff;
}

.supermarket-sidebar__title {
    margin: 0 0 26px;
    padding-bottom: 22px;
    border-bottom: 2px solid rgba(255, 255, 255, .86);
    color: #ffffff;
    font-size: .95rem;
    font-weight: 800;
}

.supermarket-sidebar__group {
    display: grid;
    gap: 8px;
    padding: 26px 0;
    border-bottom: 2px solid rgba(255, 255, 255, .86);
}

.supermarket-sidebar__group h3 {
    margin: 0 0 6px;
    color: #ffffff;
    font-size: .82rem;
    font-weight: 800;
}

.supermarket-sidebar label {
    display: flex;
    align-items: center;
    gap: 7px;
    color: rgba(255, 255, 255, .9);
    font-size: .76rem;
    line-height: 1.25;
}

.supermarket-sidebar input {
    width: 12px;
    height: 12px;
    accent-color: #b8dd43;
}

.supermarket-sidebar__switch input {
    position: absolute;
    opacity: 0;
}

.supermarket-sidebar__switch span {
    width: 28px;
    height: 12px;
    position: relative;
    flex: 0 0 28px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .34);
    transition: background-color 160ms ease;
}

.supermarket-sidebar__switch span::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 1px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #d8ef73;
    transform: translate(0, -50%);
    transition: transform 160ms ease, background-color 160ms ease;
}

.supermarket-sidebar__switch input:checked + span {
    background: #b8dd43;
}

.supermarket-sidebar__switch input:checked + span::after {
    background: #16843a;
    transform: translate(16px, -50%);
}

.supermarket-sidebar__switch input:focus-visible + span {
    outline: 2px solid #ffffff;
    outline-offset: 3px;
}

.supermarket-sidebar__clear {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 28px;
    border: 0;
    padding: 0;
    appearance: none;
    background: transparent !important;
    background-color: transparent !important;
    color: #b8dd43 !important;
    font-size: .8rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    border-color: transparent !important;
    box-shadow: none !important;
}

.supermarket-sidebar__clear:hover,
.supermarket-sidebar__clear:focus,
.supermarket-sidebar__clear:focus-visible,
.supermarket-sidebar__clear:active {
    border-color: transparent !important;
    background: transparent !important;
    background-color: transparent !important;
    color: #b8dd43 !important;
    outline: none !important;
    box-shadow: none !important;
}

.supermarket-sidebar__clear::before {
    content: none;
}

.supermarket-sidebar__clear img {
    width: 1rem;
    height: 1rem;
    display: block;
}

.supermarket-listing {
    padding: 46px clamp(28px, 4vw, 56px) 70px;
    background: #ffffff;
}

.supermarket-listing__header {
    margin-bottom: 26px;
}

.supermarket-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px;
    margin-bottom: 28px;
    color: #303f35;
    font-size: .7rem;
    line-height: 1.2;
}

.supermarket-breadcrumb a {
    color: inherit;
    text-decoration: none;
}

.supermarket-tabs {
    position: relative;
    display: flex;
    align-items: center;
    gap: clamp(18px, 3vw, 42px);
    margin-bottom: 26px;
    overflow-x: auto;
    padding-bottom: 2px;
}

.supermarket-tabs__menu {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    flex: 0 0 32px;
    padding: 0;
    border: 0;
    border-radius: 6px;
    background: transparent !important;
    color: #6b7280;
    font-size: 1.25rem;
    line-height: 1;
    cursor: pointer;
    box-shadow: none;
}

.supermarket-tabs__item {
    flex: 0 0 auto;
    border: 0;
    padding: 0;
    background: transparent !important;
    color: #6b7280 !important;
    font-size: .92rem;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    border-color: transparent !important;
    box-shadow: none !important;
}

.supermarket-tabs__item:hover,
.supermarket-tabs__item:focus,
.supermarket-tabs__item:focus-visible,
.supermarket-tabs__item:active {
    border-color: transparent !important;
    background: transparent !important;
    color: #4b5563 !important;
    outline: none !important;
    box-shadow: none !important;
}

.supermarket-tabs__item--active,
.supermarket-tab--active {
    font-weight: 900;
}

.supermarket-tabs__item--offer {
    color: #6b7280 !important;
    font-weight: 800;
}

.supermarket-tabs__item--offer::before {
    content: "▣ ";
}

.supermarket-listing__count {
    margin: 0;
    color: #203f2c;
    font-size: .75rem;
    line-height: 1.2;
}

.supermarket-listing .supermarket-breadcrumb {
    display: none;
}

.supermarket-listing .supermarket-tabs {
    gap: clamp(16px, 2.6vw, 34px);
    margin-bottom: 22px;
    overflow: visible;
}

.supermarket-listing .supermarket-tabs__menu {
    order: 1;
    background: #2dab4b !important;
    color: #ffffff;
    font-size: 1.2rem;
}

.supermarket-listing .supermarket-tabs__item {
    font-size: .88rem;
}

.supermarket-listing .supermarket-tabs__item--active,
.supermarket-listing .supermarket-tab--active {
    color: #78c51f !important;
    font-weight: 900;
}

.supermarket-listing .supermarket-tabs__item--offer {
    order: 3;
    color: #6b7280 !important;
    font-weight: 800;
}

.supermarket-listing .supermarket-tabs__item--offer::before {
    content: "%";
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 12px;
    height: 12px;
    margin-right: 4px;
    border-radius: 2px;
    background: #b7dc30;
    color: #ffffff;
    font-size: 8px;
    font-weight: 900;
    line-height: 1;
    vertical-align: 1px;
}

.supermarket-listing .supermarket-categories-menu,
.supermarket-listing .supermarket-tabs__item[data-supermarket-tab="categories"] {
    order: 2;
    position: relative;
    margin-right: clamp(10px, 1.8vw, 22px);
}

.supermarket-categories-menu__toggle {
    gap: 6px;
}

.supermarket-categories-menu__chevron {
    width: 7px;
    height: 7px;
    border-right: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;
    transform: rotate(45deg) translateY(-2px);
}

.supermarket-categories-menu--open .supermarket-categories-menu__chevron {
    transform: rotate(-135deg) translate(-1px, -1px);
}

.supermarket-listing .supermarket-categories-menu::after,
.supermarket-listing .supermarket-tabs__item[data-supermarket-tab="categories"]::after {
    content: "";
    position: absolute;
    top: 50%;
    right: calc(clamp(10px, 1.8vw, 22px) * -1);
    width: 2px;
    height: 18px;
    border-radius: 999px;
    background: #0b5b2e;
    transform: translateY(-50%);
}

.supermarket-listing .supermarket-categories-menu .supermarket-tabs__item[data-supermarket-tab="categories"] {
    margin-right: 0;
}

.supermarket-listing .supermarket-categories-menu .supermarket-tabs__item[data-supermarket-tab="categories"]::after {
    display: none;
}

.supermarket-listing .supermarket-tabs__item--active[data-supermarket-tab="categories"]::after,
.supermarket-listing .supermarket-tab--active[data-supermarket-tab="categories"]::after,
.supermarket-listing .supermarket-categories-menu--active::after {
    background: #78c51f;
}

.supermarket-categories-dropdown {
    position: absolute;
    top: calc(100% + 18px);
    left: 0;
    z-index: 20;
    width: min(320px, calc(100vw - 32px));
    max-height: min(520px, 70vh);
    overflow: visible;
    padding: 20px 0;
    border-radius: 0 0 6px 6px;
    background: #26312b;
    box-shadow: 0 18px 42px rgba(0, 0, 0, .22);
}

.supermarket-categories-dropdown::before {
    content: "";
    position: absolute;
    top: -9px;
    left: 23px;
    width: 18px;
    height: 18px;
    background: #26312b;
    transform: rotate(45deg);
}

.supermarket-categories-dropdown[hidden] {
    display: none;
}

.supermarket-categories-dropdown__list {
    display: grid;
    gap: 0;
    margin: 0;
    padding: 0;
    list-style: none;
}

.supermarket-categories-dropdown__list .supermarket-categories-dropdown__list {
    position: absolute;
    top: -20px;
    left: 100%;
    z-index: 21;
    display: none;
    width: min(300px, calc(100vw - 32px));
    max-height: min(520px, 70vh);
    overflow: auto;
    padding: 20px 0;
    border-radius: 0 0 6px 6px;
    background: #26312b;
    box-shadow: 18px 18px 42px rgba(0, 0, 0, .2);
}

.supermarket-categories-dropdown__item {
    position: relative;
    margin: 0;
}

.supermarket-categories-dropdown__item--has-children:hover > .supermarket-categories-dropdown__list,
.supermarket-categories-dropdown__item--has-children:focus-within > .supermarket-categories-dropdown__list {
    display: grid;
}

.supermarket-categories-dropdown__button,
.supermarket-categories-dropdown__all {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 10px 28px;
    border: 0;
    border-radius: 0;
    background: transparent !important;
    color: #ffffff !important;
    font-size: .92rem;
    font-weight: 500;
    line-height: 1.25;
    text-align: left;
    box-shadow: none;
    cursor: pointer;
}

.supermarket-categories-dropdown__item--has-children > .supermarket-categories-dropdown__button::after {
    content: "";
    width: 8px;
    height: 8px;
    border-top: 1.5px solid currentColor;
    border-right: 1.5px solid currentColor;
    opacity: .65;
    transform: rotate(45deg);
}

.supermarket-categories-dropdown__button:hover,
.supermarket-categories-dropdown__button:focus,
.supermarket-categories-dropdown__all:hover,
.supermarket-categories-dropdown__all:focus,
.supermarket-categories-dropdown__button--active,
.supermarket-categories-dropdown__all--active {
    background: rgba(255, 255, 255, .1) !important;
    color: #ffffff !important;
}

.supermarket-categories-dropdown__empty {
    margin: 0;
    padding: 10px 28px;
    color: #ffffff;
}

.supermarket-listing .supermarket-tabs__item[data-supermarket-tab="popular"] {
    order: 4;
}

.supermarket-listing .supermarket-tabs__item[data-supermarket-tab="new"] {
    order: 5;
}

.supermarket-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 48px 18px;
    transition: opacity 160ms ease;
}

.supermarket-products--loading .supermarket-grid,
.supermarket-products--loading .supermarket-pagination-wrap {
    opacity: .45;
    pointer-events: none;
}

.supermarket-card {
    min-width: 0;
}

.supermarket-card__link {
    min-height: 184px;
    position: relative;
    display: grid;
    grid-template-rows: 108px 1fr;
    overflow: hidden;
    border: 1px solid #e1e1e1;
    border-radius: 8px;
    background: #ffffff;
    color: #111f17;
    text-decoration: none;
}

.supermarket-card__media {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 16px 8px;
    background: #ffffff;
}

.supermarket-card__image {
    max-width: 100%;
    max-height: 88px;
    object-fit: contain;
}

.supermarket-card__body {
    display: grid;
    align-content: start;
    gap: 4px;
    padding: 11px 14px 16px;
    background: #dddddd;
}

.supermarket-card__category {
    color: #2b3e32;
    font-size: .68rem;
    line-height: 1.15;
}

.supermarket-card__title {
    color: #101a14;
    font-size: .76rem;
    font-weight: 900;
    line-height: 1.2;
}

.supermarket-card__presentation {
    margin-top: 8px;
    color: #2b3e32;
    font-size: .68rem;
    line-height: 1.2;
}

.supermarket-card__featured {
    position: absolute;
    top: 10px;
    z-index: 2;
    font-size: 1rem;
    line-height: 1;
}

.supermarket-card__featured {
    right: 10px;
    color: #f2b400;
}

.supermarket-product-page {
    background: #d9d9d9;
}

.supermarket-product-detail {
    width: 100%;
    margin-left: calc(-50vw + 50%);
    padding: 0;
    background: #d9d9d9;
    color: #112b1c;
}

.supermarket-product-detail__shell {
    width: min(100% - 1rem, 80%);
    margin: 0 auto;
    padding: clamp(2.1rem, 3vw, 3.2rem) clamp(5rem, 5.7vw, 6.9rem) clamp(3rem, 4.8vw, 4.8rem);
    background: #ffffff;
}

.supermarket-product-detail__breadcrumb {
    margin-bottom: clamp(2rem, 3.5vw, 3.4rem);
    font-size: .62rem;
}

.supermarket-product-detail__breadcrumb a:hover,
.supermarket-product-detail__breadcrumb a:focus-visible {
    color: #239e50;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.supermarket-product-detail__tabs {
    margin-bottom: clamp(3rem, 4.8vw, 4.6rem);
}

.supermarket-product-detail__tabs .supermarket-tabs__menu {
    width: 36px;
    height: 36px;
    flex-basis: 36px;
    border-radius: 7px;
    background: #2dab4b !important;
    color: #ffffff;
    font-size: 1.35rem;
}

.supermarket-product-detail__tabs-separator {
    width: 2px;
    height: 20px;
    flex: 0 0 2px;
    background: #005127;
}

.supermarket-product-detail__grid {
    display: grid;
    grid-template-columns: minmax(0, 55fr) minmax(420px, 45fr);
    gap: clamp(3rem, 5.2vw, 5.6rem);
    align-items: center;
}

.supermarket-product-gallery {
    display: grid;
    grid-template-columns: 86px minmax(0, 1fr);
    gap: clamp(1.3rem, 1.9vw, 2rem);
    align-items: start;
}

.supermarket-product-gallery__thumbs {
    display: grid;
    gap: .85rem;
}

.supermarket-product-gallery__thumb,
.supermarket-product-summary__icon-button,
.supermarket-product-gallery__arrow,
.supermarket-related-products__arrow {
    position: absolute;
    z-index: 2;
    width: 36px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border-radius: 8px;
    background: #005127 !important;
    color: #ffffff !important;
    line-height: 1;
    cursor: pointer;
}
.supermarket-product-gallery__thumb {
    width: 82px;
    height: 82px;
    padding: 8px;
    border: 1px solid #d8dfd5 !important;
    border-radius: 8px;
    background: #ffffff !important;
    cursor: pointer;
}

.supermarket-product-gallery__thumb--active,
.supermarket-product-gallery__thumb:hover,
.supermarket-product-gallery__thumb:focus-visible {
    border-color: #b8dd43 !important;
    outline: none !important;
}

.supermarket-product-gallery__thumb img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
}

.supermarket-product-gallery__stage {
    position: relative;
    min-height: clamp(430px, 36vw, 560px);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #dfe5de;
    border-radius: 12px;
    background: #ffffff;
    overflow: hidden;
}

.supermarket-product-gallery__image {
    width: min(78%, 470px);
    max-height: 470px;
    display: block;
    object-fit: contain;
}

.supermarket-product-gallery__arrow,
.supermarket-related-products__arrow {
    position: absolute;
    z-index: 2;
    width: auto;
    height: auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 0 !important;
    border-radius: 0;
    background: transparent !important;
    color: inherit !important;
    line-height: 1;
    cursor: pointer;
    box-shadow: none !important;
    transform: none;
    transition: none;
    -webkit-tap-highlight-color: transparent;
}

.supermarket-product-gallery__arrow:hover,
.supermarket-product-gallery__arrow:focus,
.supermarket-product-gallery__arrow:focus-visible,
.supermarket-product-gallery__arrow:active {
    background: transparent !important;
    border: 0 !important;
    outline: none !important;
    box-shadow: none !important;
    transform: none;
}

.supermarket-related-products__arrow:hover,
.supermarket-related-products__arrow:focus,
.supermarket-related-products__arrow:focus-visible,
.supermarket-related-products__arrow:active {
    background: transparent !important;
    border: 0 !important;
    outline: none !important;
    box-shadow: none !important;
    transform: translateY(-50%);
}

.supermarket-product-gallery__arrow--prev {
    left: 1.2rem;
}

.supermarket-product-gallery__arrow--next {
    right: 1.2rem;
}

.supermarket-product-summary {
    max-width: 520px;
    padding-top: 0;
}

.supermarket-product-summary__meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 2.4rem;
    color: #9aa59c;
    font-size: .68rem;
}

.supermarket-product-summary__actions {
    display: inline-flex;
    gap: .45rem;
}

.supermarket-product-summary__icon-button {
    position: relative;
    width: 24px;
    height: 24px;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent !important;
    color: #203f2c !important;
    font-size: 1rem;
    cursor: pointer;
}

.supermarket-product-summary__share-status {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    z-index: 2;
    width: max-content;
    max-width: 160px;
    padding: .35rem .55rem;
    border-radius: 4px;
    background: #003d19;
    color: #fff;
    font-size: .65rem;
    line-height: 1.2;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-2px);
    transition: opacity .18s ease, transform .18s ease;
}

.supermarket-product-summary__icon-button--active .supermarket-product-summary__share-status {
    opacity: 1;
    transform: translateY(0);
}

.supermarket-product-summary__title {
    margin: 0 0 1rem;
    color: #003d19;
    font-size: clamp(1.55rem, 1.65vw, 1.9rem);
    line-height: 1.08;
    font-weight: 900;
    letter-spacing: 0;
}

.supermarket-product-summary__description {
    max-width: 500px;
    color: #2d4636;
    font-size: .78rem;
    line-height: 1.45;
}

.supermarket-product-summary__description p {
    margin: 0 0 .8rem;
}

.supermarket-product-summary__quantity {
    margin: .8rem 0 1.35rem;
    color: #6b766e;
    font-size: .72rem;
}

.supermarket-product-summary__price {
    margin: 0 0 1.05rem;
    color: #003d19;
    font-size: 1rem;
    font-weight: 900;
}

.supermarket-product-summary__terms {
    display: grid;
    gap: .45rem;
    margin-bottom: 1.45rem;
    color: #98a29b;
    font-size: .65rem;
    line-height: 1.35;
}

.supermarket-product-summary__terms p {
    margin: 0;
}

.supermarket-product-summary__terms strong {
    color: #6f7f74;
}

.supermarket-product-summary__button {
    width: min(100%, 330px);
    min-height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: 0;
    border-radius: 999px;
    background: #2DBE60;
    color: #ffffff !important;
    font-size: .9rem;
    font-weight: 900;
    text-decoration: none;
    transition: background-color 160ms ease, transform 160ms ease;
}

.supermarket-product-summary__button:hover,
.supermarket-product-summary__button:focus-visible {
    background: #239E50;
    color: #ffffff !important;
    outline: none;
    transform: none;
}

.supermarket-product-seller {
    margin-top: clamp(2.1rem, 4vw, 3.4rem);
}

.supermarket-product-seller h2 {
    margin: 0 0 1.2rem;
    color: #112b1c;
    font-size: .75rem;
    font-weight: 900;
}

.supermarket-product-seller__row {
    display: flex;
    align-items: center;
    gap: .9rem;
}

.supermarket-product-seller__logo {
    width: 54px;
    height: 26px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #005127;
    font-size: .58rem;
    font-weight: 800;
    letter-spacing: 0;
    background: #ffffff;
}

.supermarket-product-seller strong,
.supermarket-product-seller a {
    display: block;
}

.supermarket-product-seller strong {
    color: #112b1c;
    font-size: .8rem;
    line-height: 1.2;
}

.supermarket-product-seller a {
    margin-top: .18rem;
    color: #8b968e;
    font-size: .63rem;
    text-decoration: none;
}

.supermarket-product-seller a:hover,
.supermarket-product-seller a:focus-visible {
    color: #239E50;
}

.supermarket-related-products {
    position: relative;
    margin-top: clamp(3.2rem, 5vw, 5.2rem);
    padding: 0 clamp(3.2rem, 6vw, 5rem);
}

.supermarket-related-products h2 {
    margin: 0 0 1.9rem;
    color: #112b1c;
    font-size: 1.02rem;
    font-weight: 900;
    letter-spacing: 0;
}

.supermarket-related-products__track {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: calc((100% - 3rem) / 4);
    grid-template-rows: 1fr;
    gap: 1rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
}

.supermarket-related-products__track::-webkit-scrollbar {
    display: none;
}

.supermarket-related-products__arrow {
    top: calc(50% + 1.6rem);
    transform: translateY(-50%);
}

.supermarket-related-products__arrow--prev {
    left: 1.1rem;
}

.supermarket-related-products__arrow--next {
    right: 1.1rem;
}

.supermarket-related-card a {
    min-height: 264px;
    position: relative;
    display: grid;
    grid-template-rows: 138px minmax(126px, 1fr);
    overflow: hidden;
    border: 1px solid #e3e8e1;
    border-radius: 6px;
    color: #112b1c;
    background: #e5e5e5;
    text-decoration: none;
}

.supermarket-related-card__media {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
}

.supermarket-related-card__media img {
    width: 78%;
    height: 118px;
    object-fit: contain;
}

.supermarket-related-card__body {
    display: grid;
    align-content: start;
    gap: .55rem;
    padding: .9rem 1rem 1.05rem;
    font-size: .78rem;
    line-height: 1.2;
}

.supermarket-related-card__brand {
    color: #4f5e55;
}

.supermarket-related-card strong {
    color: #112b1c;
    font-size: .86rem;
    line-height: 1.16;
}

.supermarket-related-card span:last-child {
    color: #4f5e55;
}

.supermarket-products__empty,
.supermarket-products__message {
    margin: 0;
    padding: 40px;
    color: #0b3f24;
    font-weight: 700;
}

.supermarket-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 72px;
}

.supermarket-pagination button.page-numbers,
.supermarket-pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 26px;
    height: 32px;
    padding: 0 8px;
    border: 0;
    border-radius: 6px;
    background: transparent !important;
    color: #102018 !important;
    font-size: .94rem;
    font-weight: 400;
    line-height: 1;
    text-decoration: none;
    cursor: pointer;
    box-shadow: none;
}

.supermarket-pagination button.page-numbers:hover,
.supermarket-pagination button.page-numbers:focus,
.supermarket-pagination button.page-numbers:active {
    background: transparent !important;
    color: #102018 !important;
}

.supermarket-pagination button.prev,
.supermarket-pagination button.next,
.supermarket-pagination .prev,
.supermarket-pagination .next {
    position: relative;
    width: 42px;
    min-width: 42px;
    height: 42px;
    padding: 0;
    background: #00451f !important;
    color: #ffffff !important;
    font-size: 0;
    font-weight: 300;
    line-height: .8;
}

.supermarket-pagination button.prev::before,
.supermarket-pagination button.next::before,
.supermarket-pagination .prev::before,
.supermarket-pagination .next::before {
    content: "";
    width: 12px;
    height: 12px;
    border-top: 3px solid currentColor;
    border-right: 3px solid currentColor;
}

.supermarket-pagination button.prev::before,
.supermarket-pagination .prev::before {
    transform: rotate(-135deg);
    margin-left: 4px;
}

.supermarket-pagination button.next::before,
.supermarket-pagination .next::before {
    transform: rotate(45deg);
    margin-right: 4px;
}

.supermarket-pagination button.prev:hover,
.supermarket-pagination button.prev:focus,
.supermarket-pagination button.prev:active,
.supermarket-pagination button.next:hover,
.supermarket-pagination button.next:focus,
.supermarket-pagination button.next:active {
    background: #00451f !important;
    color: #ffffff !important;
}

.supermarket-pagination button.current,
.supermarket-pagination .current {
    background: #dedede !important;
    color: #102018 !important;
    font-weight: 700;
    cursor: default;
}

/* ================================
   SINGLE PRODUCT SVG ICONS
================================ */

.supermarket-product-summary__icon-button img,
.supermarket-product-summary__term img {
    display: block;
    width: 1rem;
    height: 1rem;
    object-fit: contain;
}

.supermarket-product-summary__term {
    display: flex;
    align-items: flex-start;
    gap: 0.45rem;
    margin: 0;
}

.supermarket-product-gallery__arrow img,
.supermarket-related-products__arrow img {
    display: block;
    width: 36px;
    height: 36px;
    object-fit: contain;
    transform: none !important;
    transition: none !important;
}

.supermarket-product-gallery__arrow,
.supermarket-related-products__arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

@media (max-width: 1180px) {
    .supermarket-products__layout {
        grid-template-columns: 290px minmax(0, 1fr);
    }

    .supermarket-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

@media (max-width: 921px) {
    .supermarket-products::before {
        display: none;
    }

    .supermarket-products__layout {
        width: min(100% - 32px, 760px);
        grid-template-columns: 1fr;
        gap: 28px;
        padding: 32px 0 56px;
    }

    .supermarket-sidebar {
        margin: 0;
    }

    .supermarket-listing {
        padding: 0;
    }

    .supermarket-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .supermarket-products__layout {
        width: min(100% - 24px, 420px);
    }

    .supermarket-sidebar {
        padding: 30px 24px;
        border-radius: 14px;
    }

    .supermarket-tabs {
        gap: 22px;
    }

    .supermarket-grid {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .supermarket-card__link {
        grid-template-rows: 150px 1fr;
    }

    .supermarket-card__image {
        max-height: 126px;
    }

    .supermarket-pagination {
        margin-top: 40px;
    }
}

@media (max-width: 921px) {
    .supermarket-product-detail__shell {
        width: min(100% - 2rem, 900px);
        padding-inline: 2rem;
    }

    .supermarket-product-detail__grid {
        grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
        gap: 2rem;
        align-items: start;
    }

    .supermarket-product-gallery {
        grid-template-columns: 54px minmax(0, 1fr);
    }

    .supermarket-product-gallery__thumb {
        width: 52px;
        height: 52px;
    }

    .supermarket-product-gallery__stage {
        min-height: clamp(300px, 44vw, 390px);
    }

    .supermarket-product-gallery__image {
        width: min(74%, 330px);
        max-height: 330px;
    }

    .supermarket-product-summary {
        max-width: none;
    }

    .supermarket-product-summary__button {
        margin-left: 0;
    }
}

@media (max-width: 720px) {
    .supermarket-product-detail {
        padding-top: 0;
    }

    .supermarket-product-detail__shell {
        width: 100%;
        padding: 2rem 1.25rem 3.5rem;
    }

    .supermarket-product-detail__tabs {
        gap: 1rem;
        margin-bottom: 2rem;
    }

    .supermarket-product-detail__grid {
        grid-template-columns: 1fr;
    }

    .supermarket-product-gallery {
        grid-template-columns: 1fr;
    }

    .supermarket-product-gallery__thumbs {
        order: 2;
        grid-auto-flow: column;
        grid-auto-columns: 54px;
        overflow-x: auto;
    }

    .supermarket-product-gallery__stage {
        min-height: 300px;
    }

    .supermarket-product-summary__button {
        width: 100%;
        margin-left: 0;
    }

    .supermarket-related-products {
        margin-top: 3.25rem;
        padding-inline: 0;
    }

    .supermarket-related-products__track {
        grid-auto-columns: 170px;
        padding: 0 2.8rem;
    }

    .supermarket-related-card a {
        min-height: 230px;
        grid-template-rows: 120px minmax(110px, 1fr);
    }

    .supermarket-related-card__media img {
        height: 100px;
    }

    .supermarket-related-card__body {
        padding: .8rem .85rem .95rem;
        font-size: .68rem;
    }

    .supermarket-related-card strong {
        font-size: .76rem;
    }

    .supermarket-related-products__arrow--prev {
        left: 0;
    }

    .supermarket-related-products__arrow--next {
        right: 0;
    }
}

/* Modern catalog filters */
.supermarket-products::before {
    width: max(230px, 24vw);
}

.supermarket-products__layout {
    grid-template-columns: 260px minmax(0, 1fr);
}

.supermarket-sidebar {
    display: flex;
    flex-direction: column;
    margin: 48px 28px 48px 0;
    padding: 0;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 16px;
    background: #073b22;
    box-shadow: 0 18px 44px rgba(0, 32, 14, .2);
}

.supermarket-sidebar__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 24px 22px 18px;
}

.supermarket-sidebar__eyebrow {
    display: block;
    margin-bottom: 3px;
    color: #a9d85b;
    font-size: .62rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.supermarket-sidebar__title {
    margin: 0;
    padding: 0;
    border: 0;
    color: #fff;
    font-size: 1.05rem;
    line-height: 1.2;
}

.supermarket-sidebar__close {
    display: none;
    width: 38px;
    height: 38px;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 0 !important;
    border-radius: 50%;
    background: rgba(255, 255, 255, .1) !important;
    color: #fff !important;
    font-size: 1.5rem;
    line-height: 1;
    box-shadow: none !important;
}

.supermarket-sidebar__scroll {
    flex: 0 0 auto;
    overflow: visible;
}

.supermarket-filter-accordion {
    border-top: 1px solid rgba(255, 255, 255, .09);
}

.supermarket-filter-accordion summary {
    min-height: 52px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 0 22px;
    color: #fff;
    font-size: .78rem;
    font-weight: 800;
    list-style: none;
    cursor: pointer;
}

.supermarket-filter-accordion summary::-webkit-details-marker {
    display: none;
}

.supermarket-filter-accordion summary span {
    width: 8px;
    height: 8px;
    border-right: 2px solid #a9d85b;
    border-bottom: 2px solid #a9d85b;
    transform: rotate(45deg);
    transition: transform .18s ease;
}

.supermarket-filter-accordion:not([open]) summary span {
    transform: rotate(-45deg);
}

.supermarket-filter-accordion__content {
    display: grid;
    gap: 2px;
    padding: 0 14px 14px;
}

.supermarket-filter-option {
    min-height: 36px;
    display: grid !important;
    grid-template-columns: 18px minmax(0, 1fr) auto;
    align-items: center;
    gap: 9px !important;
    padding: 7px 8px;
    border-radius: 8px;
    color: rgba(255, 255, 255, .88) !important;
    font-size: .72rem !important;
    cursor: pointer;
    transition: background-color .15s ease, color .15s ease;
}

.supermarket-filter-option:hover {
    background: rgba(255, 255, 255, .07);
    color: #fff !important;
}

.supermarket-filter-option input {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
}

.supermarket-filter-option__check {
    width: 17px;
    height: 17px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, .48);
    border-radius: 5px;
    background: rgba(255, 255, 255, .04);
}

.supermarket-filter-option input:checked + .supermarket-filter-option__check {
    border-color: #b8dd43;
    background: #b8dd43;
}

.supermarket-filter-option input:checked + .supermarket-filter-option__check::after {
    content: "";
    width: 7px;
    height: 4px;
    border-left: 2px solid #073b22;
    border-bottom: 2px solid #073b22;
    transform: rotate(-45deg) translateY(-1px);
}

.supermarket-filter-option input:focus-visible + .supermarket-filter-option__check {
    outline: 2px solid #fff;
    outline-offset: 2px;
}

.supermarket-filter-option--radio {
    grid-template-columns: 18px minmax(0, 1fr);
}

.supermarket-filter-option--radio .supermarket-filter-option__check {
    border-radius: 50%;
}

.supermarket-filter-option--radio input:checked + .supermarket-filter-option__check::after {
    width: 7px;
    height: 7px;
    border: 0;
    border-radius: 50%;
    background: #073b22;
    transform: none;
}

.supermarket-filter-option__count {
    min-width: 25px;
    padding: 2px 6px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .09);
    color: rgba(255, 255, 255, .7);
    font-size: .62rem;
    text-align: center;
}

.supermarket-sidebar__actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 14px;
    border-top: 1px solid rgba(255, 255, 255, .1);
    background: #073b22;
}

.supermarket-sidebar__clear,
.supermarket-sidebar__apply {
    min-height: 42px;
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 0;
    padding: 0 14px;
    border-radius: 999px;
    font-size: .76rem;
    font-weight: 800;
}

.supermarket-sidebar__clear {
    border: 1px solid rgba(184, 221, 67, .5) !important;
}

.supermarket-sidebar__apply {
    display: none;
    border: 0 !important;
    background: #b8dd43 !important;
    color: #073b22 !important;
}

.supermarket-filter-trigger,
.supermarket-filter-backdrop {
    display: none;
}

@media (max-width: 1180px) and (min-width: 922px) {
    .supermarket-products__layout {
        grid-template-columns: 238px minmax(0, 1fr);
    }

    .supermarket-sidebar {
        margin-right: 18px;
    }
}

@media (max-width: 921px) {
    body.supermarket-filters-open {
        overflow: hidden;
    }

    .supermarket-products__layout {
        display: block;
        width: min(100% - 32px, 760px);
        padding-top: 72px;
    }

    .supermarket-filter-trigger {
        position: fixed;
        right: 18px;
        bottom: 20px;
        z-index: 9998;
        min-height: 48px;
        display: inline-flex;
        align-items: center;
        gap: 9px;
        padding: 0 18px;
        border: 0 !important;
        border-radius: 999px;
        background: #073b22 !important;
        color: #fff !important;
        font-size: .82rem;
        font-weight: 800;
        box-shadow: 0 10px 28px rgba(0, 42, 19, .3) !important;
    }

    .supermarket-filter-trigger strong {
        min-width: 21px;
        height: 21px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        background: #b8dd43;
        color: #073b22;
        font-size: .66rem;
    }

    .supermarket-filter-backdrop {
        position: fixed;
        inset: 0;
        z-index: 9998;
        display: block;
        background: rgba(5, 24, 13, .58);
        backdrop-filter: blur(2px);
    }

    .supermarket-filter-backdrop[hidden] {
        display: none;
    }

    .supermarket-sidebar {
        position: fixed;
        inset: 0 auto 0 0;
        z-index: 9999;
        width: min(88vw, 390px);
        height: 100dvh;
        max-height: none;
        min-height: 0;
        margin: 0;
        border: 0;
        border-radius: 0 18px 18px 0;
        transform: translateX(-105%);
        visibility: hidden;
        transition: transform .25s ease, visibility .25s ease;
    }

    .supermarket-sidebar__scroll {
        flex: 1 1 auto;
        overflow-y: auto;
        overscroll-behavior: contain;
        scrollbar-width: thin;
        scrollbar-color: rgba(184, 221, 67, .55) transparent;
    }

    .supermarket-sidebar--open {
        transform: translateX(0);
        visibility: visible;
    }

    .supermarket-sidebar__close,
    .supermarket-sidebar__apply {
        display: inline-flex;
    }

    .supermarket-sidebar__actions {
        grid-template-columns: .8fr 1.2fr;
        padding-bottom: max(14px, env(safe-area-inset-bottom));
    }

    .supermarket-listing {
        padding-top: 0;
    }
}

@media (max-width: 640px) {
    .supermarket-products__layout {
        width: min(100% - 24px, 520px);
        padding-top: 58px;
    }

    .supermarket-sidebar {
        width: min(92vw, 370px);
        padding: 0;
        border-radius: 0 16px 16px 0;
    }

    .supermarket-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 18px 12px;
    }

    .supermarket-card__link {
        grid-template-rows: 122px 1fr;
    }

    .supermarket-card__image {
        max-height: 105px;
    }
}
