/* Shimmer */
.shimmer-wrapper {
    width: 100%;
}
.shimmer-wrapper .shimmer-001 {
    height: 2rem;
}
.shimmer-wrapper .shimmer-002 {
    height: 1rem;
}
.shimmer-wrapper .shimmer-003 {
    height: 1rem;
}
.shimmer-wrapper .shimmer-004 {
    height: 1rem;
}

/* Filter */
.popup-modal.filter-modal {
    width: 20%;
}
.popup-modal.filter-modal .accordion .accordion-bottom {
    padding-left: 0rem;
    padding-right: 0rem;
}

.search-results-wrapper {

}

.search-results-wrapper .search-results-top-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.search-results-wrapper .search-results-top-wrapper .search-results-counter {
   display:  flex;
   justify-content: start;
   align-items: center;
   gap: 0.5rem;    
}
.search-results-wrapper .search-results-top-wrapper .search-results-counter .search-results-count {
    display: block;
    font-size: 1.3rem;
    font-weight: 700;
}
.search-results-wrapper .search-results-top-wrapper .search-results-counter .search-results-query {
    display: block;
    font-size: 1rem;
    font-weight: 400;
    color: var(--color-text-tertiary);
}


.search-results-wrapper .search-results-top-wrapper .search-results-buttons-wrapper {

}
.search-results-wrapper .search-results-top-wrapper .search-results-buttons-wrapper .search-result-button {
    padding: 0.5rem;
    border-style: solid;
    border-width: 0.1rem;
    border-color: var(--color-border);
    border-radius: var(--radius-lg);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 0.8rem;
    gap: 0.3rem;
    cursor: pointer;
}
.search-results-wrapper .search-results-top-wrapper .search-results-buttons-wrapper .search-result-button .icon {
    color: var(--color-primary);
} 
.search-results-wrapper .search-results-top-wrapper .search-results-buttons-wrapper .search-result-button .text {
    color: var(--color-text);
}

.search-results-wrapper .search-results-middle-wrapper {
    display: flex;
    justify-content: start;
    align-items: start;
    flex-wrap: wrap;
    gap: 0.7rem;
}

.search-results-wrapper .search-results-middle-wrapper .product {
    width: calc(100% / 4 - 0.524rem);
    display: flex;
    justify-content: start;
    align-items: start;
    flex-direction: column;
    gap: 0.5rem;
    cursor: pointer;
}

.search-results-wrapper .search-results-middle-wrapper .product .thumbnail {
    width: 100%;
    height: 20rem;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}
.search-results-wrapper .search-results-middle-wrapper .product .thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.search-results-wrapper .search-results-middle-wrapper .product .title {
    font-size: 0.89rem;
    line-height: 1.1rem;
}

.search-results-wrapper .search-results-middle-wrapper .product .rating-wrapper {
    width: 100%;
    display: flex;
    justify-content: start;
    align-items: center;
    font-size: 0.85rem;
    gap: 0.25rem;
    color: var(--color-primary);
}
.search-results-wrapper .search-results-middle-wrapper .product .rating-wrapper .rating-stars-wrapper {
    display: flex;
    justify-content: start;
    align-items: center;
}
.search-results-wrapper .search-results-middle-wrapper .product .price-wrapper {
    width: 100%;
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.8rem;
}
.search-results-wrapper .search-results-middle-wrapper .product .price-wrapper .price {
    color: var(--color-text);
    font-weight: 500;
}
.search-results-wrapper .search-results-middle-wrapper .product .price-wrapper .price-striked {
    color: var(--color-text-tertiary);
    text-decoration: line-through;
}

.search-results-wrapper .search-results-middle-wrapper .product:hover {
    text-decoration: underline;
}

@media screen and (min-width: 0px) and (max-width: 400px) {

    .search-results-wrapper .search-results-middle-wrapper .product {
        width: calc(100% / 1 - 0.35rem);
        align-items: start;
    }
    .search-results-wrapper .search-results-top-wrapper .search-results-counter {
        flex-wrap: wrap
    }

}
@media screen and (min-width: 401px) and (max-width: 600px) {

    .search-results-wrapper .search-results-middle-wrapper .product {
        width: calc(100% / 2 - 0.35rem);
        align-items: start;
    }
    .search-results-wrapper .search-results-top-wrapper .search-results-counter {
        flex-wrap: wrap
    }

}