.page-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 30px;
}

.page-header .page-title {
    display: flex;
    align-items: center;
    gap: 12px;
}

.page-header .page-title h2 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
}

.page-header .page-title i {
    background-color: #feecde;
    padding: 10px;
    border-radius: 3px;
    color: #f36f24;
    font-size: 16px;
}

.page-header .blue-boost-button {
    background-color: #feecde;
    padding: 10px 25px;
    border-radius: 25px;
    color: #f36f24;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-weight: 600;
}

.store-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-top: 30px;
    width: 100%;
}

.store-list .featured-stores {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.store-list .other-stores {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.store-list .store-card {
    display: flex;
    flex-wrap: nowrap;
    gap: 12px;
    padding: 30px 20px;
    border-radius: 6px;
    justify-content: space-between;
}

.store-list .featured-stores .store-card {
    background-color: #fff;
    border: 2px solid #f36f24;
    width: calc((100% - 12px) / 2);
    position: relative;
}

.store-list .store-card .featured-card-box {
    background: #f36f24;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    color: #fff;
    top: -14px;
    padding: 5px 21px;
    border-radius: 25px;
    text-transform: uppercase;
    font-weight: 500;
    gap: 8px;
}

.store-list .other-stores .store-card {
    background-color: #fff;
    width: calc((100% - 24px) / 2);
    border: 1px solid #e7dcd6;
}

.store-list .store-card .store-detail {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 42%;
}

.store-list .store-card .store-info {
    display: flex;
    flex-wrap: nowrap;
    gap: 8px;
    align-items: center;
}

.store-list .store-card .store-info .store-avatar {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    border-radius: 999px;
    border: 2px solid #f66d00;
    position: relative;
}

.store-list .store-card .store-info .store-avatar:after {
    content: '';
    position: absolute;
    top: 0;
    left: 3px;
    width: 10px;
    height: 10px;
    border-radius: 999px;
    border: 2px solid #f66d00;
    background-color: #fff;
}

.store-list .store-card .store-info .store-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 999px;
}

.store-list .store-card .store-info .store-who {
    display: flex;
    flex-direction: column;
}

.store-list .store-card .store-info .store-who .store-name-badges {
    display: flex;
    align-items: center;
    gap: 8px;
}

.store-list .store-card .store-info .store-who .store-name-badges .store-badges {
    display: flex;
    gap: 2px;
    align-items: center;
}

.store-list .store-card .store-info .store-who .store-name-badges a {
    max-width: 120px;
    text-overflow: ellipsis;
    overflow: hidden;
}

.store-list .store-card .store-info .store-who .store-name-badges span {
    font-size: 16px;
    font-weight: 500;
}

.store-list .store-card .store-info .store-who .store-name-badges .store-badges img {
    width: 18px;
    height: 18px;
    object-fit: contain;
}

.store-list .store-card .store-info .store-who .store-name-badges .store-solds span {
    color: #2BC4A8;
    font-weight: 500;
}

.store-list .store-card .store-actions {
    display: flex;
    flex-wrap: nowrap;
    gap: 6px;
}

.store-list .store-card .store-actions button,
.store-list .store-card .store-actions a {
    width: 100%;
    flex: 1 1;
    margin: 0;
}

.store-list .store-card .store-actions button,
.store-list .store-card .store-actions a {
    width: 100%;
    flex: 1 1;
    margin: 0;
}

.store-list .store-card .store-actions button.btn-new-green {
    background: #10C5A8;
    color: #fff;
}

.store-list .store-card .store-actions button.btn-new-green:hover {
    background: #13d9b9;
    color: #fff;
}

.store-list .store-card .store-actions button.btn-new-green:active {
    background: #11d4b5 !important;
    color: #fff;
    border-color: #11d4b5 !important;
}

.store-list .store-card .button-blue-wrapped {
    background: #f66d0021;
    padding: 6px 16px 6px 6px;
    border-radius: 6px;
    border: 0;
    color: #f66d00;
    font-weight: 500;
    font-size: 13px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.store-list .store-card .button-blue-wrapped span i {
    color: #fff;
    background: #f66d00;
    padding: 10px;
    border-radius: 6px;
    margin-right: 6px;
}

.store-list .store-card .store-featured-products {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    gap: 20px;
    width: calc(57% - 12px);
}

.store-list .store-card .store-featured-products .featured-product {
    display: flex;
    flex-direction: column;
    position: relative;
    width: calc((100% - 20px) / 2);
    border-left: 1px solid #D5DCE9;
    padding-left: 18px;
}

.store-list .store-card .store-featured-products .featured-product .product-category-icon {
    position: absolute;
    top: -14px;
    margin: auto;
    width: 28px;
    height: 28px;
    border-radius: 6px;
    object-fit: cover;
    left: 0;
    right: 0;
    border: 1px solid #fff;
}

.store-list .store-card .store-featured-products .featured-product .product-base-image {
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
    height: 100px;
    width: 100%;
    object-fit: cover;
}

.store-list .store-card .store-featured-products .featured-product .product-price-box {
    background-color: #f66d00;
    border: 1px solid #fff;
    position: absolute;
    top: 83px;
    right: 6px;
    margin: auto;
    min-width: 40px;
    padding: 4px 10px;
    border-radius: 6px;
    color: #fff;
    font-weight: 500;
    font-size: 13px;
}

.store-list .store-card .store-featured-products .featured-product .product-name-box {
    padding: 14px 10px 5px 10px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    border: 1px solid #D5DCE9;
    border-bottom-left-radius: 6px;
    border-bottom-right-radius: 6px;
    max-width: 100%;
    font-size: 11px;
    font-weight: 500;
}

.store-list .other-stores .store-card .store-detail {
    width: 40%;
}

.store-list .other-stores .store-card .store-featured-products {
    width: calc(60% - 12px);
}

.store-list .store-card .no-feature-ads {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ededed;
    width: 100%;
    height: 100%;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 17px;
    color: #4e4e4e;
    border-radius: 6px;
}

.store-list .store-pages {
    display: flex;
    align-items: center;
    justify-content: end;
}

.store-pages {
    display: flex;
    align-items: center;
    justify-content: end;
}

@media (max-width: 912px) {

    .store-list .featured-stores .store-card,
    .store-list .other-stores .store-card {
        width: 100%;
        flex-wrap: wrap;
        gap: 26px;
    }

    .store-list .store-card .store-detail {
        width: 100% !important;
    }

    .store-list .store-card .store-featured-products {
        width: 100% !important;
    }

    .store-list .store-card .store-featured-products .featured-product {
        padding: 0;
        border: 0;
    }

    .store-list .store-card .no-feature-ads {
        padding: 30px 5px;
    }

    .page-header {
        flex-wrap: wrap;
        gap: 12px;
        align-items: center;
        justify-content: center;
    }

    .pagenation {
        gap: 6px;
    }
}

body.dark-theme .store-list .store-card {
    background: linear-gradient(45deg, #212630, #2e384c);
}

body.dark-theme .store-list .other-stores .store-card {
    border: 1px solid #414b5e;
}

body.dark-theme .store-list .store-card .store-featured-products .featured-product {
    border: none;
}

body.dark-theme .store-list .no-feature-ads {
    background: linear-gradient(45deg, #323c51, #3e4a67);
    color: #7e93b9;
}

body.dark-theme .store-list .store-card .button-blue-wrapped {
    background: #ff71003b;
}

body.dark-theme .page-header .page-title i,
.page-header .blue-boost-button {
    background-color: #573b2b;
}
