.page__desktop--store {
    position: relative;
    width: 100%;
    height: 300px;
    max-height: 300px;
    overflow: hidden;
    margin: 50px auto 0 auto;

}

.page__desktop--store::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: var(--bg-image);
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
    filter: blur(10px);
    z-index: 0;
}

.page__desktop--store img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 80%;
    z-index: 1;
    height: inherit;
    max-height: inherit;
    filter: none;
}

.page__desktop--content--header {
    justify-content: space-between;
}

.page__desktop--content--header--links{
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    gap: 33px;
    width: 591px;
    min-width: 591px;
}

.page__desktop--content--header--link{
    display: flex;
    align-items: center;
    justify-content: flex-start;
    background-color: black;
    height: 55px;
    max-width: 175px;
    width: 100%;
    border-radius: 20px;
}

.page__desktop--header--link--button{
    height: 100%;
    background-color: var(--color-black);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    gap: 10px;
    font-weight: 400;
    line-height: 24px;
    text-decoration-skip-ink: none;
    border-radius: 20px;
}

.page__desktop--header--link--button.dokan-btn-theme{
    border-color: var(--color-black);
    border: 1px solid var(--color-black);
    vertical-align: middle;
    touch-action: manipulation;
    cursor: pointer;
    background-image: none;
    padding: 0;
}

.page__desktop--header--link--button.dokan-btn-theme:hover,
.page__desktop--header--link--button.dokan-btn-theme:focus{
    color: var(--color-white);
    background-color: var(--color-gray-100);
    border: 1px solid var(--color-gray-100)
}


.page__desktop--content--header--search {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    max-width: 95%;
    margin: 48px auto;
    height: 36px;
    max-height: 36px;
    position: relative;
}

.page__desktop--content--header--search .dokan-store-search-form {
    display: flex;
    align-items: center;
    width: 26%;
}

.check-item--title, .check--sub-item--title {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    cursor: pointer;
    gap: 8px;
}

.check-item {
    cursor: pointer;
    margin-left: 16px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
}

.check--sub-item-elements {
    margin: 16px 0 0 16px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.check--sub-item-element{
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    gap: 8px;
}


.check--sub-item {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

input[type="checkbox"] {
    margin-right: 8px;
}

.check--sub-item input[type="checkbox"] {
    width: 15px;
    height: 15px;
}

.check--sub-item label, .check--sub-item span{
    font-size: var(--p-small-laptop);
}


/* Mobile Styles */
@media screen and (max-width: 768px) {
    .page__desktop--store {
        height: 150px;
        max-height: 150px;
    }

    .page__desktop--content--header {
        flex-direction: column;
        gap: 8px;
        padding: 28px 0;
    }
    .page__desktop--content--header--links {
        align-items: center;
        width: 295px;
        min-width: 295px;
        margin-top: 20px;
        gap: 16px;
    }

    .page__desktop--content--header--link {
        height: 26px;
        border-radius: 5px;
    }
    .page__desktop--header--link--button {
        line-height: normal;
        gap: 5px;
    }

    .page__desktop--header--link--button svg {
        width: 13px;
        height: 16px;
    }

    .page__desktop--content--header--search {
        margin: 24px auto;
        height: 26px;
        max-height: 26px;
    }

    .page__desktop--content--header--search .dokan-store-search-form{
        width:100%;
    }

    .page__desktop--content--header--search .search__input {
        width: 100%;
        font-size: small;
        line-height:normal;
    }
    .page__desktop--content--header--search .search__input--svg {
        height: 12px;
        width: 12px;
        top: 65%;
    }


}
