.banner {
    width: 100%;
    height: 300px;
    position: relative;
}

.banner img {
    width: 100%;
    height: 100%;
}

.profile-pic-wrapper {
    width: 200px;
    height: 200px;
    background-image: url("../../assets/images/Star-six.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    top: 65%;
    left: 6%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.profile-pic-wrapper .vendor-logo {
    width: 60%;
    height: 60%;
    border-radius: 50%;
}

.vendor-logo img {
    width: 100%;
    height: 100%;
}

.vendor-info {
    width: 100%;
    height: 450px;
    position: relative;
    overflow: hidden;
}

.gradient {
    width: 25%;
    height: 100%;
}

.left-gradient {
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(to right, #05cdff 0%, transparent 100%);
    filter: saturate(0.2) brightness(1.2);
}

.right-gradient {
    position: absolute;
    top: 0;
    right: 0;
    background: linear-gradient(to left, #05cdff 0%, transparent 100%);
    filter: saturate(0.2) brightness(1.2);
}

.vendors-infos {
    position: absolute;
    top: 30%;
    z-index: 1;
    padding-left: 60px;
}

.shop-name-status {
    display: flex;
    align-items: center;
    gap: 20px;
}

.shop-name {
    font-family: var(--proximaBold);
    color: var(--textColor);
    font-size: 30px;
}

.shop-status {
    border: 1px solid var(--blueColor);
    padding: 8px 25px;
    display: flex;
    align-items: center;
    gap: 10px;
    border-radius: 50px;
    width: fit-content;
}

.shop-status p {
    font-family: var(--mtnRegular);
    color: var(--blueColor);
    font-family: 18px;
}

.shop-location {
    font-family: var(--proximaBold);
    color: var(--textColor);
    font-size: 22px;
    margin: 25px 0;
}

.shop-about {
    font-family: var(--mtnRegular);
    color: var(--textColor);
    font-size: 18px;
    margin-right: 580px;
}

.products-number {
    font-family: var(--mtnBold);
    color: var(--blueColor);
    font-size: 22px;
    margin: 25px 0;
}

.message-vendor-btn {
    background-color: var(--blueColor);
    padding: 12px 18px;
    width: fit-content;
    border-radius: 8px;
}

.message-vendor-btn p {
    font-family: var(--mtnRegular);
    color: var(--whiteColor);
    font-size: 18px;
}

.vendor-content {
    padding: 40px 60px;
}

.vendor-content-header {
    list-style-type: none;
    display: flex;
    gap: 50px;
    border-bottom: 1px solid var(--grayColor);
}

.vendor-content-header li {
    padding: 4px;
    font-family: var(--mtnRegular);
    color: var(--textColor);
    font-size: 22px;
}

.vendor-content-header li:hover {
    cursor: pointer;
}

.vendor-content-header .active-tab {
    font-family: var(--mtnBold);
    color: #000000;
    border-bottom: 2px solid #000000;
}

.tabcontent {
    padding: 40px 0;
}

.vendor-products {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.vendor-products p {
    font-family: var(--proximaBold);
    color: var(--textColor);
    font-size: 30px;
}

.vendor-product-search-bar {
    display: flex;
    align-items: center;
    border: 1px solid var(--grayColor);
    width: 40%;
    height: 50px;
    padding-left: 10px;
    border-radius: 6px;
}

.vendor-product-search-bar input {
    flex-grow: 1;
    height: 100%;
    font-family: var(--mtnRegular);
    font-size: 18px;
    background-color: transparent;
    border: none;
    color: var(--textColor);
    padding: 8px;
}

.vendor-product-search-bar input::placeholder {
    color: var(--grayColor);
}

.vendor-product-search-bar input:focus {
    outline: none;
}

.dropdown {
    border-color: var(--grayColor);
    padding: 15px 60px 15px 16px;
    -webkit-appearance: none;
    appearance: none;
    background-image: url("../../assets/icons/arrow-down-black.svg");
    background-size: 20px;
    background-repeat: no-repeat;
    background-position: calc(100% - 16px) center;
    border-radius: 6px;
    font-family: var(--mtnRegular);
    color: var(--textColor);
    font-size: 18px;
    background-color: transparent;
}

.dropdown:focus {
    outline: none;
}

.filter-dropdowns {
    padding: 40px 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.rounded-dropdown {
    border-radius: 40px;
    padding: 15px 40px 15px 16px;
}

.vendor-products-listing {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(230px, 320px));
    justify-content: center;
    gap: 20px;
    padding: 50px 0;
}

@media (max-width: 950px) {
    .vendor-products {
        flex-direction: column;
        gap: 15px;
    }

    .shop-about {
        margin-right: 0px;
    }

    .vendor-product-search-bar {
        width: 80%;
    }
}

@media (max-width: 550px) {
    .vendor-product-search-bar {
        width: 100%;
    }

    .shop-name {
        font-size: 18px;
    }

    .vendors-infos {
        padding-left: 20px;
        top: 25%;
    }

    .shop-location {
        margin: 10px 0;
    }

    .vendor-content {
        padding: 40px 20px;
    }

    .vendor-content-header {
        gap: 20px;
        justify-content: center;
    }
}
