swiper {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#free-shipping-bar {
    padding: 10px;
    text-align: center;
    margin: 20px 0;
    position: relative;
    font-family: Arial, sans-serif;
}

#free-shipping-bar .free-shipping-text {
    margin: 10px 0;
    font-size: 16px;
    font-weight: bold;
}

#free-shipping-progress-container {
    background: #ddd;
    border-radius: 5px;
    height: 10px;
    margin-top: 10px;
    overflow: hidden;
    position: relative;
}

#free-shipping-progress {
    height: 100%;
    width: 0;
    background: #4b61d1ff;
    transition: width 0.3s ease-in-out;
}

#free-shipping-progress.qualified {
    background: #28a745;
}

#free-shipping-bar .free-shipping-details {
    font-size: 12px;
    color: #666;
    margin-top: 5px;
}