/* GRID (OLD SHORTCODE) */
.acl-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

/* CAROUSEL WRAPPER */
.acl-swiper {
    max-width: 1100px;
    margin: 0 auto;
}

/* CARD */
.acl-card {
    background-image: linear-gradient(0deg, #1A0D4B 10%, #ffffff 49%);
    border-radius: 16px;
    padding: 15px;
    text-align: center;
}

/* IMAGE */
.acl-card img {
    max-width: 100%;
    border-radius: 12px;
}

/* TITLE */
.acl-card h3 {
    margin: 12px 0;
    font-size: 18px;
}

/* PRICES */
.acl-prices {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    color: #fff;
}

/* DEADLINE */
.acl-deadline {
    font-size: 13px;
    color: #fff;
    opacity: 0.9;
}

/* TIMER */
.acl-timer {
    font-size: 18px;
    font-weight: bold;
    color: #fff;
}

/* BUTTON */
.acl-card button {
    width: 100%;
    padding: 12px;
    background: #ffffff;
    color: #1e1e5a;
    border: none;
    border-radius: 10px;
    font-weight: 600;
}

/* RESPONSIVE GRID */
@media (max-width: 1024px) {
    .acl-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .acl-grid {
        grid-template-columns: 1fr;
    }
}
/* SWIPER DOTS */
.swiper-pagination {
    margin-top: 25px;
    text-align: center;
}

.swiper-pagination-bullet {
    background: #999;
    opacity: 1;
}

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