/* Vendor Coupons Carousel */
.vendor-coupons-carousel {
    width: 100%;
    padding: 30px 0;
}

.vendor-coupons-carousel .vendor-coupon-card {
    border: 1px solid #ddd;
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    background: #fff1c9;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.vendor-coupons-carousel .vendor-coupon-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.vendor-coupons-carousel .vendor-coupon-card h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
}

.vendor-coupons-carousel .vendor-coupon-card p {
    color: #555;
    margin-bottom: 15px;
}

.vendor-coupons-carousel .vendor-coupon-card .visit-store-btn {
    display: inline-block;
    background: #8A33FD;
    color: #fff;
    padding: 5px 20px;
    border-radius: 5px;
    text-decoration: none;
    transition: background 0.3s;
}

.vendor-coupons-carousel .vendor-coupon-card .visit-store-btn:hover {
    background: #222222;
}

/* Swiper navigation arrows */
.vendor-coupons-carousel .swiper-button-next,
.vendor-coupons-carousel .swiper-button-prev {
    color: #8A33FD;
    background: transparent;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.vendor-coupons-carousel .swiper-button-next:after,
.vendor-coupons-carousel .swiper-button-prev:after{
  	font-size:16px;
}

.vendor-coupons-carousel .swiper-button-next:hover,
.vendor-coupons-carousel .swiper-button-prev:hover {
    background: #8A33FD;
    color: #fff;
}
