.mySwiper {
    margin: 30px auto;
    padding: 20px;
}

.swiper-slide {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 15px;
    text-align: center;
    height: 100%; /* Ensures equal slide height */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.swiper-slide a {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.swiper-slide img {
    max-width: 100%;
    height: 180px; /* Fixed image height */
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 10px;
}

/* === Title === */
.swiper-slide h4 {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.4;
    margin: 0 0 8px;
    min-height: 2.8em; /* For 2 lines */
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2; /* Max 2 lines */
    -webkit-box-orient: vertical;
}

/* === Price === */
.swiper-slide span {
    font-weight: bold;
    color: #0073aa;
    margin-top: auto;
}