.ul-hero-slider {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 85vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #f8f9fa;
}

.slider-container {
    position: relative;
    width: 100%;
    max-width: 1200px;
    height: 100%;
}

.slide {
    display: none;
    height: 100%;
    color: #fff;
    transition: opacity 1s ease;
}

    .slide.active {
        display: block;
        animation: fadeIn 1.5s ease-in-out;
    }

.slide-inner {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    width: 100%;
    padding: 0 50px;
}

.slide-content {
    width: 70%;
}

    .slide-content h2 {
        font-size: clamp(2rem, 4vw, 3rem);
        margin-bottom: 10px;
        font-family: "Jost";
        font-weight: 600;
        color: #242424;
    }

    .slide-content h4 {
        font-weight: 500;
        font-size: 16px;
        color: #f9a22a;
        margin-bottom: 15px;
        
        font-style: italic !important;
    }

    .slide-content p {
        max-width: 700px;
        margin: 0 0 30px 0;
        line-height: 1.7;
        color: #242424;
    }

.btn-shop {
    background: #f9a22a;
    color: #000;
    padding: 12px 30px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

    .btn-shop:hover {
        background: #ffd633;
    }

.slide-image {
    width: 30%;
}

    .slide-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 10px; 
    }

.prev, .next {
    position: absolute;
    top: 90%;
    transform: translateY(-50%);
    background-color: rgba(255,255,255,0.5);
    color: #000;
    border: none;
    font-size: 20px;
    cursor: pointer;
    border-radius: 50%;
    transition: 0.3s;
    width: 40px;
    height: 40px;
    text-align: center;
}

    .prev:hover, .next:hover {
        background-color: #f9a22a;
    }

.prev {
    left: 20px;
}

.next {
    right: 20px;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media screen and (max-width: 992px) {
    .slide-inner {
        flex-direction: column;
        text-align: center;
        padding: 70px 20px 20px 20px;
    }

    .slide-content, .slide-image {
        width: 100%;
    }

    .slide-image {
        margin-top: 20px;
    }
}

.ratings {
    margin-bottom: 10px;
}

.badge {
    padding: .75em .9em;
    font-weight: 500;
    border-radius: 0 !important;
}

.badge-dark {
    background: #000;
    color: #fff;
}

.btn, button, .form-control {
    box-shadow: none !important;
}

.vendor-logo {
    width: 125px; 
    height: 125px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    object-fit: contain;
    object-position: center;
    border: 0 !important
}

.vendor-logo-sm {
    width: 30px; 
    height: 30px;
    object-fit: contain;
    object-position: center;
    border: 0 !important;
    margin: 0;
}

.form-control {
    height: 60px;
    border: none;
    border-radius: 0;
    background-color: #f5f7fa;
    padding: 30px;
    color: #6b6b6b;
    font-size: 14px;
}

.login-slide {
    background: #f8f9fa; 
    background-size: auto 500px;
    background-position: center;
    background-repeat: no-repeat;
    box-shadow: inset 0 0 0 1000px rgba(0,0,0, 0.7);
}