.card {
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 20px;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    display: block;
    transition: transform 0.2s, box-shadow 0.2s;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Card Content */
.price {
    color: #00bcd4;
    font-weight: bold;
    margin: 8px 0;
}

.price-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
    width: 100%;
}

.price-list li {
    display: flex;
    justify-content: space-between;
    /* durasi kiri, harga kanan */
    align-items: center;
    padding: 0.6rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.12);
    gap: 12px;
}

.price-list li:last-child {
    border-bottom: none;
}

/* Jika price berada di dalam span, pastikan tidak memecah baris */
.price-list .price {
    white-space: nowrap;
    margin-left: 12px;
}