:root {
    --tw-blue-200: #bfdbfe;
}

.bg-blue-200 {
    background-color: var(--tw-blue-200);
}

/* CSS tetap sama seperti sebelumnya */
.bottom-sheet {
    position: fixed;
    bottom: -100%;
    left: 0;
    right: 0;
    z-index: 1050;
    transition: all 0.3s ease;
    max-height: 75vh;
    display: flex;
    flex-direction: column;
    outline: 0;
}

.bottom-sheet.show {
    bottom: 0;
}

.bottom-sheet.fade:not(.show) {
    opacity: 0;
}

.bottom-sheet-dialog {
    margin: 0;
    width: 100%;
    max-width: 100%;
    height: 100%;
    transition: transform 0.3s ease-out;
}

.bottom-sheet-content {
    height: 100%;
    border: none;
    border-radius: 15px 15px 0 0;
    background: white;
    box-shadow: 0 -2px 20px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    pointer-events: auto;
    outline: 0;
}

.bottom-sheet-header {
    padding: 1rem;
    border-bottom: 1px solid #dee2e6;
    flex-shrink: 0;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.bottom-sheet-title {
    margin-bottom: 0;
    line-height: 1.5;
}

.bottom-sheet-body {
    position: relative;
    padding: 1rem;
    overflow-y: auto;
    flex: 1 1 auto;
}

.bottom-sheet-footer {
    padding: 1rem;
    border-top: 1px solid #dee2e6;
    flex-shrink: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

/* Backdrop Styles */
.bottom-sheet-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1040;
    opacity: 0;
    transition: opacity 0.15s linear;
}

.bottom-sheet-backdrop.show {
    opacity: 1;
}

/* Body scroll lock */
.bottom-sheet-open {
    overflow: hidden;
}

.btn-xs,
.btn-group-xs > .btn {
    --bs-btn-padding-y: calc(2 * 0.25rem);
    --bs-btn-padding-x: calc(3 * 0.25rem);
    --bs-btn-font-size: 0.75rem;
    --bs-btn-border-radius: 0.5rem;
    font-weight: 500;
}

.btn-xs + .dropdown-toggle-split,
.btn-group-xs > .btn + .dropdown-toggle-split {
    padding-right: calc(var(--bs-btn-padding-x) * 0.75);
    padding-left: calc(var(--bs-btn-padding-x) * 0.75);
}

.btn:not(.btn-outline):not(.btn-dashed):not(.btn-bordered):not(
        .border-hover
    ):not(.border-active):not(.btn-flush):not(.btn-icon):not(
        .btn-hover-outline
    ).btn-xs,
.btn-group-xs
    > .btn:not(.btn-outline):not(.btn-dashed):not(.btn-bordered):not(
        .border-hover
    ):not(.border-active):not(.btn-flush):not(.btn-icon):not(
        .btn-hover-outline
    ) {
    padding: calc(0.55rem + 1px) calc(1rem + 1px);
    padding: calc(2 * 0.25rem) calc(3 * 0.25rem);
}

.product-name {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    line-clamp: 1;
    line-height: 1.2;
    /* Sesuaikan sesuai tinggi baris yang Anda inginkan */
    max-height: calc(1.2em * 2);
    /* line-height * jumlah baris */
    width: 100%;
    /* Atau lebar spesifik lainnya */
}

@media (max-width: 1199.98px) {
    .px-max-xl-3 {
        padding-left: 0.75rem !important;
        padding-right: 0.75rem !important;
    }
}

@media (min-width: 768px) {
    .product-name {
        -webkit-line-clamp: 2;
        line-clamp: 2;
    }
}
