.seller-banner {
    margin: 7.5% 5.5% 0 5.5%;
}

.seller-banner-container {
    width: 100%;
    height: 22vw;
    position: relative;
}

.seller-banner-image {
    width: 100%;
    height: 100%;
    border-radius: 1rem;
    object-fit: cover;
}

.seller-banner-content {
    width: 40%;
    position: absolute;
    top: 10%;
    left: 10%;
    display: flex;
    flex-direction: column;
    max-height: 90%;
    overflow: hidden;
}

.seller-banner-title {
    font-family: 'Outfit', sans-serif;
    font-weight: 500;
    font-size: 3rem;
    color: #FFCC00;
    text-transform: uppercase;
    margin-bottom: 0;
    margin-top: 0;
}

.seller-banner-subtitle {
    font-family: 'Outfit', sans-serif;
    font-weight: 400;
    font-size: 1.2rem;
    color: white;
    text-align: justify;
    text-overflow: ellipsis;
}


.seller-banner-learn-more-button {
    flex-shrink: 0;
    width: 50%;
    height: 3.75rem;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(255, 59, 48, 0.25);
    border: 1px solid #FF3B30;
    border-radius: 9999rem;
    margin-top: 1%;
    transition: background-color 0.2s ease-in;
    cursor: pointer;
}

.seller-banner-learn-more-button:hover {
    background-color: #FF3B30;
}

.seller-banner-learn-more-text {
    font-family: 'Outfit', sans-serif;
    font-weight: 300;
    font-size: 1.5rem;
    color: white;
}

.seller-banner-learn-more-icon {
    width: 0;
    margin-left: 0;
    overflow: hidden;
    transition: width 0.2s ease-in, margin-left 0.2s ease-in;
}

.seller-banner-learn-more-button:hover .seller-banner-learn-more-icon {
    width: 50px;
    margin-left: 0.5rem;
}

@media (max-width: 1440px) {
    .seller-banner-subtitle {
        font-size: 1rem;
    }
}


@media (max-width: 1024px) {

    .seller-banner-image {
        height: unset !important;
    }

    .seller-banner {
        margin: unset !important;
        margin-top: 50px !important;
    }

    .seller-banner-content {
        width: 80% !important;
    }

    .seller-banner-learn-more-icon {
        display: none !important;
    }
}

/* Optional: Slightly reduce font size for medium devices */
@media (max-width: 1024px) {
    .seller-banner-subtitle {
        font-size: 1rem;
    }

    .seller-banner-content {
        width: 50% !important;
        height: 90% !important;
    }

    .seller-banner-container {
        height: 100%;
    }
}

@media (max-width: 768px) {
    .seller-banner-title {
        font-size: 2rem;
    }

    .seller-banner-subtitle {
        font-size: 0.8rem;
    }

    .seller-banner-content {
        width: 50% !important;
        height: 90% !important;
    }

    .seller-banner-container {
        height: 100%;
    }

}

@media (max-width: 750px) {
    .seller-banner-image {
        height: 400px !important;
    }

    .seller-banner-content {

        width: 80% !important;
    }

    .seller-banner-learn-more-text {
        font-size: 1rem !important;
    }

    .scroll-background {
        background-size: cover !important; 
        margin-bottom: 25px !important;
    }

    .scroll-marquee-wrapper {
        width: 100% !important;
        margin: 0px 0px 0px 0px !important; 
    }

}