.store-list-block {
    position: relative;
    width: 100%;
    background: linear-gradient(360deg, #2D2D2D 0%, #000000 100%);
    padding: 3.660322108% 0 3.660322108% 0;
}

.store-list__container {
    width: 100%;
    max-width: 75rem;
    margin: 0 auto;
}

.store-list__filters-container {
    background: #4E4E4E;
    box-shadow: 0px 0.3125rem 0.3125rem 0px #00000033 inset;
    -webkit-border-radius: 90px;
    border-radius: 90px;
    padding: 1rem 1.25rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.625rem;
}

.store-list__filters-left {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.store-list__filters-right {
    display: flex;
    align-items: center;
    gap: 14px;
}

.store-list__active-tags {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    flex-wrap: wrap;
    margin-top: 0.625rem;
}

.store-list__tag {
    display: flex;
    align-items: center;
    gap: 0.3125rem;
    background: #D9D9D9;
    color: #2D2D2D;
    font-size: 1rem;
    font-weight: 400;
    padding: 0.5rem 1rem;
    -webkit-border-radius: 3.125rem;
    border-radius: 3.125rem;
    text-transform: uppercase;
}

.store-list__tag-close {
    width: 0.75rem;
    height: 0.75rem;
    cursor: pointer;
    background: url(../../assets/images/close.svg) no-repeat center center;
    background-size: contain;
    -webkit-transition: transform 0.3s ease;
    transition: transform 0.3s ease;
}

.store-list__tag-close:hover {
    -webkit-transform: rotate(25deg);
    transform: rotate(25deg);
}

.store-list__grid {
    margin-top: 1.875rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 3.125rem 4.375rem;
    -webkit-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
}




@media (max-width: 991px) {
    .store-list-block {
        padding: 3.125rem 1.25rem;
    }

    .store-list__grid {
        gap: 1.875rem;
    }


}

@media (max-width: 520px) {
    .store-list__filters-left {
        width: 100%;
    }

    .store-list__filters-container {
        -webkit-border-radius: 1.25rem;
        border-radius: 1.25rem;
    }

    .store-list__dropdown {
        display: block;
        width: 100%;
    }

}




.store-list__grid.is-loading {
    opacity: 0.4;
    pointer-events: none;
}

.store-list__no-results {
    grid-column: 1 / -1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 50px 20px;
    background-color: #ffffff;
    -webkit-border-radius: 24px;
    border-radius: 24px;
    border: 1px dashed #cbd5e1;
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.04);
    box-sizing: border-box;
    width: 100%;
}

.store-list__no-results-icon {
    width: 64px;
    height: 64px;
    background: rgba(194, 14, 26, 0.06);
    color: #c20e1a;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100px;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.store-list__no-results:hover .store-list__no-results-icon {
    transform: scale(1.08);
}

.store-list__no-results-icon svg {
    width: 32px;
    height: 32px;
}

.store-list__no-results-title {
    font-family: 'Outfit', 'Inter', sans-serif;
    font-size: 1.25rem;
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 8px 0;
}

.store-list__no-results-desc {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: #64748b;
    max-width: 520px;
    line-height: 1.6;
    margin: 0;
}

/* ==========================================================================
   PAGINATION
   ========================================================================== */
.store-list__pagination-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 48px;
    width: 100%;
}

.store-list__pagination {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 7px !important;
    margin-top: 2.875rem !important;
    position: relative !important;
    width: auto !important;
    max-width: max-content !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

.store-list__page-arrow {
    width: 48px !important;
    height: 48px !important;
    min-width: 48px !important;
    max-width: 48px !important;
    min-height: 48px !important;
    max-height: 48px !important;
    box-sizing: border-box !important;
    border-radius: 50% !important;
    background-color: #ffffff !important;
    border: none !important;
    color: #E41E26 !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    cursor: pointer !important;
    box-shadow: 0px 5px 25px 0px #0000001A !important;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
    padding: 0 !important;
    position: static !important;
    flex-shrink: 0 !important;
    text-decoration: none;
}

.store-list__page-arrow:hover {
    background: linear-gradient(266.9deg, #700C1C 0.67%, #E41E26 99.13%) !important;
    color: #ffffff !important;
    box-shadow: 0 10px 20px -5px rgba(194, 14, 26, 0.35) !important;
    transform: translateY(-2px) !important;
}

.store-list__page-arrow:active {
    transform: translateY(0) !important;
}

.store-list__page-arrow.is-disabled {
    opacity: 0.5 !important;
    background-color: #F5F5F5 !important;
    color: #A0A0A0 !important;
    cursor: not-allowed !important;
    pointer-events: none !important;
    box-shadow: none !important;
    transform: none !important;
}

.store-list__page-link {
    width: auto !important;
    height: auto !important;
    background: transparent !important;
    opacity: 1 !important;
    color: #D9D9D9 !important;
    font-size: 1.125rem !important;
    font-weight: 500 !important;
    cursor: pointer !important;
    padding: 4px 12px !important;
    -webkit-transition: color 0.2s ease !important;
    transition: color 0.2s ease !important;
    border-radius: 0 !important;
    margin: 0 !important;
    border: none !important;
    box-shadow: none !important;
    text-decoration: none;
}

.store-list__page-link:hover {
    color: #BC132A !important;
    background: transparent !important;
    box-shadow: none !important;
    transform: none !important;
}

.store-list__page-link.is-active {
    color: #BC132A !important;
    font-weight: 700 !important;
    background: transparent !important;
    box-shadow: none !important;
    transform: none !important;
    pointer-events: none !important;
}

@media (max-width: 600px) {
    .store-list__page-link {
        min-width: 38px !important;
        height: 38px !important;
        font-size: 0.9375rem !important;
    }
    .store-list__page-arrow {
        width: 38px !important;
        height: 38px !important;
        min-width: 38px !important;
        max-width: 38px !important;
        min-height: 38px !important;
        max-height: 38px !important;
        box-sizing: border-box !important;
        font-size: 0.9375rem !important;
    }
}



/* Animations */
@-webkit-keyframes storeDropdownCenteredFadeIn {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(-8px);
    }

    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

@keyframes storeDropdownCenteredFadeIn {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(-8px);
    }

    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

@-webkit-keyframes storeDropdownSortFadeIn {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes storeDropdownSortFadeIn {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}