body {
    font-family: "Poppins", sans-serif;
}

/* Navbar */
.navbar .nav-link {
    font-size: 15px;
}

.navbar .btn-primary {
    padding: 6px 20px;
    border-radius: 8px;
}

.card {
    border-radius: 12px;
}

.nav-tabs .nav-link {
    border: none;
    color: #333;
}

.nav-tabs .nav-link.active {
    border-bottom: 3px solid #0d6efd !important;
    font-weight: 600;
}

.sticky-top {
    position: sticky;
}

.bg-primary-subtle {
    background-color: #e6f0ff !important;
}

.shadow-sm {
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05) !important;
}


/* ===================================================
           RESPONSIVE MOBILE ONLY — DESKTOP TIDAK DIUBAH
        ====================================================== */
@media (max-width: 768px) {

    .info-event-box {
        display: none !important;
    }

    /* Kurangi jarak atas container */


    /* Banner menjadi full tanpa radius */
    .card img.img-fluid {
        border-radius: 0 !important;
    }

    /* Judul mengecil */
    h3.fw-bold {
        font-size: 22px !important;
        margin-bottom: 18px !important;
    }

    /* Informasi event lebih rapat */
    .col-lg-8 .d-flex.gap-2 {
        margin-bottom: 6px !important;
    }

    /* Tab content mobile lebih bersih */
    .tab-content {
        border: none !important;
        box-shadow: none !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    /* Sidebar di kanan menjadi normal */
    .col-lg-4 .sticky-top {
        position: static !important;
        top: unset !important;
    }

    /* Harga + tombol jadi bottom sheet */
    .col-lg-4 .card.mt-3 {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        border-radius: 18px 18px 0 0 !important;
        padding: 18px !important;
        background: #fff;
        box-shadow: 0 -6px 20px rgba(0, 0, 0, 0.12) !important;
        z-index: 999;
    }

    .col-lg-4 .card.mt-3 .card-body {
        border: none !important;
        padding: 0 !important;
    }

    /* Supaya konten tidak ketutup bottom sheet */
    .col-lg-8 {
        margin-bottom: 160px !important;
    }
}


.custom-card {
    border: 1px solid #e3e7f0;
    border-radius: 16px;
    background: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
    padding: 18px;
}

/* Judul */
.custom-card h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
}

/* Badge Sale */
.badge-sale {
    background: #e7edff;
    color: #4d6bff;
    padding: 3px 8px;
    border-radius: 8px;
    font-size: 11px;
    font-weight: 500;
}

.badge-sold {
    background: #ffe7e7;
    color: #f13131;
    padding: 3px 8px;
    border-radius: 8px;
    font-size: 11px;
    font-weight: 500;
}

/* Deskripsi */
.custom-card p {
    font-size: 12px;
    margin-bottom: 8px;
}

/* Bundle tag */
.bundle-tag {
    display: inline-block;
    padding: 3px 8px;
    background: #eef2ff;
    color: #4d6bff;
    border-radius: 6px;
    font-size: 11.5px;
    font-weight: 500;
}

.bundle-tag i {
    margin-right: 4px;
    font-size: 12px;
}

/* Divider */
.divider {
    width: 100%;
    border-bottom: 1px dashed #d9d9d9;
    margin: 10px 0;
}

/* Harga */
.price {
    font-size: 16px;
    font-weight: 600;
}

/* Tombol */
.pilih-btn {
    font-size: 13px;
    padding: 6px 16px;
    border-radius: 7px;
}

@media (max-width: 576px) {
    .custom-card {
        padding: 14px;
        border-radius: 14px;
    }

    .custom-card h4 {
        font-size: 14px;
        /* Judul semakin kecil */
    }

    .custom-card p {
        font-size: 11px;
        /* Deskripsi kecil */
    }

    .badge-sale {
        font-size: 10px;
        padding: 3px 6px;
        border-radius: 6px;
    }

    .bundle-tag {
        font-size: 10.5px;
        padding: 3px 6px;
        border-radius: 6px;
    }

    .bundle-tag i {
        font-size: 11px;
    }

    .price {
        font-size: 14px;
        /* Harga mengecil */
    }

    .pilih-btn {
        font-size: 12px;
        padding: 5px 14px;
        /* Tombol lebih kecil */
        border-radius: 6px;
    }
}