#shop.section.content {
    overflow: hidden;
    padding: 24px 0px;
    min-height: calc(100vh - 204.5px);
}

.shop.filter-wrapper {
    display: flex;
    flex-direction: column;

    width: 100%;

    padding-bottom: 6px;
    margin-bottom: 24px;
    gap: 12px;

    border-bottom: 1px solid var(--primary-border);
}

.shop.filter-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;

    width: 100%;

    gap: 0px;
}

.shop.filter-title-wrapper {
    display: flex;
    flex-direction: row;
    align-items: center;

    width: 100%;
    border: 0;
    gap: 12px;

    text-align: left;
}

.shop.filter-bullet {
    width: 6px;
    height: 6px;

    border-radius: 99px;

    background-color: var(--primary-text);
}

.shop.filter-title {
    display: flex;
    flex-direction: row;
    align-items: center;

    gap: 12px;

    font-size: 18px;
    font-weight: 700;
    margin-left: 18px;
}

.shop.filter-reset {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    text-align: right;
    cursor: pointer;

    width: 100%;
    padding-right: 12px;

    color: var(--primary-warning);
}

.shop.filter-reset:hover {
    color: var(--focus-warning);
}

.shop.filter-location {
    display: flex;
    flex-direction: row;
    align-items: center;

    gap: 6px;

    appearance: none;
    background: transparent;
    color: inherit;
    cursor: pointer;

    transition: all 0.5s cubic-bezier(0.00, 1.13, 0.00, 0.97);
}

.shop.filter-location:hover {
    color: var(--toolbarTextHover);
}

.shop.filter-location:hover svg {
    color: var(--focus-accent);
}

.shop.filter.location-icon {
    width: 14px;
    height: 14px;

    color: var(--primary-accent);
}

.shop.sort-wrapper {
    display: flex;
    flex-direction: column;

    width: 100%;

    padding-bottom: 6px;
    margin-bottom: 24px;
    gap: 12px;

    border-bottom: 1px solid var(--primary-border);
}

.shop.sort-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;

    width: 100%;

    gap: 0px;
}

.shop.sort-title-wrapper {
    display: flex;
    flex-direction: row;
    align-items: center;

    width: 100%;
    border: 0;
    gap: 12px;

    text-align: left;
}

.shop.sort-bullet {
    width: 6px;
    height: 6px;

    border-radius: 99px;

    background-color: var(--primary-text);
}

.shop.sort-title {
    display: flex;
    flex-direction: row;
    align-items: center;

    gap: 12px;

    font-size: 18px;
    font-weight: 700;
    margin-left: 18px;
}

.shop.sort.list-wrapper {
    display: flex;
    flex-direction: row;
    overflow-x: auto;

    width: 100%;

    padding: 16px 12px 12px 12px;

    gap: 12px;

    scrollbar-width: thin;
    scrollbar-color: var(--primary-accent) var(--sectionBG);
}

.shop.sort.list.item-wrapper {
    padding: 1px;
    border-radius: 999px;

    background: var(--toolbarBorder);

    backdrop-filter: blur(6px) saturate(60%);
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);

    transition: all 0.5s cubic-bezier(0.00, 1.13, 0.00, 0.97);
}

.shop.sort.list.item.button {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;

    height: 100%;
    min-width: 0;
    margin: 0;
    border-radius: 999px;
    padding: 7px 15px;
    line-height: 1.43;

    font-size: 14px;
    font-weight: 600;

    background: var(--toolbarBackground);
    color: var(--toolbarText);

    transition: all 0.5s cubic-bezier(0.00, 1.13, 0.00, 0.97);
}

.shop.sort.list.item.button:hover {
    background: var(--toolbarBackgroundHover);
    color: var(--toolbarTextHover);
}

.shop.distance.list-wrapper {
    display: flex;
    flex-direction: row;
    overflow-x: auto;

    width: 100%;

    padding: 16px 12px 12px 12px;

    gap: 12px;

    scrollbar-width: thin;
    scrollbar-color: var(--primary-accent) var(--sectionBG);
}

.shop.distance.card-wrapper {
    padding: 1px;
    border-radius: 24px;
    corner-shape: squircle;

    background: var(--toolbarBorder);

    backdrop-filter: blur(6px) saturate(60%);
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);

    transition: all 0.5s cubic-bezier(0.00, 1.13, 0.00, 0.97);
}

.shop.distance.card {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;

    height: 100%;
    min-width: 0;
    padding: 6px;
    margin: 0;
    gap: 0px;
    border-radius: 24px;
    corner-shape: squircle;

    font-size: 14px;
    font-weight: 600;

    background: var(--toolbarBackground);
    color: var(--toolbarText);

    cursor: pointer;

    transition: all 0.5s cubic-bezier(0.00, 1.13, 0.00, 0.97);
}

.shop.distance.card:hover {
    background: var(--toolbarResultBackgroundHover);
}

.shop.distance.card.selected {
    background: var(--primary-accent);
    color: var(--tint-accent);
}

.shop.distance.card.disabled {
    cursor: not-allowed;
    background: var(--toolbarBackgroundDisabled);
    color: var(--toolbarTextDisabled);
}

.shop.distance.list-title {
    white-space: nowrap;

    padding: 0px 12px;

    font-size: 14px;
}

.shop.category.list-wrapper {
    display: flex;
    flex-direction: row;
    overflow-x: auto;

    width: 100%;

    padding: 16px 12px 12px 12px;
    gap: 12px;

    scrollbar-width: thin;
    scrollbar-color: var(--primary-accent) var(--sectionBG);
}

.shop.category.card-wrapper {
    padding: 1px;
    border-radius: 24px;
    corner-shape: squircle;

    background: var(--toolbarBorder);

    backdrop-filter: blur(6px) saturate(60%);
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);

    transition: all 0.5s cubic-bezier(0.00, 1.13, 0.00, 0.97);
}

.shop.category.card-wrapper.selected {
    background: var(--toolbarBorderSelected);
}

.shop.category.card {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;

    height: 100%;
    min-width: 0;
    padding: 6px;
    margin: 0;
    gap: 0px;
    border-radius: 24px;
    corner-shape: squircle;

    font-size: 14px;
    font-weight: 600;

    background: var(--toolbarBackground);
    color: var(--toolbarText);

    cursor: pointer;

    transition: all 0.5s cubic-bezier(0.00, 1.13, 0.00, 0.97);
}

.shop.category.card:hover {
    background: var(--toolbarResultBackgroundHover);
}

.shop.category.card.selected {
    border: 0px solid var(--primary-accent);
}

.shop.category.list-image {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    overflow: hidden;

    width: 48px;
    height: 48px;
    min-width: 48px;
    min-height: 48px;
    max-width: 48px;
    max-height: 48px;

    border-radius: 16px;
    corner-shape: squircle;
}

.shop.category.list-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.shop.category.list-title {
    white-space: nowrap;

    padding: 0px 12px;

    font-size: 14px;
}

.product.list-title {
    width: 100%;

    text-align: left;

    font-size: 18px;
    font-weight: 700;
    margin: 0px 0px 16px 0px;
    padding: 0px 0px 0px 36px;
}

.product.list-wrapper {
    display: flex;
    flex-direction: column;

    width: 100%;

    padding: 0px 12px;
    gap: 12px;

}

.product.card-wrapper {
    padding: 1px;
    border-radius: 24px;
    corner-shape: squircle;

    background: var(--toolbarBorder);

    backdrop-filter: blur(6px) saturate(60%);
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);

    transition: all 0.5s cubic-bezier(0.00, 1.13, 0.00, 0.97);
}

.product.card {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;

    height: 100%;
    min-width: 0;
    padding: 12px;
    margin: 0;
    border-radius: 24px;
    corner-shape: squircle;

    font-size: 14px;
    font-weight: 600;

    background: var(--toolbarBackground);
    color: var(--toolbarText);

    cursor: pointer;

    transition: all 0.5s cubic-bezier(0.00, 1.13, 0.00, 0.97);
}

.product.card:hover {
    background: var(--toolbarResultBackgroundHover);
}

.product.list-item.is-skeleton {
    pointer-events: none;
    user-select: none;
}

.product.list-item.is-skeleton .product.card {
    cursor: default;
}

.product.list-item.is-skeleton .product.card:hover {
    background: var(--toolbarBackground);
}

.product.list-item.is-skeleton .product.card-details {
    gap: 6px;
}

.product.skeleton-block,
.product.skeleton-line {
    position: relative;
    overflow: hidden;
    isolation: isolate;

    background: rgba(128, 128, 128, 0.16);
}

.product.skeleton-block::after,
.product.skeleton-line::after {
    content: "";
    position: absolute;
    inset: 0;

    transform: translateX(-120%);
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.24), transparent);

    animation: product-skeleton-shimmer 1.25s ease-in-out infinite;
    animation-delay: var(--skeleton-delay, 0ms);
}

.product.card-image.skeleton-image {
    border-color: transparent;
}

.product.skeleton-line {
    height: 12px;
    border-radius: 999px;
}

.product.skeleton-title {
    width: min(72%, 220px);
    height: 14px;
}

.product.skeleton-description {
    width: min(52%, 160px);
}

.product.skeleton-locality {
    gap: 6px;
}

.product.skeleton-price {
    width: 56px;
    height: 14px;
}

.product.skeleton-store {
    width: 72px;
}

.product.card-image {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    overflow: hidden;

    width: 64px;
    height: 64px;
    min-width: 64px;
    min-height: 64px;
    max-width: 64px;
    max-height: 64px;

    border-radius: 16px;
    corner-shape: squircle;

    border: 0.5px solid var(--primary-border);
}

.product.card-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product.card-details {
    width: 100%;

    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;

    text-align: left;

    margin-left: 12px;
}

.product.card-title {
    font-size: 14px;
    font-weight: 800;
}

.product.card-description {
    font-size: 14px;
    font-weight: 400;
}

.product.card-locality {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;

    text-align: right;

    white-space: nowrap;

    margin-right: 6px;
}

.product.card-locality-price {
    font-size: 14px;
    font-weight: 800;
}

.product.card-locality-description {
    font-size: 12px;
    font-weight: 400;
}

@keyframes product-skeleton-shimmer {
    100% {
        transform: translateX(120%);
    }
}

@media (prefers-reduced-motion: reduce) {

    .product.skeleton-block::after,
    .product.skeleton-line::after {
        animation: none;
    }
}
