.swiper-offer {
    max-height: 100%;
    height: 100%;
    display: flex;
    overflow: hidden;
}

.swiper-offer .swiper-slide {
    width: auto;
    flex-shrink: 0;
    display: flex;
    justify-content: space-around;
    height: auto;
    text-align: center;
    font-size: 18px;
    background: #fff;
    flex-direction: column;
    align-items: center;
    max-width: 300px;
    padding: 20px;
    border-radius: 10px;
    border: solid;
}

.swiper-offer .slide-title {
    font-weight: bold;
    font-size: 1.5rem;
}

.swiper-offer .offer-content {
    margin: 15px 0;
}

.swiper-offer .offer-content p {
    text-align: center;
}

.swiper-offer .offer-content img {
    max-height: 200px;
    object-fit: scale-down;
}

.swiper-offer .product-info {
    text-align: left;
    margin-top: 10px;
}

.swiper-offer .product-info p {
    margin: 0;
}

.swiper-offer .previous-price {
    text-decoration: line-through;
    color: gray;
}

.swiper-offer .new-price {
    color: red;
}

.swiper-offer .total-prices {
    margin-top: 20px;
    text-align: center;
}

.swiper-offer .total-prices p {
    font-size: 1.2rem;
    margin: 0;
}

.swiper-offer .btn-add-to-cart {
    align-items: center;
    border: 0;
    border-radius: 8px;
    box-shadow: rgba(151, 65, 252, 0.2) 0 15px 30px -5px;
    background-image:linear-gradient(144deg,#AF40FF, #5B42F3 50%,#00DDEB);
    box-sizing: border-box;
    color: #FFFFFF;
    display: flex;
    font-family: Phantomsans, sans-serif;
    font-size: 15px;
    justify-content: center;
    line-height: 1em;
    padding: 10px 20px;
    text-decoration: none;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
    white-space: nowrap;
    cursor: pointer;
    min-width: 120px;
}

.btn-add-to-cart:active,
.btn-add-to-cart:hover {
    outline: 0;
}

.swiper-offer-pagination {
    margin-top: 25px;
    position: relative !important;
}

.offer-spinner {
    border: 4px solid rgba(0, 0, 0, 0.1);
    border-left-color: #ffffff;
    border-radius: 50%;
    width: 15px;
    height: 15px;
    animation: spin 1s linear infinite;
    display: inline-block;
    vertical-align: middle;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

