.woops-slider {
    padding: 20px 5px 40px;
}
.woops-item {
    background: #ffffff;
    border-radius: 16px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid #eee;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.woops-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}
.woops-img { margin-bottom: 15px; }
.woops-img img { width: 100%; border-radius: 12px; }
.woops-title {
    font-size: 18px;
    font-weight: 600;
    color: #222;
    margin: 10px 0;
    min-height: 50px;
}
.woops-title a {
    text-decoration: none;
    color: inherit;
}
.woops-desc {
    font-size: 14px;
    color: #777;
    line-height: 1.5;
    margin-bottom: 15px;
    min-height: 60px;
}
.woops-price {
    font-size: 20px;
    font-weight: 700;
    color: #1db954;
    margin: 10px 0;
}

/* arrows */
.swiper-button-next,
.swiper-button-prev {
    background: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    color: #000;
}

/* fix double arrow icon */
.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 14px;
}

/* hide arrows on mobile */
@media (max-width: 768px) {
    .swiper-button-next,
    .swiper-button-prev {
        display: none !important;
    }
}

.swiper-pagination-bullet-active { background: #1db954; }
